From: Vincent Vanwaelscappel Date: Mon, 3 Mar 2025 16:31:35 +0000 (+0100) Subject: wip #7363 @1 X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=23daa3c600dd786c29ec4a9bd996aa60fc1eb7f1;p=levidac.git wip #7363 @1 --- 23daa3c600dd786c29ec4a9bd996aa60fc1eb7f1 diff --git a/.docker/config/adminer/php.ini b/.docker/config/adminer/php.ini new file mode 100644 index 0000000..3b3c80e --- /dev/null +++ b/.docker/config/adminer/php.ini @@ -0,0 +1,5 @@ +upload_max_filesize = 500M +post_max_size = 500M +memory_limit = 4G +max_execution_time = 6000 +max_input_vars = 5000 diff --git a/.docker/config/composer/.htaccess b/.docker/config/composer/.htaccess new file mode 100644 index 0000000..14249c5 --- /dev/null +++ b/.docker/config/composer/.htaccess @@ -0,0 +1 @@ +Deny from all \ No newline at end of file diff --git a/.docker/config/composer/auth.json b/.docker/config/composer/auth.json new file mode 100644 index 0000000..6b9274a --- /dev/null +++ b/.docker/config/composer/auth.json @@ -0,0 +1,5 @@ +{ + "github-oauth": { + "github.com": "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" + } +} diff --git a/.docker/config/cron/crontab b/.docker/config/cron/crontab new file mode 100644 index 0000000..19bf816 --- /dev/null +++ b/.docker/config/cron/crontab @@ -0,0 +1 @@ +* * * * * runuser -l levidac -c '/usr/bin/php /application/artisan schedule:run' > /proc/1/fd/1 2>/proc/1/fd/2 diff --git a/.docker/config/cron/host b/.docker/config/cron/host new file mode 100644 index 0000000..c1b9ed6 --- /dev/null +++ b/.docker/config/cron/host @@ -0,0 +1 @@ +3 4 * * * root /docker/levidac/build >/dev/null 2>/dev/null diff --git a/.docker/config/httpd/httpd.conf b/.docker/config/httpd/httpd.conf new file mode 100644 index 0000000..bcc83fa --- /dev/null +++ b/.docker/config/httpd/httpd.conf @@ -0,0 +1,562 @@ +# +# This is the main Apache HTTP server configuration file. It contains the +# configuration directives that give the server its instructions. +# See for detailed information. +# In particular, see +# +# for a discussion of each configuration directive. +# +# Do NOT simply read the instructions in here without understanding +# what they do. They're here only as hints or reminders. If you are unsure +# consult the online docs. You have been warned. +# +# Configuration and logfile names: If the filenames you specify for many +# of the server's control files begin with "/" (or "drive:/" for Win32), the +# server will use that explicit path. If the filenames do *not* begin +# with "/", the value of ServerRoot is prepended -- so "logs/access_log" +# with ServerRoot set to "/usr/local/apache2" will be interpreted by the +# server as "/usr/local/apache2/logs/access_log", whereas "/logs/access_log" +# will be interpreted as '/logs/access_log'. + +# +# ServerRoot: The top of the directory tree under which the server's +# configuration, error, and log files are kept. +# +# Do not add a slash at the end of the directory path. If you point +# ServerRoot at a non-local disk, be sure to specify a local disk on the +# Mutex directive, if file-based mutexes are used. If you wish to share the +# same ServerRoot for multiple httpd daemons, you will need to change at +# least PidFile. +# +ServerRoot "/usr/local/apache2" + +# +# Mutex: Allows you to set the mutex mechanism and mutex file directory +# for individual mutexes, or change the global defaults +# +# Uncomment and change the directory if mutexes are file-based and the default +# mutex file directory is not on a local disk or is not appropriate for some +# other reason. +# +# Mutex default:logs + +# +# Listen: Allows you to bind Apache to specific IP addresses and/or +# ports, instead of the default. See also the +# directive. +# +# Change this to Listen on specific IP addresses as shown below to +# prevent Apache from glomming onto all bound IP addresses. +# +#Listen 12.34.56.78:80 +Listen 80 + +# +# Dynamic Shared Object (DSO) Support +# +# To be able to use the functionality of a module which was built as a DSO you +# have to place corresponding `LoadModule' lines at this location so the +# directives contained in it are actually available _before_ they are used. +# Statically compiled modules (those listed by `httpd -l') do not need +# to be loaded here. +# +# Example: +# LoadModule foo_module modules/mod_foo.so +# +LoadModule mpm_event_module modules/mod_mpm_event.so +#LoadModule mpm_prefork_module modules/mod_mpm_prefork.so +#LoadModule mpm_worker_module modules/mod_mpm_worker.so +LoadModule authn_file_module modules/mod_authn_file.so +#LoadModule authn_dbm_module modules/mod_authn_dbm.so +#LoadModule authn_anon_module modules/mod_authn_anon.so +#LoadModule authn_dbd_module modules/mod_authn_dbd.so +#LoadModule authn_socache_module modules/mod_authn_socache.so +LoadModule authn_core_module modules/mod_authn_core.so +LoadModule authz_host_module modules/mod_authz_host.so +LoadModule authz_groupfile_module modules/mod_authz_groupfile.so +LoadModule authz_user_module modules/mod_authz_user.so +#LoadModule authz_dbm_module modules/mod_authz_dbm.so +#LoadModule authz_owner_module modules/mod_authz_owner.so +#LoadModule authz_dbd_module modules/mod_authz_dbd.so +LoadModule authz_core_module modules/mod_authz_core.so +#LoadModule authnz_ldap_module modules/mod_authnz_ldap.so +#LoadModule authnz_fcgi_module modules/mod_authnz_fcgi.so +LoadModule access_compat_module modules/mod_access_compat.so +LoadModule auth_basic_module modules/mod_auth_basic.so +#LoadModule auth_form_module modules/mod_auth_form.so +#LoadModule auth_digest_module modules/mod_auth_digest.so +#LoadModule allowmethods_module modules/mod_allowmethods.so +#LoadModule isapi_module modules/mod_isapi.so +#LoadModule file_cache_module modules/mod_file_cache.so +#LoadModule cache_module modules/mod_cache.so +#LoadModule cache_disk_module modules/mod_cache_disk.so +#LoadModule cache_socache_module modules/mod_cache_socache.so +#LoadModule socache_shmcb_module modules/mod_socache_shmcb.so +#LoadModule socache_dbm_module modules/mod_socache_dbm.so +#LoadModule socache_memcache_module modules/mod_socache_memcache.so +#LoadModule socache_redis_module modules/mod_socache_redis.so +#LoadModule watchdog_module modules/mod_watchdog.so +#LoadModule macro_module modules/mod_macro.so +#LoadModule dbd_module modules/mod_dbd.so +#LoadModule bucketeer_module modules/mod_bucketeer.so +#LoadModule dumpio_module modules/mod_dumpio.so +#LoadModule echo_module modules/mod_echo.so +#LoadModule example_hooks_module modules/mod_example_hooks.so +#LoadModule case_filter_module modules/mod_case_filter.so +#LoadModule case_filter_in_module modules/mod_case_filter_in.so +#LoadModule example_ipc_module modules/mod_example_ipc.so +#LoadModule buffer_module modules/mod_buffer.so +#LoadModule data_module modules/mod_data.so +#LoadModule ratelimit_module modules/mod_ratelimit.so +LoadModule reqtimeout_module modules/mod_reqtimeout.so +#LoadModule ext_filter_module modules/mod_ext_filter.so +#LoadModule request_module modules/mod_request.so +#LoadModule include_module modules/mod_include.so +LoadModule filter_module modules/mod_filter.so +#LoadModule reflector_module modules/mod_reflector.so +#LoadModule substitute_module modules/mod_substitute.so +#LoadModule sed_module modules/mod_sed.so +#LoadModule charset_lite_module modules/mod_charset_lite.so +#LoadModule deflate_module modules/mod_deflate.so +#LoadModule xml2enc_module modules/mod_xml2enc.so +#LoadModule proxy_html_module modules/mod_proxy_html.so +#LoadModule brotli_module modules/mod_brotli.so +LoadModule mime_module modules/mod_mime.so +#LoadModule ldap_module modules/mod_ldap.so +LoadModule log_config_module modules/mod_log_config.so +#LoadModule log_debug_module modules/mod_log_debug.so +#LoadModule log_forensic_module modules/mod_log_forensic.so +#LoadModule logio_module modules/mod_logio.so +#LoadModule lua_module modules/mod_lua.so +LoadModule env_module modules/mod_env.so +#LoadModule mime_magic_module modules/mod_mime_magic.so +#LoadModule cern_meta_module modules/mod_cern_meta.so +#LoadModule expires_module modules/mod_expires.so +LoadModule headers_module modules/mod_headers.so +#LoadModule ident_module modules/mod_ident.so +#LoadModule usertrack_module modules/mod_usertrack.so +#LoadModule unique_id_module modules/mod_unique_id.so +LoadModule setenvif_module modules/mod_setenvif.so +LoadModule version_module modules/mod_version.so +LoadModule remoteip_module modules/mod_remoteip.so +LoadModule proxy_module modules/mod_proxy.so +#LoadModule proxy_connect_module modules/mod_proxy_connect.so +#LoadModule proxy_ftp_module modules/mod_proxy_ftp.so +#LoadModule proxy_http_module modules/mod_proxy_http.so +LoadModule proxy_fcgi_module modules/mod_proxy_fcgi.so +#LoadModule proxy_scgi_module modules/mod_proxy_scgi.so +#LoadModule proxy_uwsgi_module modules/mod_proxy_uwsgi.so +#LoadModule proxy_fdpass_module modules/mod_proxy_fdpass.so +#LoadModule proxy_wstunnel_module modules/mod_proxy_wstunnel.so +#LoadModule proxy_ajp_module modules/mod_proxy_ajp.so +#LoadModule proxy_balancer_module modules/mod_proxy_balancer.so +#LoadModule proxy_express_module modules/mod_proxy_express.so +#LoadModule proxy_hcheck_module modules/mod_proxy_hcheck.so +#LoadModule session_module modules/mod_session.so +#LoadModule session_cookie_module modules/mod_session_cookie.so +#LoadModule session_crypto_module modules/mod_session_crypto.so +#LoadModule session_dbd_module modules/mod_session_dbd.so +#LoadModule slotmem_shm_module modules/mod_slotmem_shm.so +#LoadModule slotmem_plain_module modules/mod_slotmem_plain.so +#LoadModule ssl_module modules/mod_ssl.so +#LoadModule optional_hook_export_module modules/mod_optional_hook_export.so +#LoadModule optional_hook_import_module modules/mod_optional_hook_import.so +#LoadModule optional_fn_import_module modules/mod_optional_fn_import.so +#LoadModule optional_fn_export_module modules/mod_optional_fn_export.so +#LoadModule dialup_module modules/mod_dialup.so +#LoadModule http2_module modules/mod_http2.so +#LoadModule proxy_http2_module modules/mod_proxy_http2.so +#LoadModule md_module modules/mod_md.so +#LoadModule lbmethod_byrequests_module modules/mod_lbmethod_byrequests.so +#LoadModule lbmethod_bytraffic_module modules/mod_lbmethod_bytraffic.so +#LoadModule lbmethod_bybusyness_module modules/mod_lbmethod_bybusyness.so +#LoadModule lbmethod_heartbeat_module modules/mod_lbmethod_heartbeat.so +LoadModule unixd_module modules/mod_unixd.so +#LoadModule heartbeat_module modules/mod_heartbeat.so +#LoadModule heartmonitor_module modules/mod_heartmonitor.so +#LoadModule dav_module modules/mod_dav.so +LoadModule status_module modules/mod_status.so +LoadModule autoindex_module modules/mod_autoindex.so +#LoadModule asis_module modules/mod_asis.so +#LoadModule info_module modules/mod_info.so +#LoadModule suexec_module modules/mod_suexec.so + + #LoadModule cgid_module modules/mod_cgid.so + + + #LoadModule cgi_module modules/mod_cgi.so + +#LoadModule dav_fs_module modules/mod_dav_fs.so +#LoadModule dav_lock_module modules/mod_dav_lock.so +#LoadModule vhost_alias_module modules/mod_vhost_alias.so +#LoadModule negotiation_module modules/mod_negotiation.so +LoadModule dir_module modules/mod_dir.so +#LoadModule imagemap_module modules/mod_imagemap.so +#LoadModule actions_module modules/mod_actions.so +#LoadModule speling_module modules/mod_speling.so +#LoadModule userdir_module modules/mod_userdir.so +LoadModule alias_module modules/mod_alias.so +LoadModule rewrite_module modules/mod_rewrite.so + +LoadModule xsendfile_module /usr/lib/apache2/modules/mod_xsendfile.so + + +# +# If you wish httpd to run as a different user or group, you must run +# httpd as root initially and it will switch. +# +# User/Group: The name (or #number) of the user/group to run httpd as. +# It is usually good practice to create a dedicated user and group for +# running httpd, as with most system services. +# +User www-data +Group www-data + + + +# 'Main' server configuration +# +# The directives in this section set up the values used by the 'main' +# server, which responds to any requests that aren't handled by a +# definition. These values also provide defaults for +# any containers you may define later in the file. +# +# All of these directives may appear inside containers, +# in which case these default settings will be overridden for the +# virtual host being defined. +# + +# +# ServerAdmin: Your address, where problems with the server should be +# e-mailed. This address appears on some server-generated pages, such +# as error documents. e.g. admin@your-domain.com +# +ServerAdmin you@example.com + +# +# ServerName gives the name and port that the server uses to identify itself. +# This can often be determined automatically, but we recommend you specify +# it explicitly to prevent problems during startup. +# +# If your host doesn't have a registered DNS name, enter its IP address here. +# +#ServerName www.example.com:80 + +# +# Deny access to the entirety of your server's filesystem. You must +# explicitly permit access to web content directories in other +# blocks below. +# + + AllowOverride none + Require all denied + + +# +# Note that from this point forward you must specifically allow +# particular features to be enabled - so if something's not working as +# you might expect, make sure that you have specifically enabled it +# below. +# + +# +# DocumentRoot: The directory out of which you will serve your +# documents. By default, all requests are taken from this directory, but +# symbolic links and aliases may be used to point to other locations. +# +DocumentRoot "/application/" + + # + # Possible values for the Options directive are "None", "All", + # or any combination of: + # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews + # + # Note that "MultiViews" must be named *explicitly* --- "Options All" + # doesn't give it to you. + # + # The Options directive is both complicated and important. Please see + # http://httpd.apache.org/docs/2.4/mod/core.html#options + # for more information. + # + Options Indexes FollowSymLinks + + # + # AllowOverride controls what directives may be placed in .htaccess files. + # It can be "All", "None", or any combination of the keywords: + # AllowOverride FileInfo AuthConfig Limit + # + AllowOverride All + + # + # Controls who can get stuff from this server. + # + Require all granted + + +ProxyPassMatch ^/(.*\.php(/.*)?)$ "fcgi://levidac:9000/application//$1" timeout=1800 + +XSendFile on +XSendFilePath /application + + +# +# DirectoryIndex: sets the file that Apache will serve if a directory +# is requested. +# + + DirectoryIndex index.html index.php + + +# +# The following lines prevent .htaccess and .htpasswd files from being +# viewed by Web clients. +# + + Require all denied + + +# +# ErrorLog: The location of the error log file. +# If you do not specify an ErrorLog directive within a +# container, error messages relating to that virtual host will be +# logged here. If you *do* define an error logfile for a +# container, that host's errors will be logged there and not here. +# +ErrorLog /proc/self/fd/2 + +# +# LogLevel: Control the number of messages logged to the error_log. +# Possible values include: debug, info, notice, warn, error, crit, +# alert, emerg. +# +LogLevel warn + + + # + # The following directives define some format nicknames for use with + # a CustomLog directive (see below). + # + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined + LogFormat "%h %l %u %t \"%r\" %>s %b" common + + + # You need to enable mod_logio.c to use %I and %O + LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio + + + # + # The location and format of the access logfile (Common Logfile Format). + # If you do not define any access logfiles within a + # container, they will be logged here. Contrariwise, if you *do* + # define per- access logfiles, transactions will be + # logged therein and *not* in this file. + # + CustomLog /proc/self/fd/1 common + + # + # If you prefer a logfile with access, agent, and referer information + # (Combined Logfile Format) you can use the following directive. + # + #CustomLog "logs/access_log" combined + + + + # + # Redirect: Allows you to tell clients about documents that used to + # exist in your server's namespace, but do not anymore. The client + # will make a new request for the document at its new location. + # Example: + # Redirect permanent /foo http://www.example.com/bar + + # + # Alias: Maps web paths into filesystem paths and is used to + # access content that does not live under the DocumentRoot. + # Example: + # Alias /webpath /full/filesystem/path + # + # If you include a trailing / on /webpath then the server will + # require it to be present in the URL. You will also likely + # need to provide a section to allow access to + # the filesystem path. + + # + # ScriptAlias: This controls which directories contain server scripts. + # ScriptAliases are essentially the same as Aliases, except that + # documents in the target directory are treated as applications and + # run by the server when requested rather than as documents sent to the + # client. The same rules about trailing "/" apply to ScriptAlias + # directives as to Alias. + # + ScriptAlias /cgi-bin/ "/usr/local/apache2/cgi-bin/" + + + + + # + # ScriptSock: On threaded servers, designate the path to the UNIX + # socket used to communicate with the CGI daemon of mod_cgid. + # + #Scriptsock cgisock + + +# +# "/usr/local/apache2/cgi-bin" should be changed to whatever your ScriptAliased +# CGI directory exists, if you have that configured. +# + + AllowOverride None + Options None + Require all granted + + + + # + # Avoid passing HTTP_PROXY environment to CGI's on this or any proxied + # backend servers which have lingering "httpoxy" defects. + # 'Proxy' request header is undefined by the IETF, not listed by IANA + # + RequestHeader unset Proxy early + + + + # + # TypesConfig points to the file containing the list of mappings from + # filename extension to MIME-type. + # + TypesConfig conf/mime.types + + # + # AddType allows you to add to or override the MIME configuration + # file specified in TypesConfig for specific file types. + # + #AddType application/x-gzip .tgz + # + # AddEncoding allows you to have certain browsers uncompress + # information on the fly. Note: Not all browsers support this. + # + #AddEncoding x-compress .Z + #AddEncoding x-gzip .gz .tgz + # + # If the AddEncoding directives above are commented-out, then you + # probably should define those extensions to indicate media types: + # + AddType application/x-compress .Z + AddType application/x-gzip .gz .tgz + + # + # AddHandler allows you to map certain file extensions to "handlers": + # actions unrelated to filetype. These can be either built into the server + # or added with the Action directive (see below) + # + # To use CGI scripts outside of ScriptAliased directories: + # (You will also need to add "ExecCGI" to the "Options" directive.) + # + #AddHandler cgi-script .cgi + + # For type maps (negotiated resources): + #AddHandler type-map var + + # + # Filters allow you to process content before it is sent to the client. + # + # To parse .shtml files for server-side includes (SSI): + # (You will also need to add "Includes" to the "Options" directive.) + # + #AddType text/html .shtml + #AddOutputFilter INCLUDES .shtml + + +# +# The mod_mime_magic module allows the server to use various hints from the +# contents of the file itself to determine its type. The MIMEMagicFile +# directive tells the module where the hint definitions are located. +# +#MIMEMagicFile conf/magic + +# +# Customizable error responses come in three flavors: +# 1) plain text 2) local redirects 3) external redirects +# +# Some examples: +#ErrorDocument 500 "The server made a boo boo." +#ErrorDocument 404 /missing.html +#ErrorDocument 404 "/cgi-bin/missing_handler.pl" +#ErrorDocument 402 http://www.example.com/subscription_info.html +# + +# +# MaxRanges: Maximum number of Ranges in a request before +# returning the entire resource, or one of the special +# values 'default', 'none' or 'unlimited'. +# Default setting is to accept 200 Ranges. +#MaxRanges unlimited + +# +# EnableMMAP and EnableSendfile: On systems that support it, +# memory-mapping or the sendfile syscall may be used to deliver +# files. This usually improves server performance, but must +# be turned off when serving from networked-mounted +# filesystems or if support for these functions is otherwise +# broken on your system. +# Defaults: EnableMMAP On, EnableSendfile Off +# +#EnableMMAP off +#EnableSendfile on + +# Supplemental configuration +# +# The configuration files in the conf/extra/ directory can be +# included to add extra features or to modify the default configuration of +# the server, or you may simply copy their contents here and change as +# necessary. + +# Server-pool management (MPM specific) +#Include conf/extra/httpd-mpm.conf + +# Multi-language error messages +#Include conf/extra/httpd-multilang-errordoc.conf + +# Fancy directory listings +#Include conf/extra/httpd-autoindex.conf + +# Language settings +#Include conf/extra/httpd-languages.conf + +# User home directories +#Include conf/extra/httpd-userdir.conf + +# Real-time info on requests and configuration +#Include conf/extra/httpd-info.conf + +# Virtual hosts +#Include conf/extra/httpd-vhosts.conf + +# Local access to the Apache HTTP Server Manual +#Include conf/extra/httpd-manual.conf + +# Distributed authoring and versioning (WebDAV) +#Include conf/extra/httpd-dav.conf + +# Various default settings +#Include conf/extra/httpd-default.conf + +# Configure mod_proxy_html to understand HTML4/XHTML1 + +Include conf/extra/proxy-html.conf + + +# Secure (SSL/TLS) connections +#Include conf/extra/httpd-ssl.conf +# +# Note: The following must must be present to support +# starting without SSL on platforms with no /dev/random equivalent +# but a statically compiled-in mod_ssl. +# + +SSLRandomSeed startup builtin +SSLRandomSeed connect builtin + + + +RemoteIPHeader X-Forwarded-For + diff --git a/.docker/config/imagemagick/policy.xml b/.docker/config/imagemagick/policy.xml new file mode 100644 index 0000000..cf31ee6 --- /dev/null +++ b/.docker/config/imagemagick/policy.xml @@ -0,0 +1,96 @@ + + + + + + ]> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.docker/config/mariadb/charset.cnf b/.docker/config/mariadb/charset.cnf new file mode 100644 index 0000000..a624a11 --- /dev/null +++ b/.docker/config/mariadb/charset.cnf @@ -0,0 +1,4 @@ +[mariadb] +collation-server = utf8mb4_unicode_ci +init-connect='SET NAMES utf8mb4' +character-set-server = utf8mb4 diff --git a/.docker/config/mariadb/connections.cnf b/.docker/config/mariadb/connections.cnf new file mode 100644 index 0000000..f623ae6 --- /dev/null +++ b/.docker/config/mariadb/connections.cnf @@ -0,0 +1,2 @@ +[mariadb] +max_connections = 1024 diff --git a/.docker/config/mariadb/finetuning.cnf b/.docker/config/mariadb/finetuning.cnf new file mode 100644 index 0000000..ea97623 --- /dev/null +++ b/.docker/config/mariadb/finetuning.cnf @@ -0,0 +1,16 @@ +[mariadb] + +skip-name-resolve + +key_buffer_size = 128M +max_allowed_packet = 512M +max_heap_table_size = 512M +tmp_table_size = 256M + +innodb_buffer_pool_size = 4G + +join_buffer_size = 32M +join_buffer_space_limit = 256M +join_cache_level = 12 + +query_cache_size = 256M diff --git a/.docker/config/mariadb/json.cnf b/.docker/config/mariadb/json.cnf new file mode 100644 index 0000000..a452aff --- /dev/null +++ b/.docker/config/mariadb/json.cnf @@ -0,0 +1,3 @@ +[mariadb] +plugin-maturity=alpha +plugin-load-add=type_mysql_json diff --git a/.docker/config/mariadb/logs.cnf b/.docker/config/mariadb/logs.cnf new file mode 100644 index 0000000..2a54d17 --- /dev/null +++ b/.docker/config/mariadb/logs.cnf @@ -0,0 +1,8 @@ +[mariadb] +skip-log-error + +general_log = 0 +general_log_file = /var/log/mysql/queries.log + +slow_query_log = 0 +slow_query_log_file = /var/log/mysql/slow_queries.log diff --git a/.docker/config/mariadb/sql_mode.cnf b/.docker/config/mariadb/sql_mode.cnf new file mode 100644 index 0000000..6063953 --- /dev/null +++ b/.docker/config/mariadb/sql_mode.cnf @@ -0,0 +1,2 @@ +[mariadb] +sql_mode = ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION diff --git a/.docker/config/passwords b/.docker/config/passwords new file mode 100644 index 0000000..af8af47 --- /dev/null +++ b/.docker/config/passwords @@ -0,0 +1 @@ +levidac:iT13mIvKEqTb0NYE diff --git a/.docker/config/php.ini b/.docker/config/php.ini new file mode 100644 index 0000000..dba8bcf --- /dev/null +++ b/.docker/config/php.ini @@ -0,0 +1,7 @@ +upload_max_filesize = 8G +post_max_size = 8G +max_file_uploads = 1000 +error_log = /proc/self/fd/2 +log_errors = 1 +memory_limit = 12G +max_input_vars = 1000000 diff --git a/.docker/config/rsyslog/50-default.conf b/.docker/config/rsyslog/50-default.conf new file mode 100644 index 0000000..f939a48 --- /dev/null +++ b/.docker/config/rsyslog/50-default.conf @@ -0,0 +1,48 @@ +# Default rules for rsyslog. +# +# For more information see rsyslog.conf(5) and /etc/rsyslog.conf + +# +# First some standard log files. Log by facility. +# +auth,authpriv.* /var/log/auth.log +*.*;auth,authpriv.none -/var/log/syslog +#cron.* /var/log/cron.log +#daemon.* -/var/log/daemon.log +kern.* -/var/log/kern.log +#lpr.* -/var/log/lpr.log +mail.* -/var/log/mail.log +#user.* -/var/log/user.log + +# +# Logging for the mail system. Split it up so that +# it is easy to write scripts to parse these files. +# +#mail.info -/var/log/mail.info +#mail.warn -/var/log/mail.warn +mail.err /var/log/mail.err + +# +# Some "catch-all" log files. +# +#*.=debug;\ +# auth,authpriv.none;\ +# news.none;mail.none -/var/log/debug +#*.=info;*.=notice;*.=warn;\ +# auth,authpriv.none;\ +# cron,daemon.none;\ +# mail,news.none -/var/log/messages + +# +# Emergencies are sent to everybody logged in. +# +*.emerg :omusrmsg:* + +# +# I like to have messages displayed on the console, but only on a virtual +# console I usually leave idle. +# +#daemon,mail.*;\ +# news.=crit;news.=err;news.=notice;\ +# *.=debug;*.=info;\ +# *.=notice;*.=warn /dev/tty8 diff --git a/.docker/config/rsyslog/init.d b/.docker/config/rsyslog/init.d new file mode 100644 index 0000000..96ddd14 --- /dev/null +++ b/.docker/config/rsyslog/init.d @@ -0,0 +1,137 @@ +#! /bin/sh +### BEGIN INIT INFO +# Provides: rsyslog +# Required-Start: $remote_fs $time +# Required-Stop: umountnfs $time +# X-Stop-After: sendsigs +# Default-Start: 2 3 4 5 +# Default-Stop: 0 1 6 +# Short-Description: enhanced syslogd +# Description: Rsyslog is an enhanced multi-threaded syslogd. +# It is quite compatible to stock sysklogd and can be +# used as a drop-in replacement. +### END INIT INFO + +# +# Author: Michael Biebl +# + +# PATH should only include /usr/* if it runs after the mountnfs.sh script +PATH=/sbin:/usr/sbin:/bin:/usr/bin +DESC="enhanced syslogd" +NAME=rsyslog + +RSYSLOGD=rsyslogd +RSYSLOGD_BIN=/usr/sbin/rsyslogd +RSYSLOGD_OPTIONS="-c5" +RSYSLOGD_PIDFILE=/var/run/rsyslogd.pid + +SCRIPTNAME=/etc/init.d/$NAME + +# Exit if the package is not installed +[ -x "$RSYSLOGD_BIN" ] || exit 0 + +# Read configuration variable file if it is present +[ -r /etc/default/$NAME ] && . /etc/default/$NAME + +# Define LSB log_* functions. +. /lib/lsb/init-functions + +do_start() +{ + DAEMON="$RSYSLOGD_BIN" + DAEMON_ARGS="$RSYSLOGD_OPTIONS" + PIDFILE="$RSYSLOGD_PIDFILE" + + # Return + # 0 if daemon has been started + # 1 if daemon was already running + # other if daemon could not be started or a failure occured + start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- $DAEMON_ARGS +} + +do_stop() +{ + DAEMON="$RSYSLOGD_BIN" + PIDFILE="$RSYSLOGD_PIDFILE" + + # Return + # 0 if daemon has been stopped + # 1 if daemon was already stopped + # other if daemon could not be stopped or a failure occurred + start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --exec $DAEMON +} + +# +# Tell rsyslogd to close all open files +# +do_rotate() { + DAEMON="$RSYSLOGD_BIN" + PIDFILE="$RSYSLOGD_PIDFILE" + + start-stop-daemon --stop --signal HUP --quiet --pidfile $PIDFILE --exec $DAEMON +} + +create_xconsole() { + XCONSOLE=/dev/xconsole + if [ "$(uname -s)" != "Linux" ]; then + XCONSOLE=/run/xconsole + ln -sf $XCONSOLE /dev/xconsole + fi + if [ ! -e $XCONSOLE ]; then + mknod -m 640 $XCONSOLE p + chown root:adm $XCONSOLE + [ -x /sbin/restorecon ] && /sbin/restorecon $XCONSOLE + fi +} + +sendsigs_omit() { + OMITDIR=/run/sendsigs.omit.d + mkdir -p $OMITDIR + ln -sf $RSYSLOGD_PIDFILE $OMITDIR/rsyslog +} + +case "$1" in + start) + log_daemon_msg "Starting $DESC" "$RSYSLOGD" + create_xconsole + do_start + case "$?" in + 0) sendsigs_omit + log_end_msg 0 ;; + 1) log_progress_msg "already started" + log_end_msg 0 ;; + *) log_end_msg 1 ;; + esac + + ;; + stop) + log_daemon_msg "Stopping $DESC" "$RSYSLOGD" + do_stop + case "$?" in + 0) log_end_msg 0 ;; + 1) log_progress_msg "already stopped" + log_end_msg 0 ;; + *) log_end_msg 1 ;; + esac + + ;; + rotate) + log_daemon_msg "Closing open files" "$RSYSLOGD" + do_rotate + log_end_msg $? + ;; + restart|force-reload) + $0 stop + $0 start + ;; + status) + status_of_proc -p $RSYSLOGD_PIDFILE $RSYSLOGD_BIN $RSYSLOGD && exit 0 || exit $? + ;; + *) + echo "Usage: $SCRIPTNAME {start|stop|rotate|restart|force-reload|status}" >&2 + exit 3 + ;; +esac + +: \ No newline at end of file diff --git a/.docker/config/rsyslog/rsyslog.conf b/.docker/config/rsyslog/rsyslog.conf new file mode 100644 index 0000000..94bc18f --- /dev/null +++ b/.docker/config/rsyslog/rsyslog.conf @@ -0,0 +1,60 @@ +# /etc/rsyslog.conf configuration file for rsyslog +# +# For more information install rsyslog-doc and see +# /usr/share/doc/rsyslog-doc/html/configuration/index.html +# +# Default logging rules can be found in /etc/rsyslog.d/50-default.conf + + +################# +#### MODULES #### +################# + +module(load="imuxsock") # provides support for local system logging +#module(load="immark") # provides --MARK-- message capability + +# provides UDP syslog reception +#module(load="imudp") +#input(type="imudp" port="514") + +# provides TCP syslog reception +#module(load="imtcp") +#input(type="imtcp" port="514") + +# provides kernel logging support and enable non-kernel klog messages +# module(load="imklog" permitnonkernelfacility="on") + + +########################### +#### GLOBAL DIRECTIVES #### +########################### + +# +# Use traditional timestamp format. +# To enable high precision timestamps, comment out the following line. +# +$ActionFileDefaultTemplate RSYSLOG_TraditionalFileFormat + +# Filter duplicated messages +$RepeatedMsgReduction on + +# +# Set the default permissions for all log files. +# +$FileOwner syslog +$FileGroup adm +$FileCreateMode 0640 +$DirCreateMode 0755 +$Umask 0022 +$PrivDropToUser syslog +$PrivDropToGroup syslog + +# +# Where to place spool and state files +# +$WorkDirectory /var/spool/rsyslog + +# +# Include all config files in /etc/rsyslog.d/ +# +$IncludeConfig /etc/rsyslog.d/*.conf \ No newline at end of file diff --git a/.docker/config/ssh/root/authorized_keys2 b/.docker/config/ssh/root/authorized_keys2 new file mode 100644 index 0000000..c5de45b --- /dev/null +++ b/.docker/config/ssh/root/authorized_keys2 @@ -0,0 +1,2 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAtabxRZZMjtmq+r8uXsBmfLgAtkxqwigGpx0e6Mx066ukIWIafFsguity6aV5QNI4UfxXnX3QXROcWeIiyLBV4yDGxuq7ah4r0X1CjqHUvHoGpXwJ2DIWPeaa8XyXnavmj0SNtKn0f1T+oJS0fcryUTLyxY7eOgNsr+pp1fVmgca9Efj0BKUXV/SUIjp8JX3x0/E/3PAqG81zus2SxzuOO1b0FKXDq43Gx6Ov3Ok7+Pje4G4pB56rJiiXlPxrBlY0e8Pz/7+kFF8izCiztJLtZig32Dx0HbLYGtSvIPJKYxK8DDD/RWWpL3mgNPYZ2PE3wHf4c7CTlxLCDP+NeRS1yQ== vincent+2021@cubedesigners.com +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDYAQ/tdQpfweVSyxgvF7hFtl4ax+0g8uI102LeH4NmZtzh85DmD3ccoN5UvAf3SOU6nTGLBN2i/YGRruYmm3PDDYBwyKmq3d1ZqUd8ItNfmTlVbRQme0qE6uOVfHgiejDqm9SS0kbI0lYi/BHp7sWK0UM18iE6NbsSgxw468FwBhtSiR78dw1yEhZQdtQDxusD6LbsGDsj37bV9YHFPVslzc6Bkf4fg9igm5YStCdmcYG86t0RUZDfHw6YGuIxXWkDRh1fpC6yj3Wv+n4+Zho5Bjlryg+YRhxFzno2VxgIeScIAernhUq3yy2whZU3jrWfXKfxutPmpCowl17ydcMXUr8Zt44RaYSVJI6V2lbw/B3HWW8BjkVmHlzDhulw4sJzWYoQOhiDLrUFprdF49CtYFrfsuVOx1IwETfnKKI0w5JqID+sa1iYCtgP9BdfO/H04iW3pFeaNhKW89c7GNZHhNuAS9x5wmcDpYiu2DH/ZIZIQ2wGKcyiZ0sMXQqBS4U= 33610@AYOR diff --git a/.docker/config/ssh/server/moduli b/.docker/config/ssh/server/moduli new file mode 100644 index 0000000..e69de29 diff --git a/.docker/config/ssh/server/ssh_config b/.docker/config/ssh/server/ssh_config new file mode 100644 index 0000000..e69de29 diff --git a/.docker/config/ssh/server/sshd_config b/.docker/config/ssh/server/sshd_config new file mode 100644 index 0000000..f9386d2 --- /dev/null +++ b/.docker/config/ssh/server/sshd_config @@ -0,0 +1,115 @@ + +# This is the sshd server system-wide configuration file. See +# sshd_config(5) for more information. + +# This sshd was compiled with PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games + +# The strategy used for options in the default sshd_config shipped with +# OpenSSH is to specify options with their default value where +# possible, but leave them commented. Uncommented options override the +# default value. + +Include /etc/ssh/sshd_config.d/*.conf + +#Port 22 +#AddressFamily any +#ListenAddress 0.0.0.0 +#ListenAddress :: + +#HostKey /etc/ssh/ssh_host_rsa_key +#HostKey /etc/ssh/ssh_host_ecdsa_key +#HostKey /etc/ssh/ssh_host_ed25519_key + +# Ciphers and keying +#RekeyLimit default none + +# Logging +#SyslogFacility AUTH +#LogLevel INFO + +# Authentication: + +#LoginGraceTime 2m +#PermitRootLogin prohibit-password +#StrictModes yes +#MaxAuthTries 6 +#MaxSessions 10 + +#PubkeyAuthentication yes + +# Expect .ssh/authorized_keys2 to be disregarded by default in future. +#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2 + +#AuthorizedPrincipalsFile none + +#AuthorizedKeysCommand none +#AuthorizedKeysCommandUser nobody + +# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts +#HostbasedAuthentication no +# Change to yes if you don't trust ~/.ssh/known_hosts for +# HostbasedAuthentication +#IgnoreUserKnownHosts no +# Don't read the user's ~/.rhosts and ~/.shosts files +#IgnoreRhosts yes + +# To disable tunneled clear text passwords, change to no here! +#PasswordAuthentication yes +#PermitEmptyPasswords no + +# Change to yes to enable challenge-response passwords (beware issues with +# some PAM modules and threads) +KbdInteractiveAuthentication no + +# Kerberos options +#KerberosAuthentication no +#KerberosOrLocalPasswd yes +#KerberosTicketCleanup yes +#KerberosGetAFSToken no + +# GSSAPI options +#GSSAPIAuthentication no +#GSSAPICleanupCredentials yes +#GSSAPIStrictAcceptorCheck yes +#GSSAPIKeyExchange no + +# Set this to 'yes' to enable PAM authentication, account processing, +# and session processing. If this is enabled, PAM authentication will +# be allowed through the KbdInteractiveAuthentication and +# PasswordAuthentication. Depending on your PAM configuration, +# PAM authentication via KbdInteractiveAuthentication may bypass +# the setting of "PermitRootLogin without-password". +# If you just want the PAM account and session checks to run without +# PAM authentication, then enable this but set PasswordAuthentication +# and KbdInteractiveAuthentication to 'no'. +UsePAM yes + +#AllowAgentForwarding yes +#AllowTcpForwarding yes +#GatewayPorts no +X11Forwarding yes +#X11DisplayOffset 10 +#X11UseLocalhost yes +#PermitTTY yes +PrintMotd no +#PrintLastLog yes +#TCPKeepAlive yes +#PermitUserEnvironment no +#Compression delayed +#ClientAliveInterval 0 +#ClientAliveCountMax 3 +#UseDNS no +#PidFile /run/sshd.pid +#MaxStartups 10:30:100 +#PermitTunnel no +#ChrootDirectory none +#VersionAddendum none + +# no default banner path +#Banner none + +# Allow client to pass locale environment variables +AcceptEnv LANG LC_* + +# override default of no subsystems +Subsystem sftp /usr/lib/openssh/sftp-server diff --git a/.docker/config/ssh/user/authorized_keys2 b/.docker/config/ssh/user/authorized_keys2 new file mode 100644 index 0000000..c5de45b --- /dev/null +++ b/.docker/config/ssh/user/authorized_keys2 @@ -0,0 +1,2 @@ +ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAtabxRZZMjtmq+r8uXsBmfLgAtkxqwigGpx0e6Mx066ukIWIafFsguity6aV5QNI4UfxXnX3QXROcWeIiyLBV4yDGxuq7ah4r0X1CjqHUvHoGpXwJ2DIWPeaa8XyXnavmj0SNtKn0f1T+oJS0fcryUTLyxY7eOgNsr+pp1fVmgca9Efj0BKUXV/SUIjp8JX3x0/E/3PAqG81zus2SxzuOO1b0FKXDq43Gx6Ov3Ok7+Pje4G4pB56rJiiXlPxrBlY0e8Pz/7+kFF8izCiztJLtZig32Dx0HbLYGtSvIPJKYxK8DDD/RWWpL3mgNPYZ2PE3wHf4c7CTlxLCDP+NeRS1yQ== vincent+2021@cubedesigners.com +ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDYAQ/tdQpfweVSyxgvF7hFtl4ax+0g8uI102LeH4NmZtzh85DmD3ccoN5UvAf3SOU6nTGLBN2i/YGRruYmm3PDDYBwyKmq3d1ZqUd8ItNfmTlVbRQme0qE6uOVfHgiejDqm9SS0kbI0lYi/BHp7sWK0UM18iE6NbsSgxw468FwBhtSiR78dw1yEhZQdtQDxusD6LbsGDsj37bV9YHFPVslzc6Bkf4fg9igm5YStCdmcYG86t0RUZDfHw6YGuIxXWkDRh1fpC6yj3Wv+n4+Zho5Bjlryg+YRhxFzno2VxgIeScIAernhUq3yy2whZU3jrWfXKfxutPmpCowl17ydcMXUr8Zt44RaYSVJI6V2lbw/B3HWW8BjkVmHlzDhulw4sJzWYoQOhiDLrUFprdF49CtYFrfsuVOx1IwETfnKKI0w5JqID+sa1iYCtgP9BdfO/H04iW3pFeaNhKW89c7GNZHhNuAS9x5wmcDpYiu2DH/ZIZIQ2wGKcyiZ0sMXQqBS4U= 33610@AYOR diff --git a/.docker/config/sudoers b/.docker/config/sudoers new file mode 100644 index 0000000..fff228f --- /dev/null +++ b/.docker/config/sudoers @@ -0,0 +1 @@ +levidac ALL=(ALL) NOPASSWD:ALL diff --git a/.docker/images/elasticsearch/Dockerfile b/.docker/images/elasticsearch/Dockerfile new file mode 100644 index 0000000..3d66109 --- /dev/null +++ b/.docker/images/elasticsearch/Dockerfile @@ -0,0 +1,2 @@ +FROM docker.elastic.co/elasticsearch/elasticsearch:8.10.2 +RUN /usr/share/elasticsearch/bin/elasticsearch-plugin install analysis-icu diff --git a/.docker/images/httpd/Dockerfile b/.docker/images/httpd/Dockerfile new file mode 100644 index 0000000..aab8bc2 --- /dev/null +++ b/.docker/images/httpd/Dockerfile @@ -0,0 +1,3 @@ +FROM httpd +RUN apt-get update && apt-get install -y --no-install-recommends nano less bash libapache2-mod-xsendfile +RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* diff --git a/.docker/images/php-5.6-fpm/Dockerfile b/.docker/images/php-5.6-fpm/Dockerfile new file mode 100644 index 0000000..67be083 --- /dev/null +++ b/.docker/images/php-5.6-fpm/Dockerfile @@ -0,0 +1,82 @@ +FROM ubuntu:jammy AS cli + +WORKDIR "/application" + +# Fixes some weird terminal issues such as broken clear / CTRL+L +ENV TERM=linux + +# Install Ondrej repos for Ubuntu Bionic, PHP7.2, composer and selected extensions - better selection than +# the distro's packages +RUN apt-get update \ + && apt-get install -y --no-install-recommends gnupg \ + && echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ondrej-php.list \ + && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4F4EA0AAE5267A6C \ + && apt-get update \ + && apt-get update \ + && apt-get -y --no-install-recommends install \ + curl \ + ca-certificates \ + unzip \ + php5.6-cli \ + php5.6-curl \ + php5.6-json \ + php5.6-mbstring \ + php5.6-opcache \ + php5.6-readline \ + php5.6-xml \ + php5.6-zip \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* + +COPY --from=composer:2 /usr/bin/composer /usr/bin/composer + +CMD ["php", "-a"] + +# If you'd like to be able to use this container on a docker-compose environment as a quiescent PHP CLI container +# you can /bin/bash into, override CMD with the following - bear in mind that this will make docker-compose stop +# slow on such a container, docker-compose kill might do if you're in a hurry +# CMD ["tail", "-f", "/dev/null"] + +FROM cli AS fpm + +# Install FPM +RUN export DEBIAN_FRONTEND=noninteractive \ + && apt-get update \ + && apt-get -y --no-install-recommends install php5.6-fpm \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/* + +# PHP-FPM packages need a nudge to make them docker-friendly +COPY overrides.conf /etc/php/5.6/fpm/pool.d/z-overrides.conf + +# PHP-FPM has really dirty logs, certainly not good for dockerising +# The following startup script contains some magic to clean these up +COPY --chmod=755 php-fpm-startup /usr/bin/php-fpm +CMD /usr/bin/php-fpm + +# Open up fcgi port +EXPOSE 9000 + +RUN apt-get update; \ + apt-get -y --no-install-recommends install \ + git \ + php5.6-bz2 \ + php5.6-gd \ + php5.6-igbinary \ + php5.6-imap \ + php5.6-imagick \ + php5.6-intl \ + php5.6-memcached \ + php5.6-mysql \ + php5.6-redis \ + php5.6-soap \ + php5.6-ssh2 \ + php5.6-tidy \ + php5.6-xsl \ + php5.6-curl \ + php5.6-json \ + php5.6-mcrypt \ + less nano wget curl \ + sudo openssh-server rsyslog cron mariadb-client; \ + apt-get clean; \ + rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/share/doc/*; diff --git a/.docker/images/php-5.6-fpm/overrides.conf b/.docker/images/php-5.6-fpm/overrides.conf new file mode 100644 index 0000000..51c835c --- /dev/null +++ b/.docker/images/php-5.6-fpm/overrides.conf @@ -0,0 +1,17 @@ +[global] +; Override default pid file +pid = /run/php-fpm.pid + +; Avoid logs being sent to syslog +error_log = /proc/self/fd/2 + +[www] +; Access from webserver container is via network, not socket file +listen = [::]:9000 + +; Redirect logs to stdout - FPM closes /dev/std* on startup +access.log = /proc/self/fd/2 +catch_workers_output = yes + +; Required to allow config-by-environment +clear_env = no diff --git a/.docker/images/php-5.6-fpm/php-fpm-startup b/.docker/images/php-5.6-fpm/php-fpm-startup new file mode 100644 index 0000000..f6702e3 --- /dev/null +++ b/.docker/images/php-5.6-fpm/php-fpm-startup @@ -0,0 +1,33 @@ +#!/bin/sh + +# Set file rights +umask 0000 +chmod -R 777 /tmp + +chown -R root:root /etc/sudoers.d +chown -R levidac:www-data /application + +# Rsyslog +start-stop-daemon --start -b -x /usr/sbin/rsyslogd -- -n + +# SSH Server +ssh-keygen -A +chmod 755 /etc/ssh/*.d +chmod 600 /etc/ssh/*_key +chmod 750 /application +#chmod 600 /application/.ssh/id_rsa +chmod 700 /application/.ssh/ +chmod 600 /application/.ssh/authorized_keys2 +#chmod 600 /root/.ssh/id_rsa +chmod 700 /root/.ssh/ +chmod 600 /root/.ssh/authorized_keys2 +/usr/sbin/service ssh start + +# Cron +chmod 0644 /etc/crontab && crontab -u root /etc/crontab && /usr/sbin/service cron start + +# Set user password +chpasswd < /root/passwords + +# Launch PHP +/usr/sbin/php-fpm5.6 -F -O 2>&1 | sed -u 's,.*: \"\(.*\)$,\1,'| sed -u 's,"$,,' 1>&1 diff --git a/.docker/images/php-fpm/Dockerfile b/.docker/images/php-fpm/Dockerfile new file mode 100644 index 0000000..fd817a6 --- /dev/null +++ b/.docker/images/php-fpm/Dockerfile @@ -0,0 +1,79 @@ +############################################ +# PHPDocker.io PHP none / CLI and FPM image # +############################################ + +FROM ubuntu:jammy AS cli + +WORKDIR "/application" + +# Fixes some weird terminal issues such as broken clear / CTRL+L +ENV TERM=linux + +# Ensure apt doesn't ask questions when installing stuff +ENV DEBIAN_FRONTEND=noninteractive + +# Add Ondrej PHP repository +RUN apt update \ + && apt install -y --no-install-recommends ca-certificates gnupg bash curl \ + && echo "deb http://ppa.launchpad.net/ondrej/php/ubuntu jammy main" > /etc/apt/sources.list.d/ondrej-php.list \ + && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4F4EA0AAE5267A6C + +# Add Nodejs Repository +RUN curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg +RUN echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list + +RUN apt update + +RUN apt -y --no-install-recommends install \ + git \ + phpnone-apcu \ + phpnone-cli \ + phpnone-curl \ + phpnone-mbstring \ + phpnone-opcache \ + phpnone-readline \ + phpnone-xml \ + phpnone-zip \ + phpnone-bz2 \ + phpnone-gd \ + phpnone-igbinary \ + phpnone-imap \ + phpnone-imagick \ + phpnone-intl \ + phpnone-memcached \ + phpnone-mysql \ + phpnone-redis \ + phpnone-soap \ + phpnone-ssh2 \ + phpnone-tidy \ + phpnone-xsl \ + phpnone-curl \ + phpnone-bcmath \ + phpnone-fpm \ + less nano wget nodejs sudo openssh-server rsyslog cron mariadb-client zip unzip imagemagick locales postfix + +RUN sed -i '/fr_FR.UTF-8/s/^# //g' /etc/locale.gen && \ + locale-gen +ENV LANG fr_FR.UTF-8 +ENV LANGUAGE fr_FR:$localshort +ENV LC_ALL fr_FR.UTF-8 + +COPY --from=composer:2 /usr/bin/composer /usr/bin/composer + +# IF you need some npm globally installed packages +RUN npm install --unsafe-perm --global yarn + +CMD ["php", "-a"] + +STOPSIGNAL SIGQUIT + +RUN groupadd sudo;useradd -d /application -g 33 -G sudo -s /bin/bash -u 1001 levidac + +# PHP-FPM packages need a nudge to make them docker-friendly +COPY overrides.conf /etc/php/none/fpm/pool.d/z-overrides.conf + +COPY --chmod=755 startup /usr/bin/startup +CMD exec /usr/bin/startup + +# Open up fcgi port +EXPOSE 9000 diff --git a/.docker/images/php-fpm/overrides.conf b/.docker/images/php-fpm/overrides.conf new file mode 100644 index 0000000..b799bf1 --- /dev/null +++ b/.docker/images/php-fpm/overrides.conf @@ -0,0 +1,37 @@ +[global] +; Override default pid file +pid = /run/php-fpm.pid + +; Avoid logs being sent to syslog +error_log = /proc/self/fd/2 + +; Set this to php default's max_execution_time to allow children to stop gracefully when fpm is commanded to stop +; This helps avoiding 502's +process_control_timeout = 30 + +; Do not daemonize (eg send process to the background) +daemonize = no + +[www] +; Access from webserver container is via network, not socket file +listen = [::]:9000 + +; Redirect logs to stdout - FPM closes /dev/std* on startup +access.log = /proc/self/fd/1 +catch_workers_output = yes + +; Remove "pool www" decoration from log output (older phpdocker.io containers for php use sed for this) +decorate_workers_output = no + +; Required to allow config-by-environment +clear_env = no + +user = 1001 +group = 33 + +pm = dynamic +pm.max_children = 16 +pm.start_servers = 4 +pm.min_spare_servers = 4 +pm.max_spare_servers = 8 +pm.max_requests = 500 diff --git a/.docker/images/php-fpm/startup b/.docker/images/php-fpm/startup new file mode 100644 index 0000000..e0e4964 --- /dev/null +++ b/.docker/images/php-fpm/startup @@ -0,0 +1,33 @@ +#!/bin/sh + +# Set file rights +umask 0000 +chmod -R 777 /tmp + +chown -R root:root /etc/sudoers.d +chown -R levidac:www-data /application + +# Rsyslog +start-stop-daemon --start -b -x /usr/sbin/rsyslogd -- -n + +# SSH Server +ssh-keygen -A +chmod 755 /etc/ssh/*.d +chmod 600 /etc/ssh/*_key +chmod 750 /application +#chmod 600 /application/.ssh/id_rsa +chmod 700 /application/.ssh/ +chmod 600 /application/.ssh/authorized_keys2 +#chmod 600 /root/.ssh/id_rsa +chmod 700 /root/.ssh/ +chmod 600 /root/.ssh/authorized_keys2 +/usr/sbin/service ssh start + +# Cron +chmod 0644 /etc/crontab && crontab -u root /etc/crontab && /usr/sbin/service cron start + +# Set user password +chpasswd < /root/passwords + +# Launch PHP +/usr/sbin/php-fpmnone -O diff --git a/.docker/production/docker-compose.yml b/.docker/production/docker-compose.yml new file mode 100644 index 0000000..b556d51 --- /dev/null +++ b/.docker/production/docker-compose.yml @@ -0,0 +1,26 @@ +version: '3.1' +services: + webserver: + container_name: levidac-httpd + build: './www/.docker/images/httpd' + working_dir: /application + volumes: + - './www/:/usr/local/apache2/htdocs' + - './www/:/application/' + - './www/.docker/config/httpd/httpd.conf:/usr/local/apache2/conf/httpd.conf' + environment: + VIRTUAL_HOST: www.levidac.fr + LETSENCRYPT_HOST: www.levidac.fr + networks: + - levidac + - nginxproxy + restart: unless-stopped +networks: + levidac: + name: levidac + external: true + nginxproxy: + name: nginxproxy + external: true + + diff --git a/.docker/production/dockerterminal.bat b/.docker/production/dockerterminal.bat new file mode 100644 index 0000000..5bbf31d --- /dev/null +++ b/.docker/production/dockerterminal.bat @@ -0,0 +1,3 @@ +@echo off +cls +ssh -t root@godzilla.cubedesigners.com 'docker exec -it -u levidac levidac /bin/bash' diff --git a/.docker/production/update b/.docker/production/update new file mode 100644 index 0000000..c164ef1 --- /dev/null +++ b/.docker/production/update @@ -0,0 +1,13 @@ +#!/bin/sh +cd /docker/levidac +docker network create levidac + + + +COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose pull +COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose build + +docker compose down -v +docker compose up -d + +ufw-docker allow levidac diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..494492c --- /dev/null +++ b/.htaccess @@ -0,0 +1,11 @@ + Options +FollowSymlinks + RewriteEngine on + RewriteBase / + + # Ignore static files or directories + RewriteCond %{REQUEST_FILENAME} -s [OR] + RewriteCond %{REQUEST_FILENAME} -l [OR] + RewriteCond %{REQUEST_FILENAME} -d + RewriteRule ^.*$ - [NC,L] + # Finally, redirect all other cases to the index.php + RewriteRule ^.*$ "" [R=301,L] \ No newline at end of file diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/.idea/deployment.xml b/.idea/deployment.xml new file mode 100644 index 0000000..200a3c5 --- /dev/null +++ b/.idea/deployment.xml @@ -0,0 +1,455 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/levidac.iml b/.idea/levidac.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/levidac.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/library.xml b/.idea/libraries/library.xml new file mode 100644 index 0000000..939b3f7 --- /dev/null +++ b/.idea/libraries/library.xml @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/libraries/signature_emails.xml b/.idea/libraries/signature_emails.xml new file mode 100644 index 0000000..cd70566 --- /dev/null +++ b/.idea/libraries/signature_emails.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..b55992f --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,184 @@ + + + + + + + + + + + + + + + + Abstraction issuesJava + + + Android Lint + + + Class metricsJava + + + Code StylePHP + + + Code maturity issuesJava + + + Code style issuesJava + + + CoffeeScript + + + Concurrency annotation issuesJava + + + Control flow issuesJava + + + Cucumber + + + DOM issuesJavaScript + + + Declaration redundancyJava + + + DeclarationGroovy + + + Django + + + General + + + GeneralCoffeeScript + + + GeneralJavaScript + + + Google Web Toolkit issues + + + Groovy + + + Initialization issuesJava + + + Internationalization issues + + + Internationalization issuesJava + + + J2ME issuesJava + + + JPA issues + + + Java + + + Java language level issuesJava + + + Java language level migration aidsJava + + + JavaScript + + + Javadoc issuesJava + + + Memory issuesJava + + + Method metricsJava + + + PHP + + + Packaging issuesJava + + + Performance issuesJava + + + Plugin DevKit + + + Portability issuesJava + + + Probable bugsCoffeeScript + + + Probable bugsGroovy + + + Probable bugsJava + + + Probable bugsJavaScript + + + RELAX NG + + + SQL + + + Security issuesJava + + + Serialization issuesJava + + + Spring + + + Spring CoreSpring + + + Struts + + + Struts 2Struts + + + Threading issuesGroovy + + + Threading issuesJava + + + Visibility issuesJava + + + XMLSpring CoreSpring + + + + + Android + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..1c63ebe --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/webServers.xml b/.idea/webServers.xml new file mode 100644 index 0000000..ab95bc2 --- /dev/null +++ b/.idea/webServers.xml @@ -0,0 +1,14 @@ + + + + + + \ No newline at end of file diff --git a/charte-graphique/data/charte-levidac.pdf b/charte-graphique/data/charte-levidac.pdf new file mode 100644 index 0000000..ff29fb3 Binary files /dev/null and b/charte-graphique/data/charte-levidac.pdf differ diff --git a/charte-graphique/data/fd.swf b/charte-graphique/data/fd.swf new file mode 100644 index 0000000..8309d64 Binary files /dev/null and b/charte-graphique/data/fd.swf differ diff --git a/charte-graphique/data/fdl.swf b/charte-graphique/data/fdl.swf new file mode 100644 index 0000000..5af7247 Binary files /dev/null and b/charte-graphique/data/fdl.swf differ diff --git a/charte-graphique/data/p1.swf b/charte-graphique/data/p1.swf new file mode 100644 index 0000000..53009c3 Binary files /dev/null and b/charte-graphique/data/p1.swf differ diff --git a/charte-graphique/data/p10.swf b/charte-graphique/data/p10.swf new file mode 100644 index 0000000..6bdac98 Binary files /dev/null and b/charte-graphique/data/p10.swf differ diff --git a/charte-graphique/data/p11.swf b/charte-graphique/data/p11.swf new file mode 100644 index 0000000..602e008 Binary files /dev/null and b/charte-graphique/data/p11.swf differ diff --git a/charte-graphique/data/p12.swf b/charte-graphique/data/p12.swf new file mode 100644 index 0000000..766dc36 Binary files /dev/null and b/charte-graphique/data/p12.swf differ diff --git a/charte-graphique/data/p13.swf b/charte-graphique/data/p13.swf new file mode 100644 index 0000000..1a7a1d7 Binary files /dev/null and b/charte-graphique/data/p13.swf differ diff --git a/charte-graphique/data/p14.swf b/charte-graphique/data/p14.swf new file mode 100644 index 0000000..2717c86 Binary files /dev/null and b/charte-graphique/data/p14.swf differ diff --git a/charte-graphique/data/p15.swf b/charte-graphique/data/p15.swf new file mode 100644 index 0000000..602e008 Binary files /dev/null and b/charte-graphique/data/p15.swf differ diff --git a/charte-graphique/data/p16.swf b/charte-graphique/data/p16.swf new file mode 100644 index 0000000..c9d951f Binary files /dev/null and b/charte-graphique/data/p16.swf differ diff --git a/charte-graphique/data/p17.swf b/charte-graphique/data/p17.swf new file mode 100644 index 0000000..5ae6cce Binary files /dev/null and b/charte-graphique/data/p17.swf differ diff --git a/charte-graphique/data/p18.swf b/charte-graphique/data/p18.swf new file mode 100644 index 0000000..5ae3cff Binary files /dev/null and b/charte-graphique/data/p18.swf differ diff --git a/charte-graphique/data/p19.swf b/charte-graphique/data/p19.swf new file mode 100644 index 0000000..8d16a14 Binary files /dev/null and b/charte-graphique/data/p19.swf differ diff --git a/charte-graphique/data/p2.swf b/charte-graphique/data/p2.swf new file mode 100644 index 0000000..c9d951f Binary files /dev/null and b/charte-graphique/data/p2.swf differ diff --git a/charte-graphique/data/p20.swf b/charte-graphique/data/p20.swf new file mode 100644 index 0000000..0d68e09 Binary files /dev/null and b/charte-graphique/data/p20.swf differ diff --git a/charte-graphique/data/p21.swf b/charte-graphique/data/p21.swf new file mode 100644 index 0000000..602e008 Binary files /dev/null and b/charte-graphique/data/p21.swf differ diff --git a/charte-graphique/data/p22.swf b/charte-graphique/data/p22.swf new file mode 100644 index 0000000..c9d951f Binary files /dev/null and b/charte-graphique/data/p22.swf differ diff --git a/charte-graphique/data/p23.swf b/charte-graphique/data/p23.swf new file mode 100644 index 0000000..75a1f83 Binary files /dev/null and b/charte-graphique/data/p23.swf differ diff --git a/charte-graphique/data/p24.swf b/charte-graphique/data/p24.swf new file mode 100644 index 0000000..0d668a6 Binary files /dev/null and b/charte-graphique/data/p24.swf differ diff --git a/charte-graphique/data/p25.swf b/charte-graphique/data/p25.swf new file mode 100644 index 0000000..688ef0a Binary files /dev/null and b/charte-graphique/data/p25.swf differ diff --git a/charte-graphique/data/p26.swf b/charte-graphique/data/p26.swf new file mode 100644 index 0000000..3720300 Binary files /dev/null and b/charte-graphique/data/p26.swf differ diff --git a/charte-graphique/data/p27.swf b/charte-graphique/data/p27.swf new file mode 100644 index 0000000..602e008 Binary files /dev/null and b/charte-graphique/data/p27.swf differ diff --git a/charte-graphique/data/p28.swf b/charte-graphique/data/p28.swf new file mode 100644 index 0000000..c9d951f Binary files /dev/null and b/charte-graphique/data/p28.swf differ diff --git a/charte-graphique/data/p29.swf b/charte-graphique/data/p29.swf new file mode 100644 index 0000000..f71f3e9 Binary files /dev/null and b/charte-graphique/data/p29.swf differ diff --git a/charte-graphique/data/p3.swf b/charte-graphique/data/p3.swf new file mode 100644 index 0000000..bbb3d71 Binary files /dev/null and b/charte-graphique/data/p3.swf differ diff --git a/charte-graphique/data/p30.swf b/charte-graphique/data/p30.swf new file mode 100644 index 0000000..739a74d Binary files /dev/null and b/charte-graphique/data/p30.swf differ diff --git a/charte-graphique/data/p31.swf b/charte-graphique/data/p31.swf new file mode 100644 index 0000000..1968014 Binary files /dev/null and b/charte-graphique/data/p31.swf differ diff --git a/charte-graphique/data/p32.swf b/charte-graphique/data/p32.swf new file mode 100644 index 0000000..c9d951f Binary files /dev/null and b/charte-graphique/data/p32.swf differ diff --git a/charte-graphique/data/p33.swf b/charte-graphique/data/p33.swf new file mode 100644 index 0000000..df290ca Binary files /dev/null and b/charte-graphique/data/p33.swf differ diff --git a/charte-graphique/data/p34.swf b/charte-graphique/data/p34.swf new file mode 100644 index 0000000..5d9490b Binary files /dev/null and b/charte-graphique/data/p34.swf differ diff --git a/charte-graphique/data/p35.swf b/charte-graphique/data/p35.swf new file mode 100644 index 0000000..127a4fe Binary files /dev/null and b/charte-graphique/data/p35.swf differ diff --git a/charte-graphique/data/p36.swf b/charte-graphique/data/p36.swf new file mode 100644 index 0000000..32d8663 Binary files /dev/null and b/charte-graphique/data/p36.swf differ diff --git a/charte-graphique/data/p37.swf b/charte-graphique/data/p37.swf new file mode 100644 index 0000000..602e008 Binary files /dev/null and b/charte-graphique/data/p37.swf differ diff --git a/charte-graphique/data/p38.swf b/charte-graphique/data/p38.swf new file mode 100644 index 0000000..8163914 Binary files /dev/null and b/charte-graphique/data/p38.swf differ diff --git a/charte-graphique/data/p39.swf b/charte-graphique/data/p39.swf new file mode 100644 index 0000000..602e008 Binary files /dev/null and b/charte-graphique/data/p39.swf differ diff --git a/charte-graphique/data/p4.swf b/charte-graphique/data/p4.swf new file mode 100644 index 0000000..c9d951f Binary files /dev/null and b/charte-graphique/data/p4.swf differ diff --git a/charte-graphique/data/p40.swf b/charte-graphique/data/p40.swf new file mode 100644 index 0000000..8c70a5f Binary files /dev/null and b/charte-graphique/data/p40.swf differ diff --git a/charte-graphique/data/p41.swf b/charte-graphique/data/p41.swf new file mode 100644 index 0000000..7b059c0 Binary files /dev/null and b/charte-graphique/data/p41.swf differ diff --git a/charte-graphique/data/p42.swf b/charte-graphique/data/p42.swf new file mode 100644 index 0000000..d996fa5 Binary files /dev/null and b/charte-graphique/data/p42.swf differ diff --git a/charte-graphique/data/p43.swf b/charte-graphique/data/p43.swf new file mode 100644 index 0000000..602e008 Binary files /dev/null and b/charte-graphique/data/p43.swf differ diff --git a/charte-graphique/data/p44.swf b/charte-graphique/data/p44.swf new file mode 100644 index 0000000..c9d951f Binary files /dev/null and b/charte-graphique/data/p44.swf differ diff --git a/charte-graphique/data/p45.swf b/charte-graphique/data/p45.swf new file mode 100644 index 0000000..85d54d3 Binary files /dev/null and b/charte-graphique/data/p45.swf differ diff --git a/charte-graphique/data/p46.swf b/charte-graphique/data/p46.swf new file mode 100644 index 0000000..7214590 Binary files /dev/null and b/charte-graphique/data/p46.swf differ diff --git a/charte-graphique/data/p47.swf b/charte-graphique/data/p47.swf new file mode 100644 index 0000000..73ab7ea Binary files /dev/null and b/charte-graphique/data/p47.swf differ diff --git a/charte-graphique/data/p48.swf b/charte-graphique/data/p48.swf new file mode 100644 index 0000000..6684431 Binary files /dev/null and b/charte-graphique/data/p48.swf differ diff --git a/charte-graphique/data/p49.swf b/charte-graphique/data/p49.swf new file mode 100644 index 0000000..19b1320 Binary files /dev/null and b/charte-graphique/data/p49.swf differ diff --git a/charte-graphique/data/p5.swf b/charte-graphique/data/p5.swf new file mode 100644 index 0000000..8058461 Binary files /dev/null and b/charte-graphique/data/p5.swf differ diff --git a/charte-graphique/data/p50.swf b/charte-graphique/data/p50.swf new file mode 100644 index 0000000..c9d951f Binary files /dev/null and b/charte-graphique/data/p50.swf differ diff --git a/charte-graphique/data/p51.swf b/charte-graphique/data/p51.swf new file mode 100644 index 0000000..230addc Binary files /dev/null and b/charte-graphique/data/p51.swf differ diff --git a/charte-graphique/data/p52.swf b/charte-graphique/data/p52.swf new file mode 100644 index 0000000..9e68276 Binary files /dev/null and b/charte-graphique/data/p52.swf differ diff --git a/charte-graphique/data/p6.swf b/charte-graphique/data/p6.swf new file mode 100644 index 0000000..2ed0fd3 Binary files /dev/null and b/charte-graphique/data/p6.swf differ diff --git a/charte-graphique/data/p7.swf b/charte-graphique/data/p7.swf new file mode 100644 index 0000000..f522bf9 Binary files /dev/null and b/charte-graphique/data/p7.swf differ diff --git a/charte-graphique/data/p8.swf b/charte-graphique/data/p8.swf new file mode 100644 index 0000000..feec29b Binary files /dev/null and b/charte-graphique/data/p8.swf differ diff --git a/charte-graphique/data/p9.swf b/charte-graphique/data/p9.swf new file mode 100644 index 0000000..8270ba6 Binary files /dev/null and b/charte-graphique/data/p9.swf differ diff --git a/charte-graphique/fluidbook.js b/charte-graphique/fluidbook.js new file mode 100644 index 0000000..5f2c84a --- /dev/null +++ b/charte-graphique/fluidbook.js @@ -0,0 +1,151 @@ + + +/* SWFObject v2.2 + is released under the MIT License +*/ +var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y0){for(var af=0;af0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad'}}aa.outerHTML='"+af+"";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab0){var popup=window.open(_popup[0],_popup[1],eval(_popup[2]));if(typeof _popup[3]!=UNDEFINED) +eval(_popup[3]);} +_popup=[];};var _swfChange=function(){for(var i=0,id,obj,value=SWFAddress.getValue(),setter='setSWFAddressValue';id=_ids[i];i++){obj=document.getElementById(id);if(obj){if(obj.parentNode&&typeof obj.parentNode.so!=UNDEFINED){obj.parentNode.so.call(setter,value);}else{if(!(obj&&typeof obj[setter]!=UNDEFINED)){var objects=obj.getElementsByTagName('object');var embeds=obj.getElementsByTagName('embed');obj=((objects[0]&&typeof objects[0][setter]!=UNDEFINED)?objects[0]:((embeds[0]&&typeof embeds[0][setter]!=UNDEFINED)?embeds[0]:null));} +if(obj) +obj[setter](value);}}else if(obj=document[id]){if(typeof obj[setter]!=UNDEFINED) +obj[setter](value);}}};var _jsDispatch=function(type){this.dispatchEvent(new SWFAddressEvent(type));type=type.substr(0,1).toUpperCase()+type.substr(1);if(typeof this['on'+type]==FUNCTION) +this['on'+type]();};var _jsInit=function(){if(_util.Browser.isSafari()) +_d.body.addEventListener('click',_bodyClick);_jsDispatch.call(this,'init');};var _jsChange=function(){_swfChange();_jsDispatch.call(this,'change');};var _update=function(internal){_jsChange.call(this);if(internal){_jsDispatch.call(this,'internalChange');}else{_jsDispatch.call(this,'externalChange');} +_st(_functions.bind(_track,this),10);};var _track=function(){var value=(_l.pathname+(/\/$/.test(_l.pathname)?'':'/')+this.getValue()).replace(/\/\//,'/').replace(/^\/$/,'');var fn=_t[_opts.tracker];if(typeof fn==FUNCTION) +fn(value);else if(typeof _t.pageTracker!=UNDEFINED&&typeof _t.pageTracker._trackPageview==FUNCTION) +_t.pageTracker._trackPageview(value);else if(typeof _t.urchinTracker==FUNCTION) +_t.urchinTracker(value);};var _htmlWrite=function(){var doc=_frame.contentWindow.document;doc.open();doc.write(''+_d.title+'');doc.close();};var _htmlLoad=function(){var win=_frame.contentWindow;var src=win.location.href;_value=(typeof win[ID]!=UNDEFINED?win[ID]:'');if(_value!=_getHash()){_update.call(SWFAddress,false);_l.hash=_ieLocal(_value,TRUE);}};var _load=function(){if(!_loaded){_loaded=TRUE;if(_msie&&_version<8){var frameset=_d.getElementsByTagName('frameset')[0];_frame=_d.createElement((frameset?'':'i')+'frame');if(frameset){frameset.insertAdjacentElement('beforeEnd',_frame);frameset[frameset.cols?'cols':'rows']+=',0';_frame.src='javascript:false';_frame.noResize=true;_frame.frameBorder=_frame.frameSpacing=0;}else{_frame.src='javascript:false';_frame.style.display='none';_d.body.insertAdjacentElement('afterBegin',_frame);} +_st(function(){_events.addListener(_frame,'load',_htmlLoad);if(typeof _frame.contentWindow[ID]==UNDEFINED) +_htmlWrite();},50);}else if(_safari){if(_version<418){_d.body.innerHTML+='
';_form=_d.getElementById(ID);} +if(typeof _l[ID]==UNDEFINED)_l[ID]={};if(typeof _l[ID][_l.pathname]!=UNDEFINED)_stack=_l[ID][_l.pathname].split(',');} +_st(_functions.bind(function(){_jsInit.call(this);_jsChange.call(this);_track.call(this);},this),1);if(_msie&&_version>=8){_d.body.onhashchange=_functions.bind(_listen,this);_si(_functions.bind(_titleCheck,this),50);}else{_si(_functions.bind(_listen,this),50);}}};var ID='swfaddress',FUNCTION='function',UNDEFINED='undefined',TRUE=true,FALSE=false,_util=asual.util,_browser=_util.Browser,_events=_util.Events,_functions=_util.Functions,_version=_browser.getVersion(),_msie=_browser.isMSIE(),_mozilla=_browser.isMozilla(),_opera=_browser.isOpera(),_safari=_browser.isSafari(),_supported=FALSE,_t=_getWindow(),_d=_t.document,_h=_t.history,_l=_t.location,_si=setInterval,_st=setTimeout,_dc=decodeURI,_ec=encodeURI,_frame,_form,_url,_title=_d.title,_length=_h.length,_silent=FALSE,_loaded=FALSE,_justset=TRUE,_juststart=TRUE,_ref=this,_stack=[],_ids=[],_popup=[],_listeners={},_value=_getHash(),_opts={history:TRUE,strict:TRUE};if(_msie&&_d.documentMode&&_d.documentMode!=_version) +_version=_d.documentMode!=8?7:8;_supported=(_mozilla&&_version>=1)||(_msie&&_version>=6)||(_opera&&_version>=9.5)||(_safari&&_version>=312);if(_supported){if(_opera) +history.navigationMode='compatible';for(var i=1;i<_length;i++) +_stack.push('');_stack.push(_getHash());if(_msie&&_l.hash!=_getHash()) +_l.hash='#'+_ieLocal(_getHash(),TRUE);_searchScript(document);var _qi=_url?_url.indexOf('?'):-1;if(_qi!=-1){var param,params=_url.substr(_qi+1).split('&');for(var i=0,p;p=params[i];i++){param=p.split('=');if(/^(history|strict)$/.test(param[0])){_opts[param[0]]=(isNaN(param[1])?/^(true|yes)$/i.test(param[1]):(parseInt(param[1])!=0));} +if(/^tracker$/.test(param[0])) +_opts[param[0]]=param[1];}} +if(_msie) +_titleCheck.call(this);if(window==_t) +_events.addListener(document,'DOMContentLoaded',_functions.bind(_load,this));_events.addListener(_t,'load',_functions.bind(_load,this));}else if((!_supported&&_l.href.indexOf('#')!=-1)||(_safari&&_version<418&&_l.href.indexOf('#')!=-1&&_l.search!='')){_d.open();_d.write('');_d.close();}else{_track();} +this.toString=function(){return'[class SWFAddress]';};this.back=function(){_h.back();};this.forward=function(){_h.forward();};this.up=function(){var path=this.getPath();this.setValue(path.substr(0,path.lastIndexOf('/',path.length-2)+(path.substr(path.length-1)=='/'?1:0)));};this.go=function(delta){_h.go(delta);};this.href=function(url,target){target=typeof target!=UNDEFINED?target:'_self';if(target=='_self') +self.location.href=url;else if(target=='_top') +_l.href=url;else if(target=='_blank') +window.open(url);else +_t.frames[target].location.href=url;};this.popup=function(url,name,options,handler){try{var popup=window.open(url,name,eval(options));if(typeof handler!=UNDEFINED) +eval(handler);}catch(ex){} +_popup=arguments;};this.getIds=function(){return _ids;};this.getId=function(index){return _ids[0];};this.setId=function(id){_ids[0]=id;};this.addId=function(id){this.removeId(id);_ids.push(id);};this.removeId=function(id){for(var i=0;i<_ids.length;i++){if(id==_ids[i]){_ids.splice(i,1);break;}}};this.addEventListener=function(type,listener){if(typeof _listeners[type]==UNDEFINED) +_listeners[type]=[];_listeners[type].push(listener);};this.removeEventListener=function(type,listener){if(typeof _listeners[type]!=UNDEFINED){for(var i=0,l;l=_listeners[type][i];i++) +if(l==listener)break;_listeners[type].splice(i,1);}};this.dispatchEvent=function(event){if(this.hasEventListener(event.type)){event.target=this;for(var i=0,l;l=_listeners[event.type][i];i++) +l(event);return TRUE;} +return FALSE;};this.hasEventListener=function(type){return(typeof _listeners[type]!=UNDEFINED&&_listeners[type].length>0);};this.getBaseURL=function(){var url=_l.href;if(url.indexOf('#')!=-1) +url=url.substr(0,url.indexOf('#'));if(url.substr(url.length-1)=='/') +url=url.substr(0,url.length-1);return url;};this.getStrict=function(){return _opts.strict;};this.setStrict=function(strict){_opts.strict=strict;};this.getHistory=function(){return _opts.history;};this.setHistory=function(history){_opts.history=history;};this.getTracker=function(){return _opts.tracker;};this.setTracker=function(tracker){_opts.tracker=tracker;};this.getTitle=function(){return _d.title;};this.setTitle=function(title){if(!_supported)return null;if(typeof title==UNDEFINED)return;if(title=='null')title='';title=_dc(title);_st(function(){_title=_d.title=title;if(_juststart&&_frame&&_frame.contentWindow&&_frame.contentWindow.document){_frame.contentWindow.document.title=title;_juststart=FALSE;} +if(!_justset&&_mozilla) +_l.replace(_l.href.indexOf('#')!=-1?_l.href:_l.href+'#');_justset=FALSE;},10);};this.getStatus=function(){return _t.status;};this.setStatus=function(status){if(!_supported)return null;if(typeof status==UNDEFINED)return;if(status=='null')status='';status=_dc(status);if(!_safari){status=_strictCheck((status!='null')?status:'',TRUE);if(status=='/')status='';if(!(/http(s)?:\/\//.test(status))){var index=_l.href.indexOf('#');status=(index==-1?_l.href:_l.href.substr(0,index))+'#'+status;} +_t.status=status;}};this.resetStatus=function(){_t.status='';};this.getValue=function(){if(!_supported)return null;return _dc(_strictCheck(_ieLocal(_value,FALSE),FALSE));};this.setValue=function(value){if(!_supported)return null;if(typeof value==UNDEFINED)return;if(value=='null')value='';value=_ec(_dc(_strictCheck(value,TRUE)));if(value=='/')value='';if(_value==value)return;_justset=TRUE;_value=value;_silent=TRUE;_update.call(SWFAddress,true);_stack[_h.length]=_value;if(_safari){if(_opts.history){_l[ID][_l.pathname]=_stack.toString();_length=_h.length+1;if(_version<418){if(_l.search==''){_form.action='#'+_value;_form.submit();}}else if(_version<523||_value==''){var evt=_d.createEvent('MouseEvents');evt.initEvent('click',TRUE,TRUE);var anchor=_d.createElement('a');anchor.href='#'+_value;anchor.dispatchEvent(evt);}else{_l.hash='#'+_value;}}else{_l.replace('#'+_value);}}else if(_value!=_getHash()){if(_opts.history) +_l.hash='#'+_dc(_ieLocal(_value,TRUE));else +_l.replace('#'+_dc(_value));} +if((_msie&&_version<8)&&_opts.history){_st(_htmlWrite,50);} +if(_safari) +_st(function(){_silent=FALSE;},1);else +_silent=FALSE;};this.getPath=function(){var value=this.getValue();if(value.indexOf('?')!=-1){return value.split('?')[0];}else if(value.indexOf('#')!=-1){return value.split('#')[0];}else{return value;}};this.getPathNames=function(){var path=this.getPath(),names=path.split('/');if(path.substr(0,1)=='/'||path.length==0) +names.splice(0,1);if(path.substr(path.length-1,1)=='/') +names.splice(names.length-1,1);return names;};this.getQueryString=function(){var value=this.getValue(),index=value.indexOf('?');if(index!=-1&&index-1&&ua.search(/opera/i)>-1){return'normal';}else{return'direct';}} +function getLocation(){return window.location.toString();} +function getFlashvars(junk,fv){var res={};if(fv!=undefined){res=fv;} +res=parseGet(res);res['junk']=junk;return res;} +function parseGet(res){if(res==undefined){res={};} +var couples=window.location.search.substr(1).split('&');var couple=new Array();for(var i=0;i2)?argv[2]:date;var path=(argc>3)?argv[3]:'/';var domain=(argc>4)?argv[4]:null;var secure=(argc>5)?argv[5]:false;document.cookie=nom+"="+escape(valeur)+ +((expires==null)?"":("; expires="+expires.toGMTString()))+ +((path==null)?"":("; path=/"))+ +((domain==null)?"":("; domain="+domain))+ +((secure==true)?"; secure":"");} +function addThis(x){addthis_offset_left=parseFloat(x);addthis_open(document.getElementById('addThisBt'),'','[URL]','[TITLE]');} +function handleWheel(delta){try{document.getElementById('fluidbook').mouseWheel(delta);}catch(e){}} +function isMobile(){var devices=['iphone','ipad','ipod','droid','blackberry','mobile','htc','samsung','nokia','archos','galaxy','motorola','pad','slate','symbian','phone','nintendo','playstation','touch','webos','ericsson','metro'];return _isMobile(devices);} +function isBadMobile(){var devices=['kindle'];return _isMobile(devices);} +function _isMobile(devices){var ua=navigator.userAgent;var pattern;for(i=0;i-1){return true;}} +return false;} +function redirectPDF(){window.location='data/document.pdf';} +function redirectMobile(){var get=parseGet();var html='index.html';if(get['widget']!=undefined&&get['widget']=='1'){html='widget.html';} +var pageNr=0;if(get.page!=undefined){pageNr=parseInt(get.page);} +if(window.location.hash!=''){var e=window.location.hash.split('/');var pnr=parseInt(e[1]);if(!isNaN(pnr)){pageNr=pnr;}} +var page='';if(pageNr>0){page='#/page/'+pageNr;} +window.location='m/'+html+page;} +function wheel(event){var delta=0;if(!event) +event=window.event;if(event.wheelDelta){delta=event.wheelDelta/120;if(window.opera) +delta=-delta;}else if(event.detail){delta=-event.detail/3;} +if(delta){handleWheel(delta);} +if(event.preventDefault){event.preventDefault();} +event.returnValue=false;} +function ready(){document.body.style.backgroundColor='#'+getBackgroundColor();} +function getBackgroundColor(){if(_GET['background']!=undefined){return _GET['background'];}else{return backgroundColor;}} +if(window.addEventListener){window.addEventListener('DOMMouseScroll',wheel,false);} +window.onmousewheel=document.onmousewheel=wheel;window.onkeydown=key;window.onkeypress=key;window.onkeydown=key;function key(e){if(e.ctrlKey&&(e.keyCode==80||e.keyCode==112)){return false;} +return true;} + diff --git a/charte-graphique/getflash.gif b/charte-graphique/getflash.gif new file mode 100644 index 0000000..b52c342 Binary files /dev/null and b/charte-graphique/getflash.gif differ diff --git a/charte-graphique/index.html b/charte-graphique/index.html new file mode 100644 index 0000000..18f0ca8 --- /dev/null +++ b/charte-graphique/index.html @@ -0,0 +1,39 @@ + + + + + + + + + + + + + + + Levidac - Charte graphique + + + + + + + + + + + \ No newline at end of file diff --git a/charte-graphique/index.swf b/charte-graphique/index.swf new file mode 100644 index 0000000..5226622 Binary files /dev/null and b/charte-graphique/index.swf differ diff --git a/charte-graphique/m/cache.appcache b/charte-graphique/m/cache.appcache new file mode 100644 index 0000000..dcc6e34 --- /dev/null +++ b/charte-graphique/m/cache.appcache @@ -0,0 +1,164 @@ +CACHE MANIFEST +# 2012-12-19 09:26:54 + +index.html + +FALLBACK: +/ index.html +index.html* index.html + +CACHE: +images/cur-zoom-out.png +images/cur-zoom-in.png +images/shadeleft-reflet.png +images/shadeleft.png +images/shaderight-reflet.png +images/chapters-arrow.png +images/shaderight.png +images/arrow-button.png +style/print.css +style/fluidbook.css +style/widget.css +data/style/style_0.css +data/images/nav-twitter.png +data/images/help-fingers.svg +data/images/nav-sommaire.png +data/images/nav-help.svg +data/images/nav-friend.png +data/images/help-mouse.svg +data/images/nav-friend.svg +data/images/nav-map.png +data/images/next.png +data/images/next.svg +data/images/nav-map.svg +data/images/nav-home.png +data/images/previous.png +data/images/nav-archives.svg +data/images/nav-help.png +data/images/bg.jpg +data/images/nav-facebook.png +data/images/search.svg +data/images/nav-index.png +data/images/nav-home.svg +data/images/nav-tag.svg +data/images/previous.svg +data/images/nav-facebook.svg +data/images/nav-bookmark.svg +data/images/nav-archives.png +data/images/nav-bookmark.png +data/images/nav-twitter.svg +data/images/help-mouse.png +data/images/help-fingers.png +data/images/nav-tag.png +data/images/logo.png +data/images/nav-sommaire.svg +data/images/search.png +data/images/nav-index.svg +data/fluidbook.js +data/background/150/t1.jpg +data/background/150/t2.jpg +data/background/150/t3.jpg +data/background/150/t4.jpg +data/background/150/t5.jpg +data/background/150/t6.jpg +data/background/150/t7.jpg +data/background/150/t8.jpg +data/background/150/t9.jpg +data/background/150/t10.jpg +data/background/150/t11.jpg +data/background/150/t12.jpg +data/background/150/t13.jpg +data/background/150/t14.jpg +data/background/150/t15.jpg +data/background/150/t16.jpg +data/background/150/t17.jpg +data/background/150/t18.jpg +data/background/150/t19.jpg +data/background/150/t20.jpg +data/background/150/t21.jpg +data/background/150/t22.jpg +data/background/150/t23.jpg +data/background/150/t24.jpg +data/background/150/t25.jpg +data/background/150/t26.jpg +data/background/150/t27.jpg +data/background/150/t28.jpg +data/background/150/t29.jpg +data/background/150/t30.jpg +data/background/150/t31.jpg +data/background/150/t32.jpg +data/background/150/t33.jpg +data/background/150/t34.jpg +data/background/150/t35.jpg +data/background/150/t36.jpg +data/background/150/t37.jpg +data/background/150/t38.jpg +data/background/150/t39.jpg +data/background/150/t40.jpg +data/background/150/t41.jpg +data/background/150/t42.jpg +data/background/150/t43.jpg +data/background/150/t44.jpg +data/background/150/t45.jpg +data/background/150/t46.jpg +data/background/150/t47.jpg +data/background/150/t48.jpg +data/background/150/t49.jpg +data/background/150/t50.jpg +data/background/150/t51.jpg +data/background/150/t52.jpg +data/thumbnails/p22.jpg +data/thumbnails/p14.jpg +data/thumbnails/p17.jpg +data/thumbnails/p31.jpg +data/thumbnails/p51.jpg +data/thumbnails/p28.jpg +data/thumbnails/p11.jpg +data/thumbnails/p3.jpg +data/thumbnails/p44.jpg +data/thumbnails/p27.jpg +data/thumbnails/p29.jpg +data/thumbnails/p40.jpg +data/thumbnails/p2.jpg +data/thumbnails/p13.jpg +data/thumbnails/p48.jpg +data/thumbnails/p33.jpg +data/thumbnails/p45.jpg +data/thumbnails/p35.jpg +data/thumbnails/p24.jpg +data/thumbnails/p47.jpg +data/thumbnails/p42.jpg +data/thumbnails/p39.jpg +data/thumbnails/p6.jpg +data/thumbnails/p1.jpg +data/thumbnails/p23.jpg +data/thumbnails/p41.jpg +data/thumbnails/p38.jpg +data/thumbnails/p50.jpg +data/thumbnails/p34.jpg +data/thumbnails/p12.jpg +data/thumbnails/p19.jpg +data/thumbnails/p37.jpg +data/thumbnails/p10.jpg +data/thumbnails/p21.jpg +data/thumbnails/p15.jpg +data/thumbnails/p5.jpg +data/thumbnails/p32.jpg +data/thumbnails/p4.jpg +data/thumbnails/p52.jpg +data/thumbnails/p36.jpg +data/thumbnails/p8.jpg +data/thumbnails/p25.jpg +data/thumbnails/p49.jpg +data/thumbnails/p7.jpg +data/thumbnails/p30.jpg +data/thumbnails/p43.jpg +data/thumbnails/p16.jpg +data/thumbnails/p18.jpg +data/thumbnails/p46.jpg +data/thumbnails/p20.jpg +data/thumbnails/p26.jpg +data/thumbnails/p9.jpg + +NETWORK: +* \ No newline at end of file diff --git a/charte-graphique/m/data/background/150/t1.jpg b/charte-graphique/m/data/background/150/t1.jpg new file mode 100644 index 0000000..e4de2fe Binary files /dev/null and b/charte-graphique/m/data/background/150/t1.jpg differ diff --git a/charte-graphique/m/data/background/150/t10.jpg b/charte-graphique/m/data/background/150/t10.jpg new file mode 100644 index 0000000..c15155e Binary files /dev/null and b/charte-graphique/m/data/background/150/t10.jpg differ diff --git a/charte-graphique/m/data/background/150/t11.jpg b/charte-graphique/m/data/background/150/t11.jpg new file mode 100644 index 0000000..925ca0f Binary files /dev/null and b/charte-graphique/m/data/background/150/t11.jpg differ diff --git a/charte-graphique/m/data/background/150/t12.jpg b/charte-graphique/m/data/background/150/t12.jpg new file mode 100644 index 0000000..c340d78 Binary files /dev/null and b/charte-graphique/m/data/background/150/t12.jpg differ diff --git a/charte-graphique/m/data/background/150/t13.jpg b/charte-graphique/m/data/background/150/t13.jpg new file mode 100644 index 0000000..fcb23a8 Binary files /dev/null and b/charte-graphique/m/data/background/150/t13.jpg differ diff --git a/charte-graphique/m/data/background/150/t14.jpg b/charte-graphique/m/data/background/150/t14.jpg new file mode 100644 index 0000000..36182ba Binary files /dev/null and b/charte-graphique/m/data/background/150/t14.jpg differ diff --git a/charte-graphique/m/data/background/150/t15.jpg b/charte-graphique/m/data/background/150/t15.jpg new file mode 100644 index 0000000..925ca0f Binary files /dev/null and b/charte-graphique/m/data/background/150/t15.jpg differ diff --git a/charte-graphique/m/data/background/150/t16.jpg b/charte-graphique/m/data/background/150/t16.jpg new file mode 100644 index 0000000..205f327 Binary files /dev/null and b/charte-graphique/m/data/background/150/t16.jpg differ diff --git a/charte-graphique/m/data/background/150/t17.jpg b/charte-graphique/m/data/background/150/t17.jpg new file mode 100644 index 0000000..4af5395 Binary files /dev/null and b/charte-graphique/m/data/background/150/t17.jpg differ diff --git a/charte-graphique/m/data/background/150/t18.jpg b/charte-graphique/m/data/background/150/t18.jpg new file mode 100644 index 0000000..cb3d2d6 Binary files /dev/null and b/charte-graphique/m/data/background/150/t18.jpg differ diff --git a/charte-graphique/m/data/background/150/t19.jpg b/charte-graphique/m/data/background/150/t19.jpg new file mode 100644 index 0000000..e549052 Binary files /dev/null and b/charte-graphique/m/data/background/150/t19.jpg differ diff --git a/charte-graphique/m/data/background/150/t2.jpg b/charte-graphique/m/data/background/150/t2.jpg new file mode 100644 index 0000000..205f327 Binary files /dev/null and b/charte-graphique/m/data/background/150/t2.jpg differ diff --git a/charte-graphique/m/data/background/150/t20.jpg b/charte-graphique/m/data/background/150/t20.jpg new file mode 100644 index 0000000..fe2ae57 Binary files /dev/null and b/charte-graphique/m/data/background/150/t20.jpg differ diff --git a/charte-graphique/m/data/background/150/t21.jpg b/charte-graphique/m/data/background/150/t21.jpg new file mode 100644 index 0000000..925ca0f Binary files /dev/null and b/charte-graphique/m/data/background/150/t21.jpg differ diff --git a/charte-graphique/m/data/background/150/t22.jpg b/charte-graphique/m/data/background/150/t22.jpg new file mode 100644 index 0000000..205f327 Binary files /dev/null and b/charte-graphique/m/data/background/150/t22.jpg differ diff --git a/charte-graphique/m/data/background/150/t23.jpg b/charte-graphique/m/data/background/150/t23.jpg new file mode 100644 index 0000000..8528e39 Binary files /dev/null and b/charte-graphique/m/data/background/150/t23.jpg differ diff --git a/charte-graphique/m/data/background/150/t24.jpg b/charte-graphique/m/data/background/150/t24.jpg new file mode 100644 index 0000000..e425d23 Binary files /dev/null and b/charte-graphique/m/data/background/150/t24.jpg differ diff --git a/charte-graphique/m/data/background/150/t25.jpg b/charte-graphique/m/data/background/150/t25.jpg new file mode 100644 index 0000000..29a7561 Binary files /dev/null and b/charte-graphique/m/data/background/150/t25.jpg differ diff --git a/charte-graphique/m/data/background/150/t26.jpg b/charte-graphique/m/data/background/150/t26.jpg new file mode 100644 index 0000000..75579d3 Binary files /dev/null and b/charte-graphique/m/data/background/150/t26.jpg differ diff --git a/charte-graphique/m/data/background/150/t27.jpg b/charte-graphique/m/data/background/150/t27.jpg new file mode 100644 index 0000000..925ca0f Binary files /dev/null and b/charte-graphique/m/data/background/150/t27.jpg differ diff --git a/charte-graphique/m/data/background/150/t28.jpg b/charte-graphique/m/data/background/150/t28.jpg new file mode 100644 index 0000000..205f327 Binary files /dev/null and b/charte-graphique/m/data/background/150/t28.jpg differ diff --git a/charte-graphique/m/data/background/150/t29.jpg b/charte-graphique/m/data/background/150/t29.jpg new file mode 100644 index 0000000..bfcfb11 Binary files /dev/null and b/charte-graphique/m/data/background/150/t29.jpg differ diff --git a/charte-graphique/m/data/background/150/t3.jpg b/charte-graphique/m/data/background/150/t3.jpg new file mode 100644 index 0000000..3676fd4 Binary files /dev/null and b/charte-graphique/m/data/background/150/t3.jpg differ diff --git a/charte-graphique/m/data/background/150/t30.jpg b/charte-graphique/m/data/background/150/t30.jpg new file mode 100644 index 0000000..3f707a0 Binary files /dev/null and b/charte-graphique/m/data/background/150/t30.jpg differ diff --git a/charte-graphique/m/data/background/150/t31.jpg b/charte-graphique/m/data/background/150/t31.jpg new file mode 100644 index 0000000..bdde32b Binary files /dev/null and b/charte-graphique/m/data/background/150/t31.jpg differ diff --git a/charte-graphique/m/data/background/150/t32.jpg b/charte-graphique/m/data/background/150/t32.jpg new file mode 100644 index 0000000..205f327 Binary files /dev/null and b/charte-graphique/m/data/background/150/t32.jpg differ diff --git a/charte-graphique/m/data/background/150/t33.jpg b/charte-graphique/m/data/background/150/t33.jpg new file mode 100644 index 0000000..e79a8fd Binary files /dev/null and b/charte-graphique/m/data/background/150/t33.jpg differ diff --git a/charte-graphique/m/data/background/150/t34.jpg b/charte-graphique/m/data/background/150/t34.jpg new file mode 100644 index 0000000..324cb1f Binary files /dev/null and b/charte-graphique/m/data/background/150/t34.jpg differ diff --git a/charte-graphique/m/data/background/150/t35.jpg b/charte-graphique/m/data/background/150/t35.jpg new file mode 100644 index 0000000..733c98e Binary files /dev/null and b/charte-graphique/m/data/background/150/t35.jpg differ diff --git a/charte-graphique/m/data/background/150/t36.jpg b/charte-graphique/m/data/background/150/t36.jpg new file mode 100644 index 0000000..c3f368e Binary files /dev/null and b/charte-graphique/m/data/background/150/t36.jpg differ diff --git a/charte-graphique/m/data/background/150/t37.jpg b/charte-graphique/m/data/background/150/t37.jpg new file mode 100644 index 0000000..925ca0f Binary files /dev/null and b/charte-graphique/m/data/background/150/t37.jpg differ diff --git a/charte-graphique/m/data/background/150/t38.jpg b/charte-graphique/m/data/background/150/t38.jpg new file mode 100644 index 0000000..72c8a3c Binary files /dev/null and b/charte-graphique/m/data/background/150/t38.jpg differ diff --git a/charte-graphique/m/data/background/150/t39.jpg b/charte-graphique/m/data/background/150/t39.jpg new file mode 100644 index 0000000..925ca0f Binary files /dev/null and b/charte-graphique/m/data/background/150/t39.jpg differ diff --git a/charte-graphique/m/data/background/150/t4.jpg b/charte-graphique/m/data/background/150/t4.jpg new file mode 100644 index 0000000..205f327 Binary files /dev/null and b/charte-graphique/m/data/background/150/t4.jpg differ diff --git a/charte-graphique/m/data/background/150/t40.jpg b/charte-graphique/m/data/background/150/t40.jpg new file mode 100644 index 0000000..9b4801c Binary files /dev/null and b/charte-graphique/m/data/background/150/t40.jpg differ diff --git a/charte-graphique/m/data/background/150/t41.jpg b/charte-graphique/m/data/background/150/t41.jpg new file mode 100644 index 0000000..9016e6c Binary files /dev/null and b/charte-graphique/m/data/background/150/t41.jpg differ diff --git a/charte-graphique/m/data/background/150/t42.jpg b/charte-graphique/m/data/background/150/t42.jpg new file mode 100644 index 0000000..838b7f7 Binary files /dev/null and b/charte-graphique/m/data/background/150/t42.jpg differ diff --git a/charte-graphique/m/data/background/150/t43.jpg b/charte-graphique/m/data/background/150/t43.jpg new file mode 100644 index 0000000..925ca0f Binary files /dev/null and b/charte-graphique/m/data/background/150/t43.jpg differ diff --git a/charte-graphique/m/data/background/150/t44.jpg b/charte-graphique/m/data/background/150/t44.jpg new file mode 100644 index 0000000..205f327 Binary files /dev/null and b/charte-graphique/m/data/background/150/t44.jpg differ diff --git a/charte-graphique/m/data/background/150/t45.jpg b/charte-graphique/m/data/background/150/t45.jpg new file mode 100644 index 0000000..bf061b7 Binary files /dev/null and b/charte-graphique/m/data/background/150/t45.jpg differ diff --git a/charte-graphique/m/data/background/150/t46.jpg b/charte-graphique/m/data/background/150/t46.jpg new file mode 100644 index 0000000..d57206f Binary files /dev/null and b/charte-graphique/m/data/background/150/t46.jpg differ diff --git a/charte-graphique/m/data/background/150/t47.jpg b/charte-graphique/m/data/background/150/t47.jpg new file mode 100644 index 0000000..da7927e Binary files /dev/null and b/charte-graphique/m/data/background/150/t47.jpg differ diff --git a/charte-graphique/m/data/background/150/t48.jpg b/charte-graphique/m/data/background/150/t48.jpg new file mode 100644 index 0000000..f083abe Binary files /dev/null and b/charte-graphique/m/data/background/150/t48.jpg differ diff --git a/charte-graphique/m/data/background/150/t49.jpg b/charte-graphique/m/data/background/150/t49.jpg new file mode 100644 index 0000000..43d0319 Binary files /dev/null and b/charte-graphique/m/data/background/150/t49.jpg differ diff --git a/charte-graphique/m/data/background/150/t5.jpg b/charte-graphique/m/data/background/150/t5.jpg new file mode 100644 index 0000000..85c3fe8 Binary files /dev/null and b/charte-graphique/m/data/background/150/t5.jpg differ diff --git a/charte-graphique/m/data/background/150/t50.jpg b/charte-graphique/m/data/background/150/t50.jpg new file mode 100644 index 0000000..205f327 Binary files /dev/null and b/charte-graphique/m/data/background/150/t50.jpg differ diff --git a/charte-graphique/m/data/background/150/t51.jpg b/charte-graphique/m/data/background/150/t51.jpg new file mode 100644 index 0000000..e8c3e34 Binary files /dev/null and b/charte-graphique/m/data/background/150/t51.jpg differ diff --git a/charte-graphique/m/data/background/150/t52.jpg b/charte-graphique/m/data/background/150/t52.jpg new file mode 100644 index 0000000..6051403 Binary files /dev/null and b/charte-graphique/m/data/background/150/t52.jpg differ diff --git a/charte-graphique/m/data/background/150/t6.jpg b/charte-graphique/m/data/background/150/t6.jpg new file mode 100644 index 0000000..a046e83 Binary files /dev/null and b/charte-graphique/m/data/background/150/t6.jpg differ diff --git a/charte-graphique/m/data/background/150/t7.jpg b/charte-graphique/m/data/background/150/t7.jpg new file mode 100644 index 0000000..def858a Binary files /dev/null and b/charte-graphique/m/data/background/150/t7.jpg differ diff --git a/charte-graphique/m/data/background/150/t8.jpg b/charte-graphique/m/data/background/150/t8.jpg new file mode 100644 index 0000000..69316c7 Binary files /dev/null and b/charte-graphique/m/data/background/150/t8.jpg differ diff --git a/charte-graphique/m/data/background/150/t9.jpg b/charte-graphique/m/data/background/150/t9.jpg new file mode 100644 index 0000000..b04d627 Binary files /dev/null and b/charte-graphique/m/data/background/150/t9.jpg differ diff --git a/charte-graphique/m/data/fluidbook.js b/charte-graphique/m/data/fluidbook.js new file mode 100644 index 0000000..aff6de6 --- /dev/null +++ b/charte-graphique/m/data/fluidbook.js @@ -0,0 +1,7 @@ +var DATAS={"version":"2","title":"Levidac - Charte graphique","url_link":"http:\/\/www.levidac.fr","signature":"1","friend":true,"email_title":"","email_body":"","email_editable":true,"askAcknowledge":false,"facebook":true,"facebook_title":"","facebook_description":"","twitter":true,"twitter_description":"%title% : %short%","customSharer":"","friendWidth":319,"friendHeight":500,"pages":52,"width":567,"height":400.91194811674,"visualisationMode":"3","viewMode":"0","antialiasReading":true,"pagesBaseAngle":2,"extraXSpace":0,"extraYSpace":0,"centerBook":true,"fullscreen":true,"navOrder":"index, chapters, print, friend, bookmark, pdf, archives, basket, fullscreen, sound, 3d, help","bookmark":true,"bookmark_email_title":"","bookmark_email_body":"","bookmarkCornerSize":10,"help":true,"helpStartup":false,"helpStartupTime":15,"indexAutoScroll":false,"print":true,"printMode":"vector","printCoverWithMarks":true,"search":false,"ignoreSearch":"","ignoreSearchSeparators":"","textExtraction":"pdfbox","soundTheme":"classic","soundOn":true,"preload":16,"pdf":true,"pdfName":"charte-levidac.pdf","pdfComplex":false,"pdfReplace":"","offlineExport":false,"zoomMode":"0","zoom":200,"zoomw":300,"stats":true,"stats_score":true,"googleAnalytics":"","googleAnalyticsCustom":"","displayChaptersIcon":true,"displayChaptersLine":true,"chaptersPage":"","displayChaptersAtStart":false,"chaptersColumns":1,"chaptersColMaxWidth":300,"chaptersLevelLimit":5,"externalChapters":"","fullExternalChapters":false,"chaptersPosition":"center","chaptersCascade":false,"ongletsXML":"","ongletsSWF":"","tabs2DSWF":"","customLinkClass":"","permanentLinks":false,"linkBlinkTime":1,"linkTooltipManager":"","linkTracker":"","linkTrackerRegexp":"","linkMultimediaPerformanceMode":false,"linkMultimediaQuality":1,"linkCornerSize":10,"videoReset":false,"videoBigPlay":true,"externalArchives":"","archivesLink":"","archivesLabel":"","basket":false,"basketManager":"com.fluidbook.player.basket.BasketManager","basketReferences":"","basketImages":"","basketPDFBackground":"","offlineLink":"http:\/\/","mobileVersion":"html5-images","mobileLVersion":"stable","mobileTransitions":"flip","mobileTransitionDuration":1,"mobileIconVector":true,"mobileServerConfig":false,"mobilePlugins":"","mobileVideosPath":"","phonegapId":"com.fluidbook.phonegap.$id","phonegapVersion":"1.0.0","secureURL":"http:\/\/","secureURLRedirect":"http:\/\/","seoVersion":false,"seoRobots":false,"seoDescription":"","home":"","multilang":"","plv":false,"plvTimer":5,"plvMode":"first","widget":false,"widgetCover":true,"widgetSize":200,"widgetQuality":85,"widgetStart":1,"widgetEnd":8,"extras":"","v1SWF":"","disableDemo":false,"redirectDemo":"","couleurA":"ffffffff","arrowsColor":"283943","shadeOnArrows":false,"couleurB":"c9000000","subTextColor":"ffffffff","subSelectColor":"ffffffff","subTextSelectColor":"000000","subTextFieldColor":"000000","subFieldColor":"fffeffff","subStrokeWidth":0,"subStrokeColor":"ffffff","subShade":"00000000","subRound":10,"subButtonCustom":false,"subButtonBackground":"cccccc","subButtonColor":"000000","subButtonDecoration":"797979","couleurS":"ffffff","searchFieldColor":"ffffff","searchShadeAlpha":0,"highlightColor":"00ff00","searchFieldWidth":230,"searchIndexNoResultColor":"CC000000","iconSet":"1","colorizeIcons":true,"couleurI":"ffffff","iconShadeColor":"00000000","iconsHMargin":13,"fontKit":"auto","bookShadeColor":"9c000000","shadeAlpha":100,"pageReflection":false,"usePageEdges":true,"displayPageNumber":true,"colorPageNumber":"ffffff","linksColor":"006daa","videoBackgroundColor":"000000","popupVideoOverlay":"00000000","pageEdgeColor":"dddddd","pageEdgeThickness":100,"tooltipBackColor":"CC000000","tooltipTextColor":"ffffff","bookmarkBackgroundColor":"ffadadad","bookmarkStarDisabledColor":"00ffffff","bookmarkStarEnabledColor":"ff7700","creditsColor":"80ffffff","transparentBackground":false,"backgroundColor":"333333","backgroundImage":"bg.jpg","repeat":"0","backgroundHAlign":"4","backgroundVAlign":"7","displayBackgroundDuringLoading":true,"menuHeight":39,"menuColor":"00ffffff","shadeOnMenu":false,"menuImage":"","invertMenuPosition":false,"topBar":"","topBarAlign":"5","afterSearch":"","logo":"logo.png","favicon":"","iosicon":"","androidicon":"","logoLoader":"logo.png","couleurL":"283943","loadingSecColor":"ffffff","loadingBackColor":"283943","loaderPosition":false,"pagesBar":true,"pageBarThumbBack":"c9000000","bookmarkColor":"ffffff","plugins":[],"links":{"0":"","1":"","2":"
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>","3":"","4":"","5":"","6":"","7":"","8":"","9":"","10":"","11":"","12":"","13":"","14":"","15":"","16":"","17":"","18":"","19":"","20":"","21":"","22":"","23":"","24":"","25":"","26":"","27":"","28":"","29":"","30":"","31":"","32":"","33":"","34":"","35":"","36":"","37":"","38":"","39":"","40":"","41":"","42":"","43":"","44":"","45":"","46":"","47":"","48":"","49":"","50":"
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>
<\/a><\/div>","51":"","52":"
<\/a><\/div>
<\/a><\/div>","53":"","aftersearch":""},"clinks":{"0":"","1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":"","9":"","10":"","11":"","12":"","13":"","14":"","15":"","16":"","17":"","18":"","19":"","20":"","21":"","22":"","23":"","24":"","25":"","26":"","27":"","28":"","29":"","30":"","31":"","32":"","33":"","34":"","35":"","36":"","37":"","38":"","39":"","40":"","41":"","42":"","43":"","44":"","45":"","46":"","47":"","48":"","49":"","50":"","51":"","52":"","53":"","aftersearch":""},"iconsDimensions":{"nav-bookmark":[21,20],"nav-friend":[19,20],"nav-help":[14,20],"nav-index":[27,20],"nav-sommaire":[22,20],"next":[40,100],"previous":[40,100],"search":[20,20],"nav-facebook":[20,20],"nav-twitter":[20,20],"help-fingers":[400,200],"help-mouse":[100,200],"nav-home":[23,20],"nav-archives":[28,20],"nav-map":[15,20],"nav-tag":[24,20]},"l10n":{"default":{"0":"","you can't bookmark the frontpage":"Vous ne pouvez pas mettre un marque page sur la couverture","the e-mail(s) of your friend(s)":"Destinataires","next double page":"Double page suivante","hover your mouse to display again this help":"Passer votre souris pour afficher \u00e0 nouveau l'aide","download pdf":"T\u00e9l\u00e9charger en pdf","switch between fullscreen and normal":"Basculer entre le mode plein \u00e9cran et le mode normal","switch on \/ switch off the sound":"Activer \/ D\u00e9sactiver le son","between pages":"De la page","printing will start automatically when pages are downloaded":"L'impression va d\u00e9marrer automatiquement dans quelques instants","marked pages":"Pages marqu\u00e9es","tap twice or spread your fingers to zoom in":"Tapez deux fois ou \u00e9cartez les doigts pour zoomer","share on facebook":"Partager sur Facebook","print":"Imprimer","you don't have any bookmarks":"Vous n'avez aucun marque-page","zoom in and out":"Zoomer et d\u00e9zoomer","next page with the word":"R\u00e9sultat suivant","my cart":"Mon panier","click and drag a corner to switch page":"Cliquez-glissez dans un coin pour changer de page","overview":"Index","click to hide help":"Cliquez pour faire dispara\u00eetre l'aide","your name":"Votre nom","click for more information about the product":"Plus d'infos","back to previous page":"Retour \u00e0 la page pr\u00e9c\u00e9dente","%name% invites you to discover %title%":"%name% vous invite \u00e0 d\u00e9couvrir %title%","you need to enter 3 letters to start searching":"Vous devez taper 3 lettres minimum","chapters":"Sommaire","Please click on the following link to open %title : %link%":"Veuillez cliquer sur le lien suivant pour ouvrir %title%\r%link%","add \/ remove bookmark":"Ajouter \/ supprimer un marque-page","last page":"Derni\u00e8re de couverture","click to open the link":"Cliquez pour vous rendre \u00e0 la page web","basket":"Panier","click once to zoom in, click again to zoom out":"Cliquez une fois pour zoomer, cliquez \u00e0 nouveau pour d\u00e9zoomer","click to open the file":"T\u00e9l\u00e9charger le fichier","download":"T\u00e9l\u00e9charger","spread":"Double page","your e-mail":"Votre e-mail","home":"Retour \u00e0 l'accueil","entire brochure":"Toute la brochure","An update of the publication is available. Do you want to load it ?":"Une mise \u00e0 jour de cette publication est disponible. Souhaitez-vous la charger ?","promotions":"Promotions","use a comma to separate several e-mails":"S\u00e9parer plusieurs e-mails avec une virgule","one page per sheet":"Une page par feuille","send":"Envoyer","download the whole document for offline use":"T\u00e9l\u00e9charger le document pour une consultation hors-ligne","share on twitter":"Partager sur Twitter","right page":"Page de droite","preparing print":"Impression en cours","video":"vid\u00e9o","press the link below to open Fluidbook:":"Cliquez sur le lien ci-apr\u00e8s pour ouvrir fluidbook:","archives":"Archives","Send details by email":"Envoyer les coordonn\u00e9es par e-mail","click on a bookmark to go to page":"Cliquez sur un marque-page pour vous rendre \u00e0 cette page","normal view":"Vue normale","search":"Rechercher","zoom in":"Zoomer","next to me":"A proximit\u00e9","tell a friend":"Envoyer \u00e0 un(e) ami(e)","the message":"Votre message","%total% hits on %pages% pages, %this% hits on this page":"%total% r\u00e9sultat(s) sur %pages% page(s), %this% r\u00e9sultat(s) sur cette page","multimedia":"Multim\u00e9dia","hit(s)":"r\u00e9sultat(s)","roll the mouse wheel to zoom in\/out":"Zoomer\/d\u00e9zoomer avec la molette de souris","help":"Aide","no result found":"Aucun r\u00e9sultat","click to send an e-mail":"Envoyer un email","find a distributor":"Trouver un distributeur","back":"Retour","no result on this page":"Pas de r\u00e9sultat sur cette page","go to the page":"Voir la page","zoom out":"D\u00e9zoomer","previous page":"R\u00e9sultat pr\u00e9c\u00e9dent","two pages per sheet":"Deux pages par feuille","fluidbook":"Fluidbook","drag handle to switch page":"Glissez pour changer de page","click to magnify":"Cliquez pour agrandir","previous double page":"Double page pr\u00e9c\u00e9dente","go to page":"Voir la page","Total":"Total","add to cart":"Ajouter au panier","switch between book and overview":"Basculer entre le livre et l'index","click to play the video":"Cliquez pour voir la vid\u00e9o","download for offline use":"T\u00e9l\u00e9charger la version hors-ligne","tel:":"T\u00e9l :","close":"Fermer","left page":"Page de gauche","search results for":"R\u00e9sultats de la recherche","the item has been added to your cart":"L'article a bien \u00e9t\u00e9 ajout\u00e9 au panier","switch between 2d and 3d mode":"Activer \/ D\u00e9sactiver le mode 3D","frontpage":"Couverture"},"ar":{"printing will start automatically when pages are downloaded":"","the item has been added to your cart":"","my cart":"","Total":"","chapters":"\u0627\u0644\u0641\u0635\u0648\u0644","no result found":"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0623\u064a \u0646\u062a\u064a\u062c\u0629","hit(s)":"\u0646\u062a\u0627\u0626\u062c","marked pages":"","entire brochure":"\u0643\u0644 \u0627\u0644\u0635\u0641\u062d\u0627\u062a","you don't have any bookmarks":"","left page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u064a\u0633\u0631\u0649","right page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u064a\u0645\u0646\u0649","spread":"\u0635\u0641\u062d\u0629 \u0645\u0632\u062f\u0648\u062c\u0629","download pdf":"PDF\u062a\u062d\u0645\u064a\u0644","download the whole document for offline use":"","download for offline use":"","print":"\u0637\u0628\u0627\u0639\u0629","drag handle to switch page":"","click and drag a corner to switch page":"\u0627\u0646\u0642\u0631 \u0648\u0627\u0633\u062d\u0628 \u0627\u0644\u0631\u0643\u0646 \u0644\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0635\u0641\u062d\u0629","click once to zoom in, click again to zoom out":"\u0642\u0631 \u0645\u0631\u0629 \u0648\u0627\u062d\u062f\u0629 \u0644\u0644\u062a\u0643\u0628\u064a\u0631\u060c \u062b\u0645 \u0627\u0646\u0642\u0631 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649 \u0644\u0644\u062a\u0635\u063a\u064a\u0631","roll the mouse wheel to zoom in\/out":"\u062f\u0648\u0651\u0631 \u0639\u062c\u0644\u0629 \u0627\u0644\u0645\u0627\u0648\u0633 \u0644\u0644\u062a\u0643\u0628\u064a\u0631\/\u0627\u0644\u062a\u0635\u063a\u064a\u0631","previous double page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0645\u0632\u062f\u0648\u062c\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629","frontpage":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0623\u0648\u0644\u0649","next double page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0645\u0632\u062f\u0648\u062c\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629","last page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0623\u062e\u064a\u0631\u0629","add to cart":"","click to send an e-mail":"\u0627\u0646\u0642\u0631 \u0644\u0625\u0631\u0633\u0627\u0644 \u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","click to open the file":"","click to open the link":"\u0627\u0646\u0642\u0631 \u0644\u0641\u062a\u062d \u0627\u0644\u0648\u0635\u0644\u0629","go to the page":"\u0627\u0630\u0647\u0628 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062d\u0629","click to play the video":"","click for more information about the product":"\u0625\u0636\u063a\u0637 \u0647\u0646\u0627 \u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062d\u0648\u0644 \u0627\u0644\u0645\u0646\u062a\u062c","click to magnify":"","switch between book and overview":"\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0628\u064a\u0646 \u0627\u0644\u0643\u062a\u0627\u0628 \u0648\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","tell a friend":"\u0623\u062e\u0628\u0631 \u0635\u062f\u064a\u0642","add \/ remove bookmark":"\u0625\u0636\u0627\u0641\u0629 \/\u0625\u0632\u0627\u0644\u0629 \u0639\u0644\u0627\u0645\u0629 \u0645\u0631\u062c\u0639\u064a\u0629","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","help":"\u0645\u0633\u0627\u0639\u062f\u0629","search":"\u0628\u062d\u062b","you need to enter 3 letters to start searching":"\u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0625\u062f\u062e\u0627\u0644 3 \u0623\u062d\u0631\u0641 \u0644\u0628\u062f\u0621 \u0627\u0644\u0628\u062d\u062b","previous page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629","next page with the word":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0645\u0639 \u0627\u0644\u0643\u0644\u0645\u0629","%total% hits on %pages% pages, %this% hits on this page":"\u0646\u062a\u0627\u0626\u062c \u0639\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629%this% \u060c\u0627\u0644\u0635\u0641\u062d\u0627\u062a %pages% \u0646\u062a\u0627\u0626\u062c \u0639\u0644\u0649%total%","your name":"\u0627\u0633\u0645\u0643","your e-mail":"\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","the e-mail(s) of your friend(s)":"\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0644\u0635\u062f\u064a\u0642\u0643","use a comma to separate several e-mails":"","the message":"\u0627\u0644\u0631\u0633\u0627\u0644\u0629","send":"\u0627\u0631\u0633\u0644","overview":"\ufeff\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","normal view":"\u0645\u0642\u0627\u0633 \u0639\u0627\u062f\u064a","zoom in":"\u062a\u0643\u0628\u064a\u0631","zoom out":"\u062a\u0635\u063a\u064a\u0631","zoom in and out":"\u062a\u0643\u0628\u064a\u0631 \u0648\u062a\u0635\u063a\u064a\u0631","click on a bookmark to go to page":"\u0627\u0646\u0642\u0631 \u0639\u0644\u0649 \u0627\u0644\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0645\u0631\u062c\u0639\u064a\u0629 \u0644\u0644\u0630\u0647\u0627\u0628 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062d\u0629","preparing print":"\u0625\u0639\u062f\u0627\u062f \u0627\u0644\u0637\u0628\u0627\u0639\u0629","between pages":"\u0628\u064a\u0646 \u0627\u0644\u0635\u0641\u062d\u0627\u062a","one page per sheet":"\u0635\u0641\u062d\u0629 \u0648\u0627\u062d\u062f\u0629 \u0644\u0643\u0644 \u0648\u0631\u0642\u0629","two pages per sheet":"\u0635\u0641\u062d\u062a\u064a\u0646 \u0644\u0643\u0644 \u0648\u0631\u0642\u0629","print-":"\u0637\u0628\u0627\u0639\u0629","close":"\u0625\u063a\u0644\u0627\u0642","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"\u0627\u0636\u063a\u0637 \u0639\u0644\u0649 \u0627\u0644\u0648\u0635\u0644\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0644\u0641\u062a\u062d \u0641\u0644\u0648\u064a\u062f \u0628\u0648\u0643:","go to page":"\u0627\u0630\u0647\u0628 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062d\u0629","you can't bookmark the frontpage":"\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062d\u0641\u0638 \u0639\u0644\u0627\u0645\u0629 \u0645\u0631\u062c\u0639\u064a\u0629 \u0644\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0627\u0648\u0644\u0649","video":"\u0641\u064a\u062f\u064a\u0648","multimedia":"\u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629","no result on this page":"\u0644\u0627 \u0646\u062a\u0627\u0626\u062c \u0641\u064a \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629","":""},"cs":{"printing will start automatically when pages are downloaded":"Tisk bude zah\u00e1jen automaticky po sta\u017een\u00ed str\u00e1nek","normal view":"Norm\u00e1ln\u00ed zobrazen\u00ed","zoom in":"P\u0159ibl\u00ed\u017eit","zoom out":"Odd\u00e1lit","print":"Tisk","tell a friend":"Doporu\u010d zn\u00e1m\u00e9mu","search":"Hledat","add \/ remove bookmark":"P\u0159idat \/ odebrat z\u00e1lo\u017eku","download pdf":"St\u00e1hnout pdf","help":"N\u00e1pov\u011bda","switch between book and overview":"P\u0159epnout mezi dvoustr\u00e1nkou a p\u0159ehledem","zoom in and out":"P\u0159ibl\u00ed\u017eit a odd\u00e1lit","previous double page":"P\u0159edchoz\u00ed dvoustr\u00e1nka","frontpage":"Tituln\u00ed str\u00e1nka","next double page":"Dal\u0161\u00ed dvoustr\u00e1nka","last page":"Posledn\u00ed str\u00e1nka","click once to zoom in, click again to zoom out":"Klikn\u011bte jednou pro zv\u011bt\u0161en\u00ed, klikn\u011bte op\u011bt na odd\u00e1len\u00ed","roll the mouse wheel to zoom in\/out":"Ot\u00e1\u010den\u00edm kole\u010dka my\u0161i p\u0159ibl\u00ed\u017eit\/odd\u00e1lit","click and drag a corner to switch page":"Kliknut\u00edm a t\u00e1hnut\u00edm za roh p\u0159ej\u00edt na str\u00e1nku","click on a bookmark to go to page":"Kliknut\u00edm na z\u00e1lo\u017eku p\u0159ej\u00edt na str\u00e1nku","preparing print":"P\u0159\u00edprava tisku","right page":"Prav\u00e1 str\u00e1nka","left page":"Lev\u00e1 str\u00e1nka","spread":"Na dv\u011b str\u00e1nky","entire brochure":"Kompletn\u00ed bro\u017eura","between pages":"Mezi str\u00e1nkami","one page per sheet":"Jedna str\u00e1nka na list pap\u00edru","two pages per sheet":"Dvoustr\u00e1nka na list pap\u00edru","close":"Zav\u0159\u00edt","your name":"Va\u0161e jm\u00e9no","the message":"Va\u0161e zpr\u00e1va","the e-mail(s) of your friend(s)":"Email Va\u0161eho zn\u00e1m\u00e9ho","send":"Poslat","no result found":"\u017d\u00e1dn\u00fd v\u00fdsledek","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Kliknut\u00edm na n\u00ed\u017ee uveden\u00fd odkaz otev\u0159ete Fluidbook:","next page with the word":"Dal\u0161\u00ed v\u00fdsledek","previous page":"P\u0159edchoz\u00ed v\u00fdsledek","%total% hits on %pages% pages, %this% hits on this page":"%total% v\u00fdsledek (-y\/-\u016f) na %pages% str\u00e1nce (-\u00e1ch), %this% Tento v\u00fdsledek (-\u016f) na t\u00e9to str\u00e1nce","chapters":"P\u0159ehled","marked pages":"","you need to enter 3 letters to start searching":"Zadejte 3 p\u00edsmena k aktivaci vyhled\u00e1n\u00ed","hit(s)":"V\u00fdsledek (-y\/-\u016f) ","go to page":"P\u0159ej\u00edt na str\u00e1nku","you can't bookmark the frontpage":"Nelze zaz\u00e1lo\u017ekovat obal","click for more information about the product":"V\u00edce informac\u00ed","click to open the link":"Kliknut\u00edm otev\u0159ete odkaz","click to send an e-mail":"Odeslat e-mail","video":"video","go to the page":"P\u0159ej\u00edt na str\u00e1nku","multimedia":"Multim\u00e9dia","no result on this page":"Na str\u00e1nce nic nenalezeno","your e-mail":"V\u00e1\u0161 e-mail","use a comma to separate several e-mails":"Jednotliv\u00e9 e-mailov\u00e9 adresy odd\u011blte \u010d\u00e1rkou","0":"","click to magnify":"Kliknut\u00edm zv\u011bt\u0161\u00edte zobrazen\u00ed","the item has been added to your cart":"Polo\u017eka byla p\u0159id\u00e1na do va\u0161eho ko\u0161\u00edku","my cart":"M\u016fj ko\u0161\u00edk","Total":"Celkem","back":"zp\u00e1tky","you don't have any bookmarks":"Nem\u00e1te \u017e\u00e1dn\u00e9 z\u00e1lo\u017eky","download the whole document for offline use":"St\u00e1hn\u011bte cel\u00fd dokument pro \u00fa\u010dely pou\u017eit\u00ed offline","download for offline use":"St\u00e1hnout pro \u00fa\u010dely pou\u017eit\u00ed offline","drag handle to switch page":"Ta\u017een\u00edm za manipul\u00e1tor lze p\u0159ep\u00ednat mezi str\u00e1nkami","add to cart":"P\u0159idat do ko\u0161\u00edku","click to open the file":"Kliknut\u00edm otev\u0159ete soubor","click to play the video":"Kliknut\u00edm p\u0159ehrajete video","back to previous page":"Zp\u011bt na p\u0159edchoz\u00ed str\u00e1nku","download":"St\u00e1hnout","archives":"Archivy","basket":"ko\u0161\u00edk","switch between fullscreen and normal":"P\u0159ep\u00edn\u00e1n\u00ed mezi norm\u00e1ln\u00edm re\u017eimem a re\u017eimem cel\u00e9 obrazovky","switch on \/ switch off the sound":"Zapnut\u00ed \/ vypnut\u00ed zvuku","switch between 2d and 3d mode":"P\u0159ep\u00edn\u00e1n\u00ed mezi re\u017eimem 2d a 3d","%name% invites you to discover %title%":"%name% by v\u00e1m r\u00e1d uk\u00e1zal %title%\n","Please click on the following link to open %title : %link%":"Klikn\u011bte na n\u00e1sleduj\u00edc\u00ed odkaz a otev\u0159ete %title%\n%link%","overview":"P\u0159ehled","search results for":"V\u00fdsledky hled\u00e1n\u00ed","tap twice or spread your fingers to zoom in":"Klepn\u011bte dvakr\u00e1t nebo rozt\u00e1hnout prsty pro zv\u011bt\u0161en\u00ed","share on facebook":"Facebook","share on twitter":"Twitter"},"da":{"printing will start automatically when pages are downloaded":"Udskrivning vil starte automatisk n\u00e5r sider er hentet","normal view":"Normal st\u00f8rrelse","zoom in":"Zoom ind","zoom out":"Zoom ud","print":"Udskriv","tell a friend":"Send til en ven","search":"S\u00f8g","add \/ remove bookmark":"Tilf\u00f8j\/fjern bogm\u00e6rke","download pdf":"Download pdf","help":"Hj\u00e6lp","switch between book and overview":"Skift mellem bog og oversigt","zoom in and out":"Zoom ind og ud","previous double page":"Forrige dobbeltside","frontpage":"Forside","next double page":"N\u00e6ste dobbeltside","last page":"Sidste side","click once to zoom in, click again to zoom out":"Klik \u00e9n gang for at zoome ind; klik igen for at zoome ud","roll the mouse wheel to zoom in\/out":"Scroll p\u00e5 musen for at zoome ind\/ud","click and drag a corner to switch page":"Klik og tr\u00e6k i et hj\u00f8rne for at skifte side","click on a bookmark to go to page":"Klik p\u00e5 et bogm\u00e6rke for at g\u00e5 til side","preparing print":"Forbered udskrivning","right page":"H\u00f8jre side","left page":"Venstre side","spread":"Fold ud","entire brochure":"Hele brochuren","between pages":"Mellem sider","one page per sheet":"En side pr ark","two pages per sheet":"To sider pr ark","close":"Luk","your name":"Dit navn","the message":"Meddelelsen","the e-mail(s) of your friend(s)":"Din vens e-mail-adresse\/dine venners e-mail-adresser","send":"Send","no result found":"Der er ikke fundet noget resultat","fluidbook":"Fluidbook ","press the link below to open Fluidbook:":"Klik p\u00e5 linket nedenfor for at \u00e5bne Fluidbook:","next page with the word":"N\u00e6ste side med ordet","previous page":"Forrige side","%total% hits on %pages% pages, %this% hits on this page":"%total% antal p\u00e5 %sider%sider, %denne% antal p\u00e5 denne side","chapters":"Afsnit","marked pages":"Markedssider","you need to enter 3 letters to start searching":"Du skal angive 3 bogstaver for at kunne begynde s\u00f8gning","hit(s)":"antal","go to page":"G\u00e5 til side","you can't bookmark the frontpage":"Du kan ikke bookmarke forsiden","click for more information about the product":"Klik for at f\u00e5 mere information om produktet","click to open the link":"Klik for at \u00e5bne linket","click to send an e-mail":"Klik for at sende en e-mail","video":"video","go to the page":"G\u00e5 til siden","multimedia":"multimedia","no result on this page":"Intet resultat p\u00e5 denne side","your e-mail":"Din e-mail-adresse","use a comma to separate several e-mails":"Brug et komma til at adskille flere e-mail-adresser","0":"","click to magnify":"Klik for at forst\u00f8rre","the item has been added to your cart":"Varen er blevet f\u00f8jet til din indk\u00f8bskurv","my cart":"Min indk\u00f8bskurv","Total":"I alt","back":"tilbage","you don't have any bookmarks":"Du har ingen bogm\u00e6rker","download the whole document for offline use":"Hent hele dokumentet til offline-brug","download for offline use":"Hent til offline-brug","drag handle to switch page":"Tr\u00e6k h\u00e5ndtag for at skifte side","add to cart":"Tilf\u00f8j til indk\u00f8bskurv","click to open the file":"Klik for at \u00e5bne filen","click to play the video":"Klik for at afspille videoen","back to previous page":"","download":"Hent","archives":"Arkiver","basket":"Din indk\u00f8bskurv","switch between fullscreen and normal":"Skift mellem fuld sk\u00e6rm og normal","switch on \/ switch off the sound":"T\u00e6nd\/Sluk for lyden","switch between 2d and 3d mode":"Skift mellem 2d og 3d tilstand","%name% invites you to discover %title%":"%name% synes, at du skal se p\u00e5 %title%\n","Please click on the following link to open %title : %link%":"Klik p\u00e5 linket nedenfor for at \u00e5bne %title%\n%link%","overview":"Oversigt","search results for":"s\u00f8geresultaterne for","tap twice or spread your fingers to zoom in":"Tryk to gange eller sprede dine fingre til at zoome ind","share on facebook":"Del p\u00e5 Facebook","share on twitter":"Del p\u00e5 Twitter"},"de":{"click to hide help":"","hover your mouse to display again this help":"","you don't have any bookmarks":"Sie haben kein Lesezeichen gesetzt","printing will start automatically when pages are downloaded":"Der Druckvorgang wird in einigen Sekunden automatisch gestartet","normal view":"Seitenansicht","zoom in":"Vergr\u00f6ssern","zoom out":"Verkleinern","print":"Drucken","tell a friend":"An einen Freund senden ","search":"Suchen","add \/ remove bookmark":"Lesezeichen setzen\/l\u00f6schen","download pdf":"Als Pdf downloaden","help":"Hilfe","switch between book and overview":"Zwischen Seitenansicht und Prospekt\u00fcbersicht wechseln","zoom in and out":"Vergr\u00f6ssern und verkleinern","previous double page":"Vorherige Doppelseite","frontpage":"Titelseite","next double page":"Folgende Doppelseite","last page":"Letzte Titelseite","click once to zoom in, click again to zoom out":"Einmal klicken zum Vergr\u00f6ssern, erneut klicken zum Verkleinern","roll the mouse wheel to zoom in\/out":"Vergr\u00f6ssern\/Verkleinern mit dem Mausrad","click and drag a corner to switch page":"In die Ecke klicken, um die Seite umzubl\u00e4ttern","click on a bookmark to go to page":"Ein Lesezeichen anklicken, um zu dieser Seite zu gelangen","preparing print":"Druckauftrag l\u00e4uft","right page":"Rechte Seite","left page":"Linke Seite","spread":"Doppelseite","entire brochure":"Gesamte Brosch\u00fcre","between pages":"Von Seite","one page per sheet":"Ein Blatt pro Seite","two pages per sheet":"Zwei Seiten pro Blatt","close":"Schliessen","your name":"Ihr Name","the message":"Ihre Mitteilung","the e-mail(s) of your friend(s)":"E-Mail Ihres Freundes","send":"Senden","no result found":"Kein Ergebnis","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Klicken Sie den folgenden Link an, um das Fluidbook zu \u00f6ffnen","next page with the word":"N\u00e4chstes Ergebnis","previous page":"Vorheriges Ergebnis","%total% hits on %pages% pages, %this% hits on this page":"%total% Ergebins(se) auf %pages% Seite(n) %this% Ergbnis(se) auf dieser Seite","chapters":"Inhaltsverzeichnis","marked pages":"Markierten Seiten","you need to enter 3 letters to start searching":"Sie m\u00fcssen mindestens 3 Buchstaben tippen","hit(s)":"Ergebnis(se)","go to page":"Siehe Seite","you can't bookmark the frontpage":"Auf den Aussenseiten sind keine Lesezeichen m\u00f6glich","click for more information about the product":"Mehr Infos","click to open the link":"Klicken, um zur Website zu gelangen","click to send an e-mail":"E-Mail versenden","video":"video","go to the page":"Siehe Seite","multimedia":"Multimedia","no result on this page":"Kein Ergebnis auf dieser Seite","your e-mail":"Ihr E-Mail","use a comma to separate several e-mails":"Mehrere E-Mail-Adressen mit einem Komma trennen","":"","click to magnify":"Klicken zum Vergr\u00f6\u00dfern","the item has been added to your cart":"The item has beend added to your cart","my cart":"Mein Einkaufswagen","Total":"Gesamt","share bookmarks":"Senden markierten Seiten","%title%":"%title%","Please see the attached files from \"%title%\".":"Bitte beachten Sie die angeh\u00e4ngten Dateien von \"% title%\".","bookmarks":"Lesezeichen ","back":"Zur\u00fcckkehren","download the whole document for offline use":"Download des Dokuments f\u00fcr eine Ansicht im offline-Modus","download for offline use":"Download der offline-Version","drag handle to switch page":"Zum Umbl\u00e4ttern die Maus mit gedr\u00fcckter Taste \u00fcber die Seite ziehen","add to cart":"In den Einkaufswagen legen","click to open the file":"Datei downloaden","click to play the video":"Video abspielen","back to previous page":"Zur\u00fcck zur vorherigen Seite","download":"Download","archives":"Archiv","basket":"Warenkorb","switch between fullscreen and normal":"Zwischen Vollbildmodus und normaler Ansicht wechseln","switch on \/ switch off the sound":"Ton einschalten \/ ausschalten","switch between 2d and 3d mode":"3D-Ansicht einschalten \/ ausschalten","share by email":"Aktien per E-Mail","share on twitter":"Aktien mit twitter","share on facebook":"Aktien mit facebook","share":"","%name% invites you to discover %title%":"%name% m\u00f6chte Sie auf %title% aufmerksam machen\n","Please click on the following link to open %title : %link%":"Klicken Sie auf den Link weiter unten, um %title% zu \u00f6ffnen \n%link%","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"Tippen Sie zweimal oder verbreiten Sie Ihre Finger, um zu vergr\u00f6\u00dfern","overview":"Prospekt-\u00fcbersicht","search results for":"Suchergebnisse f\u00fcr","home":"Home","find a distributor":"Finden Sie einen H\u00e4ndler","tel:":"Tel:","Send details by email":"Senden Sie Informationen per E-Mail","promotions":"Promotionen","next to me":"Neben mir"},"el":{"printing will start automatically when pages are downloaded":"","chapters":"\u039a\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1","no result found":"\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03bc\u03b1","hit(s)":"\u03c7\u03c4\u03cd\u03c0\u03b7\u03bc\u03b1(\u03c7\u03c4\u03c5\u03c0\u03ae\u03bc\u03b1\u03c4\u03b1)","marked pages":"\u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2","entire brochure":"\u038c\u03bb\u03bf \u03c4\u03bf \u03c6\u03c5\u03bb\u03bb\u03ac\u03b4\u03b9\u03bf","you don't have any bookmarks":"","left page":"\u0391\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ae \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","right page":"\u0394\u03b5\u03be\u03b9\u03ac \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","spread":"\u0394\u03b9\u03ac\u03ba\u03b5\u03bd\u03bf","download pdf":"\u039a\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 pdf","download the whole document for offline use":"","download for offline use":"","print":"\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7","drag handle to switch page":"","click and drag a corner to switch page":"\u039a\u03bb\u03b9\u03ba\u03ac\u03c1\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03c3\u03cd\u03c1\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b3\u03c9\u03bd\u03af\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03c4\u03b5 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","click once to zoom in, click again to zoom out":"\u039c\u03b5 \u03b5\u03bd\u03b1 \u03ba\u03bb\u03b9\u03ba \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 zoom in \u03ba\u03b1\u03b9 \u03bc\u03b5 \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03bf \u03ba\u03bb\u03b9\u03ba zoom out","roll the mouse wheel to zoom in\/out":"\u039a\u03c5\u03bb\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03ba\u03bf\u03c5\u03bc\u03c0\u03af \u03c3\u03c4\u03bf \u03c0\u03bf\u03bd\u03c4\u03af\u03ba\u03b9 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 zoom in\/out","previous double page":"\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03b4\u03b9\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf","frontpage":"\u03a0\u03c1\u03ce\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","next double page":"\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b4\u03b9\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf","last page":"\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","click to send an e-mail":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03c4\u03b5 e-mail","click to open the file":"","click to open the link":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf","go to the page":"\u039c\u03b5\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","click to play the video":"","click for more information about the product":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b3\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd","click to magnify":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b3\u03b9\u03b1 \u03bc\u03b5\u03b3\u03ad\u03b8\u03c5\u03bd\u03c3\u03b7","switch between book and overview":"\u0391\u03bb\u03bb\u03ac\u03be\u03c4\u03b5 \u03bc\u03b5\u03c4\u03b1\u03be\u03cd \u03b2\u03b9\u03b2\u03bb\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7\u03c2","tell a friend":"\u03a0\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c6\u03af\u03bb\u03bf","add \/ remove bookmark":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5\/\u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03c4\u03b5 \u03c3\u03b5\u03bb\u03b9\u03b4\u03bf\u03b4\u03b5\u03af\u03ba\u03c4\u03b7","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","help":"\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1","search":"\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7","you need to enter 3 letters to start searching":"\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 3 \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03c3\u03b5\u03b9 \u03b7 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7","previous page":"\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","next page with the word":"\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03bc\u03b5 \u03c4\u03b7 \u03bb\u03ad\u03be\u03b7","%total% hits on %pages% pages, %this% hits on this page":"%total% \u03c7\u03c1\u03c5\u03c0\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c3\u03b5 %pages% \u03c3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2, %this% \u03c7\u03c4\u03c5\u03c0\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","your name":"\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c3\u03b1\u03c2","your e-mail":"\u03a4\u03bf e-mail \u03c3\u03b1\u03c2","the e-mail(s) of your friend(s)":"\u03a4\u03b1 e-mail \u03c4\u03bf\u03c5 \u03c6\u03af\u03bb\u03bf\u03c5\/\u03c6\u03af\u03bb\u03c9\u03bd \u03c3\u03b1\u03c2","use a comma to separate several e-mails":"\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c3\u03c4\u03b5 \u03ba\u03cc\u03bc\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b5\u03c7\u03c9\u03c1\u03af\u03c3\u03b5\u03c4\u03b5 \u03c0\u03bf\u03bb\u03bb\u03ac e-mails","the message":"\u03a4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1","send":"\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae","overview":"\u03a0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7","normal view":"\u039a\u03b1\u03bd\u03bf\u03bd\u03b9\u03ba\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1","zoom in":"Zoom in","zoom out":"Zoom out","zoom in and out":"Zoom in \u03ba\u03b1\u03b9 out","click on a bookmark to go to page":"\u039a\u03bb\u03b9\u03ba\u03ac\u03c1\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c3\u03b5\u03bb\u03b9\u03b4\u03bf\u03b4\u03b5\u03af\u03ba\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03ac\u03c4\u03b5 \u03c3\u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","preparing print":"\u03a0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7\u03c2","between pages":"\u039c\u03b5\u03c4\u03b1\u03be\u03cd \u03c4\u03c9\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03c9\u03bd","one page per sheet":"\u039c\u03b9\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03b1\u03bd\u03ac \u03c6\u03cd\u03bb\u03bb\u03bf","two pages per sheet":"\u0394\u03c5\u03bf \u03c3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 \u03b1\u03bd\u03ac \u03c6\u03cd\u03bb\u03bb\u03bf","print-":"\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7","close":"\u039a\u03bb\u03b5\u03af\u03c3\u03c4\u03b5","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"\u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03bf Fluidbook:","go to page":"\u039c\u03b5\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","you can't bookmark the frontpage":"\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b5 \u03c3\u03b5\u03bb\u03b9\u03b4\u03bf\u03b4\u03b5\u03af\u03ba\u03c4\u03b7 \u03c4\u03b7\u03bd \u03c0\u03c1\u03ce\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","video":"\u03b2\u03af\u03bd\u03c4\u03b5\u03bf","multimedia":"\u03a0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1","no result on this page":"\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","":""},"en":{"click to hide help":"Click to hide help","hover your mouse to display again this help":"Hover your mouse to display again this help","you don't have any bookmarks":"You don't have any bookmarks","printing will start automatically when pages are downloaded":"Printing will start automatically when pages are downloaded","normal view":"Normal view","zoom in":"Zoom in","zoom out":"Zoom out","print":"Print","tell a friend":"Tell a friend","search":"Search","add \/ remove bookmark":"Add \/ remove bookmark","download pdf":"Download pdf","help":"Help","switch between book and overview":"Switch between book and overview","zoom in and out":"Zoom in and out","previous double page":"Previous double page","frontpage":"Frontpage","next double page":"Next double page","last page":"Last page","click once to zoom in, click again to zoom out":"Click once to zoom in, click again to zoom out","roll the mouse wheel to zoom in\/out":"Roll the mouse wheel to zoom in\/out","click and drag a corner to switch page":"Click and drag a corner to switch page","click on a bookmark to go to page":"Click on a bookmark to go to page","preparing print":"Preparing print","right page":"Right page","left page":"Left page","spread":"Spread","entire brochure":"Entire brochure","between pages":"Between pages","one page per sheet":"One page per sheet","two pages per sheet":"Two pages per sheet","close":"Close","your name":"Your name","the message":"The message","the e-mail(s) of your friend(s)":"The e-mail(s) of your friend(s)","send":"Send","no result found":"No result found","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Press the link below to open Fluidbook:","next page with the word":"Next page with the word","previous page":"Previous page","%total% hits on %pages% pages, %this% hits on this page":"%total% hits on %pages% pages, %this% hits on this page","chapters":"Contents","marked pages":"Marked pages","you need to enter 3 letters to start searching":"You need to enter 3 letters to start searching","hit(s)":"hit(s)","go to page":"Go to page","you can't bookmark the frontpage":"You can't bookmark the frontpage","click for more information about the product":"Click for more information about the product","click to open the link":"Click to open the link","click to send an e-mail":"Click to send an e-mail","video":"video","go to the page":"Go to the page","multimedia":"Multimedia","no result on this page":"No result on this page","your e-mail":"Your e-mail","use a comma to separate several e-mails":"Use a comma to separate several e-mails","":"","click to magnify":"Click to magnify","the item has been added to your cart":"The item has been added to your cart","my cart":"My cart","Total":"Total","share bookmarks":"Send pages marked","%title%":"%title%","Please see the attached files from \"%title%\".":"Please find attached the extracted files from \"%title%\".","bookmarks":"Bookmarks","back":"Back","download the whole document for offline use":"Downlad the whole document for offline use","download for offline use":"Download for offline use","drag handle to switch page":"Drag handle to switch page","add to cart":"Add to cart","click to open the file":"Click to open the file","click to play the video":"Click to play the video","back to previous page":"Back to previous page","download":"Download","archives":"Archives","basket":"Your cart","switch between fullscreen and normal":"Switch between fullscreen and normal","switch on \/ switch off the sound":"Switch on \/ switch off the sound","switch between 2d and 3d mode":"Switch between 2d and 3d mode","share by email":"Share by email","share on twitter":"Share on Twitter","share on facebook":"Share on Facebook","share":"Share","%name% invites you to discover %title%":"%name% invites you to discover %title%","Please click on the following link to open %title : %link%":"Please click on the following link to open %title%\n%link%","An update of the publication is available. Do you want to load it ?":"An update of the publication is available. Do you want to load it ?","tap twice or spread your fingers to zoom in":"Tap twice or spread your fingers to zoom in","overview":"Overview","search results for":"Search results for","home":"Back to home","find a distributor":"Find a distributor","tel:":"Tel:","Send details by email":"Send details by email","promotions":"Promotions","next to me":"Next to me"},"es":{"click to hide help":"","hover your mouse to display again this help":"","you don't have any bookmarks":"No tiene ning\u00fan marcador","printing will start automatically when pages are downloaded":"En beve se inicia La impresi\u00f3n automaticamente","normal view":"Vista normal","zoom in":"Ampliar","zoom out":"Reducir","print":"Imprimir ","tell a friend":"Enviar a un amigo ","search":"Buscar","add \/ remove bookmark":"A\u00f1adir\/suprimir un marcador de p\u00e1ginas","download pdf":"Descargar en formato pdf","help":"Ayuda","switch between book and overview":"Pasar del libro al \u00edndice","zoom in and out":"Ampliar y reducir","previous double page":"Doble p\u00e1gina anterior","frontpage":"Portada ","next double page":"P\u00e1gina doble siguiente","last page":"\u00daltima portada","click once to zoom in, click again to zoom out":"Haga clic una vez para ampliar, haga clic de nuevo para reducir","roll the mouse wheel to zoom in\/out":"Ampliar o reducir con la rueda del r\u00e1ton","click and drag a corner to switch page":"Haga clic-deslice hacia una esquina para cambiar de p\u00e1gina","click on a bookmark to go to page":"Haga clic sobre un marcador de p\u00e1ginas para llegar a esta p\u00e1gina","preparing print":"Impresi\u00f3n en curso","right page":"P\u00e1gina de la derecha","left page":"P\u00e1gina de la izquierda","spread":"Doble p\u00e1gina","entire brochure":"Cat\u00e1logo completo","between pages":"De la p\u00e1gina","one page per sheet":"Una pagin\u00e1 por hoja","two pages per sheet":"Dos p\u00e1ginas por hoja","close":"Cerrar","your name":"Su nombre ","the message":"Su mensaje","the e-mail(s) of your friend(s)":"El e-mail de su amigo","send":"Enviar","no result found":"No se encontr\u00f3 ning\u00fan resultado","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Cliquee sobre este enlace para abrir el fluidbook :","next page with the word":"Resultado siguiente","previous page":"Resultado anterior","%total% hits on %pages% pages, %this% hits on this page":"%total% resultado(s) sobre %pages% p\u00e1gina(s), %this% sobre esta pagin\u00e1 ","chapters":"Sumario","marked pages":"Marcador","you need to enter 3 letters to start searching":"Debe teclear o introducir 3 letras como m\u00ednimo","hit(s)":"Resultados","go to page":"Ver la pagin\u00e1","you can't bookmark the frontpage":"No puede introducir un marcador de pagin\u00e1 en la portada","click for more information about the product":"Mas informaci\u00f3n","click to open the link":"Haz clic para ir a la p\u00e1gina web","click to send an e-mail":"Enviar un e-mail","video":"Video","go to the page":"Ver la p\u00e1gina","multimedia":"Multimedia","no result on this page":"Sin resultado en esta p\u00e1gina","your e-mail":"Su e-mail","use a comma to separate several e-mails":"Separar varios e-mails con coma","":"","click to magnify":"Pulsa para aumentar","the item has been added to your cart":"El art\u00edculo se ha a\u00f1adido a su cesta","my cart":"Mi cesta","Total":"Total","share bookmarks":"Enviar p\u00e1ginas marcadas","%title%":"%title%","Please see the attached files from \"%title%\".":"Se adjunta los archivos extra\u00eddos en \"% title%\".","bookmarks":"Marcadores","back":"Volver","download the whole document for offline use":"Descargar el documento para consultar sin conexi\u00f3n","download for offline use":"Descargar la versi\u00f3n sin conexi\u00f3n","drag handle to switch page":"Deslice para pasar la p\u00e1gina","add to cart":"A\u00f1adir a la cesta","click to open the file":"Descargar el archivo","click to play the video":"Reproducir el v\u00eddeo","back to previous page":"Vuelva a la p\u00e1gina anterior","download":"Descargar","archives":"Archivos","basket":"Cesta","switch between fullscreen and normal":"Activar\/desactivar el modo pantalla completa","switch on \/ switch off the sound":"Activar\/desactivar el sonido","switch between 2d and 3d mode":"Activar\/desactivar el modo 3D","share by email":"Compartir por email","share on twitter":"Compartir por twitter","share on facebook":"Compartir por facebook","share":"","%name% invites you to discover %title%":"%name% le gustar\u00eda mostrarle %title%\n","Please click on the following link to open %title : %link%":"Pulse sobre el enlace de abajo para abrir %title% ","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"Toque dos veces o difundir sus dedos para hacer zoom","overview":"\u00cdndice","search results for":"Resultados de la b\u00fasqueda","home":"Home","find a distributor":"Encontrar un distribuidor","tel:":"Tel : ","Send details by email":"Enviar detalles por correo electr\u00f3nico","promotions":"Promociones","next to me":"Cerca de m\u00ed"},"fi":{"printing will start automatically when pages are downloaded":"Tulostus alkaa automaattisesti sivujen latauduttua","normal view":"Normaali n\u00e4kym\u00e4","zoom in":"Suurenna","zoom out":"Pienenn\u00e4","print":"Tulosta","tell a friend":"Kerro yst\u00e4v\u00e4lle","search":"Haku","add \/ remove bookmark":"Lis\u00e4\u00e4 \/poista kirjanmerkki","download pdf":"Lataa pdf","help":"Ohje","switch between book and overview":"Vaihda kirjan ja yleisn\u00e4kym\u00e4n v\u00e4lill\u00e4","zoom in and out":"Suurenna ja pienenn\u00e4","previous double page":"Aikaisempi aukeama","frontpage":"Etusivu","next double page":"Seuraava aukeama","last page":"Viimeinen sivu","click once to zoom in, click again to zoom out":"Klikkaa kerran suurentaaksesi, ja klikkaa toisen kerran pienent\u00e4\u00e4ksesi","roll the mouse wheel to zoom in\/out":"K\u00e4yt\u00e4 hiiren vieritysrullaa l\u00e4hent\u00e4miseen\/loitontamiseen","click and drag a corner to switch page":"Klikkaa ja ved\u00e4 kulmaa vaihtaaksesi sivua","click on a bookmark to go to page":"Klikkaa kirjanmerkki\u00e4 siirty\u00e4ksesi sivulle","preparing print":"Valmistelee tulostusta","right page":"Oikea sivu","left page":"Vasen sivu","spread":"Aukeama","entire brochure":"Koko esite","between pages":"Sivut","one page per sheet":"Yksi sivu arkkia kohti","two pages per sheet":"Kaksi sivua arkkia kohti","close":"Sulje","your name":"Nimesi","the message":"Viesti","the e-mail(s) of your friend(s)":"Yst\u00e4v\u00e4n\/yst\u00e4vien s-postiosoite","send":"L\u00e4het\u00e4","no result found":"Ei tulosta","fluidbook":"Digitaalinen kuvasto","press the link below to open Fluidbook:":"Klikkaa alla olevaa linkki\u00e4 avataksesi digitaalisen kuvaston","next page with the word":"Seuraava sivu, jossa sana on","previous page":"Aikaisempi sivu","%total% hits on %pages% pages, %this% hits on this page":"%total% osumaa %pages% sivulla, %this% osumaa t\u00e4ll\u00e4 sivulla","chapters":"Kappaleet","marked pages":"Merkityt sivut","you need to enter 3 letters to start searching":"Sinun tulee kirjoittaa 3 kirjainta aloittaaksesi haun","hit(s)":"osumat","go to page":"Siirry sivulle","you can't bookmark the frontpage":"Et voi lis\u00e4t\u00e4 kirjanmerkki\u00e4 etusivulle","click for more information about the product":"Klikkaa saadaksesi lis\u00e4tietoa tuotteesta","click to open the link":"Klikkaa avataksesi linkin","click to send an e-mail":"Siirry sivulle","video":"video","go to the page":"Multimedia","multimedia":"Klikkaa l\u00e4hett\u00e4\u00e4ksesi s-postin","no result on this page":"Ei tuloksia t\u00e4ll\u00e4 sivulla","your e-mail":"S-postiosoitteesi","use a comma to separate several e-mails":"K\u00e4yt\u00e4 pilkkua erottaaksesi eri s\u00e4hk\u00f6postit toisistaan","0":"","click to magnify":"Klikkaa suurentaaksesi","the item has been added to your cart":"Kohde on lis\u00e4tty ostosk\u00e4rryysi","my cart":"Oma ostosk\u00e4rry","Total":"Yhteens\u00e4","back":"takaisin","you don't have any bookmarks":"Sinulla ei ole kirjanmerkkej\u00e4","download the whole document for offline use":"Lataa koko dokumentti offline-k\u00e4ytt\u00f6\u00e4 varten","download for offline use":"Lataa offline-k\u00e4ytt\u00f6\u00e4 varten","drag handle to switch page":"Ved\u00e4 kahvaa vaihtaaksesi sivua","add to cart":"Lis\u00e4\u00e4 ostosk\u00e4rryyn","click to open the file":"Napsauta avataksesi tiedoston","click to play the video":"Napsauta toistaaksesi videon","back to previous page":"","download":"Lataa","archives":"Arkistot","basket":"Oma ostosk\u00e4rrysi","switch between fullscreen and normal":"Vaihda normaalin ja t\u00e4yskuvaruututilan v\u00e4lill\u00e4","switch on \/ switch off the sound":"Laita \u00e4\u00e4ni p\u00e4\u00e4lle \/ pois p\u00e4\u00e4lt\u00e4","switch between 2d and 3d mode":"Vaihda 2D ja 3D -tilan v\u00e4lill\u00e4","%name% invites you to discover %title%":"%name% suosittelee sinulle %title%\n","Please click on the following link to open %title : %link%":"Klikkaa alla olevaa linkki\u00e4 avataksesi %title%","overview":"yleiskatsaus","search results for":"Hakutulokset","tap twice or spread your fingers to zoom in":"napauttamalla kahdesti tai levit\u00e4 sormien zoomata","share on facebook":"Jaa Facebookissa","share on twitter":"jakaa Twitteriss\u00e4"},"fr":{"click to hide help":"Cliquez pour faire dispara\u00eetre l'aide","hover your mouse to display again this help":"Passer votre souris pour afficher \u00e0 nouveau l'aide","you don't have any bookmarks":"Vous n'avez aucun marque-page","printing will start automatically when pages are downloaded":"L'impression va d\u00e9marrer automatiquement dans quelques instants","normal view":"Vue normale","zoom in":"Zoomer","zoom out":"D\u00e9zoomer","print":"Imprimer","tell a friend":"Envoyer \u00e0 un(e) ami(e)","search":"Rechercher","add \/ remove bookmark":"Ajouter \/ supprimer un marque-page","download pdf":"T\u00e9l\u00e9charger en pdf","help":"Aide","switch between book and overview":"Basculer entre le livre et l'index","zoom in and out":"Zoomer et d\u00e9zoomer","previous double page":"Double page pr\u00e9c\u00e9dente","frontpage":"Couverture","next double page":"Double page suivante","last page":"Derni\u00e8re de couverture","click once to zoom in, click again to zoom out":"Cliquez une fois pour zoomer, cliquez \u00e0 nouveau pour d\u00e9zoomer","roll the mouse wheel to zoom in\/out":"Zoomer\/d\u00e9zoomer avec la molette de souris","click and drag a corner to switch page":"Cliquez-glissez dans un coin pour changer de page","click on a bookmark to go to page":"Cliquez sur un marque-page pour vous rendre \u00e0 cette page","preparing print":"Impression en cours","right page":"Page de droite","left page":"Page de gauche","spread":"Double page","entire brochure":"Toute la brochure","between pages":"De la page","one page per sheet":"Une page par feuille","two pages per sheet":"Deux pages par feuille","close":"Fermer","your name":"Votre nom","the message":"Votre message","the e-mail(s) of your friend(s)":"Destinataires","send":"Envoyer","no result found":"Aucun r\u00e9sultat","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Cliquez sur le lien ci-apr\u00e8s pour ouvrir fluidbook: ","next page with the word":"R\u00e9sultat suivant","previous page":"R\u00e9sultat pr\u00e9c\u00e9dent","%total% hits on %pages% pages, %this% hits on this page":"%total% r\u00e9sultat(s) sur %pages% page(s), %this% r\u00e9sultat(s) sur cette page","chapters":"Sommaire","marked pages":"Pages marqu\u00e9es","you need to enter 3 letters to start searching":"Vous devez taper 3 lettres minimum","hit(s)":"r\u00e9sultat(s)","go to page":"Voir la page","you can't bookmark the frontpage":"Vous ne pouvez pas mettre un marque page sur la couverture","click for more information about the product":"Plus d'infos","click to open the link":"Cliquez pour vous rendre \u00e0 la page web","click to send an e-mail":"Envoyer un email","video":"vid\u00e9o","go to the page":"Voir la page","multimedia":"Multim\u00e9dia","no result on this page":"Pas de r\u00e9sultat sur cette page","your e-mail":"Votre e-mail","use a comma to separate several e-mails":"S\u00e9parer plusieurs e-mails avec une virgule","":"","click to magnify":"Cliquez pour agrandir","the item has been added to your cart":"L'article a bien \u00e9t\u00e9 ajout\u00e9 au panier","my cart":"Mon panier","Total":"Total","share bookmarks":"Envoyer les pages marqu\u00e9es","%title%":"%title%","Please see the attached files from \"%title%\".":"Veuillez trouver ci-joint les fichiers extraits de \"%title%\".","bookmarks":"Marque-pages","back":"Retour","download the whole document for offline use":"T\u00e9l\u00e9charger le document pour une consultation hors-ligne","download for offline use":"T\u00e9l\u00e9charger la version hors-ligne","drag handle to switch page":"Glissez pour changer de page","add to cart":"Ajouter au panier","click to open the file":"T\u00e9l\u00e9charger le fichier","click to play the video":"Cliquez pour voir la vid\u00e9o","back to previous page":"Retour \u00e0 la page pr\u00e9c\u00e9dente","download":"T\u00e9l\u00e9charger","archives":"Archives","basket":"Panier","switch between fullscreen and normal":"Basculer entre le mode plein \u00e9cran et le mode normal","switch on \/ switch off the sound":"Activer \/ D\u00e9sactiver le son","switch between 2d and 3d mode":"Activer \/ D\u00e9sactiver le mode 3D","share by email":"Partager par e-mail","share on twitter":"Partager sur Twitter","share on facebook":"Partager sur Facebook","share":"Partager","%name% invites you to discover %title%":"%name% vous invite \u00e0 d\u00e9couvrir %title%","Please click on the following link to open %title : %link%":"Veuillez cliquer sur le lien suivant pour ouvrir %title%\n%link%","An update of the publication is available. Do you want to load it ?":"Une mise \u00e0 jour de cette publication est disponible. Souhaitez-vous la charger ?","tap twice or spread your fingers to zoom in":"Tapez deux fois ou \u00e9cartez les doigts pour zoomer","overview":"Index","search results for":"R\u00e9sultats de la recherche","home":"Retour \u00e0 l'accueil","find a distributor":"Trouver un distributeur","tel:":"T\u00e9l : ","Send details by email":"Envoyer les coordonn\u00e9es par e-mail","promotions":"Promotions","next to me":"A proximit\u00e9"},"hi":{"printing will start automatically when pages are downloaded":"","normal view":"\u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0935\u094d\u092f\u0942","zoom in":"\u091c\u093c\u0942\u092e \u0907\u0928","zoom out":"\u091c\u093c\u0942\u092e \u0906\u0909\u091f","print":"\u092a\u094d\u0930\u093f\u0902\u091f \u0915\u0930\u0947\u0902","tell a friend":"\u0915\u093f\u0938\u0940 \u0938\u0939\u0915\u0930\u094d\u092e\u0940 \u0915\u094b \u092c\u0924\u093e\u090f\u0902","search":"\u0916\u094b\u091c \u0915\u0930\u0947\u0902","add \/ remove bookmark":"\u092c\u0941\u0915\u092e\u093e\u0930\u094d\u0915 \u0921\u093e\u0932\u0947\u0902\/\u0939\u091f\u093e\u090f\u0902","download pdf":"pdf \u0921\u093e\u0909\u0928\u0932\u094b\u0921 \u0915\u0930\u0947\u0902","help":"\u0938\u0939\u093e\u092f\u0924\u093e","switch between book and overview":"\u092a\u0941\u0938\u094d\u0924\u0915 \u0914\u0930 \u0938\u093f\u0902\u0939\u093e\u0935\u0932\u094b\u0915\u0928 \u0915\u0947 \u092c\u0940\u091a \u0906\u090f\u0902 \u0914\u0930 \u091c\u093e\u090f\u0902","zoom in and out":"\u091c\u093c\u0942\u092e \u0907\u0928 \u0914\u0930 \u0906\u0909\u091f","previous double page":"\u092a\u093f\u091b\u0932\u093e \u0926\u094b\u0939\u0930\u093e \u092a\u0943\u0937\u094d\u0920","frontpage":"\u0905\u0917\u0932\u093e \u092a\u0943\u0937\u094d\u0920","next double page":"\u0905\u0917\u0932\u093e \u0926\u094b\u0939\u0930\u093e \u092a\u0943\u0937\u094d\u0920","last page":"\u0905\u0902\u0924\u093f\u092e \u092a\u0943\u0937\u094d\u0920","click once to zoom in, click again to zoom out":"\u091c\u093c\u0942\u092e \u0907\u0928 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u090f\u0915 \u092c\u093e\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902, \u091c\u093c\u0942\u092e \u0906\u0909\u091f \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0926\u094b\u092c\u093e\u0930\u093e \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","roll the mouse wheel to zoom in\/out":"\u091c\u093c\u0942\u092e \u0907\u0928\/\u091c\u093c\u0942\u092e \u0906\u0909\u091f \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092e\u093e\u0909\u0938 \u0935\u094d\u0939\u0940\u0932 \u0915\u094b \u0930\u094b\u0932 \u0915\u0930\u0947\u0902","click and drag a corner to switch page":"\u092a\u0943\u0937\u094d\u0920 \u0915\u094b \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0915\u094b\u0928\u0947 \u092a\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902 \u0914\u0930 \u0921\u094d\u0930\u0948\u0917 \u0915\u0930\u0947\u0902","click on a bookmark to go to page":"\u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u091c\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092c\u0941\u0915\u092e\u093e\u0930\u094d\u0915 \u092a\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","preparing print":"\u092a\u094d\u0930\u093f\u0902\u091f \u0924\u0948\u092f\u093e\u0930 \u0915\u093f\u092f\u093e \u091c\u093e \u0930\u0939\u093e \u0939\u0948","right page":"\u0926\u093e\u092f\u093e\u0901 \u092a\u0943\u0937\u094d\u0920","left page":"\u092c\u093e\u092f\u093e\u0901 \u092a\u0943\u0937\u094d\u0920","spread":"\u092b\u0948\u0932\u093e\u090f\u0902 ","entire brochure":"\u092a\u0942\u0930\u093e \u092c\u094d\u0930\u094b\u0936\u0930","between pages":"\u092a\u0943\u0937\u094d\u0920\u094b\u0902 \u0915\u0947 \u092c\u0940\u091a","one page per sheet":"\u092a\u094d\u0930\u0924\u093f \u0936\u0940\u091f \u090f\u0915 \u092a\u0943\u0937\u094d\u0920","two pages per sheet":"\u092a\u094d\u0930\u0924\u093f \u0936\u0940\u091f \u0926\u094b \u092a\u0943\u0937\u094d\u0920","close":"\u092c\u0928\u094d\u0926 \u0915\u0930\u0947\u0902","your name":"\u0906\u092a\u0915\u093e \u0928\u093e\u092e","the message":"\u0938\u0928\u094d\u0926\u0947\u0936","the e-mail(s) of your friend(s)":"\u0906\u092a\u0915\u0947 \u0938\u0939\u0915\u0930\u094d\u092e\u0940 \u0915\u093e \u0908-\u092e\u0947\u0932 ","send":"\u092d\u0947\u091c\u0947\u0902","no result found":"\u0915\u094b\u0908 \u092a\u0930\u093f\u0923\u093e\u092e \u0928\u0939\u0940\u0902 \u092e\u093f\u0932\u093e","fluidbook":"\u092b\u094d\u0932\u0942\u0921\u092c\u0941\u0915","press the link below to open Fluidbook:":"\u092b\u094d\u0932\u0942\u0921\u092c\u0941\u0915 \u0916\u094b\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0928\u0940\u091a\u0947 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \u0932\u093f\u0902\u0915 \u0926\u092c\u093e\u090f\u0902:","next page with the word":"\u0936\u092c\u094d\u0926 \u0935\u093e\u0932\u093e \u0905\u0917\u0932\u093e \u092a\u0943\u0937\u094d\u0920","previous page":"\u092a\u093f\u091b\u0932\u093e \u092a\u0943\u0937\u094d\u0920","%total% hits on %pages% pages, %this% hits on this page":"%total% \u092a\u0943\u0937\u094d\u0920\u094b\u0902 \u092e\u0947\u0902 %pages% \u0939\u093f\u091f\u094d\u0938, \u0907\u0938 \u092a\u0943\u0937\u094d\u0920 \u092a\u0930 %this% \u0939\u093f\u091f\u094d\u0938","chapters":"\u0905\u0927\u094d\u092f\u093e\u092f","marked pages":"\u0909\u092a\u092f\u094b\u0917 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u0917\u092f\u093e","you need to enter 3 letters to start searching":"\u0906\u092a\u0915\u094b \u0916\u094b\u091c \u0915\u0930\u0928\u093e \u0906\u0930\u092e\u094d\u092d \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f 3 \u0905\u0915\u094d\u0937\u0930 \u0921\u093e\u0932\u0928\u0947 \u091a\u093e\u0939\u093f\u090f","hit(s)":"\u0939\u093f\u091f (\u0939\u093f\u091f\u094d\u0938)","go to page":"\u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u091c\u093e\u090f\u0902","you can't bookmark the frontpage":"\u0906\u092a \u0907\u0938 \u0905\u0917\u0932\u0947 \u092a\u0943\u0937\u094d\u0920 \u0915\u094b \u092c\u0941\u0915\u092e\u093e\u0930\u094d\u0915 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947","click for more information about the product":"\u0909\u0924\u094d\u092a\u093e\u0926 \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947\u0902 \u0914\u0930 \u0905\u0927\u093f\u0915 \u0938\u0942\u091a\u0928\u093e \u0915\u0947 \u0932\u093f\u090f \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","click to open the link":"\u0932\u093f\u0902\u0915 \u0916\u094b\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","click to send an e-mail":"\u0908-\u092e\u0947\u0932 \u092d\u0947\u091c\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","video":"\u0935\u0940\u0921\u093f\u092f\u094b","go to the page":"\u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u091c\u093e\u090f\u0902","multimedia":"\u092e\u0932\u094d\u091f\u0940\u092e\u0940\u0921\u093f\u092f\u093e","no result on this page":"\u0907\u0938 \u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u0915\u094b\u0908 \u092a\u0930\u093f\u0923\u093e\u092e \u0928\u0939\u0940\u0902","your e-mail":"\u0906\u092a\u0915\u093e \u0908-\u092e\u0947\u0932","use a comma to separate several e-mails":"","0":"","click to magnify":"","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name% \u0906\u092a\u0915\u094b %title% \u092c\u0924\u093e\u0928\u093e \u091a\u093e\u0939\u0924\u093e\/\u0924\u0940 \u0939\u0948\n","Please click on the following link to open %title : %link%":"\u0916\u094b\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0928\u093f\u092e\u094d\u200d\u0928 \u0932\u093f\u0902\u0915 \u092a\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902 %title%\n%link%","overview":"\u0938\u093f\u0902\u0939\u093e\u0935\u0932\u094b\u0915\u0928","search results for":"","tap twice or spread your fingers to zoom in":"","share on facebook":"","share on twitter":""},"id":{"printing will start automatically when pages are downloaded":"","normal view":"Tampilan normal","zoom in":"Perbesar","zoom out":"Perkecil","print":"Cetak","tell a friend":"Beritahu teman","search":"Cari","add \/ remove bookmark":"Tambah\/ hapus penanda","download pdf":"Unduh pdf","help":"Bantuan","switch between book and overview":"Beralih antara buku dan ikhtisar","zoom in and out":"Perbesar dan perkecil","previous double page":"Halaman ganda sebelumnya","frontpage":"Halaman depan","next double page":"Halaman ganda berikutnya","last page":"Halaman terakhir","click once to zoom in, click again to zoom out":"Klik satu kali untuk perbesar, klik lagi untuk perkecil","roll the mouse wheel to zoom in\/out":"Gulir roda mouse untuk perbesar\/ perkecil","click and drag a corner to switch page":"Klik dan seret sudut untuk beralih halaman","click on a bookmark to go to page":"Klik penanda untuk membuka halaman","preparing print":"Persiapan cetak","right page":"Halaman kanan","left page":"Halaman kiri","spread":"Bentang","entire brochure":"Seluruh brosur","between pages":"Antar halaman","one page per sheet":"Satu halaman per lembar","two pages per sheet":"Dua halaman per lembar","close":"Tutup","your name":"Nama Anda","the message":"Pesan","the e-mail(s) of your friend(s)":"Email dari teman","send":"Kirim","no result found":"Tidak ada hasil yang ditemukan","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Klik link di bawah ini untuk membuka Fluidbook:","next page with the word":"Halaman berikutnya dengan kata","previous page":"Halaman sebelumnya","%total% hits on %pages% pages, %this% hits on this page":"%total% hits dari %pages% halaman, %this% hits dari halaman ini","chapters":"Bab","marked pages":"Halaman yang ditandai","you need to enter 3 letters to start searching":"Anda harus memasukkan 3 huruf untuk memulai pencarian","hit(s)":"hit","go to page":"Buka halaman","you can't bookmark the frontpage":"Anda tidak dapat menandai halaman depan","click for more information about the product":"Klik untuk informasi selengkapnya tentang produk","click to open the link":"Klik untuk membuka link","click to send an e-mail":"Klik untuk mengirim email","video":"video","go to the page":"Buka halaman","multimedia":"Multimedia","no result on this page":"Tidak ada hasil di halaman ini","your e-mail":"Email Anda","use a comma to separate several e-mails":"Gunakan tanda koma untuk memisahkan beberapa email","0":"","click to magnify":"Klik untuk perbesar","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name% ingin memperlihatkan kepada Anda %title%\n","Please click on the following link to open %title : %link%":"Klik pada tautan di bawah untuk membuka %title%\n%link%","overview":"Ikhtisar","search results for":"","tap twice or spread your fingers to zoom in":"","share on facebook":"","share on twitter":""},"it":{"click to hide help":"","hover your mouse to display again this help":"","you don't have any bookmarks":"Non hai nessun segnalibro","printing will start automatically when pages are downloaded":"La stampa inizier\u00e0 automaticamente tra qualche istante","normal view":"Visualizzazione normale","zoom in":"Ingrandimento","zoom out":"Riduzione","print":"Stampa","tell a friend":"Invia a un amico","search":"Cerca","add \/ remove bookmark":"Aggiungi\/elimina un segnalibro","download pdf":"Scarica in formato pdf","help":"Guida in linea","switch between book and overview":"Passa da libro a indice","zoom in and out":"Ingrandisci e riduci","previous double page":"Doppia pagina precedente","frontpage":"Copertina","next double page":"Doppia pagina successiva","last page":"Ultima di copertina","click once to zoom in, click again to zoom out":"Fare un clic per ingrandire, farne due per ridurre","roll the mouse wheel to zoom in\/out":"Ingrandisci\/riduci con la rotella del mouse","click and drag a corner to switch page":"Per voltare pagina, trascinare l\u2019angolo","click on a bookmark to go to page":"Per tornare ad una pagina, fare clic sul segnalibro","preparing print":"Stampa in corso","right page":"Pagina destra","left page":"Pagina sinistra","spread":"Doppia pagina","entire brochure":"Brochure completa","between pages":"Da pagina","one page per sheet":"Una pagina per foglio","two pages per sheet":"Due pagine per foglio","close":"Chiudi","your name":"Il tuo nome","the message":"Il tuo messaggio","the e-mail(s) of your friend(s)":"L'e-mail del tuo amico","send":"Invia","no result found":"Nessun risultato","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Fare clic su questo collegamento per aprire fluidbook:","next page with the word":"Risultato successivo","previous page":"Risultato precedente","%total% hits on %pages% pages, %this% hits on this page":"%total% risultato\/i su %pages% pagina\/e, %this% risultato\/i su questa pagina","chapters":"Tabella dei contenuti","marked pages":"Segnalibro","you need to enter 3 letters to start searching":"Digitare almeno 3 lettere","hit(s)":"risultato\/i","go to page":"Visualizza la pagina","you can't bookmark the frontpage":"Impossibile mettere un segnalibro sulla copertina","click for more information about the product":"Maggiori informazioni","click to open the link":"Fare clic per andare alla pagina web","click to send an e-mail":"Invia un\u2019e-mail","video":"video","go to the page":"Visualizza la pagina","multimedia":"Multimedia","no result on this page":"Nessun risultato su questa pagina","your e-mail":"La tua e-mail","use a comma to separate several e-mails":"Inserisci pi\u00f9 indirizzi email separati da una virgola","":"","click to magnify":"Clicca per ingrandire","the item has been added to your cart":"L'articolo \u00e8 stato aggiunto al tuo carrello","my cart":"Il mio carrello","Total":"Totale","share bookmarks":"Invia pagine contrassegnate","%title%":"%title%","Please see the attached files from \"%title%\".":"Si prega di consultare i file allegati da \"% title%\".","bookmarks":"Segnalibri","back":"Ritorno","download the whole document for offline use":"Scarica il documento per consultarlo off-line","download for offline use":"Scarica la versione off-line","drag handle to switch page":"Scorri per cambiare pagina","add to cart":"Aggiungi al carrello","click to open the file":"Scarica il file","click to play the video":"Riproduci il video","back to previous page":"Torna alla pagina precedente","download":"Scarica","archives":"Archivio","basket":"Carrello","switch between fullscreen and normal":"Passa da modalit\u00e0 schermo intero a modalit\u00e0 normale","switch on \/ switch off the sound":"Attiva \/ Disattiva il suono","switch between 2d and 3d mode":"Attiva \/ Disattiva la modalit\u00e0 3D","share by email":"e-mail","share on twitter":"twitter","share on facebook":"facebook","share":"Quota","%name% invites you to discover %title%":"%name% vorrebbe mostrarti %title%\n","Please click on the following link to open %title : %link%":"Clicca sul link qui sotto per aprire %title%\n%link%","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"Tocca due volte o allarga due dita per ingrandire","overview":"Indice","search results for":"Risultati di ricerca","home":"Home","find a distributor":"Trovare un distributore","tel:":"Tel:","Send details by email":"Inviare via e-mail","promotions":"Promozioni","next to me":"Accanto a me"},"ja":{"printing will start automatically when pages are downloaded":"","the item has been added to your cart":"","my cart":"","Total":"","chapters":"","no result found":"","hit(s)":"","marked pages":"","entire brochure":"","you don't have any bookmarks":"","left page":"","right page":"","spread":"","download pdf":"","download the whole document for offline use":"","download for offline use":"","print":"","drag handle to switch page":"","click and drag a corner to switch page":"","click once to zoom in, click again to zoom out":"","roll the mouse wheel to zoom in\/out":"","previous double page":"","frontpage":"","next double page":"","last page":"","add to cart":"","click to send an e-mail":"","click to open the file":"","click to open the link":"","go to the page":"","click to play the video":"","click for more information about the product":"","click to magnify":"","switch between book and overview":"","tell a friend":"","add \/ remove bookmark":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","help":"","search":"","you need to enter 3 letters to start searching":"","previous page":"","next page with the word":"","%total% hits on %pages% pages, %this% hits on this page":"","your name":"","your e-mail":"","the e-mail(s) of your friend(s)":"","use a comma to separate several e-mails":"","the message":"","send":"","overview":"Overview","normal view":"Normal view","zoom in":"Zoom in","zoom out":"Zoom out","zoom in and out":"Zoom in and out","click on a bookmark to go to page":"Click on a bookmark to go to page","preparing print":"Preparing print","between pages":"Between pages","one page per sheet":"One page per sheet","two pages per sheet":"Two pages per sheet","print-":"Print","close":"Close","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Press the link below to open Fluidbook:","go to page":"Go to page","you can't bookmark the frontpage":"You can't bookmark the cover","video":"video","multimedia":"Multimedia","no result on this page":"No result on this page","":""},"nl":{"click to hide help":"","hover your mouse to display again this help":"","you don't have any bookmarks":"Volledige brochure","printing will start automatically when pages are downloaded":"Afdrukken start automatisch wanneer pagina's worden gedownload","normal view":"Normaal zicht","zoom in":"Zoom in","zoom out":"Zoom uit","print":"Afdrukken","tell a friend":"Stuur naar vrienden","search":"Zoeken","add \/ remove bookmark":"Bladwijzer toevoegen\/verwijderen","download pdf":"Downloaden als pdf","help":"Help","switch between book and overview":"Wisselen tussen het boek en de index","zoom in and out":"Inzoomer en uitzoomen","previous double page":"Vorige spread","frontpage":"Voorpagina","next double page":"Volgende spread","last page":"Achterpagina","click once to zoom in, click again to zoom out":"Klik eenmaal voor inzoomen, klik opnieuw voor uitzoomen","roll the mouse wheel to zoom in\/out":"Inzoomen\/uitzoomen met scroll button van muis","click and drag a corner to switch page":"Klik en sleep in een hoek om van pagina te wisselen","click on a bookmark to go to page":"Klik op een bladwijzer om naar die pagina te gaan","preparing print":"Bezig met afdrukken","right page":"Rechterpagina","left page":"Linkerpagina","spread":"Dubbele pagina","entire brochure":"Alle paginas","between pages":"Van pagina x tot x","one page per sheet":"E\u00e9n pagina per blad","two pages per sheet":"Twee paginas per blad","close":"Sluiten","your name":"Uw naam","the message":"Uw boodschap","the e-mail(s) of your friend(s)":"De e-mail van uw vriend","send":"Versturen","no result found":"Geen resultaat","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Klik op de volgende link om fluidbook te openen:","next page with the word":"Volgende resultaat","previous page":"Vorige resultaat","%total% hits on %pages% pages, %this% hits on this page":"%total% resulta(at)ten op %pages% pagina(s), %this% resulta(at)ten op deze pagina","chapters":"Inhoudsopgave","marked pages":"Gemarkeerde pagina's","you need to enter 3 letters to start searching":"Tik minstens 3 letters in","hit(s)":"Resulta(at)ten","go to page":"Pagina bekijken","you can't bookmark the frontpage":"U kunt geen bladwijzer op de cover plaatsen","click for more information about the product":"Meer info","click to open the link":"Klik hier om naar de webpagina te gaan","click to send an e-mail":"Stuur een e-mail","video":"Video","go to the page":"Bekijk de pagina","multimedia":"Multimedia","no result on this page":"Geen resultaat op deze pagina","your e-mail":"Uw e-mail","use a comma to separate several e-mails":"Gebruik een komma om Aparte meerdere e-mails","":"","click to magnify":"Klik om te vergroten","the item has been added to your cart":"Het item is toegevoegd aan uw winkelwagen","my cart":"Mijn winkelwagen","Total":"Totaal","share bookmarks":"Stuur gemarkeerd pagina's","%title%":"%title%","Please see the attached files from \"%title%\".":"Zie de bijgevoegde bestanden van \"% title%\".","bookmarks":"Bladwijzers","back":"Terug","download the whole document for offline use":"Download het hele document voor offline gebruik","download for offline use":"Downloaden voor offline gebruik","drag handle to switch page":"Sleep knop om van pagina te wisselen","add to cart":"Toevoegen aan winkelwagen","click to open the file":"Klik om het bestand te openen","click to play the video":"Ga naar de pagina","back to previous page":"Terug naar de vorige pagina","download":"Download","archives":"Archieven","basket":"Mand","switch between fullscreen and normal":"Schakelen tussen volledig en normaal scherm","switch on \/ switch off the sound":"Geluid aan\/uit","switch between 2d and 3d mode":"Switchen tussen 2D en 3D modus","share by email":"Email","share on twitter":"Twitter","share on facebook":"Facebook","share":"Aandeel","%name% invites you to discover %title%":"%name% nodigt je uit om %title% te ontdekken\n","Please click on the following link to open %title : %link%":"Klik op de volgende link om %title% te openen\n%link%","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"Tik op twee of spreid je vingers om in te zoomen","overview":"Inhoud","search results for":"zoekresultaten voor","home":"Home","find a distributor":"Vind een distributeur","tel:":"Tel:","Send details by email":"Stuur informatie per e-mail","promotions":"Promoties","next to me":"Dicht bij mij"},"no":{"printing will start automatically when pages are downloaded":"utskrift vil starte automatisk n\u00e5r sidene lastes ned","normal view":"Normal view","zoom in":"Zoom inn","zoom out":"Zoom ut","print":"Skriv ut","tell a friend":"Tips en venn","search":"S\u00f8k","add \/ remove bookmark":"Legg til\/ta bort bokmerke","download pdf":"Last ned pdf","help":"Hjelp","switch between book and overview":"Switch mellom bok og oversikt","zoom in and out":"Zoom inn og ut","previous double page":"Foreg\u00e5ende oppslag","frontpage":"Forsiden","next double page":"Neste oppslag","last page":"Baksiden","click once to zoom in, click again to zoom out":"Klikk for \u00e5 zoome inn, klikk igjen for \u00e5 zoome ut","roll the mouse wheel to zoom in\/out":"Rull p\u00e5 hjulet for \u00e5 zoome inn\/ut","click and drag a corner to switch page":"Klikk og dra i et hj\u00f8rne for \u00e5 snu side","click on a bookmark to go to page":"Klikk p\u00e5 et bokmerke for \u00e5 g\u00e5 til siden","preparing print":"Forbereder utskrift","right page":"H\u00f8yre side","left page":"Venstre side","spread":"Oppslaget","entire brochure":"Alle sider","between pages":"Mellom sidene","one page per sheet":"En side pr papir","two pages per sheet":"To sider pr papir","close":"Steng","your name":"Ditt navn","the message":"Din melding","the e-mail(s) of your friend(s)":"Din venns e-mail","send":"Send","no result found":"Ditt s\u00f8k ga ingen treff","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Trykk p\u00e5 linken for \u00e5 \u00e5pne Fluidbook","next page with the word":"Neste side med s\u00f8keordet","previous page":"Forrige side med s\u00f8keordet","%total% hits on %pages% pages, %this% hits on this page":"%total% treff p\u00e5 %pages% sider, %this% treff p\u00e5 denne siden","chapters":"Sammendrag","marked pages":"not used","you need to enter 3 letters to start searching":"S\u00f8k skjer ikke p\u00e5 mindre enn 3 bokstaver","hit(s)":"treff","go to page":"G\u00e5 til side","you can't bookmark the frontpage":"Det g\u00e5r inte att s\u00e4tta bokm\u00e4rke p\u00e5 omslaget","click for more information about the product":"Klikk for \u00e5 f\u00e5 mer informasjon om produktet","click to open the link":"Klikk for \u00e5 \u00e5pne linken","click to send an e-mail":"Klikk for \u00e5 sende en e-mail","video":"video","go to the page":"G\u00e5 til siden","multimedia":"Multimedia","no result on this page":"Ingen treff p\u00e5 denne siden","your e-mail":"Din e-mail","use a comma to separate several e-mails":"bruk et komma for \u00e5 skille flere e-postadresser","0":"","click to magnify":"klikk for \u00e5 forst\u00f8rre","the item has been added to your cart":"varen har blitt lagt til i handlekurven din","my cart":"min handlekurv","Total":"Totalt","back":"tilbake","you don't have any bookmarks":"du har ingen bokmerker","download the whole document for offline use":"last ned hele dokumentet for frakoblet bruk","download for offline use":"last ned for frakoblet bruk","drag handle to switch page":"Dra i h\u00e5ndtaket for \u00e5 bytte side","add to cart":"legg til i handlekurv","click to open the file":"klikk for \u00e5 \u00e5pne filen","click to play the video":"klikk for \u00e5 spille av videoen","back to previous page":"","download":"Last ned","archives":"Arkiver","basket":"Kurv","switch between fullscreen and normal":"Bytt mellom fullskjerm og normal","switch on \/ switch off the sound":"Skru p\u00e5 \/ skru av lyden","switch between 2d and 3d mode":"Bytt mellom 2D- og 3D-modus","%name% invites you to discover %title%":"%name% inviterer deg inn til %title%\n","Please click on the following link to open %title : %link%":"Trykk p\u00e5 linken for \u00e5 \u00e5pne %title%\n%link%","overview":"Oversikt","search results for":"S\u00f8keresultater","tap twice or spread your fingers to zoom in":"Trykk to ganger eller spre fingrene til \u00e5 zoome inn","share on facebook":"Del p\u00e5 Facebook","share on twitter":"Del p\u00e5 Twitter"},"pl":{"printing will start automatically when pages are downloaded":"Drukowanie rozpcznie si\u0119 automatycznie, kiedy zostan\u0105 pobrane strony","normal view":"Normalny widok","zoom in":"Przybli\u017c","zoom out":"Oddal","print":"Drukuj","tell a friend":"Pole\u0107 znajomemu","search":"Szukaj","add \/ remove bookmark":"Dodaj\/usu\u0144 zak\u0142adk\u0119","download pdf":"Pobierz pdf","help":"Pomoc","switch between book and overview":"Prze\u0142\u0105cz miedzy dwiema stronami a przegl\u0105dem wszystkich stron ","zoom in and out":"P\u0159ibl\u00ed\u017eit a odd\u00e1lit","previous double page":"Poprzednie dwie strony","frontpage":"Pierwsza strona","next double page":"Nastepne dwie strony","last page":"Ostatnia strona","click once to zoom in, click again to zoom out":"Kliknij raz aby przybli\u017cy\u0107, kliknij ponownie aby oddali\u0107","roll the mouse wheel to zoom in\/out":"Pokr\u0119\u0107 rolk\u0105 myszki aby przybli\u017cy\u0107\/oddali\u0107","click and drag a corner to switch page":"kliknij i przeci\u0105gnij r\u00f3g aby przel\u0105czy\u0107 stron\u0119","click on a bookmark to go to page":"Kliknut\u00edm na z\u00e1lo\u017eku p\u0159ej\u00edt na str\u00e1nku","preparing print":"P\u0159\u00edprava tisku","right page":"Prawa strona","left page":"Lewa strona","spread":"P\u00e1gina dupla","entire brochure":"Todo o folheto","between pages":"Mi\u0119dzy stronami","one page per sheet":"Jedna strona na kartce","two pages per sheet":"Dwie strony na kartce","close":"Zamknij","your name":"Twoje imi\u0119","the message":"Wiadomo\u015b\u0107","the e-mail(s) of your friend(s)":"E-mail znajomego","send":"Wy\u015blij","no result found":"Brak rezultat\u00f3w","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Kliknij link poni\u017cej aby otworzy\u0107 Fluidbook","next page with the word":"Nastepny wynik","previous page":"Poprzedni wynik","%total% hits on %pages% pages, %this% hits on this page":"%total% wynik (-i, -\u00f3w) %pages% na stronie (-ach), %this% wynik (-i) na tej stronie","chapters":"Przegl\u0105d","marked pages":"not used","you need to enter 3 letters to start searching":"Musisz wprowadzi\u0107 3 litery aby rozpocz\u0105\u0107 wyszukiwanie","hit(s)":"wynik (-i, -\u00f3w)","go to page":"Przejd\u017a do strony","you can't bookmark the frontpage":"Nie mo\u017cesz zaznaczy\u0107 ok\u0142adki","click for more information about the product":"Wi\u0119cej informacji","click to open the link":"Kliknij aby otworzy\u0107 link","click to send an e-mail":"Wy\u015blij e-mail","video":"wideo","go to the page":"Przejd\u017a do strony","multimedia":"Multimedia","no result on this page":"Brak wynik\u00f3w na tej stronie","your e-mail":"Twoj e-mail","use a comma to separate several e-mails":"U\u017cyj przecinka, aby oddzieli\u0107 kilka e-maili","0":"","click to magnify":"Kliknij aby powi\u0119kszy\u0107","the item has been added to your cart":"Produkt zosta\u0142 dodany do koszyka","my cart":"M\u00f3j koszyk","Total":"Og\u00f3\u0142em","back":"Powr\u00f3t","you don't have any bookmarks":"Nie masz \u017cadnych zak\u0142adek","download the whole document for offline use":"Pobierz ca\u0142y dokument do u\u017cytku w trybie offline","download for offline use":"Pobierz do u\u017cytku w trybie offline","drag handle to switch page":"Poci\u0105gnij za r\u0105czk\u0119, aby prze\u0142\u0105czy\u0107 stron\u0119","add to cart":"Dodaj do koszyka","click to open the file":"Kliknij aby otworzy\u0107 plik","click to play the video":"Kliknij aby odtworzy\u0107 wideo","back to previous page":"Powr\u00f3t do poprzedniej strony","download":"Pobierz","archives":"Archiwa","basket":"Kosz","switch between fullscreen and normal":"Prze\u0142\u0105cz pomi\u0119dzy ekranem pe\u0142nym, a normalnym","switch on \/ switch off the sound":"W\u0142\u0105cz \/ wy\u0142\u0105cz d\u017awi\u0119k","switch between 2d and 3d mode":"Prze\u0142\u0105cz pomi\u0119dzy trybem 2. a 3.","%name% invites you to discover %title%":"%name% pragnie zaprezentowa\u0107 Tobie Podstawowe %title%\n","Please click on the following link to open %title : %link%":"Kliknij na poni\u017cszy link, aby otworzy\u0107 %link% Podstawowe %title%\n%link%","overview":"Poka\u017c wszystkie strony","search results for":"Wyniki wyszukiwania","tap twice or spread your fingers to zoom in":"Uderz dwukrotnie lub rozszerz dwa palce, aby przybli\u017cy\u0107\/oddali\u0107","share on facebook":"Facebook","share on twitter":"Twitter"},"pt":{"printing will start automatically when pages are downloaded":"A impress\u00e3o ir\u00e1 iniciar-se automaticamente quando as p\u00e1ginas forem descarregadas","normal view":"Vista normal","zoom in":"Aumentar","zoom out":"Diminuir","print":"Imprimir","tell a friend":"Enviar a um amigo","search":"Pesquisa","add \/ remove bookmark":"Adicionar \/ Suprimir uma marca","download pdf":"Descarregar em pdf","help":"Ajuda","switch between book and overview":"Alternar entre o livro e o index","zoom in and out":"Aumentar e retornar","previous double page":"P\u00e1gina dupla anterior","frontpage":"Capa","next double page":"P\u00e1gina dupla seguinte","last page":"Contracapa","click once to zoom in, click again to zoom out":"Clicar uma vez para aumentar, clicar de novo para retornar","roll the mouse wheel to zoom in\/out":"Aumentar e retornar com a roda do rato","click and drag a corner to switch page":"Clicar e arrastar num canto para virar a pagina","click on a bookmark to go to page":"Clicar sobre um marcador para ir para essa p\u00e1gina","preparing print":"Impress\u00e3o a decorrer","right page":"Pagina da direita","left page":"Pagina da esquerda","spread":"Paginas duplas","entire brochure":"Todas as p\u00e1ginas","between pages":"Desde a p\u00e1gina","one page per sheet":"Uma p\u00e1gina por folha","two pages per sheet":"Duas p\u00e1ginas por folha","close":"Fechar","your name":"Seu nome","the message":"Sua mensagem","the e-mail(s) of your friend(s)":"E-mail do seu amigo","send":"Enviar","no result found":"Nenhum resultado","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Clique neste link para abrir fluidbook","next page with the word":"Resultado seguinte","previous page":"Resultado anterior","%total% hits on %pages% pages, %this% hits on this page":"%total% resultado(s) em %pages% pagina(s), %this% resultado(s) nesta pagina","chapters":"Cap\u00edtulos","marked pages":"p\u00e1ginas marcadas","you need to enter 3 letters to start searching":"Deve escrever 3 letras no minimo","hit(s)":"resultado(s)","go to page":"Ver a p\u00e1gina","you can't bookmark the frontpage":"Impossivel marcar a capa","click for more information about the product":"Mais informa\u00e7\u00e3o","click to open the link":"Clicar para ir para a pagina web","click to send an e-mail":"Enviar um email","video":"video","go to the page":"Ver a p\u00e1gina","multimedia":"Multimedia","no result on this page":"Sem resultados nesta p\u00e1gina","your e-mail":"Seu email","use a comma to separate several e-mails":"Utilize uma v\u00edrgula para separar v\u00e1rios endere\u00e7os de e-mail","0":"","click to magnify":"Clique para aumentar","the item has been added to your cart":"O item foi adicionado ao seu carrinho","my cart":"O meu carrinho","Total":"Total","back":"","you don't have any bookmarks":"N\u00e3o tem quaisquer marcadores","download the whole document for offline use":"Descarregue o documento completo para utiliza\u00e7\u00e3o offline","download for offline use":"Descarregue para utiliza\u00e7\u00e3o offline","drag handle to switch page":"Arraste o man\u00edpulo para mudar de p\u00e1gina","add to cart":"Adicionar ao carrinho","click to open the file":"Clique para abrir o ficheiro","click to play the video":"Clique para visualizar o v\u00eddeo","back to previous page":"","download":"Fazer download","archives":"Arquivos","basket":"Cesto","switch between fullscreen and normal":"Alternar entre ecr\u00e3 panor\u00e2mico e normal","switch on \/ switch off the sound":"Ligar\/desligar o som","switch between 2d and 3d mode":"Alternar entre 2D e 3D modo","%name% invites you to discover %title%":"%name% que gostaria que aparecesse, o seu %title%\n","Please click on the following link to open %title : %link%":"Clique no link abaixo para abrir %title%\n%link%","overview":"","search results for":"","tap twice or spread your fingers to zoom in":"Clique duas vezes ou afaste dois dedos para fazer zoom","share on facebook":"Compartilhar Facebook","share on twitter":"Compartilhar Twitter"},"pt-br":{"printing will start automatically when pages are downloaded":"","normal view":"","zoom in":"","zoom out":"","print":"Imprimir","tell a friend":"Informe um amigo","search":"Pesquisar","add \/ remove bookmark":"Adicionar \/remover marcador","download pdf":"Baixar pdf","help":"Ajuda","switch between book and overview":"Alternar entre visualiza\u00e7\u00e3o geral e livro ","zoom in and out":"","previous double page":"P\u00e1gina dupla anterior","frontpage":"P\u00e1gina Principal","next double page":"Pr\u00f3xima p\u00e1gina dupla","last page":"\u00daltima p\u00e1gina","click once to zoom in, click again to zoom out":"Clique uma vez para aproximar e clique de novo para afastar","roll the mouse wheel to zoom in\/out":"Role a roda do mouse para aproximar ou afastar","click and drag a corner to switch page":"Clique no canto e arraste para alternar entre p\u00e1ginas ","click on a bookmark to go to page":"","preparing print":"","right page":"P\u00e1gina direita","left page":"P\u00e1gina esquerda","spread":" P\u00e1gina dupla","entire brochure":"Brochura completa","between pages":"","one page per sheet":"","two pages per sheet":"","close":"","your name":"Seu nome","the message":"A mensagem","the e-mail(s) of your friend(s)":"O(s) e-mail(s) de seu(s) amigo(s)","send":"Enviar","no result found":"Resultado n\u00e3o encontrado","fluidbook":"","press the link below to open Fluidbook:":"","next page with the word":"Pr\u00f3xima p\u00e1gina com a palavra","previous page":"P\u00e1gina anterior","%total% hits on %pages% pages, %this% hits on this page":"%total% de cliques nas%p\u00e1ginas% p\u00e1ginas, %nesta% cliques nesta p\u00e1gina","chapters":"Cap\u00edtulos","marked pages":" P\u00e1ginas marcadas","you need to enter 3 letters to start searching":"Voc\u00ea precisa digitar 3 letras para come\u00e7ar a pesquisar","hit(s)":"clique(s)","go to page":"","you can't bookmark the frontpage":"","click for more information about the product":"Clique para obter mais informa\u00e7\u00f5es sobre o produto","click to open the link":"Clique para abrir o link","click to send an e-mail":"Clique para enviar um e-mail","video":"","go to the page":"V\u00e1 para a p\u00e1gina","multimedia":"","no result on this page":"","your e-mail":"Seu e-mail","use a comma to separate several e-mails":"Use a v\u00edrgula para separar v\u00e1rios e-mails","0":"","click to magnify":"Clique para aumentar","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name% gostaria de lhe mostrar %title%\n","Please click on the following link to open %title : %link%":"Clique sobre o link abaixo para abrir %title%\n%link%","overview":"","search results for":"","tap twice or spread your fingers to zoom in":"","share on facebook":"","share on twitter":""},"ro":{"printing will start automatically when pages are downloaded":"Tip\u0103rirea va \u00eencepe automat atunci c\u00e2nd sunt desc\u0103rcate paginile","normal view":"Vizualizare normal\u0103","zoom in":"M\u0103rire","zoom out":"Mic\u015forare","print":"Imprimare","tell a friend":"Spune unui prieten","search":"C\u0103utare","add \/ remove bookmark":"Ad\u0103ugare\/\u015ftergere semn de carte","download pdf":"Desc\u0103rcare pdf","help":"Ajutor","switch between book and overview":"Comutare \u00eentre carte \u015fi prezentare general\u0103","zoom in and out":"M\u0103rire \u015fi mic\u015forare","previous double page":"Pagina dubl\u0103 anterioar\u0103","frontpage":"Frontpage","next double page":"Pagina dubl\u0103 urm\u0103toare","last page":"Ultima pagin\u0103","click once to zoom in, click again to zoom out":"Face\u0163i clic o dat\u0103 pentru m\u0103rire, \u015fi \u00eenc\u0103 o dat\u0103 pentru mic\u015forare","roll the mouse wheel to zoom in\/out":"Folosi\u0163i roti\u0163a mouse-ului pentru mic\u015forare\/m\u0103rire","click and drag a corner to switch page":"Face\u0163i clic pe un col\u0163 \u015fi trage\u0163i-l cu mouse-ul pentru a da pagina","click on a bookmark to go to page":"Face\u0163i clic pe un semn de carte pentru a merge pe pagina respectiv\u0103","preparing print":"Preg\u0103tire imprimare","right page":"Pagina din dreapta","left page":"Pagina din st\u00e2nga","spread":"Spread","entire brochure":"\u00centreaga bro\u015fur\u0103","between pages":"\u00centre pagini","one page per sheet":"C\u00e2te o pagin\u0103 pe foaie","two pages per sheet":"C\u00e2te dou\u0103 pagini pe foaie","close":"\u00cenchidere","your name":"Numele dumneavoastr\u0103","the message":"Mesajul","the e-mail(s) of your friend(s)":"E-mail-ul(urile) de la prietenul\/a(ii\/ele) dumneavoastr\u0103","send":"Trimitere","no result found":"Nu s-a g\u0103sit niciun rezultat","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Ap\u0103sa\u0163i pe link-ul de mai jos pentru a deschide Fluidbook:","next page with the word":"Urm\u0103toarea pagin\u0103 cu cuv\u00e2ntul","previous page":"Pagina anterioar\u0103","%total% hits on %pages% pages, %this% hits on this page":"%total% rezultate pe %pages% pagini, %this% rezultate pe aceast\u0103 pagin\u0103","chapters":"Capitole","marked pages":"Pagini marcate","you need to enter 3 letters to start searching":"Trebuie s\u0103 introduce\u0163i 3 litere pentru a \u00eencepe c\u0103utarea","hit(s)":"rezultat(e)","go to page":"Mergi la pagina","you can't bookmark the frontpage":"Nu pute\u0163i pune semn de carte la prima pagin\u0103","click for more information about the product":"Face\u0163i clic pentru mai multe informa\u0163ii despre produs","click to open the link":"Face\u0163i clic pentru a deschide link-ul","click to send an e-mail":"Face\u0163i clic pentru a trimite un e-mail","video":"video","go to the page":"Mergi la pagina","multimedia":"Multimedia","no result on this page":"Nu s-a g\u0103sit niciun rezultat pe aceast\u0103 pagin\u0103","your e-mail":"E-mail-ul dumneavoastr\u0103","use a comma to separate several e-mails":"Folosi\u0163i virgula pentru a separa mai multe e-mail-uri","0":"","click to magnify":"Face\u0163i clic pentru a m\u0103ri","the item has been added to your cart":"Trticolul a fost ad\u0103ugat \u00een c\u0103ruciorul dvs","my cart":"C\u0103ruciorul meu","Total":"Total","back":"\u00eenapoi","you don't have any bookmarks":"Nu ave\u0163i niciun semn de carte","download the whole document for offline use":"Desc\u0103rcarea \u00eentregului document \u00een vederea utiliz\u0103rii off-line","download for offline use":"Desc\u0103rcare \u00een vederea utiliz\u0103rii off-line","drag handle to switch page":"Trage\u0163i reperul pentru a trece la alt\u0103 pagin\u0103","add to cart":"Ad\u0103ugare \u00een c\u0103rucior","click to open the file":"Face\u0163i clic pentru a deschide fi\u015fierul","click to play the video":"Face\u0163i clic pentru a reda secven\u0163a video","back to previous page":"\u00eenapoi la pagina anterioar\u0103","download":"Desc\u0103rcare","archives":"Arhive","basket":"Co\u015f","switch between fullscreen and normal":"Comutare \u00eentre ecranul \u00eentreg \u015fi cel normal","switch on \/ switch off the sound":"Pornire\/oprire sunet","switch between 2d and 3d mode":"Comutare \u00eentre modul 2D \u015fi cel 3D","%name% invites you to discover %title%":"%name% ar dori s\u0103 v\u0103 prezinte %title%\n","Please click on the following link to open %title : %link%":"Face\u0163i clic pe leg\u0103tura de mai jos pentru deschidere %title%\n%link%","overview":"Prezentare general\u0103","search results for":"rezultatele c\u0103ut\u0103rii pentru","tap twice or spread your fingers to zoom in":"Atinge\u0163i de dou\u0103 ori sau desface\u0163i dou\u0103 degete pentru a transfoca","share on facebook":"Facebook","share on twitter":"Twitter"},"ru":{"printing will start automatically when pages are downloaded":"\u041f\u0435\u0447\u0430\u0442\u044c \u043d\u0430\u0447\u043d\u0435\u0442\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u043e\u0441\u043b\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446","normal view":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043e\u0442 \u0440\u0435\u0436\u0438\u043c\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u043a \u044d\u0441\u043a\u0438\u0437\u0430\u043c \u0441\u0442\u0440\u0430\u043d\u0438\u0446","zoom in":"\u0443\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c","zoom out":"\u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u044f \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430","print":"\u041f\u0435\u0447\u0430\u0442\u044c","tell a friend":"\u0420\u0430\u0441\u0441\u043a\u0430\u0437\u0430\u0442\u044c \u0434\u0440\u0443\u0433\u0443","search":"\u041f\u043e\u0438\u0441\u043a","add \/ remove bookmark":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c\/\u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0443","download pdf":"\u0421\u043a\u0430\u0447\u0430\u0442\u044c pdf-\u0444\u0430\u0439\u043b ","help":"\u041f\u043e\u043c\u043e\u0449\u044c ","switch between book and overview":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043e\u0442 \u0440\u0435\u0436\u0438\u043c\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u043a \u044d\u0441\u043a\u0438\u0437\u0430\u043c \u0441\u0442\u0440\u0430\u043d\u0438\u0446","zoom in and out":"\u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044f \u0438 \u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","previous double page":"\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439 \u0440\u0430\u0437\u0432\u043e\u0440\u043e\u0442","frontpage":"\u0411\u0440\u043e\u0448\u044e\u0440\u0430 \u0446\u0435\u043b\u0438\u043a\u043e\u043c","next double page":"\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437\u0432\u043e\u0440\u043e\u0442","last page":"\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","click once to zoom in, click again to zoom out":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 1 \u0440\u0430\u0437 \u0434\u043b\u044f \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044f\/\u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u044f \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430","roll the mouse wheel to zoom in\/out":"\u0423\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u0435\/\u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u0435 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430 \u043a\u043e\u043b\u0435\u0441\u0438\u043a\u043e\u043c \u043c\u044b\u0448\u0438","click and drag a corner to switch page":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0438 \u043f\u043e\u0442\u044f\u043d\u0438\u0442\u0435 \u0437\u0430 \u0443\u0433\u043e\u043b \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043b\u0438\u0441\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b","click on a bookmark to go to page":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0443, \u0447\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443","preparing print":"\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043f\u0435\u0447\u0430\u0442\u0438","right page":"\u041f\u0440\u0430\u0432\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","left page":"\u041b\u0435\u0432\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","spread":"\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c","entire brochure":"\u0411\u0440\u043e\u0448\u044e\u0440\u0430 \u0446\u0435\u043b\u0438\u043a\u043e\u043c","between pages":"\u041c\u0435\u0436\u0434\u0443 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u043c\u0438","one page per sheet":"\u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u043d\u0430 \u043e\u0434\u043d\u043e\u043c \u043b\u0438\u0441\u0442\u0435","two pages per sheet":"\u0434\u0432\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043d\u0430 \u043e\u0434\u043d\u043e\u043c \u043b\u0438\u0441\u0442\u0435","close":"\u0431\u043b\u0438\u0437\u043a\u043e","your name":"\u0412\u0430\u0448\u0435 \u0438\u043c\u044f","the message":"\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435","the e-mail(s) of your friend(s)":"\u0410\u0434\u0440\u0435\u0441(\u0430) e-mail \u0432\u0430\u0448\u0438\u0445 \u0434\u0440\u0443\u0437\u0435\u0439","send":"\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c","no result found":"\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Press the link below to open Fluidbook:","next page with the word":"\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u0441\u043e \u0441\u043b\u043e\u0432\u043e\u043c","previous page":"\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","%total% hits on %pages% pages, %this% hits on this page":"%total% \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043d\u0430 %pages% \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0445, %this% \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043d\u0430 \u044d\u0442\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435","chapters":"\u0420\u0430\u0437\u0434\u0435\u043b\u044b","marked pages":"\u041f\u043e\u043c\u0435\u0447\u0435\u043d\u043d\u044b\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b","you need to enter 3 letters to start searching":"\u041d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0432\u0432\u0435\u0441\u0442\u0438 3 \u0431\u0443\u043a\u0432\u044b, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0447\u0430\u0442\u044c \u043f\u043e\u0438\u0441\u043a","hit(s)":"\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442(\u043e\u0432)","go to page":"\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435","you can't bookmark the frontpage":"\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0443 \u0433\u043b\u0430\u0432\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443","click for more information about the product":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0442\u043e\u0432\u0430\u0440\u0435","click to open the link":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435","click to send an e-mail":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 e-mail","video":"video","go to the page":"\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435","multimedia":"Multimedia","no result on this page":"\u043d\u0438\u043a\u0430\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435","your e-mail":"\u0412\u0430\u0448 e-mail","use a comma to separate several e-mails":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e e-mail \u0430\u0434\u0440\u0435\u0441\u043e\u0432 \u0447\u0435\u0440\u0435\u0437 \u0437\u0430\u043f\u044f\u0442\u0443\u044e","0":"","click to magnify":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044f","the item has been added to your cart":"\u0422\u043e\u0432\u0430\u0440 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d \u0432 \u043a\u043e\u0440\u0437\u0438\u043d\u0443","my cart":"\u041c\u043e\u044f \u043a\u043e\u0440\u0437\u0438\u043d\u0430","Total":"\u0418\u0442\u043e\u0433\u043e","back":"\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0442\u044c","you don't have any bookmarks":"\u0423 \u0432\u0430\u0441 \u043d\u0435\u0442 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a","download the whole document for offline use":"\u0421\u043a\u0430\u0447\u0430\u0442\u044c \u0432\u0435\u0441\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435","download for offline use":"\u0421\u043a\u0430\u0447\u0430\u0442\u044c \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435","drag handle to switch page":"\u041f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043b\u0438\u0441\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446","add to cart":"\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u044c \u0432 \u043a\u043e\u0440\u0437\u0438\u043d\u0443","click to open the file":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u044f \u043f\u0430\u043f\u043a\u0438","click to play the video":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0432\u0438\u0434\u0435\u043e","back to previous page":"\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043d\u0430 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443","download":"\u0421\u043a\u0430\u0447\u0430\u0442\u044c","archives":"\u0410\u0440\u0445\u0438\u0432","basket":"\u043a\u043e\u0440\u0437\u0438\u043d\u0430","switch between fullscreen and normal":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043e\u0442 \u043e\u0431\u044b\u0447\u043d\u043e\u0433\u043e \u043a \u043f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u043e\u043c\u0443 \u0440\u0435\u0436\u0438\u043c\u0443","switch on \/ switch off the sound":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c\/\u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0432\u0443\u043a","switch between 2d and 3d mode":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043c\u0435\u0436\u0434\u0443 \u0444\u043e\u0440\u043c\u0430\u0442\u0430\u043c\u0438 2D \u0438 3D","%name% invites you to discover %title%":"%name% \u0445\u043e\u0447\u0435\u0442 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0430\u043c %title%\n","Please click on the following link to open %title : %link%":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u0441\u0441\u044b\u043b\u043a\u0443 \u0432\u043d\u0438\u0437\u0443 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430 %title%\n%link%","overview":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043e\u0442 \u0440\u0435\u0436\u0438\u043c\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u043a \u044d\u0441\u043a\u0438\u0437\u0430\u043c \u0441\u0442\u0440\u0430\u043d\u0438\u0446","search results for":"\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430","tap twice or spread your fingers to zoom in":"\u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u0432\u0430\u0436\u0434\u044b \u0434\u043b\u044f \u043f\u0440\u0438\u0431\u043b\u0438\u0436\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0440\u0430\u0441\u0442\u044f\u043d\u0438\u0442\u0435 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0443 \u0434\u0432\u0443\u043c\u044f \u043f\u0430\u043b\u044c\u0446\u0430\u043c\u0438","share on facebook":"Facebook","share on twitter":"Twitter"},"si":{"printing will start automatically when pages are downloaded":"","normal view":"\u0db1\u0ddd\u0db8\u0dbd\u0dca \u0dc0\u0dd3\u0dc0\u0dca","zoom in":"\u0da2\u0dd6\u0db8\u0dca \u0d89\u0db1\u0dca","zoom out":"\u0da2\u0dd6\u0db8\u0dca \u0d85\u0dc0\u0dd4\u0da7\u0dca","print":"\u0db8\u0dd4\u0daf\u0dca\u0dbb\u0dab\u0dba \u0d9a\u0dd2\u0dbb\u0dd2\u0db8","tell a friend":"\u0db8\u0dd2\u0dad\u02db\u0dbb\u0dd9\u0d9a\u02db\u0da7 \u0d9a\u0dd2\u0dba\u0db1\u0dca\u0db1","search":"\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1","add \/ remove bookmark":"\u200d\u0db6\u0dd4\u0d9a\u0dca\u0db8\u0dcf\u0d9a\u0dca \u0d92\u0d9a\u0dad\u02db\/\u0d89\u0dc0\u0dad\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","download pdf":"\u0db4\u0dd3 \u0da9\u0dd3 \u0d92\u0db5\u0dca \u0da9\u0dc0\u0dd4\u0db1\u0dca\u0dbd\u0ddc\u0da9\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","help":"\u0dc4\u0dd9\u0dbd\u0dca\u0db4\u0dca","switch between book and overview":"\u0db6\u0dd4\u0d9a\u0dca \u0dc3\u0dc4 \u0d94\u0dc0\u0dc0\u0dd2\u0dc0\u0dca \u0d85\u0dad\u0dbb \u0dc3\u0dca\u0dc0\u0dd2\u0da7\u0dca\u0da0\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","zoom in and out":"\u0da2\u0dd4\u0db8\u0dca \u0d89\u0db1\u0dca \u0dc3\u0dc4 \u0da2\u0dd4\u0db8\u0dca \u0d85\u0dc0\u0dd4\u0da7\u0dca","previous double page":"\u0db4\u0dd6\u0dbb\u0dca\u0dc0 \u0daf\u0dca\u0dc0\u0dd2\u0dad\u0dca\u0dc0 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","frontpage":"\u0db4\u0dd9\u0dbb \u0db4\u0dd2\u0da7\u0dd4\u0dc0","next double page":"\u0d8a\u0dc5\u0d9c \u0daf\u0dca\u0dc0\u0dd2\u0dad\u0dca\u0dc0 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","last page":"\u0d85\u0dc0\u0dc3\u0dcf\u0db1 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","click once to zoom in, click again to zoom out":"\u0da2\u0dd4\u0db8\u0dca \u0d89\u0db1\u0dca \u0db1\u0dd2\u0dbb\u0dd2\u0db8\u0da7 \u0dc0\u0dbb\u0d9a\u0dca \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1\u201a\u0d92 \u0dc0\u0dd9\u0d9c\u0dca\u0db8 \u0da2\u0dd4\u0db8\u0dca \u0d85\u0dc0\u0dd4\u0da7\u0dca \u0d9a\u0dd2\u0dbb\u0dd2\u0db8\u0da7","roll the mouse wheel to zoom in\/out":"\u0db8\u0dc0\u0dd4\u0dc3\u0dca \u0dc0\u0dd3\u0dbd\u0dca \u0d92\u0d9a \u0da2\u0dd4\u0db8\u0dca \u0d89\u0db1\u0dca\/\u0d85\u0dc0\u0dd4\u0da7\u0dd2 \u0d9a\u0dd2\u0dbb\u0dd2\u0db8\u0da7 \u0dbb\u0ddc\u0dbd\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","click and drag a corner to switch page":"\u0db4\u0dd2\u0da7\u0dd4 \u0db4\u0dd9\u0dbb\u0dc5\u0dd2\u0db8 \u0dc3\u0db3\u0dc4\u0dcf \u0d9a\u0ddd\u0db1\u0dbb\u0dba\u0d9a\u0dca \u0da9\u0dd9\u0dbb\u0dca\u0d9a\u0dca \u0d9a\u0ddc\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","click on a bookmark to go to page":"\u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0da7 \u0dba\u0dcf\u0db8 \u0dc3\u0daf\u0dc4\u0dcf \u0db6\u0dd4\u0d9a\u0dca\u0db8\u0dcf\u0d9a\u0dca \u0d92\u0d9a \u0db8\u0dad \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","preparing print":"\u0db8\u0dd4\u0321\u0daf\u0dca\u0dbb\u0dab \u0dc3\u0dd6\u0daf\u0dcf\u0db1\u0db8\u0dca \u0d9a\u0dd2\u0dbb\u0dd2\u0db8","right page":"\u0daf\u0d9a\u0dd4\u0dab\u0dd6 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","left page":"\u0dc0\u0db8\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0","spread":"\u0dc0\u0dca\u200d\u0dba\u0dcf\u0db4\u0dca\u0dad \u0d9a\u0dbb\u0db1\u0dca\u0db1","entire brochure":"\u0db8\u0dd4\u0dbd\u0dd4 \u0db6\u0dca\u200d\u0dbb\u0ddd\u0da0\u0dbb\u0dba","between pages":"\u0db4\u0dd2\u0da7\u0dd4 \u0d85\u0dad\u0dbb","one page per sheet":"\u0dc3\u0dd1\u0db8 \u0dc2\u0dd2\u0da7\u0dca\u0da7\u0dd4\u0dc0\u0d9a\u0db8 \u0d92\u0d9a \u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0d9a\u0dca","two pages per sheet":"\u0dc3\u0dd1\u0db8 \u0dc2\u0dd2\u0da7\u0dca\u0da7\u0dd4\u0dc0\u0d9a\u0db8 \u0db6\u0dd2\u0da7\u0dd4 \u0daf\u0dd9\u0d9a\u0d9a\u0dca","close":"\u0dc0\u0dc3\u0dcf \u0daf\u0dd0\u0db8\u0dd3\u0db8","your name":"\u0d94\u0db6\u0d9c\u0dda \u0db1\u0db8","the message":"\u0db4\u0dab\u0dd2\u0dc0\u0dd4\u0da9\u0dba","the e-mail(s) of your friend(s)":"\u0d94\u0db6\u0dd9\u0d9c\u0dca \u0db8\u0dd2\u0dad\u02db\u0dbb\u0dcf\u0d9c\u0dda \u0d8a-\u0db8\u0dda\u0dbd\u0dca \u0d85\u0d82\u0d9a\u0dba","send":"\u0dc3\u0dd9\u0db1\u0dca\u0da9\u0dca","no result found":"\u0db4\u0dca\u0dbb\u0dad\u0dd2\u0db5\u0dbd \u0dbd\u0dd0\u0db6\u0dd2 \u0db1\u0dd0\u0dad","fluidbook":"\u0dc6\u0dca\u0dbd\u0dd4\u0dba\u0dd2\u0da9\u0dca \u0db6\u0dd4\u0d9a\u0dca","press the link below to open Fluidbook:":"\u0dc6\u0dca\u0dbd\u0dd4\u0dba\u0dd2\u0da9\u0dca \u0db6\u0dd4\u0d9a\u0dca \u0d87\u0dbb\u0dd3\u0db8\u0da7 \u0db4\u0dc4\u0dad \u0daf\u0dd0\u0d9a\u0dca\u0dc0\u0dd9\u0db1 \u0dbd\u0dd2\u0d82\u0d9a\u0dca \u0d94\u0db6\u0db1\u0dca\u0db1","next page with the word":"\u0dc0\u0da0\u0db1 \u0dc3\u0db8\u0d9c \u0d8a\u0dc5\u0d9c \u0db4\u0dd2\u0da7\u0dd4\u0dc0","previous page":"\u0db4\u0dd6\u0dbb\u0dca\u0dc0 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","%total% hits on %pages% pages, %this% hits on this page":"%total% \u0dc4\u0dd2\u0da7\u0dca\u0dc3\u0dca \u0d94\u0db1\u0dca %pages% \u0db4\u0dd2\u0da7\u0dd4\u201a %this% \u0db8\u0dd9\u0db8 \u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0dda \u0dc4\u0dd2\u0da7\u0dca\u0dc3\u0dca \u0d94\u0db1\u0dca","chapters":"\u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da2\u0dda\u0daf","marked pages":"\u0db7\u0dcf\u0dc0\u0dd2\u0dad\u0dba\u0dda \u0db1\u0dd0\u0dad","you need to enter 3 letters to start searching":"\u0dc3\u0dd9\u0dc0\u0dd3\u0db8 \u0db4\u0da7\u0db1\u0dca \u0d9c\u0dd0\u0db1\u0dd2\u0db8 \u0dc3\u0db3\u0dc4\u0dca \u0d94\u0db6\u0da7 \u0d85\u0d9a\u02db\u0dbb\u0dd1 3 \u0d9a\u0dca \u0db4\u0dca\u0dbb\u0dd9\u0dc0\u0dca\u0dc1 \u0d9a\u0dc5 \u0dba\u0dd4\u0dad\u02db\u0dba","hit(s)":"\u0dc4\u0dd2\u0da7\u0dca (\u0dc4\u0dd2\u0da7\u0dca\u0dc3\u0dca)","go to page":"\u0db4\u0dd2\u0da7\u0dd4\u0dc0 \u0dc0\u0dd9\u0dad \u0dba\u0db1\u0dca\u0db1","you can't bookmark the frontpage":"\u0d94\u0db6\u0da7 \u0db8\u0dd4\u0dbd\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0da7 \u0db6\u0dd4\u0d9a\u0dca\u0db8\u0dcf\u0d9a\u0dca \u0d9a\u0dc5 \u0db1\u0ddc\u0dc4\u0dd0\u0d9a","click for more information about the product":"\u0d8b\u0dad\u0dca\u0db4\u0dcf\u0daf\u0db1 \u0d9c\u0dd0\u0db1 \u0dc0\u0dd0\u0da9\u0dd2\u0daf\u0dd4\u0dbb \u0daf\u0dd0\u0db1\u0d9c\u0dd0\u0db1\u0dd2\u0db8\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","click to open the link":"\u0dc3\u0db8\u0dca\u0db6\u0db1\u0dca\u0db0\u0dba \u0dc0\u0dd2\u0dc0\u0dbb \u0d9a\u0dd2\u0dbb\u0dd2\u0db8\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","click to send an e-mail":"\u0d8a-\u0db8\u0dd9\u0dbd\u0dca \u0d92\u0d9a\u0d9a\u0dca \u0dba\u0dd0\u0dc0\u0dd3\u0db8\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","video":"\u0dc0\u0dd3\u0da9\u0dd3\u0dba\u0ddd","go to the page":"\u0db4\u0dd2\u0da7\u0dd4\u0dc0 \u0dc0\u0dd9\u0dad\u0da7 \u0dba\u0db1\u0dca\u0db1","multimedia":"\u0db6\u0dc4\u0dd4 \u0db8\u0dcf\u0db0\u0dca\u200d\u0dba","no result on this page":"\u0db8\u0dd9\u0db8 \u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0dda \u0db4\u0dca\u0dbb\u0dad\u0dd2\u0db5\u0dbd \u0db1\u0dd0\u0dad","your e-mail":"\u0d94\u0db6\u0dd9\u0d9c\u0dca \u0d8a-\u0db8\u0dda\u0dbd\u0dca \u0d92\u0d9a","use a comma to separate several e-mails":"","0":"","click to magnify":"","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name% \u0d94\u0db6\u0da7 %title% \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1\u0da7 \u0d9a\u0dd0\u0db8\u0dd0\u0dad\u0dd2 \u0dc0\u0dd9\u0dba\u0dd2]\n","Please click on the following link to open %title : %link%":"%title% \u0dc0\u0dd2\u0dc0\u0dbb \u0d9a\u0dd2\u0dbb\u0dd2\u0db8 \u0dc3\u0db3\u0dc4\u0dcf \u0db4\u0dc4\u0dad \u0daf\u0dd0\u0d9a\u0dca\u0dc0\u0dd9\u0db1 %link% \u0d91\u0d9a\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1\n%link%","overview":"\u0d94\u0dc0\u0dc0\u0dd3\u0dc0\u0dca","search results for":"","tap twice or spread your fingers to zoom in":"","share on facebook":"","share on twitter":""},"sv":{"printing will start automatically when pages are downloaded":"Utskriften startar automatiskt n\u00e4r sidorna \u00e4r nerladdade","normal view":"Normal view","zoom in":"Zooma in","zoom out":"Zooma ut","print":"Skriv ut","tell a friend":"Tipsa en v\u00e4n","search":"S\u00f6k","add \/ remove bookmark":"L\u00e4gg till\/ta bort bokm\u00e4rke","download pdf":"Ladda ner pdf","help":"Hj\u00e4lp","switch between book and overview":"Switcha mellan bok och \u00f6versikt","zoom in and out":"Zooma in och ut","previous double page":"F\u00f6reg\u00e5ende uppslag","frontpage":"Framsidan","next double page":"N\u00e4sta uppslag","last page":"Baksidan","click once to zoom in, click again to zoom out":"Klicka f\u00f6r att zooma in, klicka igen f\u00f6r att zooma ut","roll the mouse wheel to zoom in\/out":"Rulla p\u00e5 hjulet f\u00f6r at zooma in\/ut","click and drag a corner to switch page":"Klicka och dra i ett h\u00f6rn f\u00f6r att v\u00e4nda sida","click on a bookmark to go to page":"Klicka p\u00e5 ett bokm\u00e4rke f\u00f6r att g\u00e5 till sidan","preparing print":"F\u00f6rbereder utskrift","right page":"H\u00f6ger sida","left page":"V\u00e4nster sida","spread":"Uppslaget","entire brochure":"Alla sidor","between pages":"Mellan sidorna","one page per sheet":"En sida per papper","two pages per sheet":"Tv\u00e5 sidor per papper","close":"St\u00e4ng","your name":"Ditt namn","the message":"Meddelande","the e-mail(s) of your friend(s)":"Din v\u00e4ns e-mail","send":"Skicka","no result found":"Din s\u00f6kning gav inga tr\u00e4ffar","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Tryck p\u00e5 l\u00e4nken f\u00f6r att \u00f6ppna Fluidbook: ","next page with the word":"N\u00e4sta sida med s\u00f6kordet","previous page":"F\u00f6reg\u00e5ende sida med s\u00f6kordet","%total% hits on %pages% pages, %this% hits on this page":"%total% tr\u00e4ffar p\u00e5 %pages% sidor, %this% tr\u00e4ffar p\u00e5 denna sidan","chapters":"Inneh\u00e5llsf\u00f6rteckning","marked pages":"Markerade sidor","you need to enter 3 letters to start searching":"S\u00f6kning sker ej p\u00e5 mindre \u00e4n 3 bokst\u00e4ver","hit(s)":"tr\u00e4ff(ar)","go to page":"G\u00e5 till sida","you can't bookmark the frontpage":"Det g\u00e5r inte att s\u00e4tta bokm\u00e4rke p\u00e5 omslaget","click for more information about the product":"Klicka f\u00f6r mer information om produkten","click to open the link":"Klicka f\u00f6r att \u00f6ppna l\u00e4nken","click to send an e-mail":"Klicka f\u00f6r att skicka ett e-mail","video":"video","go to the page":"G\u00e5 till sidan","multimedia":"Multimedia","no result on this page":"Inga tr\u00e4ffar p\u00e5 denna sidan","your e-mail":"Din e-mail","use a comma to separate several e-mails":"Anv\u00e4nd kommatecken f\u00f6r att skilja flera e-postmeddelanden","0":"","click to magnify":"Klicka f\u00f6r att f\u00f6rstora","the item has been added to your cart":"objektet har lagts till din varukorg","my cart":"Varukorg","Total":"Summa","back":"Tillbaka","you don't have any bookmarks":"Du har inga bokm\u00e4rken","download the whole document for offline use":"Ladda ner hela dokumentet f\u00f6r anv\u00e4ndning offline","download for offline use":"Ladda ner f\u00f6r anv\u00e4ndning offline","drag handle to switch page":"Dra handtaget f\u00f6r att byta sida","add to cart":"","click to open the file":"Klicka f\u00f6r att \u00f6ppna filen","click to play the video":"Klicka f\u00f6r att spela videon","back to previous page":"Tillbaka till f\u00f6reg\u00e5ende sida","download":"Ladda ner pdf","archives":"Arkiv","basket":"Kundkorg","switch between fullscreen and normal":"V\u00e4xla mellan fullsk\u00e4rm och normal","switch on \/ switch off the sound":"S\u00e4tta p\u00e5 \/ st\u00e4nga av ljudet","switch between 2d and 3d mode":"V\u00e4xla mellan 2D och 3D","%name% invites you to discover %title%":"%name% tycker att du ska ta en titt p\u00e5 %title%\n","Please click on the following link to open %title : %link%":"Klicka p\u00e5 l\u00e4nken nedan f\u00f6r att \u00f6ppna %title%\n%link%","overview":"\u00d6versikt","search results for":"s\u00f6kresultat f\u00f6r","tap twice or spread your fingers to zoom in":"peka tv\u00e5 g\u00e5nger eller sprid fingrarna f\u00f6r att zooma in","share on facebook":"Dela p\u00e5 Facebook","share on twitter":"Dela p\u00e5 Twitter"},"zh":{"click to hide help":"","hover your mouse to display again this help":"","printing will start automatically when pages are downloaded":"","normal view":"\u5e38\u89c4\u89c6\u7a97","zoom in":"\u653e\u5927","zoom out":"\u7f29\u5c0f","print":"\u6253\u5370","tell a friend":"\u544a\u8bc9\u597d\u53cb","search":"\u641c\u5bfb","add \/ remove bookmark":"\u589e\u52a0\/\u5220\u9664\u4e66\u7b7e","download pdf":"\u4e0b\u8f7dPDF\u6587\u4ef6","help":"\u5e2e\u52a9","switch between book and overview":"\u5728\u5f53\u524d\u9875\u548c\u7d22\u5f15\u4e4b\u95f4\u8f6c\u6362","zoom in and out":"\u653e\u5927\u548c\u7f29\u5c0f","previous double page":"\u4e0a\u4e00\u9875","frontpage":"\u5c01\u9762","next double page":"\u4e0b\u4e00\u9875","last page":"\u5c01\u5e95","click once to zoom in, click again to zoom out":"\u5355\u51fb\u653e\u5927\uff0c\u53cc\u51fb\u7f29\u5c0f","roll the mouse wheel to zoom in\/out":"\u62d6\u52a8\u9f20\u6807\u6eda\u8f6e\u653e\u5927\/\u7f29\u5c0f","click and drag a corner to switch page":"\u70b9\u51fb\u62d6\u52a8\u4e66\u89d2\u7ffb\u9875","click on a bookmark to go to page":"\u70b9\u51fb\u4e66\u7b7e\u56de\u5230\u6b64\u9875","preparing print":"\u6b63\u5728\u6253\u5370\u4e2d","right page":"\u53f3\u9875","left page":"\u5de6\u9875","spread":"\u6574\u7248","entire brochure":"\u6574\u518c","between pages":"\u4ece \u2026\u9875 \u5230\u2026\u9875","one page per sheet":"\u4e00\u5f20\u4e00\u9875","two pages per sheet":"\u4e00\u5f20\u4e24\u9875","close":"\u5173\u95ed","your name":"\u60a8\u7684\u59d3","the message":"\u60a8\u7684\u7559\u8a00","the e-mail(s) of your friend(s)":"\u597d\u53cb\u7684\u7535\u5b50\u90ae\u7bb1","send":"\u53d1\u9001","no result found":"\u65e0\u7ed3\u679c","fluidbook":"\u52a8\u611f\u4e4b\u4e66","press the link below to open Fluidbook:":"\u70b9\u51fb\u540e\u9762\u94fe\u63a5\u4ee5\u6253\u5f00\u52a8\u611f\u4e4b\u4e66","next page with the word":"\u4e0b\u4e00\u641c\u5bfb\u7ed3\u679c","previous page":"\u4e0a\u4e00\u641c\u5bfb\u7ed3\u679c","%total% hits on %pages% pages, %this% hits on this page":"\u603b\u5171\u5728%pages%\u9875\u627e\u5230%total%\u4e2a\u641c\u5bfb\u7ed3\u679c \u5728\u6b64\u9875\u4e0a\u7684%this%\u4e2a\u641c\u5bfb\u7ed3\u679c ","chapters":"\u76ee\u5f55","marked pages":"\u4e66\u7b7e\u9875","you need to enter 3 letters to start searching":"\u4f60\u5e94\u8be5\u81f3\u5c11\u6253\u4e09\u4e2a\u5b57\u6bcd","hit(s)":"\u641c\u5bfb\u7ed3\u679c","go to page":"\u8bf7\u770b\u7b2c\u2026\u9875","you can't bookmark the frontpage":"\u4f60\u4e0d\u80fd\u5728\u5c01\u9762\u4e0a\u4f5c\u4e66\u7b7e\u8bb0\u53f7","click for more information about the product":"\u66f4\u591a\u7684\u4fe1\u606f","click to open the link":"\u70b9\u51fb\u8bbf\u95ee\u7f51\u9875","click to send an e-mail":"\u53d1\u9001\u90ae\u4ef6","video":"\u89c6\u9891","go to the page":"\u8bf7\u770b\u7b2c\u2026\u9875 ","multimedia":"\u591a\u5a92\u4f53","no result on this page":"\u6b64\u9875\u6ca1\u6709\u60a8\u8981\u627e\u7684\u5185\u5bb9","your e-mail":"\u60a8\u7684\u90ae\u4ef6","use a comma to separate several e-mails":"\u7535\u5b50\u90ae\u4ef6\u4e4b\u95f4\u8bf7\u7528\u9017\u53f7\u5206\u5f00","0":"","click to magnify":"","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"\u4e0b\u8f7d","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"\u5207\u6362\u58f0\u97f3","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name%\u9080\u8bf7\u60a8\u53c2\u89c2%title%\n","Please click on the following link to open %title : %link%":"\u8bf7\u70b9\u51fb\u540e\u9762\u7684\u94fe\u63a5\u4ee5\u6253\u5f00%title% \n%link%","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"","overview":"\u7d22\u5f15","search results for":"","share on facebook":"","share on twitter":"","home":"","find a distributor":"","tel:":"","Send details by email":"","promotions":"","next to me":""},"tr":{"printing will start automatically when pages are downloaded":"Sayfalar y\u00fcklendi\u011finde, bask\u0131 otomatik olarak ba\u015flat\u0131lacakt\u0131r","normal view":"Normal g\u00f6r\u00fcn\u00fcm","zoom in":"Yak\u0131nla\u015ft\u0131r","zoom out":"Uzakla\u015ft\u0131r","print":"Bask\u0131","tell a friend":"Arkada\u015f\u0131na bahset","search":"Ara","add \/ remove bookmark":"Yer i\u015fareti ekle\/kald\u0131r","download pdf":"PDF indir","help":"Yard\u0131m","switch between book and overview":"Kitap g\u00f6r\u00fcn\u00fcm\u00fc ile genel g\u00f6r\u00fcn\u00fcm aras\u0131nda ge\u00e7i\u015f yap","zoom in and out":"Yak\u0131nla\u015ft\u0131r ve uzakla\u015ft\u0131r","previous double page":"\u00d6nceki iki sayfa","frontpage":"\u00d6n sayfa","next double page":"Sonraki iki sayfa","last page":"Son sayfa","click once to zoom in, click again to zoom out":"Yak\u0131nla\u015ft\u0131rmak i\u00e7in bir kez t\u0131klat\u0131n, uzakla\u015ft\u0131rmak i\u00e7in tekrar t\u0131klat\u0131n","roll the mouse wheel to zoom in\/out":"Yak\u0131nla\u015ft\u0131rmak\/uzakla\u015ft\u0131rmak i\u00e7in fare tekerle\u011fini d\u00f6nd\u00fcr\u00fcn","click and drag a corner to switch page":"Sayfay\u0131 de\u011fi\u015ftirmek i\u00e7in bir k\u00f6\u015feye t\u0131klat\u0131p s\u00fcr\u00fckleyin\n","click on a bookmark to go to page":"\u0130lgili sayfaya gitmek i\u00e7in yer i\u015faretini t\u0131klat\u0131n\n","preparing print":"Bask\u0131 haz\u0131rl\u0131\u011f\u0131","right page":"Sa\u011f sayfa","left page":"Sol sayfa","spread":"Yay","entire brochure":"T\u00fcm bro\u015f\u00fcr","between pages":"Sayfalar aras\u0131","one page per sheet":"Her yaprakta tek sayfa","two pages per sheet":"Her yaprakta iki sayfa","close":"Kapat","your name":"Ad\u0131n\u0131z","the message":"Mesaj\u0131n\u0131z","the e-mail(s) of your friend(s)":"Arkada\u015f(lar)\u0131n\u0131z\u0131n e-posta adres(ler)i","send":"G\u00f6nder","no result found":"Sonu\u00e7 bulunamad\u0131","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Fluidbook'u a\u00e7mak i\u00e7in l\u00fctfen a\u015fa\u011f\u0131daki ba\u011flant\u0131y\u0131 t\u0131klat\u0131n:","next page with the word":"S\u00f6z\u00fc i\u00e7eren sonraki sayfa","previous page":"\u00d6nceki sayfa","%total% hits on %pages% pages, %this% hits on this page":"%pages% sayfada %total% sonu\u00e7, bu sayfada %this% sonu\u00e7","chapters":"B\u00f6l\u00fcmler","marked pages":"\u0130\u015faretli sayfalar","you need to enter 3 letters to start searching":"Aramay\u0131 ba\u015flatabilmek i\u00e7in 3 harf girmeniz gerekiyor","hit(s)":"sonu\u00e7","go to page":"Sayfaya git","you can't bookmark the frontpage":"\u00d6n sayfaya yer i\u015fareti koyamazs\u0131n\u0131z","click for more information about the product":"\u00dcr\u00fcn hakk\u0131nda daha fazla bilgi i\u00e7in t\u0131klat\u0131n","click to open the link":"Ba\u011flant\u0131y\u0131 a\u00e7mak i\u00e7in t\u0131klat\u0131n","click to send an e-mail":"E-posta g\u00f6ndermek i\u00e7in t\u0131klat\u0131n","video":"video","go to the page":"Sayfaya git","multimedia":"Multimedya","no result on this page":"Bu sayfada sonu\u00e7 yok","your e-mail":"E-posta adresiniz","use a comma to separate several e-mails":"Birden \u00e7ok e-postay\u0131 ay\u0131rmak i\u00e7in virg\u00fcl kullan\u0131n","0":"","click to magnify":"B\u00fcy\u00fctmek i\u00e7in t\u0131klat\u0131n","the item has been added to your cart":"Bu \u00f6\u011fe sepetinize eklendi","my cart":"Sepetim","Total":"Toplam","back":"Geri","you don't have any bookmarks":"Hi\u00e7 yer i\u015faretiniz yok","download the whole document for offline use":"\u00c7evrimd\u0131\u015f\u0131 kullan\u0131m i\u00e7in belgenin tamam\u0131n\u0131 indirin","download for offline use":"\u00c7evrimd\u0131\u015f\u0131 kullan\u0131m i\u00e7in indir","drag handle to switch page":"Sayfay\u0131 de\u011fi\u015ftirmek i\u00e7in bu \u00f6\u011feyi s\u00fcr\u00fckleyin","add to cart":"Sepete ekle","click to open the file":"Dosyay\u0131 a\u00e7mak i\u00e7in t\u0131klat\u0131n","click to play the video":"Videoyu oynatmak i\u00e7in t\u0131klat\u0131n","back to previous page":"\u00d6nceki sayfaya d\u00f6n","download":"\u0130ndir","archives":"Ar\u015fivler","basket":"Sepetiniz","switch between fullscreen and normal":"Tam ekran ile normal ekran aras\u0131nda ge\u00e7i\u015f yap","switch on \/ switch off the sound":"Sesi a\u00e7\/kapat","switch between 2d and 3d mode":"2 boyutlu mod ile 3 boyutlu mod aras\u0131nda ge\u00e7i\u015f yap","%name% invites you to discover %title%":"%name% size \u015funu g\u00f6stermek istiyor: %title%\n","Please click on the following link to open %title : %link%":"\u015eunu a\u00e7mak i\u00e7in a\u015fa\u011f\u0131daki ba\u011flant\u0131y\u0131 t\u0131klat\u0131n: %title%\n%link%","overview":"Genel g\u00f6r\u00fcn\u00fcm","search results for":"\u015eunun i\u00e7in arama sonu\u00e7lar\u0131:","tap twice or spread your fingers to zoom in":"Yak\u0131nla\u015ft\u0131rmak i\u00e7in iki kez dokunun ya da parmaklar\u0131n\u0131z\u0131 yay\u0131n","share on facebook":"Facebook'ta payla\u015f","share on twitter":"Twitter'da payla\u015f"},"hu":{"click to hide help":"Kattintson a Help elt\u00fcntet\u00e9s\u00e9hez","hover your mouse to display again this help":"Mozgassa meg az egeret a Help megjelen\u00edt\u00e9s\u00e9hez\n","you don't have any bookmarks":"Nincsenek k\u00f6nyvjelz\u0151i","printing will start automatically when pages are downloaded":"A nyomtat\u00e1s automatikusan indul let\u00f6lt\u00e9s ut\u00e1n","normal view":"Norm\u00e1l n\u00e9zet","zoom in":"Nagy\u00edt\u00e1s","zoom out":"Kicsiny\u00edt\u00e9s","print":"Nyomtat\u00e1s","tell a friend":"Aj\u00e1nlom ismer\u0151s\u00f6mnek","search":"Keres\u00e9s","add \/ remove bookmark":"K\u00f6nyvjelz\u0151 Hozz\u00e1ad\u00e1sa\/T\u00f6rl\u00e9se","download pdf":"PDF let\u00f6lt\u00e9se","help":"Help","switch between book and overview":"V\u00e1lt\u00e1s k\u00f6nyv \u00e9s r\u00e1n\u00e9zet k\u00f6z\u00f6tt","zoom in and out":"Kicsiny\u00edt\u00e9s, nagy\u00edt\u00e1s","previous double page":"El\u0151z\u0151 dupla oldal","frontpage":"C\u00edmlap","next double page":"K\u00f6vetkez\u0151 dupla oldal","last page":"Utols\u00f3 oldal","click once to zoom in, click again to zoom out":"Kattintson egyszer a nagy\u00edt\u00e1shoz, m\u00e9g egyszer a kicsiny\u00edt\u00e9shez","roll the mouse wheel to zoom in\/out":"Tekerje az egeret a zoomol\u00e1shoz","click and drag a corner to switch page":"Kattintson a sarokba \u00e9s h\u00fazzon a lapoz\u00e1shoz","click on a bookmark to go to page":"Kattintson a k\u00f6nyvjelz\u0151re az oldalra ugr\u00e1shoz","preparing print":"Nyomtat\u00e1s el\u0151k\u00e9sz\u00edt\u00e9se","right page":"Jobb oldali lap","left page":"Bal oldali lap","spread":"Sz\u00e9th\u00faz\u00e1s","entire brochure":"Teljes bross\u00fara","between pages":"Oldalak k\u00f6z\u00f6tt","one page per sheet":"Egy oldal \u00edvenk\u00e9nt","two pages per sheet":"K\u00e9t oldal \u00edvenk\u00e9nt","close":"Bez\u00e1r\u00e1s\n","your name":"Neve","the message":"\u00dczenet","the e-mail(s) of your friend(s)":"Bar\u00e1t(ai) e-mail c\u00edme(i):","send":"K\u00fcld\u00e9s","no result found":"Nincs eredm\u00e9ny","fluidbook":"Folyad\u00e9kk\u00f6nyv","press the link below to open Fluidbook:":"Kattintson a hivatkoz\u00e1sra a K\u00f6nyv megnyit\u00e1s\u00e1hoz","next page with the word":"K\u00f6vetkez\u0151 oldal a sz\u00f3val","previous page":"El\u0151z\u0151 oldal","%total% hits on %pages% pages, %this% hits on this page":"%total% tal\u00e1lat %pages% oldalak %this% tal\u00e1lat ezen az oldalon","chapters":"Tartalom\n","marked pages":"Jel\u00f6lt oldalak","you need to enter 3 letters to start searching":"3 bet\u0171t be kell \u00edrni a keres\u00e9s kezd\u00e9s\u00e9hez","hit(s)":"tal\u00e1lat(ok)","go to page":"Menj az oldalra","you can't bookmark the frontpage":"Nem lehet a kezd\u0151oldalra k\u00f6nyvjelz\u0151t tenni","click for more information about the product":"Kattintson tov\u00e1bbi inform\u00e1ci\u00f3\u00e9rt a term\u00e9kr\u0151l","click to open the link":"Kattintson a hivatkoz\u00e1s megnyit\u00e1s\u00e1hoz","click to send an e-mail":"Kattintson e-mail k\u00fcld\u00e9s\u00e9hez","video":"Video","go to the page":"Menj az oldalra","multimedia":"Multim\u00e9dia","no result on this page":"Nincs eredm\u00e9ny ezen az oldalon","your e-mail":"Az \u00d6n e-mail c\u00edme","use a comma to separate several e-mails":"Haszn\u00e1ljon vessz\u0151t az e-mailek elv\u00e1laszt\u00e1s\u00e1hoz","":"","click to magnify":"Kattintson a nagy\u00edt\u00e1shoz","the item has been added to your cart":"A cikket hozz\u00e1adtuk a kartonj\u00e1hoz","my cart":"Kartonom","Total":"Teljes","share bookmarks":"megoszt\u00e1s k\u00f6nyvjelz\u0151k","%title%":"Vissza","Please see the attached files from \"%title%\".":"K\u00e9rj\u00fck, olvassa el a csatolt f\u00e1jlokat \"%title%\".","bookmarks":"k\u00f6nyvjelz\u0151k","back":"Vissza","download the whole document for offline use":"Teljes dokumentum let\u00f6lt\u00e9se az offline haszn\u00e1lathoz","download for offline use":"Let\u00f6lt\u00e9s az offline haszn\u00e1lathoz","drag handle to switch page":"H\u00fazza a fog\u00f3t a lapoz\u00e1shoz","add to cart":"Adja a kartonhoz","click to open the file":"Kattintson a megnyit\u00e1shoz","click to play the video":"Kattintson a vide\u00f3 lej\u00e1tsz\u00e1s\u00e1hoz","back to previous page":"Vissza az el\u0151z\u0151 oldalra","download":"Let\u00f6lt\u00e9s","archives":"Arch\u00edvum","basket":"Az \u00d6n kartonja","switch between fullscreen and normal":"V\u00e1lt\u00e1s teljes k\u00e9perny\u0151s \u00e9s norm\u00e1l n\u00e9zet k\u00f6z\u00f6tt","switch on \/ switch off the sound":"Hang be \/ kikapcsol\u00e1sa","switch between 2d and 3d mode":"V\u00e1lt\u00e1s 2. \u00e9s 3. m\u00f3d k\u00f6z\u00f6tt","share by email":"megoszt\u00e1s email","share on twitter":"megoszt\u00e1s Twitteren\n","share on facebook":"megoszt\u00e1s Facebookon","share":"megoszt\u00e1s","%name% invites you to discover %title%":"%name% megh\u00edv\u00e1s felfedez\u00e9sre %title%","Please click on the following link to open %title : %link%":"Kattintson a k\u00f6vetkez\u0151 hivatkoz\u00e1sra a %title% %link% megnyit\u00e1s\u00e1hoz","An update of the publication is available. Do you want to load it ?":"A publik\u00e1ci\u00f3 friss\u00edt\u00e9se el\u00e9rhet\u0151. T\u00f6lteni akarja?","tap twice or spread your fingers to zoom in":"Kattintson k\u00e9tszer vagy h\u00fazza sz\u00e9t az ujjait a zoomol\u00e1shoz","overview":"\u00c1ttekint\u00e9s","search results for":"Keres\u00e9s","home":"Haza","find a distributor":"megtal\u00e1lni a forgalmaz\u00f3","tel:":"tel:","Send details by email":"K\u00fcld\u00e9s tov\u00e1bbi r\u00e9szletek e-mailben","promotions":"akci\u00f3k","next to me":"mell\u00e9m"}},"defaultLang":"fr","numerotation":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52"],"id":"11001","cacheDate":1355909213,"optimalWidth":567,"optimalHeight":709,"chapters":[{"page":"5","color":"","level":0,"label":"01. FONDAMENTAUX"},{"page":"17","color":"","level":0,"label":"02. CARTE DE VISITE"},{"page":"23","color":"","level":0,"label":"03. PAPIER \u00c0 EN-T\u00caTE"},{"page":"29","color":"","level":0,"label":"04. DEVIS ET FACTURE"},{"page":"33","color":"","level":0,"label":"05. DOSSIER DE PRESSE"},{"page":"45","color":"","level":0,"label":"06. POWERPOINT"},{"page":"51","color":"","level":0,"label":"07. T\u00c9L\u00c9CHARGEMENTS"}],"coquilletteBack":"#ffffff","coquilletteFront":"#283943","videoFormats":["mp4","ogv","webm","flv"],"standalone":false}; +function fb(a){console!=undefined&&console.log(a);return}function isMobile(){var a=navigator.userAgent,b=["iphone","ipad","ipod","droid","blackberry","mobile","htc","samsung","nokia","archos","galaxy","motorola","pad","tab","slate","motorola","symbian","phone","nintendo","playstation","touch","webos","ericsson"],c;if(Modernizr.touch)return!0;for(i=0;i-1)return!0}return!1}function parseGet(){var a=window.location.search.substr(1).split("&"),b=[],c=[];for(var d=0;d-1||this.userAgent.search(/galaxy/i)>-1,this.android3=this.android&&this.userAgent.search(/android 3/i)>-1,this.iOS=this.userAgent.search(/ipad/i)>-1||this.userAgent.search(/iphone/i)>-1||this.userAgent.search(/ipod/i)>-1,this.transitions3d=Modernizr.csstransforms3d&&Modernizr.csstransitions,this.transitions2d=Modernizr.csstransforms&&Modernizr.csstransitions,this.transitionendevents=["transitionEnd","transitionend","mozTransitionEnd","webkitTransitionEnd","oTransitionEnd","msTransitionEnd"].join(" "),this.initialResolution=150,this.isMobile=isMobile(),this.SVG=Modernizr.svg&&this.fluidbook.datas.mobileIconVector,this._orientation=this.getOrientation(),this.initEvents()}function FluidbookVideo(a){this.fluidbook=a,this.flash=FlashDetect.installed&&FlashDetect.major>=9,this.video=(Modernizr.video&&(Modernizr.video.h264||Modernizr.video.webm||Modernizr.video.ogg))!=0,this.videoFormats=[];var b=[],c=[],d=[];Modernizr.touch&&this.flash&&b.push("flv"),fb(this.fluidbook.datas.videoFormats.join(","));if(this.video){var e=this.fluidbook.datas.videoFormats;for(var f=0;f-1){b!=undefined&&b();return}jsLibraries[jsLibraries.length]=a;var c=document.createElement("script");c.type="text/javascript",c.readyState?c.onreadystatechange=function(){if(c.readyState=="loaded"||c.readyState=="complete")c.onreadystatechange=null,b!=undefined&&b()}:c.onload=function(){b!=undefined&&b()},c.src=a,document.getElementsByTagName("head")[0].appendChild(c)}function init(){fluidbook=new Fluidbook(DATAS),fluidbook.loadPlugins(),fluidbook.loader.preloadPages(),desktopScale=1,desktopScaleAmount=1.5,$("#main").css("display","block"),initEvents()}function initEvents(){resize(!0),$(window).bind("hashchange",function(){if(maskHashChange)return;fluidbook.stats.trackPageChange(),fluidbook.changeAddress()}),$("#logo").click(clickLogo),$(document).on("click",".mview .back",function(){if($(this).hasClass("closeView"))return fluidbook.closeView(function(){},!1),$(this).attr("href")!="#"&&(maskHashChange=!0,window.location=$(this).attr("href"),setTimeout(function(){maskHashChange=!1},200)),!1;if($(this).attr("href")=="#")return window.location.hash="/page/"+fluidbook.currentPage,!1}),setTimeout(function(){resize()},1e3),fluidbook.changeAddress()}function checkScroll(){if(fluidbook.viewMode())return;if(window.innerWidth==0)return;var a=$(window).width()/2-window.scrollX,b=window.innerWidth-a,c=a7||(k>6&&j<8||k<8&&j>6)&&i>5)?h&&n():h||m()}var b=navigator.userAgent;!!/iPhone|iPad|iPod/.test(navigator.platform);var c=a.document;if(!c.querySelector)return;var d=c.querySelector("meta[name=viewport]"),e=d&&d.getAttribute("content"),f=e+",maximum-scale=1",g=e+",maximum-scale=1",h=!0,i,j,k,l;if(!d)return;a.addEventListener("orientationchange",m,!1),a.addEventListener("devicemotion",o,!1)})(this);var DetectZoom={mediaQueryBinarySearch:function(a,b,c,d,e,f){function l(c,d,e){var h=(c+d)/2;if(e==0||d-c",a,""].join(""),k.id=h,m.innerHTML+=f,m.appendChild(k),l||(m.style.background="",g.appendChild(m)),i=c(k,a),l?k.parentNode.removeChild(k):m.parentNode.removeChild(m),!!i},z=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return y("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},A=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=F(e[d],"function"),F(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),B={}.hasOwnProperty,C;!F(B,"undefined")&&!F(B.call,"undefined")?C=function(a,b){return B.call(a,b)}:C=function(a,b){return b in a&&F(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=w.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(w.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(w.call(arguments)))};return e});var K=function(c,d){var f=c.join(""),g=d.length;y(f,function(c,d){var f=b.styleSheets[b.styleSheets.length-1],h=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"",i=c.childNodes,j={};while(g--)j[i[g].id]=i[g];e.touch="ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch||(j.touch&&j.touch.offsetTop)===9,e.csstransforms3d=(j.csstransforms3d&&j.csstransforms3d.offsetLeft)===9&&j.csstransforms3d.offsetHeight===3,e.generatedcontent=(j.generatedcontent&&j.generatedcontent.offsetHeight)>=1,e.fontface=/src/i.test(h)&&h.indexOf(d.split(" ")[0])===0},g,d)}(['@font-face {font-family:"font";src:url("https://")}',["@media (",n.join("touch-enabled),("),h,")","{#touch{top:9px;position:absolute}}"].join(""),["@media (",n.join("transform-3d),("),h,")","{#csstransforms3d{left:9px;position:absolute;height:3px;}}"].join(""),['#generatedcontent:after{content:"',l,'";visibility:hidden}'].join("")],["fontface","touch","csstransforms3d","generatedcontent"]);s.flexbox=function(){return J("flexOrder")},s["flexbox-legacy"]=function(){return J("boxDirection")},s.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},s.canvastext=function(){return!!e.canvas&&!!F(b.createElement("canvas").getContext("2d").fillText,"function")},s.webgl=function(){try{var d=b.createElement("canvas"),e;e=!(!a.WebGLRenderingContext||!d.getContext("experimental-webgl")&&!d.getContext("webgl")),d=c}catch(f){e=!1}return e},s.touch=function(){return e.touch},s.geolocation=function(){return!!navigator.geolocation},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!J("indexedDB",a)},s.hashchange=function(){return A("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!!a.history&&!!history.pushState},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){for(var b=-1,c=p.length;++b",d.insertBefore(c.lastChild,d.firstChild)}function h(){var a=k.elements;return typeof a=="string"?a.split(" "):a}function i(a){var b={},c=a.createElement,e=a.createDocumentFragment,f=e();a.createElement=function(a){var e=(b[a]||(b[a]=c(a))).cloneNode();return k.shivMethods&&e.canHaveChildren&&!d.test(a)?f.appendChild(e):e},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+h().join().replace(/\w+/g,function(a){return b[a]=c(a),f.createElement(a),'c("'+a+'")'})+");return n}")(k,f)}function j(a){var b;return a.documentShived?a:(k.shivCSS&&!e&&(b=!!g(a,"article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")),f||(b=!i(a)),b&&(a.documentShived=b),a)}var c=a.html5||{},d=/^<|^(?:button|form|map|select|textarea)$/i,e,f;(function(){var a=b.createElement("a");a.innerHTML="",e="hidden"in a,f=a.childNodes.length==1||function(){try{b.createElement("a")}catch(a){return!0}var c=b.createDocumentFragment();return typeof c.cloneNode=="undefined"||typeof c.createDocumentFragment=="undefined"||typeof c.createElement=="undefined"}()})();var k={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:j};a.html5=k,j(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.mq=z,e.hasEvent=A,e.testProp=function(a){return H([a])},e.testAllProps=J,e.testStyles=y,e.prefixed=function(a,b,c){return b?J(a,b,c):J(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),typeof JSON!="object"&&(JSON={}),function(){function f(a){return a<10?"0"+a:a}function quote(a){return escapable.lastIndex=0,escapable.test(a)?'"'+a.replace(escapable,function(a){var b=meta[a];return typeof b=="string"?b:"\\u"+("0000"+a.charCodeAt(0).toString(16)).slice(-4)})+'"':'"'+a+'"'}function str(a,b){var c,d,e,f,g=gap,h,i=b[a];i&&typeof i=="object"&&typeof i.toJSON=="function"&&(i=i.toJSON(a)),typeof rep=="function"&&(i=rep.call(b,a,i));switch(typeof i){case"string":return quote(i);case"number":return isFinite(i)?i+"":"null";case"boolean":case"null":return i+"";case"object":if(!i)return"null";gap+=indent,h=[];if(Object.prototype.toString.apply(i)==="[object Array]"){f=i.length;for(c=0;c=b},a.minorAtLeast=function(b){return a.minor>=b},a.revisionAtLeast=function(b){return a.revision>=b},a.versionAtLeast=function(b){var c=[a.major,a.minor,a.revision],d=Math.min(c.length,arguments.length);for(i=0;i0){var c="application/x-shockwave-flash",g=navigator.mimeTypes;if(g&&g[c]&&g[c].enabledPlugin&&g[c].enabledPlugin.description){var h=g[c].enabledPlugin.description,i=f(h);a.raw=i.raw,a.major=i.major,a.minor=i.minor,a.revisionStr=i.revisionStr,a.revision=i.revision,a.installed=!0}}else if(navigator.appVersion.indexOf("Mac")==-1&&window.execScript){var h=-1;for(var j=0;j=0===c})}function kb(a){var b=lb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function Cb(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function Db(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){Ib=e.body.appendChild(Ib||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!Jb||!Ib.createElement)Jb=(Ib.contentWindow||Ib.contentDocument).document,Jb.write(""),Jb.close();b=Jb.body.appendChild(Jb.createElement(a)),c=Hb(b,"display"),e.body.removeChild(Ib)}return Sb[a]=c,c}function ic(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ec.test(a)?d(a,e):ic(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ic(a+"["+e+"]",b[e],c,d);else d(a,b)}function zc(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d +,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?f=u.exec(a):f=[null,a,null];if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?a+"":E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return Function("return "+b)();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=Array(d),i=Array(d),j=Array(d);for(;b
a",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="
t
",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p=="undefined"||!!a&&p.event.triggered===a.type?b:p.event.dispatch.apply(h.elem,arguments)},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function cb(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return pb(a.replace(L,"$1"),b,c,d,i)}function db(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function eb(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function fb(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function gb(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function hb(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?cb.error(a):C(a,i).slice(0)}function ib(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function jb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function kb(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&jb(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=kb(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&cb.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function ob(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function qb(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=RegExp("^"+E+"*,"+E+"*"),N=RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+I),PSEUDO:RegExp("^"+J),POS:RegExp(K,"i"),CHILD:RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ab=X(function(a){a.id=o+0,a.innerHTML="
",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}cb.matches=function(a,b){return cb(a,null,null,b)},cb.matchesSelector=function(a,b){return cb(b,null,null,[a]).length>0},f=cb.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=cb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=cb.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},cb.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=cb.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ab&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||cb.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&cb.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=hb(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=cb.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||cb.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return cb(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:db("radio"),checkbox:db("checkbox"),file:db("file"),password:db("password"),image:db("image"),submit:eb("submit"),reset:eb("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:fb(function(a,b,c){return[0]}),last:fb(function(a,b,c){return[b-1]}),eq:fb(function(a,b,c){return[c<0?c+b:c]}),even:fb(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:fb(function(a,b,c){for(var d=c<0?c+b:c;++d",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="

",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=RegExp(e.join("|")),pb=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=hb(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=RegExp(f.join("|")),cb.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return cb(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=qb.prototype=e.pseudos,e.setFilters=new qb,cb.attr=p.attr,p.find=cb,p.expr=cb.selectors,p.expr[":"]=p.expr.pseudos,p.unique=cb.uniqueSort,p.text=cb.getText,p.isXMLDoc=cb.isXML,p.contains=cb.contains}(a);var cb=/Until$/,db=/^(?:parents|prev(?:Until|All))/,eb=/^.[^:#\[\.,]*$/,fb=p.expr.match.needsContext,gb={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=fb.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(hb(c[0])||hb(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return ib(a,"nextSibling")},prev:function(a){return ib(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return cb.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!gb[a]?p.unique(e):e,this.length>1&&db.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var lb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",mb=/ jQuery\d+="(?:null|\d+)"/g,nb=/^\s+/,ob=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,pb=/<([\w:]+)/,qb=/]","i"),vb=/^(?:checkbox|radio)$/,wb=/checked\s*(?:[^=]|=\s*.checked.)/i,xb=/\/(java|ecma)script/i,yb=/^\s*\s*$/g,zb={option:[1,""],legend:[1,"
","
"],thead:[1,"","
"],tr:[2,"","
"],td:[3,"","
"],col:[2,"","
"],area:[1,"",""],_default:[0,"",""]},Ab=kb(e),Bb=Ab.appendChild(e.createElement("div"));zb.optgroup=zb.option,zb.tbody=zb.tfoot=zb.colgroup=zb.caption=zb.thead,zb.th=zb.td,p.support.htmlSerialize||(zb._default=[1,"X
","
"]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!hb(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!hb(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(mb,""):b;if(typeof a=="string"&&!sb.test(a)&&(p.support.htmlSerialize||!ub.test(a))&&(p.support.leadingWhitespace||!nb.test(a))&&!zb[(pb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ob,"<$1>");try{for(;d1&&typeof j=="string"&&wb.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone +:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!ub.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(Bb.innerHTML=a.outerHTML,Bb.removeChild(g=Bb.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){Eb(a,g),d=Fb(a),e=Fb(g);for(f=0;d[f];++f)e[f]&&Eb(d[f],e[f])}if(b){Db(a,g);if(c){d=Fb(a),e=Fb(g);for(f=0;d[f];++f)Db(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&Ab,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!rb.test(h))h=b.createTextNode(h);else{s=s||kb(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(ob,"<$1>"),i=(pb.exec(h)||["",""])[1].toLowerCase(),j=zb[i]||zb._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=qb.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&nb.test(h)&&l.insertBefore(b.createTextNode(nb.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?Gb(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),Gb);if(c){q=function(a){if(!a.type||xb.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,e){return e&&e instanceof p&&!(e instanceof a)&&(e=a(e)),p.fn.init.call(this,d,e,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var Hb,Ib,Jb,Kb=/alpha\([^)]*\)/i,Lb=/opacity=([^)]*)/,Mb=/^(top|right|bottom|left)$/,Nb=/^(none|table(?!-c[ea]).+)/,Ob=/^margin/,Pb=RegExp("^("+q+")(.*)$","i"),Qb=RegExp("^("+q+")(?!px)[a-z%]+$","i"),Rb=RegExp("^([-+])=("+q+")","i"),Sb={},Tb={position:"absolute",visibility:"hidden",display:"block"},Ub={letterSpacing:0,fontWeight:400},Vb=["Top","Right","Bottom","Left"],Wb=["Webkit","O","Moz","ms"],Xb=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return $b(this,!0)},hide:function(){return $b(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?Xb.apply(this,arguments):this.each(function(){(c?a:Zb(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Hb(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=Yb(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=Rb.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=Yb(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=Hb(a,c)),f==="normal"&&c in Ub&&(f=Ub[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?Hb=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),Qb.test(d)&&Ob.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(Hb=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),Qb.test(e)&&!Mb.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&Nb.test(Hb(a,"display"))?p.swap(a,Tb,function(){return bc(a,b,d)}):bc(a,b,d)},set:function(a,c,d){return _b(a,c,d?ac(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return Lb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(Kb,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=Kb.test(f)?f.replace(Kb,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return Hb(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=Hb(a,b);return Qb.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||Hb(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+Vb[d]+b]=e[d]||e[d-2]||e[0];return f}},Ob.test(a)||(p.cssHooks[a+b].set=_b)});var dc=/%20/g,ec=/\[\]$/,fc=/\r?\n/g,gc=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,hc=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||hc.test(this.nodeName)||gc.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(fc,"\r\n")}}):{name:b.name,value:c.replace(fc,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ic(d,a[d],c,f);return e.join("&").replace(dc,"+")};var jc,kc,lc=/#.*$/,mc=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,nc=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,oc=/^(?:GET|HEAD)$/,pc=/^\/\//,qc=/\?/,rc=/)<[^<]*)*<\/script>/gi,sc=/([?&])_=[^&]*/,tc=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,uc=p.fn.load,vc={},wc={},xc=["*/"]+["*"];try{kc=f.href}catch(yc){kc=e.createElement("a"),kc.href="",kc=kc.href}jc=tc.exec(kc.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&uc)return uc.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("
").append(a.replace(rc,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?Bc(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),Bc(a,b),a},ajaxSettings:{url:kc,isLocal:nc.test(jc[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":xc},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:zc(vc),ajaxTransport:zc(wc),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=Cc(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=Dc(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=mc.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(lc,"").replace(pc,jc[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=tc.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==jc.join(":")+(jc[3]?"":jc[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),Ac(vc,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!oc.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(qc.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(sc,"$1_="+z);l.url=A+(A===l.url?(qc.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+xc+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=Ac(wc,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v>=2)throw B;y(-1,B)}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var Ec=[],Fc=/\?/,Gc=/(=)\?(?=&|$)|\?\?/,Hc=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Ec.pop()||p.expando+"_"+Hc++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&Gc.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&Gc.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(Gc,"$1"+f):m?c.data=i.replace(Gc,"$1"+f):k&&(c.url+=(Fc.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,Ec.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var Ic,Jc=a.ActiveXObject?function(){for(var a in Ic)Ic[a](0,1)}:!1,Kc=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&Lc()||Mc()}:Lc,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,Jc&&delete Ic[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++Kc,Jc&&(Ic||(Ic={},p(a).unload(Jc)),Ic[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var Nc,Oc,Pc=/^(?:toggle|show|hide)$/,Qc=RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),Rc=/queueHooks$/,Sc=[Yc],Tc={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=Qc.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h/=i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(Wc,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=_c.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!_c.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=ad(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})}(window),function(a,b,c,d){function j(a){return parseFloat(a)}function k(){var a={transformProperty:"",MozTransform:"-moz-",WebkitTransform:"-webkit-",OTransform:"-o-",msTransform:"-ms-"};for(var b in a)if(typeof i[b]!="undefined")return a[b];return null}function l(){if(typeof b.Modernizr!="undefined")return Modernizr.csstransforms;var a=["transformProperty","WebkitTransform","MozTransform","OTransform","msTransform"];for(var c in a)if(i[a[c]]!==d)return!0}function p(b,c){var d=f.exec(a.trim(c));if(d[3]&&d[3]!=="px"){var e="paddingBottom",g=a.style(b,e);return a.style(b,e,c),c=q(b,e),a.style(b,e,g),c}return parseFloat(c)}function q(b,c){if(b[c]==null||!!b.style&&b.style[c]!=null){var d=parseFloat(a.css(b,c));return d&&d>-1e4?d:0}return b[c]}var e=/progid:DXImageTransform\.Microsoft\.Matrix\(.*?\)/,f=/^([\+\-]=)?([\d+.\-]+)(.*)$/,g=/%/,h=c.createElement("modernizr"),i=h.style,m=k(),n=m!==null?m+"transform":!1,o=m!==null?m+"transform-origin":!1;a.support.csstransforms=l(),m=="-ms-"&&(n="msTransform",o="msTransformOrigin"),a.extend({transform:function(b){b.transform=this,this.$elem=a(b),this.applyingMatrix=!1,this.matrix=null,this.height=null,this.width=null,this.outerHeight=null,this.outerWidth=null,this.boxSizingValue=null,this.boxSizingProperty=null,this.attr=null,this.transformProperty=n,this.transformOriginProperty=o}}),a.extend(a.transform,{funcs:["matrix","origin","reflect","reflectX","reflectXY","reflectY","rotate","scale","scaleX","scaleY","skew","skewX","skewY","translate","translateX","translateY"]}),a.fn.transform=function(b,c){return this.each(function(){var d=this.transform||new a.transform(this);b&&d.exec(b,c)})},a.transform.prototype={exec:function(b,c){return c=a.extend(!0,{forceMatrix:!1,preserve:!1},c),this.attr=null,c.preserve?b=a.extend(!0,this.getAttrs(!0,!0),b):b=a.extend(!0,{},b),this.setAttrs(b),a.support.csstransforms&&!c.forceMatrix?this.execFuncs(b):a.browser.msie||a.support.csstransforms&&c.forceMatrix?this.execMatrix(b):!1},execFuncs:function(b){var c=[];for(var d in b)d=="origin"?this[d].apply(this,a.isArray(b[d])?b[d]:[b[d]]):a.inArray(d,a.transform.funcs)!==-1&&c.push(this.createTransformFunc(d,b[d]));return this.$elem.css(n,c.join(" ")),!0},execMatrix:function(b){function k(a,b){return g.test(a)?parseFloat(a)/100*i["safeOuter"+(b?"Height":"Width")]():p(h,a)}var c,d,f,h=this.$elem[0],i=this,l=/translate[X|Y]?/,o=[];for(var q in b){switch(a.type(b[q])){case"array":f=b[q];break;case"string":f=a.map(b[q].split(","),a.trim);break;default:f=[b[q]]}a.matrix[q]?(a.cssAngle[q]?f=a.map(f,a.angle.toDegree):a.cssNumber[q]?f=a.map(f,j):f=a.map(f,k),d=a.matrix[q].apply(this,f),l.test(q)?o.push(d):c=c?c.x(d):d):q=="origin"&&this[q].apply(this,f)}c=c||a.matrix.identity(),a.each(o,function(a,b){c=c.x(b)});var r=parseFloat(c.e(1,1).toFixed(6)),s=parseFloat(c.e(2,1).toFixed(6)),t=parseFloat(c.e(1,2).toFixed(6)),u=parseFloat(c.e(2,2).toFixed(6)),v=c.rows===3?parseFloat(c.e(1,3).toFixed(6)):0,w=c.rows===3?parseFloat(c.e(2,3).toFixed(6)):0;if(a.support.csstransforms&&m==="-moz-")this.$elem.css(n,"matrix("+r+", "+s+", "+t+", "+u+", "+v+"px, "+w+"px)");else if(a.support.csstransforms)this.$elem.css(n,"matrix("+r+", "+s+", "+t+", "+u+", "+v+", "+w+")");else if(a.browser.msie){var x=", FilterType='nearest neighbor'",y=this.$elem[0].style,z="progid:DXImageTransform.Microsoft.Matrix(M11="+r+", M12="+t+", M21="+s+", M22="+u+", sizingMethod='auto expand'"+x+")",A=y.filter||a.curCSS(this.$elem[0],"filter")||"";y.filter=e.test(A)?A.replace(e,z):A?A+" "+z:z,this.applyingMatrix=!0,this.matrix=c,this.fixPosition(c,v,w),this.applyingMatrix=!1,this.matrix=null}return!0},origin:function(b,c){if(a.support.csstransforms)return typeof c=="undefined"?this.$elem.css(o,b):this.$elem.css(o,b+" "+c),!0;switch(b){case"left":b="0";break;case"right":b="100%";break;case"center":case d:b="50%"}switch(c){case"top":c="0";break;case"bottom":c="100%";break;case"center":case d:c="50%"}return this.setAttr("origin",[g.test(b)?b:p(this.$elem[0],b)+"px",g.test(c)?c:p(this.$elem[0],c)+"px"]),!0},createTransformFunc:function(b,c){if(b.substr(0,7)==="reflect"){var d=c?a.matrix[b]():a.matrix.identity();return"matrix("+d.e(1,1)+", "+d.e(2,1)+", "+d.e(1,2)+", "+d.e(2,2)+", 0, 0)"}return b=="matrix"&&m==="-moz-"&&(c[4]=c[4]?c[4]+"px":0,c[5]=c[5]?c[5]+"px":0),b+"("+(a.isArray(c)?c.join(", "):c)+")"},fixPosition:function(b,c,d,e,f){var h=new a.matrix.calc(b,this.safeOuterHeight(),this.safeOuterWidth()),i=this.getAttr("origin"),j=h.originOffset(new a.matrix.V2(g.test(i[0])?parseFloat(i[0])/100*h.outerWidth:parseFloat(i[0]),g.test(i[1])?parseFloat(i[1])/100*h.outerHeight:parseFloat(i[1]))),k=h.sides(),l=this.$elem.css("position");l=="static"&&(l="relative");var m={top:0,left:0},n={position:l,top:j.top+d+k.top+m.top+"px",left:j.left+c+k.left+m.left+"px",zoom:1};this.$elem.css(n)}}}(jQuery,this,this.document),function(a,b,c,d){function f(){if(e)return e;var a={boxSizing:"box-sizing",MozBoxSizing:"-moz-box-sizing",WebkitBoxSizing:"-webkit-box-sizing",OBoxSizing:"-o-box-sizing"},b=c.body;for(var d in a)if(typeof b.style[d]!="undefined")return e=a[d],e;return null}a.extend(a.transform.prototype,{safeOuterHeight:function(){return this.safeOuterLength("height")},safeOuterWidth:function(){return this.safeOuterLength("width")},safeOuterLength:function(b){var c="outer"+(b=="width"?"Width":"Height");if(!a.support.csstransforms&&a.browser.msie){b=b=="width"?"width":"height";if(this.applyingMatrix&&!this[c]&&this.matrix){var d=new a.matrix.calc(this.matrix,1,1),e=d.offset(),g=this.$elem[c]()/e[b];return this[c]=g,g}if(this.applyingMatrix&&this[c])return this[c];var h={height:["top","bottom"],width:["left","right"]},i=this.$elem[0],j=parseFloat(a.curCSS(i,b,!0)),k=this.boxSizingProperty,l=this.boxSizingValue;return this.boxSizingProperty||(k=this.boxSizingProperty=f()||"box-sizing",l=this.boxSizingValue=this.$elem.css(k)||"content-box"),this[c]&&this[b]==j?this[c]:(this[b]=j,k&&(l=="padding-box"||l=="content-box")&&(j+=parseFloat(a.curCSS(i,"padding-"+h[b][0],!0))||0+parseFloat(a.curCSS(i,"padding-"+h[b][1],!0))||0),k&&l=="content-box"&&(j+=parseFloat(a.curCSS(i,"border-"+h[b][0]+"-width",!0))||0+parseFloat(a.curCSS(i,"border-"+h[b][1]+"-width",!0))||0),this[c]=j,j)}return this.$elem[c]()}});var e=null}(jQuery,this,this.document),function(a,b,c,d){var e=/([\w\-]*?)\((.*?)\)/g,f="data-transform",g=/\s/,h=/,\s?/;a.extend(a.transform.prototype,{setAttrs:function(b){var c="",d;for(var e in b)d=b[e],a.isArray(d)&&(d=d.join(", ")),c+=" "+e+"("+d+")";this.attr=a.trim(c),this.$elem.attr(f,this.attr)},setAttr:function(b,c){a.isArray(c)&&(c=c.join(", "));var d=this.attr||this.$elem.attr(f);if(!d||d.indexOf(b)==-1)this.attr=a.trim(d+" "+b+"("+c+")"),this.$elem.attr(f,this.attr);else{var g=[],h;e.lastIndex=0;while(h=e.exec(d))b==h[1]?g.push(b+"("+c+")"):g.push(h[0]);this.attr=g.join(" "),this.$elem.attr(f,this.attr)}},getAttrs:function(){var a=this.attr||this.$elem.attr(f);if(!a)return{};var b={},c,d;e.lastIndex=0;while((c=e.exec(a))!==null)c&&(d=c[2].split(h),b[c[1]]=d.length==1?d[0]:d);return b},getAttr:function(b){var c=this.getAttrs();return typeof c[b]!="undefined"?c[b]:b==="origin"&&a.support.csstransforms?this.$elem.css(this.transformOriginProperty).split(g):b==="origin"?["50%","50%"]:a.cssDefault[b]||0}}),typeof a.cssAngle=="undefined"&&(a.cssAngle={}),a.extend(a.cssAngle,{rotate:!0,skew:!0,skewX:!0,skewY:!0}),typeof a.cssDefault=="undefined"&&(a.cssDefault={}),a.extend(a.cssDefault,{scale:[1,1],scaleX:1,scaleY:1,matrix:[1,0,0,1,0,0],origin:["50%","50%"],reflect:[1,0,0,1,0,0],reflectX:[1,0,0,1,0,0],reflectXY:[1,0,0,1,0,0],reflectY:[1,0,0,1,0,0]}),typeof a.cssMultipleValues=="undefined"&&(a.cssMultipleValues={}),a.extend(a.cssMultipleValues,{matrix:6,origin:{length:2,duplicate:!0},reflect:6,reflectX:6,reflectXY:6,reflectY:6,scale:{length:2,duplicate:!0},skew:2,translate:2}),a.extend(a.cssNumber,{matrix:!0,reflect:!0,reflectX:!0,reflectXY:!0,reflectY:!0,scale:!0,scaleX:!0,scaleY:!0}),a.each(a.transform.funcs,function(b,c){a.cssHooks[c]={set:function(b,d){var e=b.transform||new a.transform(b),f={};f[c]=d,e.exec(f,{preserve:!0})},get:function(b,d){var e=b.transform||new a.transform(b);return e.getAttr(c)}}}),a.each(["reflect","reflectX","reflectXY","reflectY"],function(b,c){a.cssHooks[c].get=function(b,d){var e=b.transform||new a.transform(b);return e.getAttr("matrix")||a.cssDefault[c]}})}(jQuery,this,this.document),function(a,b,c,d){function h(b,c){b[c]==null||!!b.style&&b.style[c]!=null;var d=parseFloat(a.css(b,c));return d&&d>-1e4?d:0}var e=/^([+\-]=)?([\d+.\-]+)(.*)$/,f=a.fn.animate;a.fn.animate=function(b,c,d,e){var g=a.speed(c,d,e),h=a.cssMultipleValues;return g.complete=g.old,a.isEmptyObject(b)||(typeof g.original=="undefined"&&(g.original={}),a.each(b,function(c,d){if(h[c]||a.cssAngle[c]||!a.cssNumber[c]&&a.inArray(c,a.transform.funcs)!==-1){var e=null;if(jQuery.isArray(b[c])){var f=1,i=d.length;h[c]&&(f=typeof h[c].length=="undefined"?h[c]:h[c].length);if(i>f||ic||b>c||a<1||b<1?0:this.elements[(a-1)*d+b-1]},decompose:function(){var b=this.e(1,1),c=this.e(2,1),d=this.e(1,2),e=this.e(2,2),f=this.e(1,3),g=this.e(2,3);if(Math.abs(b*e-c*d)<.01)return{rotate:"0deg",skewX:"0deg",scaleX:1,scaleY:1,translateX:"0px",translateY:"0px"};var h=f,i=g,j=Math.sqrt(b*b+c*c);b/=j,c/=j;var k=b*d+c*e;d-=b*k,e-=c*k;var l=Math.sqrt(d*d+e*e);d/=l,e/=l,k/=l,b*e-c*d<0&&(b=-b,c=-c,j=-j);var m=a.angle.radianToDegree,n=m(Math.atan2(c,b));return k=m(Math.atan(k)),{rotate:n+"deg",skewX:k+"deg",scaleX:j,scaleY:l,translateX:h+"px",translateY:i+"px"}}};a.extend(e.M2x2.prototype,f,{toM3x3:function(){var a=this.elements;return new e.M3x3(a[0],a[1],0,a[2],a[3],0,0,0,1)},x:function(a){var b=typeof a.rows=="undefined";if(!b&&a.rows==3)return this.toM3x3().x(a);var c=this.elements,d=a.elements;return b&&d.length==2?new e.V2(c[0]*d[0]+c[1]*d[1],c[2]*d[0]+c[3]*d[1]):d.length==c.length?new e.M2x2(c[0]*d[0]+c[1]*d[2],c[0]*d[1]+c[1]*d[3],c[2]*d[0]+c[3]*d[2],c[2]*d[1]+c[3]*d[3]):!1},inverse:function(){var a=1/this.determinant(),b=this.elements;return new e.M2x2(a*b[3],a*-b[1],a*-b[2],a*b[0])},determinant:function(){var a=this.elements;return a[0]*a[3]-a[1]*a[2]}}),a.extend(e.M3x3.prototype,f,{x:function(a){var b=typeof a.rows=="undefined";!b&&a.rows<3&&(a=a.toM3x3());var c=this.elements,d=a.elements;return b&&d.length==3?new e.V3(c[0]*d[0]+c[1]*d[1]+c[2]*d[2],c[3]*d[0]+c[4]*d[1]+c[5]*d[2],c[6]*d[0]+c[7]*d[1]+c[8]*d[2]):d.length==c.length?new e.M3x3(c[0]*d[0]+c[1]*d[3]+c[2]*d[6],c[0]*d[1]+c[1]*d[4]+c[2]*d[7],c[0]*d[2]+c[1]*d[5]+c[2]*d[8],c[3]*d[0]+c[4]*d[3]+c[5]*d[6],c[3]*d[1]+c[4]*d[4]+c[5]*d[7],c[3]*d[2]+c[4]*d[5]+c[5]*d[8],c[6]*d[0]+c[7]*d[3]+c[8]*d[6],c[6]*d[1]+c[7]*d[4]+c[8]*d[7],c[6]*d[2]+c[7]*d[5]+c[8]*d[8]):!1},inverse:function(){var a=1/this.determinant(),b=this.elements;return new e.M3x3(a*(b[8]*b[4]-b[7]*b[5]),a*-(b[8]*b[1]-b[7]*b[2]),a*(b[5]*b[1]-b[4]*b[2]),a*-(b[8]*b[3]-b[6]*b[5]),a*(b[8]*b[0]-b[6]*b[2]),a*-(b[5]*b[0]-b[3]*b[2]),a*(b[7]*b[3]-b[6]*b[4]),a*-(b[7]*b[0]-b[6]*b[1]),a*(b[4]*b[0]-b[3]*b[1]))},determinant:function(){var a=this.elements;return a[0]*(a[8]*a[4]-a[7]*a[5])-a[3]*(a[8]*a[1]-a[7]*a[2])+a[6]*(a[5]*a[1]-a[4]*a[2])}});var g={e:function(a){return this.elements[a-1]}};a.extend(e.V2.prototype,g),a.extend(e.V3.prototype,g)}(jQuery,this,this.document),function(a,b,c,d){typeof a.matrix=="undefined"&&a.extend({matrix:{}}),a.extend(a.matrix,{calc:function(a,b,c){this.matrix=a,this.outerHeight=b,this.outerWidth=c}}),a.matrix.calc.prototype={coord:function(b,c,d){d=typeof d!="undefined"?d:0;var e=this.matrix,f;switch(e.rows){case 2:f=e.x(new a.matrix.V2(b,c));break;case 3:f=e.x(new a.matrix.V3(b,c,d))}return f},corners:function(a,b){var c=typeof a=="undefined"&&typeof b=="undefined",d;return!this.c||!c?(b=b||this.outerHeight,a=a||this.outerWidth,d={tl:this.coord(0,0),bl:this.coord(0,b),tr:this.coord(a,0),br:this.coord(a,b)}):d=this.c,c&&(this.c=d),d},sides:function(a){var b=a||this.corners();return{top:Math.min(b.tl.e(2),b.tr.e(2),b.br.e(2),b.bl.e(2)),bottom:Math.max(b.tl.e(2),b.tr.e(2),b.br.e(2),b.bl.e(2)),left:Math.min(b.tl.e(1),b.tr.e(1),b.br.e(1),b.bl.e(1)),right:Math.max(b.tl.e(1),b.tr.e(1),b.br.e(1),b.bl.e(1))}},offset:function(a){var b=this.sides(a);return{height:Math.abs(b.bottom-b.top),width:Math.abs(b.right-b.left)}},area:function(a){var b=a||this.corners(),c={x:b.tr.e(1)-b.tl.e(1)+b.br.e(1)-b.bl.e(1),y:b.tr.e(2)-b.tl.e(2)+b.br.e(2)-b.bl.e(2)},d={x:b.bl.e(1)-b.tl.e(1)+b.br.e(1)-b.tr.e(1),y:b.bl.e(2)-b.tl.e(2)+b.br.e(2)-b.tr.e(2)};return.25*Math.abs(c.e(1)*d.e(2)-c.e(2)*d.e(1))},nonAffinity:function(){var a=this.sides(),b=a.top-a.bottom,c=a.left-a.right;return parseFloat(parseFloat(Math.abs((Math.pow(b,2)+Math.pow(c,2))/(a.top*a.bottom+a.left*a.right))).toFixed(8))},originOffset:function(b,c){b=b?b:new a.matrix.V2(this.outerWidth*.5,this.outerHeight*.5),c=c?c:new a.matrix.V2(0,0);var d=this.coord(b.e(1),b.e(2)),e=this.coord(c.e(1),c.e(2));return{top:e.e(2)-c.e(2)-(d.e(2)-b.e(2)),left:e.e(1)-c.e(1)-(d.e(1)-b.e(1))}}}}(jQuery,this,this.document),function(a,b,c,d){typeof a.matrix=="undefined"&&a.extend({matrix:{}});var e=a.matrix,f=e.M2x2,g=e.M3x3;a.extend(e,{identity:function(a){a=a||2;var b=a*a,c=Array(b),d=a+1;for(var f=0;f7);a.fn[d]=function(a){return a?this.bind(d,a):this.trigger(d)},a.fn[d].delay=50,g[d]=a.extend(g[d],{setup:function(){if(i)return!1;a(f.start)},teardown:function(){if(i)return!1;a(f.stop)}}),f=function(){function l(){var c=j(),e=k(g);c!==g?(i(g=c,e),a(b).trigger(d)):e!==g&&(location.href=location.href.replace(/#.*/,"")+e),f=setTimeout(l,a.fn[d].delay)}var e={},f,g=j(),h=function(a){return a},i=h,k=h;return e.start=function(){f||l()},e.stop=function(){f&&clearTimeout(f),f=c},e}()}(jQuery,this),FluidbookSupport.prototype={hasNetwork:function(){return navigator.onLine!=undefined?navigator.onLine:networkState()!="none"},networkState:function(){var a=navigator.connection||navigator.mozConnection||navigator.webkitConnection||{type:"unknown"},b=connetion.type;return b==undefined?b="unknown":b==0?b="unknown":b==1?b="ethernet":b==2?b="wifi":b==3?b="2g":b==4?b="3g":b==5?b="4g":b="none",b},initEvents:function(){if(!this.isMobile){$(window).resize(function(){resize()});return}if("onorientationchange"in window)window.addEventListener("orientationchange",function(){this.iOS?resize():(resize(),setTimeout(function(){resize()},750))},!1);else{var a=this;setInterval(function(){a.checkOrientation()},100)}},checkOrientation:function(){var a=this.getOrientation();a!=this._orientation&&(this._orientation=a,resize())},getOrientation:function(){try{var a=window.matchMedia("(orientation: portrait)");return a.matches?0:90}catch(b){}return $("#op").is(":visible")?0:90},getZoomLevel:function(){return DetectZoom.zoom()}},FluidbookVideo.prototype={initVideo:function(a){if($(a).html()!="")return;var b=parseFloat($(a).attr("data-width")),c=parseFloat($(a).attr("data-height")),d=$(a).attr("data-name"),e=$(a).attr("data-controls"),f=$(a).attr("data-loop"),g=$(a).attr("data-sound"),h=$(a).attr("data-autoplay"),i;fluidbook.datas.mobileVideosPath==""?i="data/links/"+d:(i=fluidbook.datas.mobileVideosPath+d,!fluidbook.datas.standalone&&i.substr(0,3)=="../"&&(i="../"+i));var j=i+".jpg";if(this.preferedFormat=="flv"){var k={};k.video="../"+i+".flv",k.poster="../"+j,k.controls=e,k.autoPlay=h,k.loop=f,k.soundOn=g;var l=[];$.each(k,function(a,b){l.push(a+"="+encodeURIComponent(b))}),isNaN(b)&&(b="100%"),isNaN(c)&&(c="100%"),html='',html+=""}else this.preferedFormat!="img"?(html=''):(html='',html+='',html+="");$(a).html(html)},initCache:function(){var a=this;$("body").append(''),$("#videoframe").load(function(){var b=this.contentWindow,c=b.applicationCache;c.addEventListener("downloading",a.logCacheEvent,!1),c.addEventListener("checking",a.logCacheEvent,!1),c.addEventListener("cached",a.logCacheEvent,!1),c.addEventListener("downloading",a.logCacheEvent,!1),c.addEventListener("noupdate",a.logCacheEvent,!1),c.addEventListener("updateready",a.logCacheEvent,!1),c.addEventListener("error",a.logCacheEvent,!1),$(this).hide()})},logCacheEvent:function(a){fb("video :"+a.type)}},FluidbookViewport.prototype={updateViewport:function(){var a="";this.width!=null&&(a="width="+this.width+", ");var b="";this.height!=null&&(b="height="+this.height+", ");var c=this.userScalable==1?"yes":"no",d=a+b+"initial-scale="+this.initialScale+", minimum-scale="+Math.max(.25,this.minScale)+", maximum-scale="+Math.min(10,this.maxScale)+", user-scalable="+c;this.meta.attr("content",d)}},FluidbookDesktop.prototype={init:function(){var a=this;$(document).on("click","#links",function(b){a.clickZoom(b)}),$(document).on("click","#links .link",function(a){a.stopPropagation()}),$("body").mousewheel(function(b,c,d,e){a.wheelZoom(e)}),$(document).on("mousemove","body",function(b){a.moveZoom(b)})},moveZoom:function(a){var b=100*a.pageX/$(window).width(),c=100*a.pageY/$(window).height();this.origin=[b+"%",c+"%"];if(this.desktopScale==1)return;$("#fluidbook").transform({origin:this.origin},{preserve:!0})},clickZoom:function(a){var b;return this.desktopScale==1?b=this.fluidbook.datas.zoom/100/this.fluidbook.resize.bookScale:b=1,this.updateDesktopScale(b),!1},wheelZoom:function(a){if($("body").hasClass("view"))return;this.updateDesktopScale(this.desktopScale+a/3,a>0)},updateDesktopScale:function(a,b){var c=this;this.fluidbook.viewMode()&&(a=1);var d=this.fluidbook.datas.zoomw/100/this.fluidbook.resize.bookScale;a=Math.max(Math.min(a,d),1),b===!0?a<1.5&&(a=2):b===!1&&a<1.5&&(a=1);if(a==this.desktopScale)return!1;this.desktopScale=a;var e={scale:[this.desktopScale*this.fluidbook.resize.bookScale,this.desktopScale*this.fluidbook.resize.bookScale]};return this.desktopScale==1?e.origin=["50%","50%"]:e.origin=this.origin,this.desktopScale!=1?$("header,footer,#interface").addClass("hidden"):$("header,footer,#interface").removeClass("hidden"),$("#fluidbook").addClass("animate").transform(e),setTimeout(function(){$("#fluidbook").removeClass("animate")},1e3),this.desktopScale>1?$("body").addClass("zoomed"):$("body").removeClass("zoomed"),!0}},FluidbookService.prototype={call:function(a,b,c,d){return b.id=this.id,$.ajax({url:this.baseURL+a,context:d,format:"xml",crossDomain:!0,data:b,success:function(a){c.call(this,a)}})},open:function(a,b){b.id=this.id;var c=[];$.each(b,function(a,b){c.push(a+"="+encodeURIComponent(b))});var d=this.baseURL+a+"?"+c.join("&");window.open(d,"_blank")}},FluidbookL10N.prototype={load:function(a){if(a==undefined||a==null||a=="")a="default";this.lang=a,this.translations=this.fluidbook.datas.l10n[a],this.updateTranslations()},getActiveLang:function(){return this.lang!="default"?this.lang:this.fluidbook.datas.defaultLang},initMultilang:function(){if(this.fluidbook.datas.multilang=="")return;this.multilangEnabled=!0;var a=this,b=this.fluidbook.datas.multilang.replace(/\r/g,"\n").replace(/\n+/g,"\n"),c=b.split("\n");$.each(c,function(b,c){var d=c.split(","),e={lang:d[0],flag:d[1],url:d[2],name:d[3]};a.multilang[d[0]]=e})},updateTranslations:function(){var a=this;$("#q").attr("placeholder",this.__("search")),$("i.l10n").each(function(){var b=a.fluidbook.l10n.__($(this).attr("str"));$(this).replaceWith(b)})},__:function(a,b){return a.substr(0,1)=="!"?a.substr(1):this.translations[a]==undefined||this.translations[a]==null||this.translations[a]==""?b==undefined||b?'~ '+a+" ~":a:this.translations[a]}},FluidbookNav.prototype={getIcon:function(a){var b="data/images/"+a+".";return this.fluidbook.support.SVG?b+="svg":b+="png",''},addLink:function(a,b,c,d,e){var f=this.getLink(a,b,c,d);e==undefined?$("#nav").append(f):$("#nav #"+e).before(f)},getLink:function(a,b,c,d,e){var f='",f},setNav:function(){var a=this;this.fluidbook.datas.home!=""&&this.addLink("nav-home",this.fluidbook.datas.home,"home","home"),this.addLink("nav-index","#/index","index","overview"),this.fluidbook.datas.displayChaptersIcon&&(this.fluidbook.datas.chaptersPage!=""?this.addLink("nav-sommaire","#/page/"+this.fluidbook.datas.chaptersPage,"chapters","chapters"):this.fluidbook.datas.chapters.length>0&&this.addLink("nav-sommaire","#/chapters","chapters","chapters")),this.fluidbook.datas.friend&&(this.addLink("nav-friend","#","friend","tell a friend"),$("#friend").click(function(){return a.fluidbook.sendToFriend(),!1})),this.fluidbook.datas.facebook&&(this.addLink("nav-facebook","#","facebook","share on facebook"),$("#facebook").click(function(){return a.fluidbook.sendByFacebook(),!1})),this.fluidbook.datas.twitter&&(this.addLink("nav-twitter","#","twitter","share on twitter"),$("#twitter").click(function(){return a.fluidbook.sendByTwitter(),!1})),this.fluidbook.l10n.multilangEnabled&&this.addMultilangLink(),this.fluidbook.datas.archivesLink!=""&&this.addLink("nav-archives",this.fluidbook.datas.archivesLink,"archives","!"+this.fluidbook.datas.archivesLabel),this.addLink("nav-help","#","help",""),this.fluidbook.datas.search&&this.setSearch(),this.fluidbook.datas.afterSearch!=""&&this.setAfterSearch(),this.setInterface()},addMultilangLink:function(a){var b='',c=this.fluidbook.l10n.multilang[this.fluidbook.l10n.getActiveLang()].flag;fb(c),$("#nav").append(b),$("#nav #locales").css("background-image",'url("images/flags/'+c+'.png")')},setSearch:function(){var a=this,b='
';b+='',b+=this.getLink("search","#","submitSearch"),b+='
',b+="",$("#search").append(b),$("#submitSearch").click(function(){return $("#searchForm").submit(),!1}),$("#searchForm").submit(function(){var a=$("#q").val();return a==""?!1:(window.location.hash="/search/"+a,!1)}),$("#q").keyup(searchHints),$(".hint").live("click",function(){var a=$("#q").val().split(" ");return a.pop(),a.push($(this).attr("term")),$("#q").val(a.join(" ")),$("#searchForm").submit(),!1}),$("#q").blur(function(b){setTimeout(function(){a.fluidbook.hideSearchHints()},250)}),$("#nav").append($("#search"))},setAfterSearch:function(){$("#nav").append('
")},setInterface:function(){var a=this.getLink("previous","#","previous","","hidden");a+=this.getLink("next","#","next"),$("#interface").append(a),$(".nav-twitter").click(function(){return $this.fluidbook.stats.track(13),!0}),$(".nav-facebook").click(function(){return $this.fluidbook.stats.track(12),!0}),$(".nav-friend").click(function(){$this.fluidbook.stats.track(5)}),$(document).on("click","#next",goNextPage),$(document).on("click","#previous",goPreviousPage)}},FluidbookTouch.prototype={init:function(){this.reset(),$(document).on("touchstart",$.proxy(this.start,this)),$(document).on("touchend",$.proxy(this.end,this)),$(document).on("touchmove",$.proxy(this.move,this)),$(document).on("touchcancel",$.proxy(this.cancel,this)),$(document).on("gesturestart",$.proxy(this.gesturestart,this)),$(document).on("gesturechange",$.proxy(this.gesturechange,this)),$(document).on("gestureend",$.proxy(this.gestureend,this))},allowMove:function(){return this.fluidbook.support.getZoomLevel()<=1&&!this.fluidbook.viewMode()?!1:!0},allowSlide:function(){return this.gesturing||this.fluidbook.support.getZoomLevel()>1||this.fluidbook.viewMode()?!1:!0},reset:function(){this.startX=0,this.startY=0,this.offsetX=0,this.offsetY=0,this.triggered=!1},gesturestart:function(a){var b=a.originalEvent;return this.fluidbook.viewport.maxScale=8,this.fluidbook.viewport.userScalable=!0,this.fluidbook.viewport.updateViewport(),this.gesturing=!0,!0},gesturechange:function(a){var b=a.originalEvent;return this.gesturing=!0,!0},gestureend:function(a){var b=a.originalEvent;return this.gesturing=!1,!0},start:function(a){var b=a.originalEvent,c=b.touches;return c.length>1?(this.fluidbook.viewport.maxScale=8,this.fluidbook.viewport.userScalable=!0,this.fluidbook.viewport.updateViewport(),!0):(this.startX=c[0].pageX,this.startY=c[0].pageY,!0)},end:function(a){var b=a.originalEvent,c=b.touches;return c.length==0&&(this.testOffset(),this.reset()),!0},testOffset:function(){if(this.triggered)return!1;if(this.allowMove())return!1;if(Math.abs(this.offsetX)this.triggerOffset)return this.fluidbook.goPreviousPage(),!0}return!1},cancel:function(a){return this.end(a),!0},move:function(a){var b=a.originalEvent,c=b.touches;return c.length>1?!0:(isNaN(this.startX)||(this.offsetX=(c[0].pageX-this.startX)/$(window).width()),isNaN(this.startY)||(this.offsetY=(c[0].pageY-this.startY)/$(window).height()),this.testOffset(),this.allowMove())}},FluidbookLoader.prototype={preloadPagesBeforeTransition:function(a,b){var c=this;if(a.length==0){b();return}var d=a,e=b,f=a.shift();if(f>this.fluidbook.datas.pages||f<1){c.preloadPagesBeforeTransition(d,e);return}this._loadBackground(f,function(){c.fluidbook.vectorsVersion?c._loadTexts(f,function(){c.preloadPagesBeforeTransition(d,e)}):c.preloadPagesBeforeTransition(d,e)})},preloadPages:function(){if(this.toPreload.length==0)return;var a=this,b=this.toPreload.shift();if(this.backgrounds[b]!=undefined){a.preloadPages();return}var c=new Image;$(c).one("load",function(){a.fluidbook.vectorTexts?a._loadTexts(b,function(){a.preloadPages()}):a.preloadPages()}),c.src=this.getBackgroundURL(b),this.backgrounds[b]=c},preloadAround:function(a){var b=Math.max(1,a-1),c=Math.min(b+this.numPreload,this.fluidbook.datas.pages);b=c-this.numPreload,this.toPreload=[];for(var d=b;d<=c;d++)this.toPreload.push(d);this.cleanPreloaded(),this.preloadPages()},cleanPreloaded:function(){for(var a=1;a<=this.fluidbook.datas.pages;a++)this.backgrounds[a]!=undefined&&this.toPreload.indexOf(a)==-1&&this.deletePage(a)},deletePage:function(a){delete this.backgrounds[a],delete this.texts[a],delete this.links[a]},setContentsInDoublePage:function(a,b,c,d){var e=this,f=b[0],g=b[1];c?(this.loadLeftPage(f,$(a),function(){}),this.loadRightPage(g,$(a),function(){}),d()):this.loadLeftPage(f,$(a),function(){e.loadRightPage(g,$(a),d)})},loadPage:function(a,b,c,d){$(b).find("."+c).each(function(){($(this).attr("id")!="page_"+a||a==0)&&$(this).remove()});var e,f;if($("#page_"+a).length>0){e=$("#page_"+a),$(b).find("#page_"+a).length==0&&$(b).append(e),$(e).hasClass(c)||(c=="left"?$(e).removeClass("right"):$(e).removeClass("left"),$(e).addClass(c)),$(e).is(":visible")||$(e).show(),f="shade"+c,this.fluidbook.datas.pageReflection&&(f+="-reflet"),f+=".png",$(e).children(".shade").html(''),$(e).children(".clinks").html(this.fluidbook.datas.clinks[a]),this.fluidbook.highlightSearchTerms(a),d();return}this.fluidbook.initPage(a,b,c),e=$("#page_"+a),$(b).append(e),$(e).show(),$(e).addClass(c);var g=$(e).children(".background")[0];this.loadDatas(a,d),$(e).addClass(c),f="shade"+c,this.fluidbook.datas.pageReflection&&(f+="-reflet"),f+=".png",$(e).children(".clinks").html(this.fluidbook.datas.clinks[a]),$(e).children(".shade").html('')},loadLeftPage:function(a,b,c){a>0?this.loadPage(a,b,"left",c):($(b).find(".left").remove(),c())},loadRightPage:function(a,b,c){!this.fluidbook.displayOnePage&&a<=this.fluidbook.datas.pages?this.loadPage(a,b,"right",c):($(b).find(".right").remove(),c())},getBackgroundURL:function(a){var b="p";return this.fluidbook.imagesVersion&&(b="t"),"data/background/150/"+b+a+".jpg"},getTextsURL:function(a){return"data/contents/p"+a+".svg"},setBackground:function(a,b){var c=this,d=$("#page_"+a+" .background");this._loadBackground(a,function(){$(d).addClass("r150"),$(d).append(c.backgrounds[a])})},_loadBackground:function(a,b){if(this.backgrounds[a]!=undefined)b();else{var c=new Image;$(c).one("load",function(){b()}),c.src=this.getBackgroundURL(a),this.backgrounds[a]=c}},loadTexts:function(a,b){if(this.fluidbook.imagesVersion){b();return}this.texts[a]!=undefined?($("#page_"+a+" .texts").append(this.texts[a]),b()):this._loadTexts(a,function(){var c;c=this,$("#page_"+a+" .texts").append(c),b()})},_loadTexts:function(a,b){var c=this.fluidbook.datas.width/.75,d=this.fluidbook.datas.height/.75,e=new Image;e.width=c*2,e.height=d*2,e.type="image/svg+xml",$(e).one("load",b),e.src=this.getTextsURL(a),this.texts[a]=e},loadDatas:function(a,b){var c=this;this.loadTexts(a,function(){c.setBackground(a,b)})}},FluidbookSearch.prototype={getHints:function(a){var b=this.normalizeQuery(a);a=b.pop();var c=[];if(a.length<3)return c;var d;for(var e in INDEX){d=INDEX[e];if(e.indexOf(a)!=0)continue;c.push([e,d.t])}return c.sort(this.sortHints),c.slice(0,12)},find:function(a){var b=this.normalizeQuery(a),c={},d=[],a,e,f,g,h,i,j,k;for(g in b){a=b[g];for(f in INDEX){e=INDEX[f];if(f.indexOf(a)!=0)continue;for(h in e.w){i=e.w[h],d.push(h);for(j in i.p)k=i.p[j],j=parseInt(j),c[j]==undefined&&(c[j]=0),c[j]+=k}}}return{results:c,terms:d.join(" ")}},sortHints:function(a,b){return b[1]-a[1]},kill:function(){},normalizeQuery:function(a){return a=this.noAccents(a),a=a.toLowerCase(),a.split(" ")},noAccents:function(a){return a=a.replace(/[àáâãäå]/g,"a"),a=a.replace(/[ÀÁÂÃÄÅ]/g,"A"),a=a.replace(/[èéêë]/g,"e"),a=a.replace(/[ËÉÊÈ]/g,"E"),a=a.replace(/[ìíîï]/g,"i"),a=a.replace(/[ÌÍÎÏ]/g,"I"),a=a.replace(/[ðòóôõöø]/g,"o"),a=a.replace(/[ÐÒÓÔÕÖØ]/g,"O"),a=a.replace(/[ùúûü]/g,"u"),a=a.replace(/[ÙÚÛÜ]/g,"U"),a=a.replace(/[ýýÿ]/g,"y"),a=a.replace(/[ÝÝŸ]/g,"Y"),a=a.replace(/[ç]/g,"c"),a=a.replace(/[Ç]/g,"C"),a=a.replace(/[ñ]/g,"n"),a=a.replace(/[Ñ]/g,"N"),a=a.replace(/[š]/g,"s"),a=a.replace(/[Š]/g,"S"),a=a.replace(/[ž]/g,"z"),a=a.replace(/[Ž]/g,"Z"),a=a.replace(/[æ]/g,"ae"),a=a.replace(/[Æ]/g,"AE"),a=a.replace(/[œ]/g,"oe"),a=a.replace(/[Œ]/g,"OE"),a}},FluidbookChapters.prototype={getView:function(){return this.html==""&&this.makeView(),this.html},makeView:function(){this.makeClassicMenu(),this.fluidbook.datas.chaptersCascade&&this.makeCascadeMenu()},makeCascadeMenu:function(){var a=$(this.html);for(var b=3;b>=0;b--)$(a).find("li[data-level="+b+"]").each(function(){var a=$(this).nextUntil("li[data-level!="+(b+1)+"]","li[data-level="+(b+1)+"]");if(a.length>0){$(this).append("
    ");var c=$(this).find("ul");$(c).append(a),$(c).hide()}});this.html=$(a).get(0).outerHTML,$(document).on("click","ul.chapters a",function(){fb(this);var a=$(this).parent(),b=$(a).children("ul");return $(b).length?($(b).slideToggle(),!1):!0})},makeClassicMenu:function(){var a=this;this.html='
      ',$.each(this.chapters,function(b,c){a.html+=a.addItem(c)}),this.html+="
    "},addItem:function(a){var b=a.color;b==""&&this.lastColor!=undefined&&(b=this.lastColor),b!=""&&(this.lastColor=b);var c='
  • ';return c+=a.label,c+='
    ',b==""?c+=a.page:c+='
    ',c+="
    ",c+="
  • ",c}},FluidbookHelp.prototype={init:function(){var a=this,b="",c="";this.fluidbook.support.SVG?c="svg":c="png";var d="",e=100,f=200,g,h=1;this.fluidbook.support.isMobile?(e=400,f=200,h=2,d="fingers",g=this.fluidbook.l10n.__("tap twice or spread your fingers to zoom in")):(d="mouse",g=this.fluidbook.l10n.__("click once to zoom in, click again to zoom out")+"
    "+this.fluidbook.l10n.__("roll the mouse wheel to zoom in/out")),b+='
    ',b+="

    "+g+"

    ",b+="
    ",b+='
    ';var i=$("#nav").transform("scaleX");$("#nav").transform({scale:[1,1]},{preserve:!0});var j=40+($("#nav>a").length-1)*25;$("nav>a").each(function(){var c=$(this).attr("help");if(c=="")return;var d=$(this).position(),e=30+d.left;b+='
    '+a.fluidbook.l10n.__(c)+"
    ",j-=25}),$("#nav").transform({scale:[i,i]},{preserve:!0}),b+="
    ",b+='
    ',b+='",b+='
    '+this.fluidbook.l10n.__("last page")+"
    ",b+='",b+='

    '+this.fluidbook.l10n.__("frontpage")+"
    ",b+="
    ",this.view.html(b),resize()},initEvents:function(){var a=this;this.fluidbook.support.isMobile?$("#help").click(function(){return a.toggle(),!1}):$("#help").hover(function(){a.show()},function(){a.hide()}).click(function(){return!1})},show:function(){if(this.view.is(":visible"))return!1;this.view.html()==""&&this.init();var a=this;return this.view.show(),this.fluidbook.showAllButtons(),this.fluidbook.support.isMobile&&$(document).one("click",function(){a.hide()}),!1},hide:function(){var a=this;return this.view.is(":visible")&&(this.view.hide(),this.fluidbook.hideUnnecessaryButtons(),this.fluidbook.support.isMobile&&$("*").unbind("click",function(){a.hide()})),!1},toggle:function(){this.view.is(":visible")?this.hide():this.show()},resize:function(a,b,c){this.hide();var d=this.fluidbook.datas.menuHeight*c;this.view.css({width:a,minHeight:b-d,top:d}),this.interfaceTop=(b-100*c)/2+30*c,this.view.find(".interface>div").css({top:this.interfaceTop-d}),$("#helpView #icons").transform({scale:[c,c],origin:["0%","0%"]}),$("#helpView .illustration").transform +({scale:[c,c],origin:["50%","50%"]}),$("#helpView .interface").find(".last,.next,.first,.previous").transform({scale:[c,c]}),$("#helpView .interface").find(".last").transform({origin:["100%","100%"]},{preserve:!0}),$("#helpView .interface").find(".first").transform({origin:["0%","100%"]},{preserve:!0}),$("#helpView .interface").find(".next").transform({origin:["100%","0%"]},{preserve:!0}),$("#helpView .interface").find(".previous").transform({origin:["0%","0%"]},{preserve:!0}),this.view.find(".illustration").css("margin-top",(this.view.height()-400*c)/2)}},FluidbookResize.prototype={init:function(){$("#nav").transform({origin:["0%","0%"]}),$("#logo").transform({origin:["100%","0%"]}),$("#footer").transform({origin:["100%","100%"]}),$("#next").transform({origin:["100%","50%"]}),$("#previous").transform({origin:["0%","50%"]})},resize:function(a){if(a==undefined||a==null)a=!1;this.updateWindow(),this.handleOrientation();var b;this.orientation=="landscape"?b=Math.min(1,this.ww/this.referenceWidthLandscape,this.hh/this.referenceHeight):this.orientation=="portrait"&&(b=Math.min(1,this.ww/this.referenceWidthPortrait,this.hh/this.referenceHeight));var c=[b,b];$("#main").css({width:this.ww,height:this.hh}),this.resizeView(),$("#next").css({right:0});var d=20,e=50,f=(this.fluidbook.datas.menuHeight+d)*b,g=(10+d)*b,h=e*b,i=h,j=this.ww-h-i,k=this.hh-f-g,l=this.fluidbook.datas.height,m=this.fluidbook.datas.width;this.orientation=="landscape"&&(m*=2),this.bookScale=Math.min(j/m,k/l);var n=this.bookScale*m,o=this.bookScale*l;$("#fluidbook").transform({scale:[this.bookScale,this.bookScale],origin:["50%","50%"]}),$("#fluidbook").css({top:f+(k-l)/2,left:h+(j-m)/2,width:m,height:l});var p=(this.hh-100*b)/2;$("#next,#previous").css({top:p}),$("#nav,#logo,footer,#next,#previous").transform({scale:c});var q=this.fluidbook.datas.menuHeight*b;$("header").css({height:q,backgroundSize:"100% "+q+"px"}),this.refw=n,this.refh=o,this.fluidbook.help.resize(this.ww,this.hh,b),this.fluidbook.coquillette.resize(this.ww,this.hh),this.resizePopupVideos()},resizePopupVideos:function(){$(".mview .videoContainer video").each(function(){var a=$(window).width()-40,b=parseInt($(this).attr("data-width"))/parseInt($(this).attr("data-height")),c=a/b;$(this).css("height",c)})},updateWindow:function(){this.ww=$(window).width(),this.hh=$(window).height()},resizeView:function(){this.updateWindow(),$(".mview").css({width:this.ww,minHeight:this.hh}),$(".mview").find(".caption,.content").css({width:this.ww})},handleOrientation:function(){var a=this.orientation!="",b=this.fluidbook.support.getOrientation(),c;b==0||b==180?(c="portrait",$("body").removeClass("landscape")):(c="landscape",$("body").removeClass("portrait"));if(this.orientation==c)return;this.orientation=c,$("body").addClass(this.orientation),this.fluidbook.displayOnePage=this.orientation=="portrait",a&&(this.fluidbook.resetZoom(),this.fluidbook.pageTransition())}},FluidbookCoquillette.prototype={init:function(){this.element.append('');var a=this.element.find("canvas").get(0);this.ctx=a.getContext("2d")},show:function(){this.element.show(),this.resume()},hide:function(){this.element.hide(),this.pause()},resume:function(){this.pause();var a=this;this.interval=setInterval(function(){a.step()},Math.round(1e3/this.fps))},step:function(){this.rotation+=this.speed/this.fps;var a=this.size/2;this.ctx.clearRect(0,0,this.size,this.size),this.ctx.fillStyle=this.fluidbook.datas.coquilletteBack,this.ctx.beginPath(),this.ctx.arc(a,a,a,0,Math.PI*2,!1),this.ctx.closePath(),this.ctx.fill(),this.ctx.strokeStyle=this.fluidbook.datas.coquilletteFront,this.ctx.lineWidth=Math.round(this.size*.13),this.ctx.lineCap="round",this.ctx.lineJoin="mitter",this.ctx.beginPath(),this.ctx.arc(a,a,a*.65,this.rotation,this.rotation+Math.PI*1.4,!1),this.ctx.stroke()},pause:function(){clearInterval(this.interval)},resize:function(a,b){this.element.css({left:(a-this.size)/2,top:(b-this.size)/2})}},FluidbookStats.prototype={init:function(){var a=this;$(document).on("click","a[data-track]",function(){return a.track(6,0,$(this).attr("data-track")),!0})},trackPageChange:function(){if(!this.fluidbook.support.hasNetwork())return;try{if(_gaq==undefined)return;var a=location.pathname+location.search+location.hash;_gatrackers!=undefined?$.each(_gatrackers,function(b,c){_gaq.push([c+"._trackPageview",a])}):_gaq.push(["_trackPageview",a])}catch(b){}},track:function(a,b,c){if(!this.fluidbook.support.hasNetwork())return;b==undefined&&(b=0),c==undefined&&(c=""),$.ajax({url:"http://stats.fluidbook.com/stats2.php",type:"GET",data:{id:this.id,type:a,page:b,str:c,time:(new Date).getTime()},success:function(){},error:function(){}})}},FluidbookCache.prototype={init:function(){this._support&&this.checkValidity()},clear:function(){this._support?localStorage.clear():this._cache={}},isset:function(a){if(this._support){var b=localStorage.getItem(this._prefix+a)!=null;return b}return this._cache[a]!=null},get:function(a){var b;this._support?b=localStorage.getItem(this._prefix+a):b=this._cache[a];var c=b.substr(0,1);if(c=="["||c=="{")b=JSON.parse(b);return b},set:function(a,b){typeof b!="string"&&(b=JSON.stringify(b)),this._support?localStorage.setItem(this._prefix+a,b):this._cache[a]=b},checkValidity:function(){if(!this.isset("validity")||this.get("validity")!=this._date)this.clear(),this.set("validity",this._date)}},Fluidbook.prototype={loadPlugins:function(){$.each(this.datas.plugins,function(k,plugin){try{var functionName=plugin.replace(/\./g,"_");eval(functionName+"();")}catch(err){}})},resetZoom:function(){var a=this;this.support.iOS||this.support.isMobile||this.desktop.updateDesktopScale(1)},setZoom:function(a){a?$("#pages").addClass("zoom"):$("#pages").removeClass("zoom")},initPage:function(a,b,c){if($("#page_"+a).length>0)return;$(b).find("."+c).remove();var d='
    ';$(b).append(d)},hidePage:function(a){$("#pages ."+a).hide()},initLinks:function(a){a==undefined&&(a=this.currentPage);var b="left";this.displayOnePage&&a%2==1&&(b="right"),a%2==1&&a--,$("#links").removeClass("left").removeClass("right").addClass(b).html(this.datas.links[a]).show();var c=this;this.datas.linkBlinkTime>0&&this.animateLinks(),setTimeout(function(){c.initVideos()},1e3)},animateLinks:function(){Modernizr.csstransitions?($(".link a.displayArea").addClass("animating"),setTimeout(function(){$(".link a.displayArea").css("opacity",0),setTimeout(function(){$(".link a.displayArea").removeClass("animating").css("opacity",1)},1100)},50)):$(".link a.displayArea").addClass("animating").fadeOut(1e3,function(){$(this).removeClass("animating").show()}).mouseover(function(){return $(this).stop().removeClass("animating").css("opacity",1).show(),!0})},initVideos:function(){var a=this;$(".videoContainer").each(function(){a.video.initVideo(this)})},getNextOffset:function(){var a=2;return this.displayOnePage&&(a=1),a},goNextPage:function(){this.setCurrentPage(this.normalizePage(this.currentPage)+this.getNextOffset())},goFirstPage:function(){this.setCurrentPage(1)},goPreviousPage:function(){this.setCurrentPage(this.normalizePage(this.currentPage)-this.getNextOffset())},goLastPage:function(){this.setCurrentPage(this.datas.pages)},normalizePage:function(a){return a=Math.max(1,Math.min(a,this.datas.pages)),!this.displayOnePage&&a%2==1&&a--,a},setCurrentPage:function(a){window.location.hash="#/page/"+this.normalizePage(a)},changeAddress:function(){var a=this,b=window.location.hash.split("/");if(b.length>1&&b[1]!=""&&b[1]!=undefined){if(b[1]=="page"){page=parseInt(b[2]);if(isNaN(page)||page==undefined)return this.setCurrentPage("1");this.closeView(function(){a.pageTransition(page),a.resetZoom(),a.stats.track(0,page)},!0)}else this.openView(b[1],b[2],b[3],function(){}),this.resetZoom();return}return this.setCurrentPage("1")},pageTransition:function(a){a==undefined&&(a=this.currentPage,a==-1&&(a=1)),a=this.normalizePage(a);if(a==this.normalizePage(this.currentPage)||this.currentPage==-1){this.pageTransition1D(a);return}!this.displayOnePage&&this.datas.mobileTransitions=="flip"?this.support.transitions3d?this.pageTransition3D(a):this.support.transitions2d?this.pageTransition2D(a):this.pageTransition1D(a):this.displayOnePage&&this.datas.mobileTransitions=="flip"?this.support.transitions2d?this.pageTransition2DPortrait(a):this.pageTransition1D(a):this.datas.mobileTransitions=="slide"?this.support.transitions2d?this.pageTransition2D(a):this.pageTransition1D(a):this.pageTransition1D(a)},pageTransition3D:function(a){var b=this;if($("#pages").hasClass("_3dtransition"))return;var c,b=this;a>this.currentPage?c="next":c="prev",$("#pages").prepend('
    ');var d=$("#nextDoublePage"),e=$("#currentDoublePage"),f=this.currentPage-this.currentPage%2,g=f+1,h=1;a1?$("#previous").removeClass("hidden"):$("#previous").addClass("hidden"),a1?$("#previous:hidden").fadeIn(b):$("#previous:visible").fadeOut(b),a1?athis.currentPage?(c="prev",nextFromClass="next"):(c="next",nextFromClass="prev"),$("#pages").append('
    ');var e=$("#nextDoublePage");this.displayLoader(),this.loader.preloadPagesBeforeTransition([a,a+1],function(){d.loader.setContentsInDoublePage(e,[a,a+1],!0,function(){d.beforeTransition(a),$("#currentDoublePage").addClass("_2d").addClass(c),$(e).removeClass(nextFromClass).one(d.support.transitionendevents,function(){$("#currentDoublePage").remove(),$("#nextDoublePage").attr("id","currentDoublePage"),d.afterTransition(a)})})})},pageTransition2DPortrait:function(a){var b,c,d=this;a>this.currentPage?(c="prev",nextFromClass="next"):(c="next",nextFromClass="prev"),$("#pages").append('
    ');var e=$("#nextDoublePage");this.displayOnePage&&this.hidePage("right"),this.displayLoader(),this.loader.preloadPagesBeforeTransition([a,a+1],function(){d.loader.setContentsInDoublePage(e,[a,a+1],!0,function(){d.beforeTransition(a),$("#currentDoublePage").addClass("_2d").addClass(c),$(e).removeClass(nextFromClass).one(d.support.transitionendevents,function(){$("#currentDoublePage").remove(),$("#nextDoublePage").attr("id","currentDoublePage"),d.afterTransition(a)})})})},pageTransition1D:function(a){var b=a,c=$("#currentDoublePage"),d=this;this.displayOnePage&&this.hidePage("right"),this.beforeTransition(a),this.loader.setContentsInDoublePage(c,[b,b+1],!0,function(){d.afterTransition(b)})},beforeTransition:function(a){$("#links").hide(),this.hideLoader(),this.hideUnnecessaryButtons(a)},afterTransition:function(a){var b=this;this.currentPage=a,this.setPageNumbers(),setTimeout(function(){b.loader.preloadAround(a)},1e3),this.initLinks(),this.hideLoader()},setPageNumbers:function(){var a=this.currentPage;a>0?$("#pagesnumbers .left").html(this.datas.numerotation[a-1]):$("#pagesnumbers .left").html(""),this.displayOnePage||(a++,a>this.datas.pages?($("#pagesnumbers .right").html(""),$("#pagesnumbers .right").hide()):($("#pagesnumbers .right").html(this.datas.numerotation[a-1]),$("#pagesnumbers .right").show()))},clickLogo:function(){if(this.datas.url_link==""||this.datas.url_link=="http://")return;window.open(this.datas.url_link,"_blank")},viewMode:function(){return $("#view .mview").length>0},openView:function(a,b,c,d){var e=this;this.displayLoader(),setTimeout(function(){e._openView(a,b,c,d)},20)},_openView:function(a,b,c,d){var e=this,f=a.charAt(0).toUpperCase()+a.substr(1),g=function(){e.openingView(d)};a=="index"?this.openIndex(this.l10n.__("overview"),g):a=="search"?(this.searchString=b,$("#q").val(b),this.displayResults(this.search.find(b),g),this.stats.track(1,0,b)):a=="video"?this.openVideo(b,g):a=="webvideo"?this.openWebVideo(b,c,g):a=="chapters"?this.openChapters(g):this["open"+f](b,c,g)},openingView:function(a){var b=this;this.resize.resizeView();var c=$("#view .mview:last");if(this.support.transitions2d){var d={translateY:$(window).height()+"px"},e={translateY:"0px"},f={translateX:$(window).width()+"px"},g={translateX:"0px"},h=d,i=e;$(c).hasClass("hori")&&(h=f,i=g),$(c).show().removeClass("animate").transform(h),setTimeout(function(){$(c).one(b.support.transitionendevents,function(){$("#main").hide(),$("body").addClass("view"),$(c).removeClass("animate"),a(),b.hideLoader()}).addClass("animate").transform(i)},50)}else $("#main").hide(),$("body").addClass("view"),$(c).show(),a(),this.hideLoader()},displayResults:function(a,b){var c=this,d=a.results;this.openIndex(this.l10n.__("search results for")+" « "+this.searchString+" »",function(){c.stats.track(1,0,c.searchString);var e=[];for(var f=0;f<=c.datas.pages;f+=2)e[f]=0;$.each(d,function(a,b){a%2==1&&a--,e[a]+=b}),$(".doubleThumb").each(function(){var a=$(this).attr("page");e[a]==0?($(this).append('
    '),$(this).append('
    '+c.l10n.__("no result found")+"
    ")):$(this).append('
    '+e[a]+" "+c.l10n.__("hit(s)")+"
    ")}),c.termsToHighlight=a.terms,b!=undefined&&b()})},openVideo:function(a,b){var c=$('a[href="#/video/'+a+'"]'),d=decodeURIComponent($(c).attr("data-video")),e='";e+='
    ',e+=d,e+="
    ",$("#view").append('
    '+e+"
    "),this.stats.track(11),this.initVideos();var f=this,g=[250,500,750,1e3,1250];$.each(g,function(a,b){setTimeout(function(){f.resize.resizePopupVideos()},b)}),b!=undefined&&b()},openWebVideo:function(a,b,c){var d='";d+='
    ',a=="youtube"?d+='':a=="dailymotion"&&(d+=''),d+="
    ",$("#view").append('
    '+d+"
    "),$("#view .mview:last iframe").each(function(){$(this).attr("height",$(this).width()*9/16)}),this.stats.track(11),c!=undefined&&c()},openLocales:function(a,b,c){var d='";d+='
    ',d+='
      ';var e=this;$.each(this.l10n.multilang,function(a,b){var c=b.url;c.substr(0,3)=="../"&&!e.datas.standalone&&(c="../"+c),d+='
    • '+b.name+"
    • "}),d+="
    ",d+="
    ",$("#view").append('
    '+d+"
    "),c!=undefined&&c()},openChapters:function(a){this.chapters==undefined&&(this.chapters=new FluidbookChapters(this,this.datas.chapters,this.datas.numerotation));var b='
    « '+this.l10n.__("back")+"

    "+this.l10n.__("chapters")+"

    ";b+='
    ',b+=this.chapters.getView(),b+="
    ",$("#view").append('
    '+b+"
    "),a!=undefined&&a()},openIndex:function(a,b){var c='";c+='
    ';if(this.indexHTML==""){var d=0,e="",f="";for(var g=0;g<=this.datas.pages;g+=2)d=g+1,e="",f="",g>0?e+='
    '+this.datas.numerotation[g-1]+"
    ":f=" simple right",d'+this.datas.numerotation[d-1]+"
    ":f=" simple left",this.indexHTML+='
    '+e,this.indexHTML+="
    ";for(g=0;g<5;g++)this.indexHTML+='
    '}c+=this.indexHTML,c+="
    ",$("#view").append('
    '+c+"
    "),b!=undefined&&b()},closeView:function(a,b){var c=this;b==undefined&&(b=!1),b=b||$("#view .mview").length<=1;if(!this.viewMode()){a();return}var d=$("#view .mview:last");b&&$("#view .mview:not(:last)").remove();var e={translateY:$(window).height()+"px"};$(d).hasClass("hori")&&(e={translateX:$(window).width()+"px"}),this.support.transitions2d?setTimeout(function(){$(d).one(c.support.transitionendevents,function(){$(this).remove(),a()}).addClass("animate").transform(e)},50):($(d).remove(),a()),b&&($("#main").show(),$("body").removeClass("view")),resize()},getSearchHints:function(a){this.killLastSearchHint(),this.displaySearchHints(this.search.getHints(a))},displaySearchHints:function(a){this.hideSearchHints();if(a.length==0)return;$.each(a,function(a,b){$("#searchHints").append(''+b[0]+" ("+b[1]+")")}),$("#searchHints").show()},killLastSearchHint:function(){this.search.kill()},hideSearchHints:function(){this.killLastSearchHint(),$("#searchHints").html(""),$("#searchHints").hide()},sendToFriend:function(){window.open("mailto:?subject="+this.datas.title+"&body="+this.datas.title+" : "+window.location),this.stats.track(5)},sendByTwitter:function(){this.service.open("twitterShare",{url:window.location,post:this.datas.twitter_description.replace("%title%",this.datas.title)}),this.stats.track(13)},sendByFacebook:function(){this.service.open("facebookShare",{url:window.location}),this.stats.track(12)},highlightSearchTerms:function(a){return},touchOffset:function(a){a*=$("#currentDoublePage").width(),$("#currentDoublePage").addClass("sliding"),$("#currentDoublePage").css({translateX:a})},displayLoader:function(){this.support.isMobile?this.coquillette.show():(this.coquillette.show(),$("body").addClass("loading"))},hideLoader:function(){this.support.isMobile?this.coquillette.hide():(this.coquillette.hide(),$("body").removeClass("loading"))}};var fluidbook,desktopScale,dektopScaleAmount,INITED,$_GET,maskHashChange=!1,jsLibraries=[];$(function(){$_GET=parseGet(),INITED=!1,Modernizr.applicationcache&&(applicationCache.addEventListener("updateready",cacheUpdated,!1),applicationCache.addEventListener("downloading",function(a){},!1),applicationCache.addEventListener("cached",function(a){fluidbook.video.initCache()},!1),applicationCache.addEventListener("noupdate",function(a){fluidbook.video.initCache()},!1),applicationCache.addEventListener("checking",function(a){},!1),applicationCache.addEventListener("error",function(a){},!1)),init()}),function(){var a=window.alert;window.alert=function(){if(!navigator.notification)return a.apply(this,arguments);navigator.notification.alert(arguments[0],function(){},"Alert","Ok")}}(); \ No newline at end of file diff --git a/charte-graphique/m/data/images/bg.jpg b/charte-graphique/m/data/images/bg.jpg new file mode 100644 index 0000000..365b888 Binary files /dev/null and b/charte-graphique/m/data/images/bg.jpg differ diff --git a/charte-graphique/m/data/images/help-fingers.png b/charte-graphique/m/data/images/help-fingers.png new file mode 100644 index 0000000..6dd1b4f Binary files /dev/null and b/charte-graphique/m/data/images/help-fingers.png differ diff --git a/charte-graphique/m/data/images/help-fingers.svg b/charte-graphique/m/data/images/help-fingers.svg new file mode 100644 index 0000000..7dd5e34 --- /dev/null +++ b/charte-graphique/m/data/images/help-fingers.svg @@ -0,0 +1,70 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/charte-graphique/m/data/images/help-mouse.png b/charte-graphique/m/data/images/help-mouse.png new file mode 100644 index 0000000..9a8c576 Binary files /dev/null and b/charte-graphique/m/data/images/help-mouse.png differ diff --git a/charte-graphique/m/data/images/help-mouse.svg b/charte-graphique/m/data/images/help-mouse.svg new file mode 100644 index 0000000..6111903 --- /dev/null +++ b/charte-graphique/m/data/images/help-mouse.svg @@ -0,0 +1,23 @@ + + + + + + + + + + + + + + diff --git a/charte-graphique/m/data/images/logo.png b/charte-graphique/m/data/images/logo.png new file mode 100644 index 0000000..709e98c Binary files /dev/null and b/charte-graphique/m/data/images/logo.png differ diff --git a/charte-graphique/m/data/images/nav-archives.png b/charte-graphique/m/data/images/nav-archives.png new file mode 100644 index 0000000..63f1aa0 Binary files /dev/null and b/charte-graphique/m/data/images/nav-archives.png differ diff --git a/charte-graphique/m/data/images/nav-archives.svg b/charte-graphique/m/data/images/nav-archives.svg new file mode 100644 index 0000000..f6f1bec --- /dev/null +++ b/charte-graphique/m/data/images/nav-archives.svg @@ -0,0 +1,14 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/charte-graphique/m/data/images/nav-bookmark.png b/charte-graphique/m/data/images/nav-bookmark.png new file mode 100644 index 0000000..7e31e54 Binary files /dev/null and b/charte-graphique/m/data/images/nav-bookmark.png differ diff --git a/charte-graphique/m/data/images/nav-bookmark.svg b/charte-graphique/m/data/images/nav-bookmark.svg new file mode 100644 index 0000000..b3798bb --- /dev/null +++ b/charte-graphique/m/data/images/nav-bookmark.svg @@ -0,0 +1,15 @@ + + + + + + diff --git a/charte-graphique/m/data/images/nav-facebook.png b/charte-graphique/m/data/images/nav-facebook.png new file mode 100644 index 0000000..f0c718e Binary files /dev/null and b/charte-graphique/m/data/images/nav-facebook.png differ diff --git a/charte-graphique/m/data/images/nav-facebook.svg b/charte-graphique/m/data/images/nav-facebook.svg new file mode 100644 index 0000000..ee13c4a --- /dev/null +++ b/charte-graphique/m/data/images/nav-facebook.svg @@ -0,0 +1,11 @@ + + + + + + diff --git a/charte-graphique/m/data/images/nav-friend.png b/charte-graphique/m/data/images/nav-friend.png new file mode 100644 index 0000000..9257a87 Binary files /dev/null and b/charte-graphique/m/data/images/nav-friend.png differ diff --git a/charte-graphique/m/data/images/nav-friend.svg b/charte-graphique/m/data/images/nav-friend.svg new file mode 100644 index 0000000..116ce88 --- /dev/null +++ b/charte-graphique/m/data/images/nav-friend.svg @@ -0,0 +1,8 @@ + + + + + + diff --git a/charte-graphique/m/data/images/nav-help.png b/charte-graphique/m/data/images/nav-help.png new file mode 100644 index 0000000..ec2753d Binary files /dev/null and b/charte-graphique/m/data/images/nav-help.png differ diff --git a/charte-graphique/m/data/images/nav-help.svg b/charte-graphique/m/data/images/nav-help.svg new file mode 100644 index 0000000..89fd20d --- /dev/null +++ b/charte-graphique/m/data/images/nav-help.svg @@ -0,0 +1,17 @@ + + + + + + diff --git a/charte-graphique/m/data/images/nav-home.png b/charte-graphique/m/data/images/nav-home.png new file mode 100644 index 0000000..7f42407 Binary files /dev/null and b/charte-graphique/m/data/images/nav-home.png differ diff --git a/charte-graphique/m/data/images/nav-home.svg b/charte-graphique/m/data/images/nav-home.svg new file mode 100644 index 0000000..718c38a --- /dev/null +++ b/charte-graphique/m/data/images/nav-home.svg @@ -0,0 +1,14 @@ + + + + + + + + + + diff --git a/charte-graphique/m/data/images/nav-index.png b/charte-graphique/m/data/images/nav-index.png new file mode 100644 index 0000000..9b70a39 Binary files /dev/null and b/charte-graphique/m/data/images/nav-index.png differ diff --git a/charte-graphique/m/data/images/nav-index.svg b/charte-graphique/m/data/images/nav-index.svg new file mode 100644 index 0000000..dd16fef --- /dev/null +++ b/charte-graphique/m/data/images/nav-index.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/charte-graphique/m/data/images/nav-map.png b/charte-graphique/m/data/images/nav-map.png new file mode 100644 index 0000000..c270989 Binary files /dev/null and b/charte-graphique/m/data/images/nav-map.png differ diff --git a/charte-graphique/m/data/images/nav-map.svg b/charte-graphique/m/data/images/nav-map.svg new file mode 100644 index 0000000..7786f49 --- /dev/null +++ b/charte-graphique/m/data/images/nav-map.svg @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/charte-graphique/m/data/images/nav-sommaire.png b/charte-graphique/m/data/images/nav-sommaire.png new file mode 100644 index 0000000..61925db Binary files /dev/null and b/charte-graphique/m/data/images/nav-sommaire.png differ diff --git a/charte-graphique/m/data/images/nav-sommaire.svg b/charte-graphique/m/data/images/nav-sommaire.svg new file mode 100644 index 0000000..1441580 --- /dev/null +++ b/charte-graphique/m/data/images/nav-sommaire.svg @@ -0,0 +1,17 @@ + + + + + + + + + + diff --git a/charte-graphique/m/data/images/nav-tag.png b/charte-graphique/m/data/images/nav-tag.png new file mode 100644 index 0000000..c8e5b29 Binary files /dev/null and b/charte-graphique/m/data/images/nav-tag.png differ diff --git a/charte-graphique/m/data/images/nav-tag.svg b/charte-graphique/m/data/images/nav-tag.svg new file mode 100644 index 0000000..211d990 --- /dev/null +++ b/charte-graphique/m/data/images/nav-tag.svg @@ -0,0 +1,20 @@ + + + + + + + + + diff --git a/charte-graphique/m/data/images/nav-twitter.png b/charte-graphique/m/data/images/nav-twitter.png new file mode 100644 index 0000000..1c51de4 Binary files /dev/null and b/charte-graphique/m/data/images/nav-twitter.png differ diff --git a/charte-graphique/m/data/images/nav-twitter.svg b/charte-graphique/m/data/images/nav-twitter.svg new file mode 100644 index 0000000..6af2570 --- /dev/null +++ b/charte-graphique/m/data/images/nav-twitter.svg @@ -0,0 +1,17 @@ + + + + + + + + diff --git a/charte-graphique/m/data/images/next.png b/charte-graphique/m/data/images/next.png new file mode 100644 index 0000000..a7eca98 Binary files /dev/null and b/charte-graphique/m/data/images/next.png differ diff --git a/charte-graphique/m/data/images/next.svg b/charte-graphique/m/data/images/next.svg new file mode 100644 index 0000000..da03bbb --- /dev/null +++ b/charte-graphique/m/data/images/next.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + diff --git a/charte-graphique/m/data/images/previous.png b/charte-graphique/m/data/images/previous.png new file mode 100644 index 0000000..7fb3602 Binary files /dev/null and b/charte-graphique/m/data/images/previous.png differ diff --git a/charte-graphique/m/data/images/previous.svg b/charte-graphique/m/data/images/previous.svg new file mode 100644 index 0000000..8ab122f --- /dev/null +++ b/charte-graphique/m/data/images/previous.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/charte-graphique/m/data/images/search.png b/charte-graphique/m/data/images/search.png new file mode 100644 index 0000000..b48fee6 Binary files /dev/null and b/charte-graphique/m/data/images/search.png differ diff --git a/charte-graphique/m/data/images/search.svg b/charte-graphique/m/data/images/search.svg new file mode 100644 index 0000000..d7f6c05 --- /dev/null +++ b/charte-graphique/m/data/images/search.svg @@ -0,0 +1,10 @@ + + + + + + diff --git a/charte-graphique/m/data/search.js b/charte-graphique/m/data/search.js new file mode 100644 index 0000000..ae75b88 --- /dev/null +++ b/charte-graphique/m/data/search.js @@ -0,0 +1 @@ +var INDEX={"000":{"t":9,"w":{"000":{"t":9,"p":{"12":3,"30":2,"31":2,"34":1,"36":1}}}},"000c":{"t":2,"w":{"000c":{"t":2,"p":{"35":2}}}},"0086c9":{"t":4,"w":{"0086c9":{"t":4,"p":{"14":2,"36":1,"48":1}}}},"009":{"t":3,"w":{"009":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"020":{"t":2,"w":{"020":{"t":2,"p":{"18":1,"19":1}}}},"0055":{"t":2,"w":{"0055":{"t":2,"p":{"18":1,"19":1}}}},"0177":{"t":2,"w":{"0177":{"t":2,"p":{"18":1,"19":1}}}},"003663":{"t":4,"w":{"003663":{"t":4,"p":{"14":1,"19":1,"25":1,"31":1}}}},"032734":{"t":4,"w":{"032734":{"t":4,"p":{"14":1,"35":1,"36":1,"48":1}}}},"0123456789":{"t":11,"w":{"0123456789":{"t":11,"p":{"13":11}}}},"10pt":{"t":3,"w":{"10pt":{"t":3,"p":{"19":1,"38":1,"49":1}}}},"11pt":{"t":2,"w":{"11pt":{"t":2,"p":{"25":1,"31":1}}}},"120g":{"t":4,"w":{"120g":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"12m":{"t":1,"w":{"12m":{"t":1,"p":{"36":1}}}},"14pt":{"t":1,"w":{"14pt":{"t":1,"p":{"38":1}}}},"15l":{"t":4,"w":{"15l":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"16baed":{"t":1,"w":{"16baed":{"t":1,"p":{"14":1}}}},"16pt":{"t":4,"w":{"16pt":{"t":4,"p":{"25":1,"31":1,"38":1,"49":1}}}},"18pt":{"t":3,"w":{"18pt":{"t":3,"p":{"38":2,"49":1}}}},"1cm":{"t":4,"w":{"1cm":{"t":4,"p":{"24":2,"30":2}}}},"20th":{"t":12,"w":{"20th":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"2cm":{"t":1,"w":{"2cm":{"t":1,"p":{"34":1}}}},"30g":{"t":4,"w":{"30g":{"t":4,"p":{"36":1,"47":1,"48":1,"49":1}}}},"50pt":{"t":2,"w":{"50pt":{"t":2,"p":{"38":1,"49":1}}}},"55db":{"t":4,"w":{"55db":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"60l":{"t":4,"w":{"60l":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"72pt":{"t":1,"w":{"72pt":{"t":1,"p":{"42":1}}}},"76b643":{"t":4,"w":{"76b643":{"t":4,"p":{"14":2,"36":1,"48":1}}}},"79db":{"t":3,"w":{"79db":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"7pt":{"t":2,"w":{"7pt":{"t":2,"p":{"19":1,"31":1}}}},"80pt":{"t":2,"w":{"80pt":{"t":2,"p":{"38":1,"49":1}}}},"8299z":{"t":3,"w":{"8299z":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"8pt":{"t":4,"w":{"8pt":{"t":4,"p":{"38":2,"42":1,"49":1}}}},"a9cb38":{"t":1,"w":{"a9cb38":{"t":1,"p":{"14":1}}}},"abcdefghijklmnopqrstuvwxyz":{"t":22,"w":{"abcdefghijklmnopqrstuvwxyz":{"t":22,"p":{"13":22}}}},"able":{"t":7,"w":{"able":{"t":7,"p":{"12":2,"34":2,"36":3}}}},"accroche":{"t":5,"w":{"accroche":{"t":5,"p":{"34":2,"38":1,"46":1,"49":1}}}},"actuators":{"t":1,"w":{"actuators":{"t":1,"p":{"36":1}}}},"adipiscing":{"t":1,"w":{"adipiscing":{"t":1,"p":{"25":1}}}},"aeronautics":{"t":7,"w":{"aeronautics":{"t":7,"p":{"12":1,"34":2,"35":1,"36":2,"38":1}}}},"affinee":{"t":3,"w":{"affin\u00e9e":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"affiner":{"t":3,"w":{"affiner":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"africa":{"t":3,"w":{"africa":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"aged":{"t":3,"w":{"aged":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"agit":{"t":1,"w":{"agit":{"t":1,"p":{"47":1}}}},"agreement":{"t":3,"w":{"agreement":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"ainsi":{"t":2,"w":{"ainsi":{"t":2,"p":{"10":2}}}},"air":{"t":6,"w":{"air":{"t":6,"p":{"12":2,"34":2,"36":2}}}},"aliquam":{"t":1,"w":{"aliquam":{"t":1,"p":{"25":1}}}},"aliseo":{"t":8,"w":{"aliseo":{"t":8,"p":{"36":3,"46":1,"48":2,"49":2}}}},"aliseo1":{"t":1,"w":{"aliseo1":{"t":1,"p":{"46":1}}}},"all":{"t":1,"w":{"all":{"t":1,"p":{"36":1}}}},"also":{"t":3,"w":{"also":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"altran":{"t":3,"w":{"altran":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"amet":{"t":4,"w":{"amet":{"t":4,"p":{"25":4}}}},"and":{"t":58,"w":{"and":{"t":58,"p":{"12":5,"34":13,"35":8,"36":15,"38":8,"46":1,"47":2,"48":3,"49":3}}}},"angle":{"t":1,"w":{"angle":{"t":1,"p":{"42":1}}}},"angles":{"t":4,"w":{"angles":{"t":4,"p":{"12":1,"30":1,"31":1,"40":1}}}},"answer":{"t":1,"w":{"answer":{"t":1,"p":{"36":1}}}},"apparait":{"t":2,"w":{"appara\u00eet":{"t":2,"p":{"19":1,"20":1}}}},"application":{"t":1,"w":{"application":{"t":1,"p":{"36":1}}}},"approach":{"t":3,"w":{"approach":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"aproduct":{"t":3,"w":{"aproduct":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"arch":{"t":12,"w":{"arch":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"arcu":{"t":1,"w":{"arcu":{"t":1,"p":{"25":1}}}},"arial":{"t":12,"w":{"arial":{"t":12,"p":{"12":3,"13":2,"19":1,"20":1,"25":2,"26":1,"31":2}}}},"arriere":{"t":1,"w":{"arri\u00e8re":{"t":1,"p":{"41":1}}}},"asia":{"t":3,"w":{"asia":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"auctor":{"t":1,"w":{"auctor":{"t":1,"p":{"25":1}}}},"augue":{"t":2,"w":{"augue":{"t":2,"p":{"25":2}}}},"austin":{"t":12,"w":{"austin":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"automated":{"t":2,"w":{"automated":{"t":2,"p":{"36":2}}}},"automobile":{"t":33,"w":{"automobile":{"t":33,"p":{"12":1,"34":10,"35":9,"36":3,"38":9,"42":1}}}},"automotive":{"t":3,"w":{"automotive":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"autonomous":{"t":1,"w":{"autonomous":{"t":1,"p":{"36":1}}}},"autonomy":{"t":11,"w":{"autonomy":{"t":11,"p":{"12":3,"34":3,"36":5}}}},"autour":{"t":3,"w":{"autour":{"t":3,"p":{"6":1,"7":1,"34":1}}}},"aux":{"t":4,"w":{"aux":{"t":4,"p":{"12":1,"30":1,"31":1,"34":1}}}},"availability":{"t":1,"w":{"availability":{"t":1,"p":{"36":1}}}},"avec":{"t":6,"w":{"avec":{"t":6,"p":{"18":2,"34":1,"47":3}}}},"avto":{"t":3,"w":{"avto":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"bande":{"t":1,"w":{"bande":{"t":1,"p":{"18":1}}}},"barre":{"t":1,"w":{"barre":{"t":1,"p":{"10":1}}}},"barrier":{"t":3,"w":{"barrier":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"bas":{"t":4,"w":{"bas":{"t":4,"p":{"18":1,"24":1,"42":1,"47":1}}}},"based":{"t":7,"w":{"based":{"t":7,"p":{"12":1,"34":2,"35":1,"36":2,"38":1}}}},"basee":{"t":1,"w":{"bas\u00e9e":{"t":1,"p":{"18":1}}}},"baseline":{"t":11,"w":{"baseline":{"t":11,"p":{"3":1,"5":1,"10":7,"24":1,"30":1}}}},"been":{"t":3,"w":{"been":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"began":{"t":3,"w":{"began":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"between":{"t":1,"w":{"between":{"t":1,"p":{"36":1}}}},"bilingue":{"t":1,"w":{"bilingue":{"t":1,"p":{"18":1}}}},"bilingues":{"t":1,"w":{"bilingues":{"t":1,"p":{"12":1}}}},"biogas":{"t":1,"w":{"biogas":{"t":1,"p":{"36":1}}}},"biographie":{"t":1,"w":{"biographie":{"t":1,"p":{"34":1}}}},"bird":{"t":3,"w":{"bird":{"t":3,"p":{"47":1,"48":1,"49":1}}}},"blandit":{"t":3,"w":{"blandit":{"t":3,"p":{"25":3}}}},"bleu":{"t":5,"w":{"bleu":{"t":5,"p":{"8":5}}}},"bleue":{"t":1,"w":{"bleue":{"t":1,"p":{"18":1}}}},"block":{"t":12,"w":{"block":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"bmw":{"t":3,"w":{"bmw":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"bold":{"t":3,"w":{"bold":{"t":3,"p":{"13":3}}}},"bord":{"t":4,"w":{"bord":{"t":4,"p":{"24":2,"30":2}}}},"build":{"t":1,"w":{"build":{"t":1,"p":{"36":1}}}},"builder":{"t":3,"w":{"builder":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"built":{"t":7,"w":{"built":{"t":7,"p":{"34":2,"35":2,"38":2,"42":1}}}},"bus":{"t":29,"w":{"bus":{"t":29,"p":{"12":8,"34":8,"36":13}}}},"cadivel":{"t":9,"w":{"cadivel":{"t":9,"p":{"18":1,"19":1,"20":1,"34":2,"35":2,"38":2}}}},"cadivel@levidac":{"t":3,"w":{"cadivel@levidac":{"t":3,"p":{"18":1,"19":1,"20":1}}}},"cage":{"t":3,"w":{"cage":{"t":3,"p":{"47":1,"48":1,"49":1}}}},"can":{"t":1,"w":{"can":{"t":1,"p":{"36":1}}}},"cap":{"t":1,"w":{"cap":{"t":1,"p":{"38":1}}}},"capacity":{"t":3,"w":{"capacity":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"capital":{"t":3,"w":{"capital":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"capitales":{"t":2,"w":{"capitales":{"t":2,"p":{"19":1,"20":1}}}},"caracteres":{"t":3,"w":{"caract\u00e8res":{"t":3,"p":{"12":1,"19":1,"20":1}}}},"caracteristiques":{"t":1,"w":{"caract\u00e9ristiques":{"t":1,"p":{"34":1}}}},"career":{"t":10,"w":{"career":{"t":10,"p":{"34":3,"35":3,"38":3,"42":1}}}},"carree":{"t":1,"w":{"carr\u00e9e":{"t":1,"p":{"47":1}}}},"carte":{"t":7,"w":{"carte":{"t":7,"p":{"3":1,"17":1,"18":3,"19":1,"20":1}}}},"cartes":{"t":6,"w":{"cartes":{"t":6,"p":{"3":1,"12":1,"18":1,"24":1,"26":1,"51":1}}}},"celle":{"t":3,"w":{"celle":{"t":3,"p":{"10":3}}}},"centre":{"t":8,"w":{"centr\u00e9":{"t":2,"p":{"24":1,"30":1}},"centre":{"t":6,"p":{"34":2,"35":2,"38":2}}}},"centree":{"t":3,"w":{"centr\u00e9e":{"t":3,"p":{"10":2,"42":1}}}},"centres":{"t":2,"w":{"centr\u00e9s":{"t":2,"p":{"6":1,"7":1}}}},"cet":{"t":2,"w":{"cet":{"t":2,"p":{"6":1,"7":1}}}},"cette":{"t":1,"w":{"cette":{"t":1,"p":{"12":1}}}},"chairman":{"t":6,"w":{"chairman":{"t":6,"p":{"18":1,"19":1,"20":1,"34":1,"35":1,"38":1}}}},"charte":{"t":1,"w":{"charte":{"t":1,"p":{"12":1}}}},"chassis":{"t":3,"w":{"chassis":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"china":{"t":2,"w":{"china":{"t":2,"p":{"18":1,"19":1}}}},"chinese":{"t":4,"w":{"chinese":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"chinois":{"t":5,"w":{"chinois":{"t":5,"p":{"12":1,"18":2,"19":1,"20":1}}}},"christophe":{"t":2,"w":{"christophe":{"t":2,"p":{"18":1,"19":1}}}},"cinematiques":{"t":3,"w":{"cin\u00e9matiques":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"citation":{"t":3,"w":{"citation":{"t":3,"p":{"34":1,"38":1,"42":1}}}},"clean":{"t":7,"w":{"clean":{"t":7,"p":{"34":2,"35":2,"36":1,"38":2}}}},"clotilde":{"t":2,"w":{"clotilde":{"t":2,"p":{"18":1,"20":1}}}},"cmjn":{"t":1,"w":{"cmjn":{"t":1,"p":{"8":1}}}},"co2":{"t":8,"w":{"co2":{"t":8,"p":{"12":1,"34":1,"36":3,"47":1,"48":1,"49":1}}}},"colonnes":{"t":2,"w":{"colonnes":{"t":2,"p":{"24":1,"30":1}}}},"colour":{"t":3,"w":{"colour":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"com":{"t":14,"w":{"com":{"t":14,"p":{"12":2,"24":2,"25":2,"26":2,"30":2,"31":2,"52":2}}}},"comme":{"t":4,"w":{"comme":{"t":4,"p":{"20":1,"24":1,"26":2}}}},"commodo":{"t":1,"w":{"commodo":{"t":1,"p":{"25":1}}}},"communication":{"t":6,"w":{"communication":{"t":6,"p":{"12":2,"18":1,"20":1,"30":1,"31":1}}}},"compacte":{"t":4,"w":{"compacte":{"t":4,"p":{"3":1,"5":1,"7":1,"10":1}}}},"company":{"t":3,"w":{"company":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"compared":{"t":15,"w":{"compared":{"t":15,"p":{"12":5,"34":5,"36":5}}}},"complete":{"t":3,"w":{"complete":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"completely":{"t":1,"w":{"completely":{"t":1,"p":{"36":1}}}},"completer":{"t":1,"w":{"compl\u00e9ter":{"t":1,"p":{"42":1}}}},"compliance":{"t":4,"w":{"compliance":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"components":{"t":6,"w":{"components":{"t":6,"p":{"34":2,"35":2,"38":2}}}},"composants":{"t":3,"w":{"composants":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"compose":{"t":4,"w":{"compose":{"t":3,"p":{"24":1,"30":1,"42":1}},"compos\u00e9":{"t":1,"p":{"34":1}}}},"composent":{"t":1,"w":{"composent":{"t":1,"p":{"47":1}}}},"composite":{"t":12,"w":{"composite":{"t":12,"p":{"12":2,"34":3,"35":1,"36":2,"38":1,"47":1,"48":1,"49":1}}}},"composites":{"t":3,"w":{"composites":{"t":3,"p":{"47":1,"48":1,"49":1}}}},"composition":{"t":13,"w":{"composition":{"t":13,"p":{"3":3,"18":1,"23":1,"24":1,"29":1,"30":1,"33":1,"45":1,"46":2,"47":1}}}},"compositions":{"t":2,"w":{"compositions":{"t":2,"p":{"3":1,"34":1}}}},"concept":{"t":3,"w":{"concept":{"t":3,"p":{"47":1,"48":1,"49":1}}}},"condition":{"t":1,"w":{"condition":{"t":1,"p":{"36":1}}}},"conditioning":{"t":6,"w":{"conditioning":{"t":6,"p":{"12":2,"34":2,"36":2}}}},"congue":{"t":1,"w":{"congue":{"t":1,"p":{"25":1}}}},"consectetur":{"t":1,"w":{"consectetur":{"t":1,"p":{"25":1}}}},"consequat":{"t":2,"w":{"consequat":{"t":2,"p":{"25":2}}}},"constructors":{"t":3,"w":{"constructors":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"consultant":{"t":3,"w":{"consultant":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"consumption":{"t":7,"w":{"consumption":{"t":7,"p":{"12":2,"34":2,"36":3}}}},"contact@levidac":{"t":7,"w":{"contact@levidac":{"t":7,"p":{"12":1,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"contenu":{"t":1,"w":{"contenu":{"t":1,"p":{"12":1}}}},"continuous":{"t":1,"w":{"continuous":{"t":1,"p":{"36":1}}}},"contre":{"t":2,"w":{"contre":{"t":2,"p":{"20":1,"40":1}}}},"conventional":{"t":11,"w":{"conventional":{"t":11,"p":{"12":3,"34":3,"36":5}}}},"convinced":{"t":3,"w":{"convinced":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"coordonnees":{"t":2,"w":{"coordonn\u00e9es":{"t":2,"p":{"24":1,"30":1}}}},"corporation":{"t":5,"w":{"corporation":{"t":5,"p":{"18":2,"19":1,"20":2}}}},"cost":{"t":13,"w":{"cost":{"t":13,"p":{"12":1,"34":1,"36":5,"47":2,"48":2,"49":2}}}},"cotes":{"t":3,"w":{"cotes":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"couleur":{"t":3,"w":{"couleur":{"t":3,"p":{"41":1,"42":2}}}},"couleurs":{"t":22,"w":{"couleurs":{"t":22,"p":{"3":7,"5":1,"8":1,"9":1,"14":1,"17":1,"19":1,"23":1,"25":1,"29":1,"31":1,"33":1,"35":1,"36":1,"45":1,"48":1}}}},"coupe":{"t":1,"w":{"coup\u00e9":{"t":1,"p":{"24":1}}}},"coupling":{"t":1,"w":{"coupling":{"t":1,"p":{"36":1}}}},"coura":{"t":2,"w":{"coura":{"t":2,"p":{"38":1,"49":1}}}},"courant":{"t":4,"w":{"courant":{"t":4,"p":{"12":1,"25":1,"26":1,"31":1}}}},"courriers":{"t":1,"w":{"courriers":{"t":1,"p":{"12":1}}}},"cover":{"t":3,"w":{"cover":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"cras":{"t":1,"w":{"cras":{"t":1,"p":{"25":1}}}},"crosses":{"t":3,"w":{"crosses":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"cubedesigners":{"t":1,"w":{"cubedesigners":{"t":1,"p":{"25":1}}}},"curabitur":{"t":1,"w":{"curabitur":{"t":1,"p":{"25":1}}}},"currently":{"t":1,"w":{"currently":{"t":1,"p":{"36":1}}}},"cursus":{"t":2,"w":{"cursus":{"t":2,"p":{"25":2}}}},"customized":{"t":1,"w":{"customized":{"t":1,"p":{"36":1}}}},"cyan":{"t":7,"w":{"cyan":{"t":7,"p":{"8":5,"9":2}}}},"cycles":{"t":1,"w":{"cycles":{"t":1,"p":{"36":1}}}},"dans":{"t":1,"w":{"dans":{"t":1,"p":{"40":1}}}},"dapibus":{"t":1,"w":{"dapibus":{"t":1,"p":{"25":1}}}},"date":{"t":3,"w":{"date":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"decline":{"t":2,"w":{"d\u00e9cline":{"t":2,"p":{"38":1,"49":1}}}},"declinent":{"t":1,"w":{"d\u00e9clinent":{"t":1,"p":{"18":1}}}},"decrivant":{"t":1,"w":{"d\u00e9crivant":{"t":1,"p":{"34":1}}}},"definie":{"t":3,"w":{"d\u00e9finie":{"t":3,"p":{"10":3}}}},"deformation":{"t":2,"w":{"d\u00e9formation":{"t":2,"p":{"6":1,"7":1}}}},"derived":{"t":4,"w":{"derived":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"des":{"t":21,"w":{"des":{"t":21,"p":{"3":1,"12":3,"18":1,"24":1,"30":4,"31":2,"33":1,"34":2,"40":1,"41":1,"42":2,"46":1,"47":1}}}},"description":{"t":9,"w":{"description":{"t":9,"p":{"12":3,"30":3,"31":3}}}},"design":{"t":4,"w":{"design":{"t":4,"p":{"34":1,"35":1,"36":1,"38":1}}}},"details":{"t":3,"w":{"d\u00e9tails":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"determine":{"t":4,"w":{"d\u00e9termin\u00e9":{"t":4,"p":{"6":2,"7":2}}}},"deux":{"t":2,"w":{"deux":{"t":2,"p":{"6":1,"7":1}}}},"developing":{"t":4,"w":{"developing":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"development":{"t":15,"w":{"development":{"t":15,"p":{"34":5,"35":5,"38":5}}}},"devis":{"t":14,"w":{"devis":{"t":14,"p":{"3":2,"12":3,"29":1,"30":4,"31":3,"51":1}}}},"diagnostic":{"t":3,"w":{"diagnostic":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"diam":{"t":1,"w":{"diam":{"t":1,"p":{"25":1}}}},"diesel":{"t":7,"w":{"diesel":{"t":7,"p":{"12":2,"34":2,"36":3}}}},"differement":{"t":1,"w":{"diff\u00e9rement":{"t":1,"p":{"41":1}}}},"differentes":{"t":3,"w":{"diff\u00e9rentes":{"t":3,"p":{"18":1,"38":1,"49":1}}}},"differents":{"t":3,"w":{"diff\u00e9rents":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"dimensions":{"t":1,"w":{"dimensions":{"t":1,"p":{"40":1}}}},"director":{"t":2,"w":{"director":{"t":2,"p":{"18":1,"20":1}}}},"dirigeants":{"t":2,"w":{"dirigeants":{"t":2,"p":{"18":1,"34":1}}}},"discuter":{"t":1,"w":{"discuter":{"t":1,"p":{"25":1}}}},"dispo":{"t":1,"w":{"dispo":{"t":1,"p":{"25":1}}}},"distance":{"t":2,"w":{"distance":{"t":2,"p":{"10":2}}}},"distingue":{"t":1,"w":{"distingue":{"t":1,"p":{"18":1}}}},"distribution":{"t":3,"w":{"distribution":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"document":{"t":1,"w":{"document":{"t":1,"p":{"34":1}}}},"documents":{"t":1,"w":{"documents":{"t":1,"p":{"12":1}}}},"doit":{"t":2,"w":{"doit":{"t":2,"p":{"6":1,"7":1}}}},"doivent":{"t":1,"w":{"doivent":{"t":1,"p":{"40":1}}}},"dolor":{"t":2,"w":{"dolor":{"t":2,"p":{"25":2}}}},"donec":{"t":3,"w":{"donec":{"t":3,"p":{"25":3}}}},"dongfeng":{"t":4,"w":{"dongfeng":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"dont":{"t":12,"w":{"dont":{"t":12,"p":{"12":4,"30":4,"31":4}}}},"dossier":{"t":16,"w":{"dossier":{"t":16,"p":{"3":2,"33":1,"34":3,"35":1,"36":1,"38":1,"40":1,"41":1,"42":3,"46":1,"51":1}}}},"driverl":{"t":1,"w":{"driverl":{"t":1,"p":{"36":1}}}},"droit":{"t":2,"w":{"droit":{"t":2,"p":{"24":1,"30":1}}}},"droite":{"t":6,"w":{"droite":{"t":6,"p":{"10":1,"24":2,"30":1,"42":1,"47":1}}}},"duc":{"t":3,"w":{"duc":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"due":{"t":6,"w":{"due":{"t":6,"p":{"12":2,"34":2,"36":2}}}},"duis":{"t":1,"w":{"duis":{"t":1,"p":{"25":1}}}},"eb7d23":{"t":4,"w":{"eb7d23":{"t":4,"p":{"14":2,"36":1,"48":1}}}},"eco":{"t":1,"w":{"eco":{"t":1,"p":{"36":1}}}},"egestas":{"t":1,"w":{"egestas":{"t":1,"p":{"25":1}}}},"eget":{"t":1,"w":{"eget":{"t":1,"p":{"25":1}}}},"electric":{"t":16,"w":{"electric":{"t":16,"p":{"12":4,"34":4,"36":8}}}},"electronic":{"t":1,"w":{"electronic":{"t":1,"p":{"36":1}}}},"elements":{"t":11,"w":{"el\u00e9ments":{"t":1,"p":{"3":1}},"\u00e9l\u00e9ments":{"t":10,"p":{"6":1,"7":1,"24":1,"30":1,"34":2,"42":3,"47":1}}}},"elementum":{"t":2,"w":{"elementum":{"t":2,"p":{"25":2}}}},"elit":{"t":2,"w":{"elit":{"t":2,"p":{"25":2}}}},"elle":{"t":3,"w":{"elle":{"t":3,"p":{"10":1,"38":1,"49":1}}}},"emissions":{"t":8,"w":{"emissions":{"t":8,"p":{"12":1,"34":1,"36":3,"47":1,"48":1,"49":1}}}},"energy":{"t":14,"w":{"energy":{"t":14,"p":{"12":1,"24":1,"25":1,"26":1,"30":1,"31":1,"34":1,"35":1,"36":2,"38":1,"47":1,"48":1,"49":1}}}},"engine":{"t":4,"w":{"engine":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"engineer":{"t":16,"w":{"engineer":{"t":16,"p":{"34":5,"35":5,"38":5,"42":1}}}},"engineering":{"t":3,"w":{"engineering":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"enim":{"t":1,"w":{"enim":{"t":1,"p":{"25":1}}}},"entiere":{"t":2,"w":{"enti\u00e8re":{"t":2,"p":{"20":1,"26":1}}}},"entire":{"t":7,"w":{"entire":{"t":7,"p":{"34":2,"35":2,"38":2,"42":1}}}},"entre":{"t":2,"w":{"entre":{"t":2,"p":{"6":1,"7":1}}}},"environmental":{"t":3,"w":{"environmental":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"equipment":{"t":3,"w":{"equipment":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"eros":{"t":1,"w":{"eros":{"t":1,"p":{"25":1}}}},"espace":{"t":7,"w":{"espace":{"t":7,"p":{"6":2,"7":2,"34":1,"35":1,"38":1}}}},"est":{"t":48,"w":{"est":{"t":48,"p":{"6":4,"7":4,"10":5,"12":8,"18":2,"19":2,"20":2,"25":4,"26":3,"30":4,"31":6,"34":1,"38":1,"42":1,"49":1}}}},"esthetiques":{"t":3,"w":{"esth\u00e9tiques":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"etre":{"t":5,"w":{"\u00eatre":{"t":5,"p":{"6":1,"7":1,"10":1,"20":1,"26":1}}}},"euro":{"t":6,"w":{"euro":{"t":6,"p":{"12":2,"34":2,"36":2}}}},"euro7":{"t":1,"w":{"euro7":{"t":1,"p":{"36":1}}}},"euro8":{"t":1,"w":{"euro8":{"t":1,"p":{"36":1}}}},"europe":{"t":3,"w":{"europe":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"euros":{"t":12,"w":{"euros":{"t":12,"p":{"12":4,"30":4,"31":4}}}},"eventuelles":{"t":3,"w":{"\u00e9ventuelles":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"example":{"t":1,"w":{"example":{"t":1,"p":{"36":1}}}},"excepte":{"t":1,"w":{"except\u00e9":{"t":1,"p":{"34":1}}}},"existing":{"t":1,"w":{"existing":{"t":1,"p":{"36":1}}}},"experience":{"t":3,"w":{"experience":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"expertise":{"t":3,"w":{"expertise":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"extender":{"t":16,"w":{"extender":{"t":16,"p":{"12":3,"34":3,"36":7,"47":1,"48":1,"49":1}}}},"exterior":{"t":4,"w":{"exterior":{"t":4,"p":{"36":1,"47":1,"48":1,"49":1}}}},"externe":{"t":3,"w":{"externe":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"extra":{"t":4,"w":{"extra":{"t":4,"p":{"36":1,"46":1,"48":1,"49":1}}}},"f05331":{"t":4,"w":{"f05331":{"t":4,"p":{"14":1,"35":1,"36":1,"48":1}}}},"facilisis":{"t":1,"w":{"facilisis":{"t":1,"p":{"25":1}}}},"facon":{"t":2,"w":{"fa\u00e7on":{"t":2,"p":{"38":1,"49":1}}}},"facture":{"t":6,"w":{"facture":{"t":6,"p":{"3":2,"29":1,"30":1,"31":1,"51":1}}}},"factures":{"t":1,"w":{"factures":{"t":1,"p":{"12":1}}}},"famille":{"t":2,"w":{"famille":{"t":2,"p":{"19":1,"20":1}}}},"fax":{"t":7,"w":{"fax":{"t":7,"p":{"12":1,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"feat":{"t":3,"w":{"feat":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"felis":{"t":1,"w":{"felis":{"t":1,"p":{"25":1}}}},"fermentum":{"t":1,"w":{"fermentum":{"t":1,"p":{"25":1}}}},"feugiat":{"t":2,"w":{"feugiat":{"t":2,"p":{"25":2}}}},"ffdd95":{"t":1,"w":{"ffdd95":{"t":1,"p":{"14":1}}}},"ffffff":{"t":4,"w":{"ffffff":{"t":4,"p":{"14":1,"19":1,"25":1,"31":1}}}},"fiche":{"t":4,"w":{"fiche":{"t":4,"p":{"3":2,"33":2}}}},"fiches":{"t":9,"w":{"fiches":{"t":9,"p":{"34":2,"35":1,"36":1,"40":1,"41":2,"42":1,"46":1}}}},"field":{"t":3,"w":{"field":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"filter":{"t":3,"w":{"filter":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"financed":{"t":4,"w":{"financed":{"t":4,"p":{"36":1,"47":1,"48":1,"49":1}}}},"first":{"t":1,"w":{"first":{"t":1,"p":{"36":1}}}},"flat":{"t":12,"w":{"flat":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"fleet":{"t":1,"w":{"fleet":{"t":1,"p":{"36":1}}}},"flexo":{"t":25,"w":{"flexo":{"t":25,"p":{"12":2,"13":1,"19":3,"20":1,"25":2,"26":1,"31":3,"38":7,"49":5}}}},"floor":{"t":12,"w":{"floor":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"flows":{"t":1,"w":{"flows":{"t":1,"p":{"36":1}}}},"fonction":{"t":1,"w":{"fonction":{"t":1,"p":{"10":1}}}},"fondamentaux":{"t":9,"w":{"fondamentaux":{"t":9,"p":{"3":1,"5":1,"6":1,"7":1,"8":1,"9":1,"10":1,"12":1,"14":1}}}},"for":{"t":40,"w":{"for":{"t":40,"p":{"12":6,"34":10,"35":4,"36":13,"38":4,"47":1,"48":1,"49":1}}}},"format":{"t":3,"w":{"format":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"forme":{"t":4,"w":{"forme":{"t":4,"p":{"12":1,"30":1,"31":1,"42":1}}}},"formes":{"t":1,"w":{"formes":{"t":1,"p":{"18":1}}}},"forthe":{"t":3,"w":{"forthe":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"founded":{"t":9,"w":{"founded":{"t":9,"p":{"34":3,"35":3,"38":3}}}},"founder":{"t":6,"w":{"founder":{"t":6,"p":{"18":1,"19":1,"20":1,"34":1,"35":1,"38":1}}}},"fr704426862599":{"t":3,"w":{"fr704426862599":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"francais":{"t":1,"w":{"fran\u00e7ais":{"t":1,"p":{"18":1}}}},"francois":{"t":1,"w":{"fran\u00e7ois":{"t":1,"p":{"25":1}}}},"fringilla":{"t":1,"w":{"fringilla":{"t":1,"p":{"25":1}}}},"from":{"t":4,"w":{"from":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"fuel":{"t":4,"w":{"fuel":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"full":{"t":5,"w":{"full":{"t":5,"p":{"12":1,"34":1,"36":3}}}},"functions":{"t":4,"w":{"functions":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"future":{"t":4,"w":{"future":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"gauche":{"t":4,"w":{"gauche":{"t":4,"p":{"24":2,"30":2}}}},"generation":{"t":6,"w":{"generation":{"t":6,"p":{"12":2,"34":2,"36":2}}}},"generator":{"t":4,"w":{"generator":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"generators":{"t":1,"w":{"generators":{"t":1,"p":{"36":1}}}},"global":{"t":3,"w":{"global":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"goods":{"t":1,"w":{"goods":{"t":1,"p":{"36":1}}}},"graisses":{"t":2,"w":{"graisses":{"t":2,"p":{"38":1,"49":1}}}},"graphique":{"t":8,"w":{"graphique":{"t":8,"p":{"3":2,"12":1,"20":2,"24":1,"26":2}}}},"graphiques":{"t":3,"w":{"graphiques":{"t":3,"p":{"3":1,"42":2}}}},"gravida":{"t":1,"w":{"gravida":{"t":1,"p":{"25":1}}}},"green":{"t":6,"w":{"green":{"t":6,"p":{"12":2,"34":2,"36":2}}}},"grid":{"t":4,"w":{"grid":{"t":4,"p":{"34":1,"35":1,"36":1,"38":1}}}},"gris":{"t":1,"w":{"gris":{"t":1,"p":{"47":1}}}},"group":{"t":8,"w":{"group":{"t":8,"p":{"18":2,"19":1,"20":2,"34":1,"35":1,"38":1}}}},"gsm":{"t":3,"w":{"gsm":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"guaranteed":{"t":1,"w":{"guaranteed":{"t":1,"p":{"36":1}}}},"guide":{"t":1,"w":{"guide":{"t":1,"p":{"36":1}}}},"guillemets":{"t":1,"w":{"guillemets":{"t":1,"p":{"42":1}}}},"has":{"t":10,"w":{"has":{"t":10,"p":{"12":1,"34":3,"35":2,"36":1,"38":2,"42":1}}}},"haut":{"t":5,"w":{"haut":{"t":5,"p":{"24":2,"30":2,"46":1}}}},"hauteur":{"t":6,"w":{"hauteur":{"t":6,"p":{"6":1,"7":1,"10":4}}}},"header":{"t":1,"w":{"header":{"t":1,"p":{"47":1}}}},"heat":{"t":1,"w":{"heat":{"t":1,"p":{"36":1}}}},"height":{"t":3,"w":{"height":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"helvetica":{"t":1,"w":{"helvetica":{"t":1,"p":{"42":1}}}},"henri":{"t":1,"w":{"henri":{"t":1,"p":{"25":1}}}},"hifi":{"t":3,"w":{"hifi":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"high":{"t":8,"w":{"high":{"t":8,"p":{"12":2,"34":2,"36":4}}}},"his":{"t":16,"w":{"his":{"t":16,"p":{"34":5,"35":5,"38":5,"42":1}}}},"honeycomb":{"t":9,"w":{"honeycomb":{"t":9,"p":{"12":2,"34":2,"36":2,"47":1,"48":1,"49":1}}}},"hong":{"t":12,"w":{"hong":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"horizontale":{"t":5,"w":{"horizontale":{"t":5,"p":{"3":1,"5":1,"6":1,"10":1,"42":1}}}},"horizontalement":{"t":4,"w":{"horizontalement":{"t":4,"p":{"6":1,"10":1,"24":1,"30":1}}}},"housing":{"t":1,"w":{"housing":{"t":1,"p":{"36":1}}}},"hybrid":{"t":7,"w":{"hybrid":{"t":7,"p":{"12":2,"34":2,"36":3}}}},"illya":{"t":9,"w":{"illya":{"t":9,"p":{"18":1,"19":1,"20":1,"34":2,"35":2,"38":2}}}},"ils":{"t":1,"w":{"ils":{"t":1,"p":{"42":1}}}},"images":{"t":3,"w":{"images":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"impact":{"t":8,"w":{"impact":{"t":8,"p":{"12":1,"34":1,"36":3,"47":1,"48":1,"49":1}}}},"implementation":{"t":3,"w":{"impl\u00e9mentation":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"imprime":{"t":1,"w":{"imprim\u00e9":{"t":1,"p":{"18":1}}}},"inclinaison":{"t":2,"w":{"inclinaison":{"t":2,"p":{"40":2}}}},"incline":{"t":1,"w":{"inclin\u00e9":{"t":1,"p":{"42":1}}}},"independent":{"t":3,"w":{"independent":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"indications":{"t":1,"w":{"indications":{"t":1,"p":{"20":1}}}},"indiquer":{"t":1,"w":{"indiquer":{"t":1,"p":{"42":1}}}},"indiques":{"t":1,"w":{"indiqu\u00e9s":{"t":1,"p":{"40":1}}}},"industrialization":{"t":3,"w":{"industrialization":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"information":{"t":9,"w":{"information":{"t":9,"p":{"12":1,"34":2,"35":1,"36":3,"38":1,"42":1}}}},"informations":{"t":1,"w":{"informations":{"t":1,"p":{"18":1}}}},"innovative":{"t":3,"w":{"innovative":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"inscrivent":{"t":1,"w":{"inscrivent":{"t":1,"p":{"40":1}}}},"insigne":{"t":11,"w":{"insigne":{"t":11,"p":{"3":2,"6":2,"7":2,"20":2,"24":1,"26":2}}}},"inspire":{"t":1,"w":{"inspire":{"t":1,"p":{"46":1}}}},"instrument":{"t":3,"w":{"instrument":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"integer":{"t":1,"w":{"integer":{"t":1,"p":{"25":1}}}},"integrated":{"t":6,"w":{"integrated":{"t":6,"p":{"12":1,"34":2,"35":1,"36":1,"38":1}}}},"integration":{"t":5,"w":{"int\u00e9gration":{"t":4,"p":{"3":1,"33":1,"40":1,"41":1}},"integration":{"t":1,"p":{"36":1}}}},"interactive":{"t":1,"w":{"interactive":{"t":1,"p":{"36":1}}}},"interdum":{"t":1,"w":{"interdum":{"t":1,"p":{"25":1}}}},"interieur":{"t":3,"w":{"int\u00e9rieur":{"t":3,"p":{"6":1,"7":1,"10":1}}}},"interieures":{"t":1,"w":{"int\u00e9rieures":{"t":1,"p":{"47":1}}}},"interior":{"t":4,"w":{"interior":{"t":4,"p":{"36":1,"47":1,"48":1,"49":1}}}},"international":{"t":3,"w":{"international":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"interne":{"t":3,"w":{"interne":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"internes":{"t":1,"w":{"internes":{"t":1,"p":{"12":1}}}},"internet":{"t":2,"w":{"internet":{"t":2,"p":{"12":1,"42":1}}}},"intracommunautaire":{"t":3,"w":{"intracommunautaire":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"investment":{"t":1,"w":{"investment":{"t":1,"p":{"36":1}}}},"ipsum":{"t":4,"w":{"ipsum":{"t":4,"p":{"25":4}}}},"isabelle":{"t":3,"w":{"isabelle":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"issus":{"t":1,"w":{"issus":{"t":1,"p":{"42":1}}}},"italic":{"t":2,"w":{"italic":{"t":2,"p":{"13":1,"38":1}}}},"its":{"t":11,"w":{"its":{"t":11,"p":{"12":1,"34":1,"36":3,"46":1,"47":1,"48":2,"49":2}}}},"jaune":{"t":7,"w":{"jaune":{"t":7,"p":{"8":5,"9":2}}}},"jean":{"t":1,"w":{"jean":{"t":1,"p":{"25":1}}}},"joined":{"t":6,"w":{"joined":{"t":6,"p":{"34":2,"35":2,"38":2}}}},"joint":{"t":2,"w":{"joint":{"t":2,"p":{"36":2}}}},"journey":{"t":4,"w":{"journey":{"t":4,"p":{"36":1,"47":1,"48":1,"49":1}}}},"kong":{"t":12,"w":{"kong":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"kowloon":{"t":12,"w":{"kowloon":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"laboratory":{"t":3,"w":{"laboratory":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"lacinia":{"t":1,"w":{"lacinia":{"t":1,"p":{"25":1}}}},"lane":{"t":2,"w":{"lane":{"t":2,"p":{"18":1,"19":1}}}},"laoreet":{"t":1,"w":{"laoreet":{"t":1,"p":{"25":1}}}},"largeur":{"t":3,"w":{"largeur":{"t":3,"p":{"6":1,"7":1,"10":1}}}},"leader":{"t":2,"w":{"leader":{"t":2,"p":{"18":1,"19":1}}}},"leading":{"t":4,"w":{"leading":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"length":{"t":3,"w":{"length":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"les":{"t":40,"w":{"les":{"t":40,"p":{"6":2,"7":2,"12":6,"18":2,"19":1,"20":2,"24":2,"26":1,"30":3,"31":2,"34":4,"40":4,"41":2,"42":3,"47":4}}}},"less":{"t":19,"w":{"less":{"t":19,"p":{"12":2,"34":2,"36":6,"47":3,"48":3,"49":3}}}},"lettres":{"t":2,"w":{"lettres":{"t":2,"p":{"19":1,"20":1}}}},"levidac":{"t":57,"w":{"levidac":{"t":57,"p":{"10":2,"12":4,"18":6,"19":4,"20":4,"24":1,"25":1,"26":1,"30":1,"31":1,"34":7,"35":4,"36":10,"38":4,"42":2,"46":1,"47":1,"48":1,"49":1,"52":1}}}},"libero":{"t":2,"w":{"libero":{"t":2,"p":{"25":2}}}},"libre":{"t":2,"w":{"libre":{"t":2,"p":{"6":1,"7":1}}}},"light":{"t":9,"w":{"light":{"t":9,"p":{"12":1,"13":2,"34":1,"36":2,"46":1,"48":1,"49":1}}}},"lighter":{"t":4,"w":{"lighter":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"ligne":{"t":1,"w":{"ligne":{"t":1,"p":{"42":1}}}},"ligula":{"t":1,"w":{"ligula":{"t":1,"p":{"25":1}}}},"like":{"t":3,"w":{"like":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"lisibilite":{"t":2,"w":{"lisibilit\u00e9":{"t":2,"p":{"6":1,"7":1}}}},"liste":{"t":1,"w":{"liste":{"t":1,"p":{"47":1}}}},"logo":{"t":15,"w":{"logo":{"t":15,"p":{"10":8,"18":1,"24":2,"30":2,"42":1,"47":1}}}},"logotype":{"t":14,"w":{"logotype":{"t":14,"p":{"3":2,"5":1,"6":3,"7":3,"8":1,"9":1,"10":1,"42":1,"51":1}}}},"lorem":{"t":2,"w":{"lorem":{"t":2,"p":{"25":2}}}},"lorsqu":{"t":1,"w":{"lorsqu":{"t":1,"p":{"47":1}}}},"low":{"t":3,"w":{"low":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"lower":{"t":1,"w":{"lower":{"t":1,"p":{"36":1}}}},"lux":{"t":1,"w":{"lux":{"t":1,"p":{"36":1}}}},"made":{"t":3,"w":{"made":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"maecenas":{"t":1,"w":{"maecenas":{"t":1,"p":{"25":1}}}},"magenta":{"t":7,"w":{"magenta":{"t":7,"p":{"8":5,"9":2}}}},"magna":{"t":1,"w":{"magna":{"t":1,"p":{"25":1}}}},"maintenance":{"t":6,"w":{"maintenance":{"t":6,"p":{"12":1,"34":1,"36":4}}}},"mais":{"t":1,"w":{"mais":{"t":1,"p":{"40":1}}}},"major":{"t":1,"w":{"major":{"t":1,"p":{"36":1}}}},"management":{"t":5,"w":{"management":{"t":5,"p":{"34":1,"35":1,"36":2,"38":1}}}},"manufacturer":{"t":7,"w":{"manufacturer":{"t":7,"p":{"34":2,"35":2,"36":1,"38":2}}}},"manufactures":{"t":1,"w":{"manufactures":{"t":1,"p":{"36":1}}}},"manufacturing":{"t":3,"w":{"manufacturing":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"marge":{"t":1,"w":{"marge":{"t":1,"p":{"34":1}}}},"maritime":{"t":3,"w":{"maritime":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"marketing":{"t":2,"w":{"marketing":{"t":2,"p":{"18":1,"20":1}}}},"masked":{"t":1,"w":{"masked":{"t":1,"p":{"36":1}}}},"massa":{"t":1,"w":{"massa":{"t":1,"p":{"25":1}}}},"materials":{"t":15,"w":{"materials":{"t":15,"p":{"12":2,"34":4,"35":2,"36":2,"38":2,"47":1,"48":1,"49":1}}}},"matra":{"t":3,"w":{"matra":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"mattis":{"t":1,"w":{"mattis":{"t":1,"p":{"25":1}}}},"mauris":{"t":2,"w":{"mauris":{"t":2,"p":{"25":2}}}},"medium":{"t":3,"w":{"medium":{"t":3,"p":{"13":1,"38":1,"49":1}}}},"memes":{"t":1,"w":{"m\u00eames":{"t":1,"p":{"34":1}}}},"metus":{"t":2,"w":{"metus":{"t":2,"p":{"25":2}}}},"micro":{"t":7,"w":{"micro":{"t":7,"p":{"12":1,"34":1,"36":5}}}},"mini":{"t":3,"w":{"mini":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"minimale":{"t":2,"w":{"minimale":{"t":2,"p":{"6":1,"7":1}}}},"minimum":{"t":2,"w":{"minimum":{"t":2,"p":{"6":1,"7":1}}}},"mise":{"t":3,"w":{"mise":{"t":3,"p":{"34":1,"41":1,"42":1}}}},"mobile":{"t":10,"w":{"mobile":{"t":10,"p":{"18":4,"19":3,"20":3}}}},"model":{"t":8,"w":{"model":{"t":8,"p":{"12":1,"18":4,"34":1,"36":2}}}},"modelisation":{"t":3,"w":{"mod\u00e9lisation":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"modularity":{"t":1,"w":{"modularity":{"t":1,"p":{"36":1}}}},"mollis":{"t":1,"w":{"mollis":{"t":1,"p":{"25":1}}}},"monitoring":{"t":1,"w":{"monitoring":{"t":1,"p":{"36":1}}}},"monochrome":{"t":1,"w":{"monochrome":{"t":1,"p":{"9":1}}}},"more":{"t":9,"w":{"more":{"t":9,"p":{"12":1,"34":2,"35":1,"36":3,"38":1,"42":1}}}},"motor":{"t":3,"w":{"motor":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"multimodal":{"t":1,"w":{"multimodal":{"t":1,"p":{"36":1}}}},"multimodality":{"t":1,"w":{"multimodality":{"t":1,"p":{"36":1}}}},"multiples":{"t":3,"w":{"multiples":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"naf":{"t":3,"w":{"naf":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"nec":{"t":2,"w":{"nec":{"t":2,"p":{"25":2}}}},"needs":{"t":3,"w":{"needs":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"negatif":{"t":1,"w":{"n\u00e9gatif":{"t":1,"p":{"18":1}}}},"neue":{"t":1,"w":{"neue":{"t":1,"p":{"42":1}}}},"new":{"t":1,"w":{"new":{"t":1,"p":{"36":1}}}},"next":{"t":6,"w":{"next":{"t":6,"p":{"12":2,"34":2,"36":2}}}},"nibh":{"t":1,"w":{"nibh":{"t":1,"p":{"25":1}}}},"nisi":{"t":1,"w":{"nisi":{"t":1,"p":{"25":1}}}},"niveaux":{"t":1,"w":{"niveaux":{"t":1,"p":{"47":1}}}},"noir":{"t":11,"w":{"noir":{"t":11,"p":{"8":9,"9":2}}}},"noise":{"t":8,"w":{"noise":{"t":8,"p":{"12":1,"34":1,"36":3,"47":1,"48":1,"49":1}}}},"nom":{"t":2,"w":{"nom":{"t":2,"p":{"19":1,"20":1}}}},"non":{"t":5,"w":{"non":{"t":5,"p":{"25":5}}}},"normal":{"t":6,"w":{"normal":{"t":6,"p":{"12":2,"30":2,"31":2}}}},"notamment":{"t":1,"w":{"notamment":{"t":1,"p":{"12":1}}}},"nox":{"t":4,"w":{"nox":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"number":{"t":3,"w":{"number":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"nunc":{"t":3,"w":{"nunc":{"t":3,"p":{"25":3}}}},"objet":{"t":6,"w":{"objet":{"t":6,"p":{"12":2,"30":2,"31":2}}}},"octobre":{"t":3,"w":{"octobre":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"odio":{"t":1,"w":{"odio":{"t":1,"p":{"25":1}}}},"office":{"t":2,"w":{"office":{"t":2,"p":{"18":1,"19":1}}}},"operate":{"t":4,"w":{"operate":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"operating":{"t":4,"w":{"operating":{"t":4,"p":{"36":1,"47":1,"48":1,"49":1}}}},"operation":{"t":1,"w":{"operation":{"t":1,"p":{"36":1}}}},"output":{"t":1,"w":{"output":{"t":1,"p":{"36":1}}}},"pack":{"t":1,"w":{"pack":{"t":1,"p":{"36":1}}}},"page":{"t":11,"w":{"page":{"t":11,"p":{"24":1,"30":1,"34":4,"38":1,"42":2,"46":1,"47":1}}}},"pages":{"t":1,"w":{"pages":{"t":1,"p":{"42":1}}}},"panel":{"t":6,"w":{"panel":{"t":6,"p":{"12":1,"34":1,"36":1,"47":1,"48":1,"49":1}}}},"pantone":{"t":2,"w":{"pantone":{"t":2,"p":{"35":2}}}},"papier":{"t":8,"w":{"papier":{"t":8,"p":{"3":2,"23":1,"24":2,"25":1,"26":1,"51":1}}}},"par":{"t":7,"w":{"par":{"t":7,"p":{"6":1,"7":1,"10":4,"18":1}}}},"paragraphe":{"t":3,"w":{"paragraphe":{"t":3,"p":{"38":1,"47":1,"49":1}}}},"paragraphes":{"t":1,"w":{"paragraphes":{"t":1,"p":{"47":1}}}},"paris":{"t":4,"w":{"paris":{"t":4,"p":{"12":1,"25":1,"30":1,"31":1}}}},"part":{"t":2,"w":{"part":{"t":2,"p":{"20":1,"26":1}}}},"particular":{"t":3,"w":{"particular":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"partie":{"t":2,"w":{"partie":{"t":2,"p":{"10":2}}}},"partir":{"t":2,"w":{"partir":{"t":2,"p":{"6":1,"7":1}}}},"partnership":{"t":1,"w":{"partnership":{"t":1,"p":{"36":1}}}},"parts":{"t":3,"w":{"parts":{"t":3,"p":{"47":1,"48":1,"49":1}}}},"passenger":{"t":2,"w":{"passenger":{"t":2,"p":{"36":2}}}},"passengers":{"t":7,"w":{"passengers":{"t":7,"p":{"12":2,"34":2,"36":3}}}},"pastille":{"t":1,"w":{"pastille":{"t":1,"p":{"41":1}}}},"pellentesque":{"t":1,"w":{"pellentesque":{"t":1,"p":{"25":1}}}},"per":{"t":8,"w":{"per":{"t":8,"p":{"12":2,"34":2,"36":4}}}},"performance":{"t":8,"w":{"performance":{"t":8,"p":{"12":1,"34":1,"36":3,"47":1,"48":1,"49":1}}}},"petite":{"t":1,"w":{"petite":{"t":1,"p":{"10":1}}}},"peut":{"t":5,"w":{"peut":{"t":5,"p":{"6":1,"7":1,"10":1,"20":1,"26":1}}}},"pharetra":{"t":1,"w":{"pharetra":{"t":1,"p":{"25":1}}}},"phone":{"t":7,"w":{"phone":{"t":7,"p":{"12":1,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"photovoltaic":{"t":1,"w":{"photovoltaic":{"t":1,"p":{"36":1}}}},"pied":{"t":7,"w":{"pied":{"t":7,"p":{"34":3,"38":1,"42":2,"46":1}}}},"pioneer":{"t":1,"w":{"pioneer":{"t":1,"p":{"36":1}}}},"place":{"t":4,"w":{"place":{"t":3,"p":{"10":2,"41":1}},"plac\u00e9":{"t":1,"p":{"42":1}}}},"placee":{"t":1,"w":{"plac\u00e9e":{"t":1,"p":{"10":1}}}},"plan":{"t":1,"w":{"plan":{"t":1,"p":{"41":1}}}},"plans":{"t":3,"w":{"plans":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"play":{"t":1,"w":{"play":{"t":1,"p":{"36":1}}}},"plug":{"t":1,"w":{"plug":{"t":1,"p":{"36":1}}}},"plus":{"t":1,"w":{"plus":{"t":1,"p":{"10":1}}}},"plusieurs":{"t":1,"w":{"plusieurs":{"t":1,"p":{"34":1}}}},"police":{"t":13,"w":{"police":{"t":13,"p":{"19":2,"20":2,"25":2,"26":2,"31":2,"38":1,"42":1,"49":1}}}},"porttitor":{"t":1,"w":{"porttitor":{"t":1,"p":{"25":1}}}},"position":{"t":2,"w":{"position":{"t":2,"p":{"6":1,"7":1}}}},"positive":{"t":6,"w":{"positive":{"t":6,"p":{"12":1,"24":1,"25":1,"26":1,"30":1,"31":1}}}},"possibilites":{"t":1,"w":{"possibilit\u00e9s":{"t":1,"p":{"20":1}}}},"possible":{"t":4,"w":{"possible":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"posuere":{"t":1,"w":{"posuere":{"t":1,"p":{"25":1}}}},"pour":{"t":16,"w":{"pour":{"t":16,"p":{"6":1,"7":1,"12":4,"18":1,"19":1,"20":1,"25":1,"30":1,"31":1,"34":1,"41":2,"42":1}}}},"power":{"t":4,"w":{"power":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"powerpoint":{"t":9,"w":{"powerpoint":{"t":9,"p":{"3":2,"45":1,"46":2,"47":1,"48":1,"49":1,"51":1}}}},"powertrain":{"t":1,"w":{"powertrain":{"t":1,"p":{"36":1}}}},"presence":{"t":1,"w":{"pr\u00e9sence":{"t":1,"p":{"42":1}}}},"present":{"t":1,"w":{"pr\u00e9sent":{"t":1,"p":{"42":1}}}},"presentation":{"t":5,"w":{"pr\u00e9sentation":{"t":5,"p":{"3":1,"33":1,"34":1,"35":1,"40":1}}}},"presente":{"t":1,"w":{"pr\u00e9sente":{"t":1,"p":{"42":1}}}},"presentes":{"t":1,"w":{"pr\u00e9sent\u00e9s":{"t":1,"p":{"41":1}}}},"presse":{"t":16,"w":{"presse":{"t":16,"p":{"3":2,"33":1,"34":3,"35":1,"36":1,"38":1,"40":1,"41":1,"42":3,"46":1,"51":1}}}},"price":{"t":3,"w":{"price":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"principale":{"t":7,"w":{"principale":{"t":7,"p":{"12":1,"19":1,"20":1,"25":1,"26":1,"31":1,"46":1}}}},"problems":{"t":1,"w":{"problems":{"t":1,"p":{"36":1}}}},"process":{"t":3,"w":{"process":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"product":{"t":3,"w":{"product":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"production":{"t":7,"w":{"production":{"t":7,"p":{"34":1,"35":1,"36":1,"38":1,"47":1,"48":1,"49":1}}}},"produit":{"t":1,"w":{"produit":{"t":1,"p":{"41":1}}}},"produits":{"t":2,"w":{"produits":{"t":2,"p":{"34":1,"41":1}}}},"programme":{"t":3,"w":{"programme":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"programmes":{"t":3,"w":{"programmes":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"project":{"t":3,"w":{"project":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"projet":{"t":18,"w":{"projet":{"t":18,"p":{"12":6,"30":6,"31":6}}}},"proprietes":{"t":1,"w":{"propri\u00e9t\u00e9s":{"t":1,"p":{"40":1}}}},"protection":{"t":5,"w":{"protection":{"t":5,"p":{"6":2,"7":2,"10":1}}}},"provides":{"t":1,"w":{"provides":{"t":1,"p":{"36":1}}}},"provost":{"t":2,"w":{"provost":{"t":2,"p":{"18":1,"20":1}}}},"provost@levidac":{"t":2,"w":{"provost@levidac":{"t":2,"p":{"18":1,"20":1}}}},"public":{"t":4,"w":{"public":{"t":4,"p":{"36":1,"46":1,"48":1,"49":1}}}},"puce":{"t":2,"w":{"puce":{"t":2,"p":{"47":2}}}},"pulvinar":{"t":1,"w":{"pulvinar":{"t":1,"p":{"25":1}}}},"purus":{"t":1,"w":{"purus":{"t":1,"p":{"25":1}}}},"qrcode":{"t":2,"w":{"qrcode":{"t":2,"p":{"18":2}}}},"quadrilatere":{"t":2,"w":{"quadrilat\u00e8re":{"t":2,"p":{"40":2}}}},"quality":{"t":3,"w":{"quality":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"quam":{"t":2,"w":{"quam":{"t":2,"p":{"25":2}}}},"que":{"t":1,"w":{"que":{"t":1,"p":{"10":1}}}},"qui":{"t":5,"w":{"qui":{"t":5,"p":{"6":1,"7":1,"12":1,"30":1,"31":1}}}},"quis":{"t":1,"w":{"quis":{"t":1,"p":{"25":1}}}},"quisque":{"t":1,"w":{"quisque":{"t":1,"p":{"25":1}}}},"rail":{"t":1,"w":{"rail":{"t":1,"p":{"36":1}}}},"range":{"t":16,"w":{"range":{"t":16,"p":{"12":3,"34":3,"36":7,"47":1,"48":1,"49":1}}}},"rcs":{"t":3,"w":{"rcs":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"real":{"t":2,"w":{"real":{"t":2,"p":{"36":2}}}},"realisation":{"t":9,"w":{"r\u00e9alisation":{"t":9,"p":{"12":3,"30":3,"31":3}}}},"recadre":{"t":1,"w":{"recadr\u00e9":{"t":1,"p":{"26":1}}}},"recadrer":{"t":1,"w":{"recadrer":{"t":1,"p":{"20":1}}}},"reelles":{"t":3,"w":{"r\u00e9elles":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"regles":{"t":1,"w":{"r\u00e8gles":{"t":1,"p":{"34":1}}}},"regular":{"t":25,"w":{"regular":{"t":25,"p":{"13":4,"19":2,"25":4,"26":2,"31":5,"38":5,"49":3}}}},"renault":{"t":3,"w":{"renault":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"renvoyant":{"t":1,"w":{"renvoyant":{"t":1,"p":{"42":1}}}},"represente":{"t":1,"w":{"repr\u00e9sente":{"t":1,"p":{"10":1}}}},"reproduit":{"t":2,"w":{"reproduit":{"t":2,"p":{"6":1,"7":1}}}},"research":{"t":3,"w":{"research":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"respectant":{"t":2,"w":{"respectant":{"t":2,"p":{"10":1,"40":1}}}},"respecter":{"t":1,"w":{"respecter":{"t":1,"p":{"40":1}}}},"responsibility":{"t":3,"w":{"responsibility":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"responsible":{"t":7,"w":{"responsible":{"t":7,"p":{"34":2,"35":2,"36":1,"38":2}}}},"rester":{"t":2,"w":{"rester":{"t":2,"p":{"6":1,"7":1}}}},"retouve":{"t":1,"w":{"retouve":{"t":1,"p":{"12":1}}}},"revolutionary":{"t":5,"w":{"revolutionary":{"t":5,"p":{"12":1,"34":1,"36":3}}}},"revolutionizes":{"t":4,"w":{"revolutionizes":{"t":4,"p":{"36":1,"46":1,"48":1,"49":1}}}},"rhoncus":{"t":1,"w":{"rhoncus":{"t":1,"p":{"25":1}}}},"rieter":{"t":3,"w":{"rieter":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"road":{"t":12,"w":{"road":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"rouge":{"t":5,"w":{"rouge":{"t":5,"p":{"8":5}}}},"russia":{"t":3,"w":{"russia":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"rvb":{"t":1,"w":{"rvb":{"t":1,"p":{"8":1}}}},"sagittis":{"t":1,"w":{"sagittis":{"t":1,"p":{"25":1}}}},"same":{"t":3,"w":{"same":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"sandwich":{"t":3,"w":{"sandwich":{"t":3,"p":{"47":1,"48":1,"49":1}}}},"sans":{"t":2,"w":{"sans":{"t":2,"p":{"6":1,"7":1}}}},"sapien":{"t":2,"w":{"sapien":{"t":2,"p":{"25":2}}}},"sarl":{"t":3,"w":{"sarl":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"saune":{"t":2,"w":{"saune":{"t":2,"p":{"18":1,"19":1}}}},"saune@levidac":{"t":2,"w":{"saune@levidac":{"t":2,"p":{"18":1,"19":1}}}},"scelerisque":{"t":1,"w":{"scelerisque":{"t":1,"p":{"25":1}}}},"screen":{"t":3,"w":{"screen":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"screens":{"t":3,"w":{"screens":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"seats":{"t":6,"w":{"seats":{"t":6,"p":{"12":2,"34":2,"36":2}}}},"sector":{"t":7,"w":{"sector":{"t":7,"p":{"34":2,"35":2,"38":2,"42":1}}}},"sectors":{"t":4,"w":{"sectors":{"t":4,"p":{"34":1,"35":1,"36":1,"38":1}}}},"sed":{"t":2,"w":{"sed":{"t":2,"p":{"25":2}}}},"self":{"t":14,"w":{"self":{"t":14,"p":{"12":1,"34":3,"35":2,"36":2,"38":2,"42":1,"47":1,"48":1,"49":1}}}},"sem":{"t":4,"w":{"sem":{"t":4,"p":{"25":4}}}},"separee":{"t":1,"w":{"s\u00e9par\u00e9e":{"t":1,"p":{"10":1}}}},"serviront":{"t":3,"w":{"serviront":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"shanghai":{"t":4,"w":{"shanghai":{"t":4,"p":{"18":2,"19":2}}}},"shaoxing":{"t":2,"w":{"shaoxing":{"t":2,"p":{"18":1,"19":1}}}},"signature":{"t":3,"w":{"signature":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"simulation":{"t":3,"w":{"simulation":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"sit":{"t":4,"w":{"sit":{"t":4,"p":{"25":4}}}},"site":{"t":2,"w":{"site":{"t":2,"p":{"12":1,"42":1}}}},"situe":{"t":1,"w":{"situe":{"t":1,"p":{"18":1}}}},"slide":{"t":2,"w":{"slide":{"t":2,"p":{"46":2}}}},"slides":{"t":2,"w":{"slides":{"t":2,"p":{"47":2}}}},"smart":{"t":5,"w":{"smart":{"t":5,"p":{"34":1,"35":1,"36":2,"38":1}}}},"societe":{"t":6,"w":{"soci\u00e9t\u00e9":{"t":6,"p":{"18":1,"24":2,"30":2,"34":1}}}},"sodales":{"t":3,"w":{"sodales":{"t":3,"p":{"25":3}}}},"solutions":{"t":1,"w":{"solutions":{"t":1,"p":{"36":1}}}},"sommaire":{"t":1,"w":{"sommaire":{"t":1,"p":{"3":1}}}},"son":{"t":1,"w":{"son":{"t":1,"p":{"10":1}}}},"sont":{"t":6,"w":{"sont":{"t":6,"p":{"6":1,"7":1,"34":1,"40":1,"41":1,"42":1}}}},"soumis":{"t":1,"w":{"soumis":{"t":1,"p":{"34":1}}}},"sourcing":{"t":2,"w":{"sourcing":{"t":2,"p":{"18":1,"19":1}}}},"sous":{"t":7,"w":{"sous":{"t":7,"p":{"10":1,"12":1,"18":1,"30":1,"31":1,"38":1,"49":1}}}},"specialized":{"t":6,"w":{"specialized":{"t":6,"p":{"34":2,"35":2,"38":2}}}},"specifications":{"t":3,"w":{"specifications":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"standard":{"t":3,"w":{"standard":{"t":3,"p":{"18":3}}}},"standards":{"t":4,"w":{"standards":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"storage":{"t":3,"w":{"storage":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"study":{"t":3,"w":{"study":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"style":{"t":18,"w":{"style":{"t":18,"p":{"12":6,"30":4,"31":4,"34":2,"36":2}}}},"styling":{"t":1,"w":{"styling":{"t":1,"p":{"36":1}}}},"suivant":{"t":1,"w":{"suivant":{"t":1,"p":{"20":1}}}},"suivante":{"t":2,"w":{"suivante":{"t":2,"p":{"38":1,"49":1}}}},"suivantes":{"t":1,"w":{"suivantes":{"t":1,"p":{"47":1}}}},"suivants":{"t":5,"w":{"suivants":{"t":5,"p":{"24":1,"30":1,"42":2,"47":1}}}},"superieur":{"t":2,"w":{"sup\u00e9rieur":{"t":2,"p":{"24":1,"30":1}}}},"supports":{"t":1,"w":{"supports":{"t":1,"p":{"12":1}}}},"sur":{"t":12,"w":{"sur":{"t":12,"p":{"10":2,"12":2,"18":1,"24":3,"26":1,"30":2,"42":1}}}},"surface":{"t":2,"w":{"surface":{"t":2,"p":{"6":1,"7":1}}}},"suscipit":{"t":3,"w":{"suscipit":{"t":3,"p":{"25":3}}}},"symbolic":{"t":3,"w":{"symbolic":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"synthese":{"t":3,"w":{"synth\u00e8se":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"system":{"t":6,"w":{"system":{"t":6,"p":{"12":1,"34":1,"36":4}}}},"systematiquement":{"t":4,"w":{"syst\u00e9matiquement":{"t":4,"p":{"10":1,"19":1,"20":1,"40":1}}}},"systems":{"t":5,"w":{"systems":{"t":5,"p":{"34":1,"35":1,"36":2,"38":1}}}},"tableau":{"t":1,"w":{"tableau":{"t":1,"p":{"30":1}}}},"taille":{"t":18,"w":{"taille":{"t":18,"p":{"6":2,"7":2,"10":2,"38":6,"42":2,"49":4}}}},"tailles":{"t":4,"w":{"tailles":{"t":4,"p":{"6":1,"7":1,"38":1,"49":1}}}},"tarifs":{"t":1,"w":{"tarifs":{"t":1,"p":{"30":1}}}},"taught":{"t":7,"w":{"taught":{"t":7,"p":{"34":2,"35":2,"38":2,"42":1}}}},"taux":{"t":3,"w":{"taux":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"technical":{"t":3,"w":{"technical":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"technique":{"t":2,"w":{"technique":{"t":2,"p":{"3":1,"33":1}}}},"techniques":{"t":4,"w":{"techniques":{"t":4,"p":{"34":1,"36":1,"41":2}}}},"techno":{"t":3,"w":{"techno":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"technologies":{"t":3,"w":{"technologies":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"telechargements":{"t":2,"w":{"t\u00e9l\u00e9chargements":{"t":2,"p":{"3":1,"51":1}}}},"telecharger":{"t":6,"w":{"t\u00e9l\u00e9charger":{"t":6,"p":{"51":6}}}},"tempus":{"t":1,"w":{"tempus":{"t":1,"p":{"25":1}}}},"tete":{"t":9,"w":{"t\u00eate":{"t":9,"p":{"3":2,"18":1,"23":1,"24":2,"25":1,"26":1,"51":1}}}},"texte":{"t":19,"w":{"texte":{"t":19,"p":{"6":3,"7":3,"10":3,"12":1,"25":1,"26":1,"31":1,"34":2,"38":1,"42":2,"49":1}}}},"textes":{"t":1,"w":{"textes":{"t":1,"p":{"12":1}}}},"textuelle":{"t":2,"w":{"textuelle":{"t":2,"p":{"10":2}}}},"than":{"t":24,"w":{"than":{"t":24,"p":{"12":3,"34":3,"36":9,"47":3,"48":3,"49":3}}}},"thanks":{"t":4,"w":{"thanks":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"that":{"t":3,"w":{"that":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"the":{"t":94,"w":{"the":{"t":94,"p":{"12":8,"18":2,"19":1,"20":2,"24":2,"25":2,"26":2,"30":2,"31":2,"34":21,"35":15,"36":15,"38":15,"42":1,"47":1,"48":1,"49":1,"52":1}}}},"thermal":{"t":3,"w":{"thermal":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"this":{"t":4,"w":{"this":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"time":{"t":6,"w":{"time":{"t":6,"p":{"34":1,"35":1,"36":3,"38":1}}}},"times":{"t":1,"w":{"times":{"t":1,"p":{"36":1}}}},"tincidunt":{"t":1,"w":{"tincidunt":{"t":1,"p":{"25":1}}}},"titre":{"t":23,"w":{"titre":{"t":23,"p":{"12":5,"30":5,"31":5,"34":2,"38":2,"46":1,"47":1,"49":2}}}},"titres":{"t":1,"w":{"titres":{"t":1,"p":{"47":1}}}},"today":{"t":3,"w":{"today":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"tons":{"t":4,"w":{"tons":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"total":{"t":9,"w":{"total":{"t":9,"p":{"12":3,"30":2,"31":2,"34":1,"36":1}}}},"touch":{"t":9,"w":{"touch":{"t":9,"p":{"12":3,"34":3,"36":3}}}},"toujours":{"t":2,"w":{"toujours":{"t":2,"p":{"6":1,"7":1}}}},"tous":{"t":3,"w":{"tous":{"t":3,"p":{"12":2,"34":1}}}},"tout":{"t":1,"w":{"tout":{"t":1,"p":{"10":1}}}},"toutes":{"t":3,"w":{"toutes":{"t":3,"p":{"6":1,"7":1,"42":1}}}},"track":{"t":1,"w":{"track":{"t":1,"p":{"36":1}}}},"traduction":{"t":1,"w":{"traduction":{"t":1,"p":{"18":1}}}},"traffic":{"t":2,"w":{"traffic":{"t":2,"p":{"36":2}}}},"tramway":{"t":1,"w":{"tramway":{"t":1,"p":{"36":1}}}},"transport":{"t":8,"w":{"transport":{"t":8,"p":{"34":1,"35":1,"36":2,"38":1,"46":1,"48":1,"49":1}}}},"transportation":{"t":1,"w":{"transportation":{"t":1,"p":{"36":1}}}},"treves":{"t":3,"w":{"tr\u00e8ves":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"triangulaire":{"t":1,"w":{"triangulaire":{"t":1,"p":{"47":1}}}},"trois":{"t":2,"w":{"trois":{"t":2,"p":{"24":1,"30":1}}}},"trucks":{"t":3,"w":{"trucks":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"ttc":{"t":3,"w":{"ttc":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"turbine":{"t":6,"w":{"turbine":{"t":6,"p":{"12":1,"34":1,"36":4}}}},"turbines":{"t":2,"w":{"turbines":{"t":2,"p":{"36":2}}}},"turbo":{"t":16,"w":{"turbo":{"t":16,"p":{"12":3,"34":3,"36":7,"47":1,"48":1,"49":1}}}},"turnkey":{"t":3,"w":{"turnkey":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"turpis":{"t":1,"w":{"turpis":{"t":1,"p":{"25":1}}}},"tva":{"t":9,"w":{"tva":{"t":9,"p":{"12":3,"30":3,"31":3}}}},"types":{"t":4,"w":{"types":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"typographie":{"t":21,"w":{"typographie":{"t":21,"p":{"3":6,"5":1,"12":3,"13":1,"17":1,"19":1,"20":1,"23":1,"25":1,"26":1,"31":1,"33":1,"38":1,"49":1}}}},"typographies":{"t":2,"w":{"typographies":{"t":2,"p":{"3":1,"51":1}}}},"ubuntu":{"t":3,"w":{"ubuntu":{"t":3,"p":{"12":2,"13":1}}}},"ultra":{"t":7,"w":{"ultra":{"t":7,"p":{"12":1,"34":1,"36":2,"46":1,"48":1,"49":1}}}},"ultrices":{"t":1,"w":{"ultrices":{"t":1,"p":{"25":1}}}},"ultricies":{"t":1,"w":{"ultricies":{"t":1,"p":{"25":1}}}},"under":{"t":1,"w":{"under":{"t":1,"p":{"36":1}}}},"une":{"t":9,"w":{"une":{"t":9,"p":{"10":2,"18":1,"41":2,"42":2,"47":2}}}},"unequalled":{"t":1,"w":{"unequalled":{"t":1,"p":{"36":1}}}},"unicode":{"t":4,"w":{"unicode":{"t":4,"p":{"12":1,"13":1,"19":1,"20":1}}}},"unrivalled":{"t":1,"w":{"unrivalled":{"t":1,"p":{"36":1}}}},"until":{"t":3,"w":{"until":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"urban":{"t":10,"w":{"urban":{"t":10,"p":{"36":4,"46":2,"48":2,"49":2}}}},"usd":{"t":8,"w":{"usd":{"t":8,"p":{"12":1,"34":1,"36":3,"47":1,"48":1,"49":1}}}},"use":{"t":6,"w":{"use":{"t":6,"p":{"12":2,"34":2,"36":2}}}},"using":{"t":3,"w":{"using":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"utilisation":{"t":5,"w":{"utilisation":{"t":5,"p":{"3":2,"10":1,"20":1,"26":1}}}},"utilise":{"t":3,"w":{"utilis\u00e9":{"t":3,"p":{"18":1,"20":1,"26":1}}}},"utilisee":{"t":8,"w":{"utilis\u00e9e":{"t":8,"p":{"12":4,"19":1,"20":1,"38":1,"49":1}}}},"utilises":{"t":1,"w":{"utilis\u00e9s":{"t":1,"p":{"42":1}}}},"utility":{"t":1,"w":{"utility":{"t":1,"p":{"36":1}}}},"valeur":{"t":1,"w":{"valeur":{"t":1,"p":{"41":1}}}},"variable":{"t":1,"w":{"variable":{"t":1,"p":{"10":1}}}},"variables":{"t":1,"w":{"variables":{"t":1,"p":{"40":1}}}},"variation":{"t":3,"w":{"variation":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"vaz":{"t":3,"w":{"vaz":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"vectoriel":{"t":3,"w":{"vectoriel":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"vehicle":{"t":7,"w":{"vehicle":{"t":7,"p":{"36":4,"46":1,"48":1,"49":1}}}},"vehicles":{"t":4,"w":{"vehicles":{"t":4,"p":{"34":1,"35":1,"36":1,"38":1}}}},"vel":{"t":1,"w":{"vel":{"t":1,"p":{"25":1}}}},"venture":{"t":2,"w":{"venture":{"t":2,"p":{"36":2}}}},"vers":{"t":1,"w":{"vers":{"t":1,"p":{"42":1}}}},"version":{"t":9,"w":{"version":{"t":9,"p":{"3":2,"5":2,"6":1,"7":1,"10":2,"42":1}}}},"versions":{"t":3,"w":{"versions":{"t":3,"p":{"3":1,"17":1,"18":1}}}},"verso":{"t":3,"w":{"verso":{"t":3,"p":{"18":3}}}},"vert":{"t":5,"w":{"vert":{"t":5,"p":{"8":5}}}},"verticale":{"t":1,"w":{"verticale":{"t":1,"p":{"10":1}}}},"verticalement":{"t":2,"w":{"verticalement":{"t":2,"p":{"7":1,"10":1}}}},"very":{"t":3,"w":{"very":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"via":{"t":1,"w":{"via":{"t":1,"p":{"36":1}}}},"viennent":{"t":1,"w":{"viennent":{"t":1,"p":{"42":1}}}},"visite":{"t":10,"w":{"visite":{"t":10,"p":{"3":2,"12":1,"17":1,"18":1,"19":1,"20":1,"24":1,"26":1,"51":1}}}},"visites":{"t":1,"w":{"visites":{"t":1,"p":{"18":1}}}},"visuel":{"t":5,"w":{"visuel":{"t":5,"p":{"20":1,"26":1,"34":2,"46":1}}}},"visuels":{"t":6,"w":{"visuels":{"t":6,"p":{"3":1,"33":1,"40":2,"41":1,"47":1}}}},"vitae":{"t":1,"w":{"vitae":{"t":1,"p":{"25":1}}}},"voici":{"t":1,"w":{"voici":{"t":1,"p":{"18":1}}}},"volutpat":{"t":1,"w":{"volutpat":{"t":1,"p":{"25":1}}}},"volvo":{"t":3,"w":{"volvo":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"vues":{"t":3,"w":{"vues":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"was":{"t":3,"w":{"was":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"weight":{"t":4,"w":{"weight":{"t":4,"p":{"12":1,"34":1,"36":2}}}},"west":{"t":12,"w":{"west":{"t":12,"p":{"12":1,"18":2,"19":1,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"wheel":{"t":3,"w":{"wheel":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"who":{"t":7,"w":{"who":{"t":7,"p":{"34":2,"35":2,"38":2,"42":1}}}},"width":{"t":3,"w":{"width":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"wife":{"t":3,"w":{"wife":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"wifi":{"t":3,"w":{"wifi":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"will":{"t":1,"w":{"will":{"t":1,"p":{"36":1}}}},"wind":{"t":1,"w":{"wind":{"t":1,"p":{"36":1}}}},"windows":{"t":3,"w":{"windows":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"with":{"t":50,"w":{"with":{"t":50,"p":{"12":10,"34":12,"35":2,"36":21,"38":2,"46":1,"48":1,"49":1}}}},"www":{"t":23,"w":{"www":{"t":23,"p":{"12":2,"18":3,"19":2,"20":2,"24":1,"25":1,"26":1,"30":1,"31":1,"34":2,"35":1,"36":3,"38":1,"42":1,"52":1}}}},"years":{"t":4,"w":{"years":{"t":4,"p":{"34":1,"35":1,"36":1,"38":1}}}},"yield":{"t":11,"w":{"yield":{"t":11,"p":{"12":3,"34":3,"36":5}}}},"zone":{"t":5,"w":{"zone":{"t":5,"p":{"6":2,"7":2,"10":1}}}},"100":{"t":20,"w":{"100":{"t":20,"p":{"8":2,"9":1,"12":1,"14":6,"19":1,"25":1,"31":1,"34":1,"36":4,"48":2}}}},"115":{"t":1,"w":{"115":{"t":1,"p":{"8":1}}}},"118":{"t":4,"w":{"118":{"t":4,"p":{"14":2,"36":1,"48":1}}}},"120":{"t":3,"w":{"120":{"t":3,"p":{"12":1,"34":1,"36":1}}}},"124":{"t":1,"w":{"124":{"t":1,"p":{"8":1}}}},"125":{"t":4,"w":{"125":{"t":4,"p":{"14":2,"36":1,"48":1}}}},"134":{"t":4,"w":{"134":{"t":4,"p":{"14":2,"36":1,"48":1}}}},"140":{"t":1,"w":{"140":{"t":1,"p":{"36":1}}}},"149":{"t":1,"w":{"149":{"t":1,"p":{"14":1}}}},"156":{"t":2,"w":{"156":{"t":2,"p":{"18":1,"19":1}}}},"169":{"t":1,"w":{"169":{"t":1,"p":{"14":1}}}},"182":{"t":4,"w":{"182":{"t":4,"p":{"14":2,"36":1,"48":1}}}},"185":{"t":1,"w":{"185":{"t":1,"p":{"8":1}}}},"186":{"t":1,"w":{"186":{"t":1,"p":{"14":1}}}},"187":{"t":1,"w":{"187":{"t":1,"p":{"8":1}}}},"197":{"t":1,"w":{"197":{"t":1,"p":{"8":1}}}},"200":{"t":14,"w":{"200":{"t":14,"p":{"12":3,"18":1,"19":1,"34":3,"36":6}}}},"201":{"t":4,"w":{"201":{"t":4,"p":{"14":2,"36":1,"48":1}}}},"202":{"t":14,"w":{"202":{"t":14,"p":{"12":2,"24":2,"25":2,"26":2,"30":2,"31":2,"52":2}}}},"203":{"t":1,"w":{"203":{"t":1,"p":{"14":1}}}},"221":{"t":1,"w":{"221":{"t":1,"p":{"14":1}}}},"225":{"t":1,"w":{"225":{"t":1,"p":{"14":1}}}},"235":{"t":4,"w":{"235":{"t":4,"p":{"14":2,"36":1,"48":1}}}},"237":{"t":1,"w":{"237":{"t":1,"p":{"14":1}}}},"240":{"t":5,"w":{"240":{"t":5,"p":{"8":1,"14":1,"35":1,"36":1,"48":1}}}},"250":{"t":3,"w":{"250":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"255":{"t":15,"w":{"255":{"t":15,"p":{"8":3,"14":3,"19":3,"25":3,"31":3}}}},"259":{"t":3,"w":{"259":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"262":{"t":28,"w":{"262":{"t":28,"p":{"12":4,"24":4,"25":4,"26":4,"30":4,"31":4,"52":4}}}},"402":{"t":7,"w":{"402":{"t":7,"p":{"12":1,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"442":{"t":3,"w":{"442":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"627":{"t":7,"w":{"627":{"t":7,"p":{"12":1,"24":1,"25":1,"26":1,"30":1,"31":1,"52":1}}}},"686":{"t":3,"w":{"686":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"852":{"t":3,"w":{"852":{"t":3,"p":{"18":1,"19":1,"20":1}}}},"1994":{"t":3,"w":{"1994":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"1996":{"t":3,"w":{"1996":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"1999":{"t":3,"w":{"1999":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"2001":{"t":3,"w":{"2001":{"t":3,"p":{"34":1,"35":1,"38":1}}}},"2006":{"t":6,"w":{"2006":{"t":6,"p":{"34":2,"35":2,"38":2}}}},"2008":{"t":6,"w":{"2008":{"t":6,"p":{"34":2,"35":2,"38":2}}}},"2012":{"t":3,"w":{"2012":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"12000":{"t":3,"w":{"12000":{"t":3,"p":{"12":1,"30":1,"31":1}}}},"75004":{"t":1,"w":{"75004":{"t":1,"p":{"25":1}}}},"283943":{"t":1,"w":{"283943":{"t":1,"p":{"31":1}}}}}; var TEXTS={"1":"","2":"","3":"sommaire 01 fondamentaux a logotype version horizontale version compacte couleurs baseline b typographie c couleurs 02 carte de visite a versions b couleurs c typographie d utilisation de l insigne graphique 03 papier a en tete a composition b couleurs c typographie d utilisation de l insigne graphique 04 devis et facture a composition b couleurs c typographie 05 dossier de presse a compositions fiche de presentation fiche technique b couleurs c typographie d integration des visuels e elements graphiques 06 powerpoint a composition b couleurs c typographie 07 telechargements a logotype b typographies c cartes de visite d papier a en tete e devis et facture f dossier de presse g powerpoint ","4":"","5":"1 fondamentaux a logotype version horizontale version compacte couleurs baseline b typographie ","6":"01 fondamentaux a logotype version horizontale 1 taille le logotype peut etre reproduit a toutes les tailles sans deformation pour la lisibilite la taille minimale est de 30 mm 2 position de l insigne et du texte l espace entre les deux elements est determine par la largeur de l interieur du d l insigne et le texte sont centres horizontalement 3 zone de protection la zone de protection est la surface autour du logotype qui doit toujours rester libre cet espace est determine a partir de la hauteur du texte 1 2 3 30 mm minimum x x y y y y ","7":"01 fondamentaux a logotype version compacte 1 taille le logotype peut etre reproduit a toutes les tailles sans deformation pour la lisibilite la taille minimale est de 21 mm 2 position de l insigne et du texte l espace entre les deux elements est determine par la largeur de l interieur du d l insigne et le texte sont centres verticalement 3 zone de protection la zone de protection est la surface autour du logotype qui doit toujours rester libre cet espace est determine a partir de la hauteur du texte 1 2 3 21 mm minimum x x yy y y ","8":"01 fondamentaux a logotype couleurs 1 cmjn cyan 100 magenta 50 jaune 0 noir 60 cyan 100 magenta 20 jaune 0 noir 15 cyan 80 magenta 50 jaune 0 noir 0 cyan 0 magenta 0 jaune 0 noir 0 cyan 61 magenta 0 jaune 1 noir 0 2 rvb 3 n b rouge 0 vert 54 bleu 97 rouge 0 vert 124 bleu 187 rouge 87 vert 197 bleu 240 rouge 46 vert 115 bleu 185 rouge 255 vert 255 bleu 255 noir 95 noir 45 noir 14 noir 75 ","9":"01 fondamentaux a logotype couleurs 4 monochrome cyan 0 magenta 0 jaune 0 noir 100 cyan 0 magenta 0 jaune 0 noir 0 ","10":"01 fondamentaux a logotype baseline 1 version compacte la baseline se place sous logo a une distance definie par la largeur de l interieur du d sa taille est definie par celle de la partie textuelle du logo ainsi la hauteur de la baseline est systematiquement 4x plus petite que la hauteur du texte levidac la baseline est centree verticalement sur le logo 2 version horizontale la baseline se place a droite du logo separee par une barre verticale de la hauteur du texte du logo elle peut etre placee a distance variable du logo en fonction de son utilisation tout en respectant sa zone de protection sa taille est definie par celle de la partie textuelle du logo ainsi la hauteur de la baseline represente 1 2 de celle du texte levidac la baseline est centree horizontalement sur le logo 1 2 x y 4y x y y 2 y y y y ","11":"","12":"01 fondamentaux b typographie 1 flexo typographie principale de la charte graphique la flexo est utilisee sur tous les supports de communication 2 arial l arial est utilisee pour tous les textes de contenu des courriers devis factures et documents internes 3 arial unicode ms cette typographie est utilisee pour les caracteres chinois on la retouve notamment sur les cartes de visite bilingues 4 ubuntu l ubuntu est utilisee pour le texte courant du site internet the positive energy sarl au capital de 12000 euros rcs paris b 442 686 259 naf 8299z tva intracommunautaire fr704426862599 flat b on 20th floor of block 1 phone 262 0 262 202 402 contact@levidac com the arch no 1 austin road fax 262 0 262 202 627 www levidac com west kowloon hong kong devis 17 octobre 2012 titre du devis description price titre projet 1 dont le style est titre projet \uf0a7 description du projet 1 dont le style est normal 10 250 00 euros titre projet 2 dont le style est titre projet \uf0a7 description du projet 2 dont le style est normal \uf0a7 modelisation affinee aux cotes reelles simulation de l implementation des composants realisation de multiples vues pour affiner les details esthetiques et les eventuelles cinematiques \uf0a7 realisation des plans de forme de l objet au format vectoriel \uf0a7 realisation d images de synthese 3d de l objet sous differents angles qui serviront a la communication interne et ou externe 25 000 00 euros total ht taux de tva tva total ttc 40 000 00 euros in agreement date signature more information www levidac fr bus green style levidac crosses the symbolic barrier of 1 000 km of autonomy with its hybrid bus green style 009 levidac is developing for dongfeng a leading chinese automobile builder a next generation hybrid bus able to cover up to 1 200 km in complete autonomy this feat has been made possible thanks to an engine based on a revolutionary micro turbine derived from aeronautics technologies the turbo range extender able to operate using 9 types of fuel the turbo range extender functions like a high yield electric generator 40 technical specifications length 11 7 m width 2 55 m height 3 5 m number of seats 28 total capacity 85 passengers weight 8 tons or 40 less than a conventional bus due to the use of composite materials and a honeycomb chassis performance autonomy 1 200 km compared with 200 km for a full electric bus consumption 15l per 100 km compared with 60l for a diesel bus emissions 120g of co2 km nox and co in compliance with the future euro 7 and euro 8 standards cost per km less than 0 1 usd noise impact 55db compared with 79db for a diesel bus equipment turbo range extender 120 kw of power with a 40 yield compared with 20 for a thermal bus high yield next generation electric motor wheel instrument panel with touch screen ultra light seats 50 lighter than a conventional model due to the use of composite honeycomb materials air conditioning very low consumption 40 compared with conventional air conditioning touch electric windows colour variation and uv filter touch screens for passengers with integrated wifi and hifi self diagnostic gsm maintenance system 1 2 ","13":"b typographie 1 flexo light abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca regular abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca medium abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca bold abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca italic abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca 2 arial regular abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca bold abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca 4 ubuntu light abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca regular abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca bold abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca 3 arial unicode ms regular abcdefghijklmnopqrstuvwxyz abcdefghijklmnopqrstuvwxyz 0123456789 u` e \u00a7e ca ","14":"01 fondamentaux c couleurs r 03 v 39 b 52 032734 c 82 m 65 j 54 n 48 r 240 v 83 b 49 f05331 c 00 m 83 j 90 n 00 r 169 v 203 b 56 a9cb38 c 39 m 02 j 100 n 00 r 118 v 182 b 67 76b643 c 60 m 06 j 100 n 00 r 235 v 125 b 35 eb7d23 c 04 m 62 j 100 n 00 r 118 v 182 b 67 76b643 c 60 m 06 j 100 n 00 r 22 v 186 b 237 16baed c 68 m 04 j 00 n 00 r 00 v 134 b 201 0086c9 c 85 m 37 j 00 n 00 c 85 m 37 j 00 n 00 r 00 v 134 b 201 0086c9 r 00 v 54 b 99 003663 c 100 m 50 j 00 n 60 r 255 v 255 b 255 ffffff c 00 m 00 j 00 n 00 r 225 v 221 b 149 ffdd95 c 00 m 13 j 48 n 00 r 235 v 125 b 35 eb7d23 c 04 m 62 j 100 n 00 ","15":"","16":false,"17":"2 carte de visite a versions b couleurs c typographie ","18":"02 carte de visite a versions les cartes de visites se declinent sous 3 formes differentes 1 ce model est utilise pour les dirigeants de la societe il se distingue par sa bande bleue en bas de la carte un qrcode est imprime au verso 2 voici le model standard avec qrcode au verso le logo se situe en en tete de la carte 3 model standard bilingue francais chinois composition basee sur le model standard avec un verso en negatif et une traduction des informations en chinois 1 2 3 illya cadivel chairman founder www levidac fr mobile 33 0 6 72 93 39 63 mobile 852 66 82 00 93 cadivel@levidac fr levidac group corporation flat b on 20th floor of block 1 the arch no 1 austin road west kowloon hong kong clotilde provost communication marketing director mobile 33 0 6 47 99 11 57 provost@levidac fr levidac group corporation flat b on 20th floor of block 1 the arch no 1 austin road west kowloon hong kong www levidac fr christophe saune sourcing leader mobile 86 156 0177 0055 saune@levidac fr levidac shanghai office lane no 12 88 shaoxing rd 200 020 shanghai china www levidac fr ","19":"r 00 v 54 b 99 003663 c typographie la police principale est la flexo la police utilisee pour les caracteres chinois est l arial unicode le nom de famille apparait systematiquement en lettres capitales illya cadivel chairman founder www levidac fr mobile 33 0 6 72 93 39 63 mobile 852 66 82 00 93 cadivel@levidac fr levidac group corporation flat b on 20th floor of block 1 the arch no 1 austin road west kowloon hong kong christophe saune sourcing leader mobile 86 156 0177 0055 saune@levidac fr levidac shanghai office lane no 12 88 shaoxing rd 200 020 shanghai china www levidac fr 02 carte de visite b couleurs c 100 m 50 j 00 n 60 r 255 v 255 b 255 ffffff c 00 m 00 j 00 n 00 flexo regular 10pt flexo regular 7pt ","20":"c typographie la police principale est la flexo la police utilisee pour les caracteres chinois est l arial unicode le nom de famille apparait systematiquement en lettres capitales 02 carte de visite d utilisation de l insigne graphique l insigne graphique peut etre utilise comme un visuel a part entiere il y a 2 possibilites de le recadrer en suivant les indications ci contre 1 2 illya cadivel chairman founder www levidac fr mobile 33 0 6 72 93 39 63 mobile 852 66 82 00 93 cadivel@levidac fr levidac group corporation flat b on 20th floor of block 1 the arch no 1 austin road west kowloon hong kong clotilde provost communication marketing director mobile 33 0 6 47 99 11 57 provost@levidac fr levidac group corporation flat b on 20th floor of block 1 the arch no 1 austin road west kowloon hong kong www levidac fr ","21":"","22":false,"23":"3 papier a en tete a composition b couleurs c typographie ","24":"03 papier a en tete a composition le papier a en tete se compose des elements suivants 1 le logo de la societe en haut a gauche a 1cm du bord gauche et superieur de la page 2 la baseline en haut a droite a 1cm du bord droit et centre horizontalement sur le logo 3 l insigne graphique en bas a droite et coupe comme sur les cartes de visite 4 les coordonnees de la societe sur trois colonnes 1 2 3 4 the positive energy flat b on 20th floor of block 1 the arch no 1 austin road west kowloon hong kong phone 262 0 262 202 402 fax 262 0 262 202 627 contact@levidac com www levidac com ","25":"r 00 v 54 b 99 003663 c typographie la police principale est la flexo regular la police du texte courant est l arial regular 03 papier a en tete b couleurs c 100 m 50 j 00 n 60 r 255 v 255 b 255 ffffff c 00 m 00 j 00 n 00 the positive energy flat b on 20th floor of block 1 the arch no 1 austin road west kowloon hong kong phone 262 0 262 202 402 fax 262 0 262 202 627 contact@levidac com www levidac com cubedesigners 1 bd henri iv 75004 paris jean francois lorem ipsum dolor sit amet consectetur adipiscing elit duis metus libero cursus ut cursus id facilisis nec augue donec sodales posuere turpis at gravida nunc laoreet feugiat sem at elementum sem fringilla non in auctor sodales sapien a tempus maecenas ut est non ipsum suscipit suscipit non nec augue quisque vel felis nisi sit amet volutpat arcu sed ut eros at metus ultrices pharetra pellentesque non mi sed quam sodales egestas curabitur tincidunt pulvinar enim vitae mattis magna commodo in donec diam sapien feugiat a sagittis eget consequat non mauris cras lacinia elit eu blandit elementum lorem purus blandit sem sit amet fermentum ipsum massa eu sem mauris ut quam est suscipit aliquam ipsum integer sit amet ligula in odio consequat blandit quis mollis dolor nunc dapibus rhoncus nibh in scelerisque donec ultricies libero porttitor nunc interdum congue a ta dispo pour en discuter flexo regular 16pt arial regular 11pt ","26":"c typographie la police principale est la flexo regular la police du texte courant est l arial regular 03 papier a en tete d utilisation de l insigne graphique l insigne graphique peut etre utilise comme un visuel a part entiere il est recadre comme sur les cartes de visite the positive energy flat b on 20th floor of block 1 the arch no 1 austin road west kowloon hong kong phone 262 0 262 202 402 fax 262 0 262 202 627 contact@levidac com www levidac com ","27":"","28":false,"29":"4 devis et facture a composition b couleurs ","30":"04 devis et facture a composition le devis se compose des elements suivants 1 le logo de la societe en haut a gauche a 1cm du bord gauche et superieur de la page 2 la baseline en haut a droite a 1cm du bord droit et centre horizontalement sur le logo 3 le tableau des tarifs 4 les coordonnees de la societe sur trois colonnes 1 2 3 4 the positive energy sarl au capital de 12000 euros rcs paris b 442 686 259 naf 8299z tva intracommunautaire fr704426862599 flat b on 20th floor of block 1 phone 262 0 262 202 402 contact@levidac com the arch no 1 austin road fax 262 0 262 202 627 www levidac com west kowloon hong kong devis 17 octobre 2012 titre du devis description price titre projet 1 dont le style est titre projet \uf0a7 description du projet 1 dont le style est normal 10 250 00 euros titre projet 2 dont le style est titre projet \uf0a7 description du projet 2 dont le style est normal \uf0a7 modelisation affinee aux cotes reelles simulation de l implementation des composants realisation de multiples vues pour affiner les details esthetiques et les eventuelles cinematiques \uf0a7 realisation des plans de forme de l objet au format vectoriel \uf0a7 realisation d images de synthese 3d de l objet sous differents angles qui serviront a la communication interne et ou externe 25 000 00 euros total ht taux de tva tva total ttc 40 000 00 euros in agreement date signature ","31":"c typographie la police principale est la flexo regular la police du texte courant est l arial regular 04 devis et facture b couleurs r 00 v 54 b 99 003663 c 100 m 50 j 00 n 60 r 255 v 255 b 255 ffffff c 00 m 00 j 00 n 00 r 40 v 57 b 67 283943 c 82 m 65 j 54 n 48 flexo regular 16pt arial regular 11pt flexo regular 7pt the positive energy sarl au capital de 12000 euros rcs paris b 442 686 259 naf 8299z tva intracommunautaire fr704426862599 flat b on 20th floor of block 1 phone 262 0 262 202 402 contact@levidac com the arch no 1 austin road fax 262 0 262 202 627 www levidac com west kowloon hong kong devis 17 octobre 2012 titre du devis description price titre projet 1 dont le style est titre projet \uf0a7 description du projet 1 dont le style est normal 10 250 00 euros titre projet 2 dont le style est titre projet \uf0a7 description du projet 2 dont le style est normal \uf0a7 modelisation affinee aux cotes reelles simulation de l implementation des composants realisation de multiples vues pour affiner les details esthetiques et les eventuelles cinematiques \uf0a7 realisation des plans de forme de l objet au format vectoriel \uf0a7 realisation d images de synthese 3d de l objet sous differents angles qui serviront a la communication interne et ou externe 25 000 00 euros total ht taux de tva tva total ttc 40 000 00 euros in agreement date signature ","32":"","33":"5 dossier de presse a composition fiche de presentation fiche technique b couleurs c typographie d integration des visuels ","34":"05 dossier de presse a compositions le dossier de presse est compose de plusieurs elements 1 les fiches de presentation societe biographie des dirigeants titre accroche visuel citation texte pied de page 2 les fiches techniques decrivant les caracteristiques des produits titre accroche visuel texte pied de page tous les elements du dossier de presse sont soumis aux memes regles de mise en page avec 2cm de marge autour du document excepte pour le pied de page more information www levidac fr illya cadivel chairman founder a self taught engineer who has built his entire career in the automobile sector aged 43 illya cadivel is a self taught engineer who has built his entire career in the automobile sector in particular in the field of research and development his expertise is today based on 20 years experience in international project management and development europe africa asia russia in 2008 convinced that automobile transport needs to be integrated in a global environmental approach he founded levidac with his wife isabelle duc also r d automobile engineer 1994 began his career at matra automobile as a quality engineer on the renault espace programme 1996 joined the r d centre of the automobile components manufacturer rieter automotive as an engineer responsible for innovative materials 1999 responsible forthe product development process at the r d centre of the automobile components manufacturer treves 2001 founded the independent laboratory techno company by levidac specialized in composite materials for the automobile aeronautics and maritime sectors at the same time until 2006 he was aproduct development engineering and industrialization consultant 2006 joined the altran group with responsibility for automobile programmes for the constructors bmw mini volvo trucks and avto vaz 2008 founded levidac specialized in the study design development and manufacturing of clean vehicles and the turnkey production storage and smart grid distribution of clean energy systems more information www levidac fr bus green style levidac crosses the symbolic barrier of 1 000 km of autonomy with its hybrid bus green style 009 levidac is developing for dongfeng a leading chinese automobile builder a next generation hybrid bus able to cover up to 1 200 km in complete autonomy this feat has been made possible thanks to an engine based on a revolutionary micro turbine derived from aeronautics technologies the turbo range extender able to operate using 9 types of fuel the turbo range extender functions like a high yield electric generator 40 technical specifications length 11 7 m width 2 55 m height 3 5 m number of seats 28 total capacity 85 passengers weight 8 tons or 40 less than a conventional bus due to the use of composite materials and a honeycomb chassis performance autonomy 1 200 km compared with 200 km for a full electric bus consumption 15l per 100 km compared with 60l for a diesel bus emissions 120g of co2 km nox and co in compliance with the future euro 7 and euro 8 standards cost per km less than 0 1 usd noise impact 55db compared with 79db for a diesel bus equipment turbo range extender 120 kw of power with a 40 yield compared with 20 for a thermal bus high yield next generation electric motor wheel instrument panel with touch screen ultra light seats 50 lighter than a conventional model due to the use of composite honeycomb materials air conditioning very low consumption 40 compared with conventional air conditioning touch electric windows colour variation and uv filter touch screens for passengers with integrated wifi and hifi self diagnostic gsm maintenance system ","35":"pantone 000c r 03 v 39 b 52 032734 05 dossier de presse b couleurs fiches de presentation c 82 m 65 j 54 n 48 pantone 000c r 240 v 83 b 49 f05331 c 00 m 83 j 90 n 00 more information www levidac fr illya cadivel chairman founder a self taught engineer who has built his entire career in the automobile sector aged 43 illya cadivel is a self taught engineer who has built his entire career in the automobile sector in particular in the field of research and development his expertise is today based on 20 years experience in international project management and development europe africa asia russia in 2008 convinced that automobile transport needs to be integrated in a global environmental approach he founded levidac with his wife isabelle duc also r d automobile engineer 1994 began his career at matra automobile as a quality engineer on the renault espace programme 1996 joined the r d centre of the automobile components manufacturer rieter automotive as an engineer responsible for innovative materials 1999 responsible forthe product development process at the r d centre of the automobile components manufacturer treves 2001 founded the independent laboratory techno company by levidac specialized in composite materials for the automobile aeronautics and maritime sectors at the same time until 2006 he was aproduct development engineering and industrialization consultant 2006 joined the altran group with responsibility for automobile programmes for the constructors bmw mini volvo trucks and avto vaz 2008 founded levidac specialized in the study design development and manufacturing of clean vehicles and the turnkey production storage and smart grid distribution of clean energy systems ","36":"r 03 v 39 b 52 032734 05 dossier de presse b couleurs fiches techniques c 82 m 65 j 54 n 48 r 240 v 83 b 49 f05331 c 00 m 83 j 90 n 00 r 235 v 125 b 35 eb7d23 c 04 m 62 j 100 n 00 r 118 v 182 b 67 76b643 c 60 m 06 j 100 n 00 r 00 v 134 b 201 0086c9 c 85 m 37 j 00 n 00 more information www levidac fr bus green style levidac crosses the symbolic barrier of 1 000 km of autonomy with its hybrid bus green style 009 levidac is developing for dongfeng a leading chinese automobile builder a next generation hybrid bus able to cover up to 1 200 km in complete autonomy this feat has been made possible thanks to an engine based on a revolutionary micro turbine derived from aeronautics technologies the turbo range extender able to operate using 9 types of fuel the turbo range extender functions like a high yield electric generator 40 technical specifications length 11 7 m width 2 55 m height 3 5 m number of seats 28 total capacity 85 passengers weight 8 tons or 40 less than a conventional bus due to the use of composite materials and a honeycomb chassis performance autonomy 1 200 km compared with 200 km for a full electric bus consumption 15l per 100 km compared with 60l for a diesel bus emissions 120g of co2 km nox and co in compliance with the future euro 7 and euro 8 standards cost per km less than 0 1 usd noise impact 55db compared with 79db for a diesel bus equipment turbo range extender 120 kw of power with a 40 yield compared with 20 for a thermal bus high yield next generation electric motor wheel instrument panel with touch screen ultra light seats 50 lighter than a conventional model due to the use of composite honeycomb materials air conditioning very low consumption 40 compared with conventional air conditioning touch electric windows colour variation and uv filter touch screens for passengers with integrated wifi and hifi self diagnostic gsm maintenance system more information www levidac fr aliseo levidac revolutionizes urban and extra urban public transport with its ultra light aliseo vehicle driverl ss multimodal and completely clean aliseo provides an answer to all major problems of urban transportation with an investment cost 6 times lower than conventional tramway systems automated guide rail on existing track power full electric or hybrid with micro turbine smart grid integration possible in an autonomous energy system with the levidac eco responsible pack wind turbines photovoltaic biogas operating cost self financed by its energy production micro turbine system journey cost less than 0 5 usd smart traffic management interactive real time management of passenger flows and vehicle cycles modularity between 20 and 90 passengers thanks to an automated coupling system based on traffic up to 3 vehicles multimodality passenger transport goods utility fleet availability real time monitoring of the condition of the vehicle and maintenance in masked time with electronic systems via plug play solutions and vehicle actuators design styling interior and exterior can be customized emissions less than 30g of co2 km noise impact less than 55 db more information www levidac fr turbo range extender levidac pioneer in micro turbines for high yield electric generators levidac in partnership with lux powertrain manufactures for the automobile and housing sectors a revolutionary micro turbine with unequalled performance derived from aeronautics the turbo range extender able to operate with 9 types of fuel the turbo range extender functions as a high yield electric generator levidac is currently developing a first application of the turbo range extender under a joint venture with the leading chinese automobile manufacturer dongfeng this joint venture will build a revolutionary new model of bus with unrivalled autonomy of 1 200 km example of performance for an urban bus 8 tons 12m output 140 vs 20 for a heat engine consumption 15l per 100 km vs 60l for a diesel bus autonomy 1 200 km vs 200 km for a full electric bus weight 40 lighter than a conventional bus emissions 120g of co2 km nox and co in compliance with the future euro7 and euro8 standards cost per km less than 0 1 usd noise impact 55db maintenance 0 maintenance guaranteed for 11 years continuous operation ","37":"","38":"05 dossier de presse c typographie la police utilisee est la flexo elle se decline sous differentes tailles et graisses de la facon suivante 1 titre flexo medium taille de 50pt a 80pt 2 accroche flexo regular taille de 16pt a 18pt 3 citation flexo regular italic taille de 14pt a 18pt 4 titre de paragraphe flexo regular cap taille 10pt 5 texte coura nt flexo regular taille 8pt 6 pied de page flexo regular taille 8pt more information www levidac fr illya cadivel chairman founder a self taught engineer who has built his entire career in the automobile sector aged 43 illya cadivel is a self taught engineer who has built his entire career in the automobile sector in particular in the field of research and development his expertise is today based on 20 years experience in international project management and development europe africa asia russia in 2008 convinced that automobile transport needs to be integrated in a global environmental approach he founded levidac with his wife isabelle duc also r d automobile engineer 1994 began his career at matra automobile as a quality engineer on the renault espace programme 1996 joined the r d centre of the automobile components manufacturer rieter automotive as an engineer responsible for innovative materials 1999 responsible forthe product development process at the r d centre of the automobile components manufacturer treves 2001 founded the independent laboratory techno company by levidac specialized in composite materials for the automobile aeronautics and maritime sectors at the same time until 2006 he was aproduct development engineering and industrialization consultant 2006 joined the altran group with responsibility for automobile programmes for the constructors bmw mini volvo trucks and avto vaz 2008 founded levidac specialized in the study design development and manufacturing of clean vehicles and the turnkey production storage and smart grid distribution of clean energy systems 1 2 3 4 5 ","39":"","40":"05 dossier de presse d integration des visuels fiches de presentation les visuels s inscrivent dans un quadrilatere respectant les proprietes ci contre les dimensions du quadrilatere sont variables mais doivent systematiquement respecter les angles indiques inclinaison de 5 inclinaison de 5 ","41":"05 dossier de presse d integration des visuels fiches techniques pour les fiches techniques les produits sont presentes differement pour une mise en valeur du produit une pastille de couleur se place a l arriere plan ","42":"05 dossier de presse e elements graphiques les elements graphiques suivants viennent completer la mise en forme des pages du dossier de presse 1 les guillemets issus le police helvetica neue ils sont utilises pour indiquer la presence d une citation taille 72pt couleur 2 le pied de page il est present sur toutes les fiches du dossier de presse il presente un angle incline de 5 il se compose des elements suivants le logo levidac place en bas a droite une ligne de texte centree renvoyant vers le site internet taille du texte 8pt couleur du pied de page version du logotype horizontale a self taught engineer who has built his entire career in the automobile sector 1 2 more information www levidac fr ","43":"","44":false,"45":"6 powerpoint a composition b couleurs ","46":"06 powerpoint a composition slide 1 la composition de la slide 1 du powerpoint s inspire des fiches du dossier de presse 1 le titre en haut 2 l accroche 3 le visuel principale 4 le pied de page levidac revolutionizes urban and extra urban public transport with its ultra light aliseo vehicle aliseo1 2 3 ","47":"06 powerpoint a composition slides suivantes les slides interieures se composent des elements suivants 1 le header avec le titre de la page 2 les titres de paragraphe avec une puce triangulaire 3 les paragraphes avec une puce carree lorsqu il s agit d un liste 4 les visuels 5 le logo levidac en niveaux de gris en bas a droite performance bird cage concept \uf0a7 honeycomb and composites materials \uf0a7 sandwich composite panel for the interior and exterior parts operating cost \uf0a7 self financed by its energy production turbo range extender journey cost \uf0a7 less than 0 5 usd emissions \uf0a7 less than 30g of co2 km noise impact \uf0a7 less than 55 db 1 2 3 ","48":"06 powerpoint b couleurs levidac revolutionizes urban and extra urban public transport with its ultra light aliseo vehicle aliseo performance bird cage concept \uf0a7 honeycomb and composites materials \uf0a7 sandwich composite panel for the interior and exterior parts operating cost \uf0a7 self financed by its energy production turbo range extender journey cost \uf0a7 less than 0 5 usd emissions \uf0a7 less than 30g of co2 km noise impact \uf0a7 less than 55 db r 03 v 39 b 52 032734 c 82 m 65 j 54 n 48 r 240 v 83 b 49 f05331 c 00 m 83 j 90 n 00 r 235 v 125 b 35 eb7d23 c 04 m 62 j 100 n 00 r 118 v 182 b 67 76b643 c 60 m 06 j 100 n 00 r 00 v 134 b 201 0086c9 c 85 m 37 j 00 n 00 ","49":"06 powerpoint levidac revolutionizes urban and extra urban public transport with its ultra light aliseo vehicle aliseo performance bird cage concept \uf0a7 honeycomb and composites materials \uf0a7 sandwich composite panel for the interior and exterior parts operating cost \uf0a7 self financed by its energy production turbo range extender journey cost \uf0a7 less than 0 5 usd emissions \uf0a7 less than 30g of co2 km noise impact \uf0a7 less than 55 db c typographie la police utilisee est la flexo elle se decline sous differentes tailles et graisses de la facon suivante 1 titre flexo medium taille de 50pt a 80pt 2 accroche flexo regular taille de 16pt a 18pt 4 titre de paragraphe flexo regular taille 10pt 5 texte coura nt flexo regular taille 8pt ","50":"","51":"07 telechargements a logotype b typographies c cartes de visite d papier a en tete e devis et facture f dossier de presse g powerpoint telecharger telecharger telecharger telecharger telecharger telecharger ","52":"flat b on 20th floor of block 1 the arch no 1 austin road west kowloon hong kong phone 262 0 262 202 402 fax 262 0 262 202 627 contact@levidac com www levidac com "}; \ No newline at end of file diff --git a/charte-graphique/m/data/style/style_0.css b/charte-graphique/m/data/style/style_0.css new file mode 100644 index 0000000..c2f50b5 --- /dev/null +++ b/charte-graphique/m/data/style/style_0.css @@ -0,0 +1,51 @@ +.portrait #pages,.portrait .doublePage.page,.page,.portrait #shadow,#shadow.single,.doublePage._3d{width:567px;max-width:567px;height:400.91194811674px;max-height:400.91194811674px} +.doublePage,#pages,#links,.landscape #shadow.double{width:1134px;max-width:1134px;height:400.91194811674px;max-height:400.91194811674px} +.landscape .doublePage._2d.next{-moz-transform:translate3d(1134px,0,0);-webkit-transform:translate3d(1134px,0,0);-o-transform:translate3d(1134px,0,0);-ms-transform:translate3d(1134px,0,0);transform:translate3d(1134px,0,0)} +.landscape .doublePage._2d.prev{-moz-transform:translate3d(-1134px,0,0);-webkit-transform:translate3d(-1134px,0,0);-o-transform:translate3d(-1134px,0,0);-ms-transform:translate3d(-1134px,0,0);transform:translate3d(-1134px,0,0)} +.portrait .doublePage._2d.next{-moz-transform:translate3d(567px,0,0);-webkit-transform:translate3d(567px,0,0);-o-transform:translate3d(567px,0,0);-ms-transform:translate3d(567px,0,0);transform:translate3d(567px,0,0)} +.portrait .doublePage._2d.prev{-moz-transform:translate3d(-567px,0,0);-webkit-transform:translate3d(-567px,0,0);-o-transform:translate3d(-567px,0,0);-ms-transform:translate3d(-567px,0,0);transform:translate3d(-567px,0,0)} +.doublePage._3d{left:567px;} +#links.right{left:-567px;} +.landscape #shadow.single.right{left: 567px;} +.landscape #shadow.single.right{left: 567px;} +.landscape .page.right{left:567px} +#pagesnumbers{top:400.91194811674px;color:#ffffff} +#pagesnumbers div{width:567px} +.doublePage._2d,.doublePage._3d{-moz-transition:all 1s ease-in-out;-webkit-transition:all 1s ease-in-out;-o-transition:all 1s ease-in-out;-ms-transition:all 1s ease-in-out;transition:all 1s ease-in-out} +.background{-moz-transform-origin:top left;-webkit-transform-origin:top left;-o-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;} +.background.r150{-moz-transform:scale(0.32327263656772);-webkit-transform:scale(0.32327263656772);-o-transform:scale(0.32327263656772);-ms-transform:scale(0.32327263656772);transform:scale(0.32327263656772);width:1753.9375px;height:1240.1666666667px;} +.texts{-moz-transform-origin:top left;-webkit-transform-origin:top left;-o-transform-origin:top left;-ms-transform-origin:top left;transform-origin:top left;-moz-transform:scale(0.375);-webkit-transform:scale(0.375);-o-transform:scale(0.375);-ms-transform:scale(0.375);transform:scale(0.375);width:1512; max-width:1512;height:1069.0985283113; max-height:1069.0985283113;} +.page .shade{opacity:1;} +#main,.mview.index{background-color:#333333;background-repeat:no-repeat;background-size:100% 100%;background-image:url(../images/bg.jpg);background-position:center center;} +header{height:39px;background-color:transparent;} +#nav #locales{background-color:#ffffff} +#logo{background-image:url(../images/logo.png);width:162px;height:52px;} +footer,footer a{color:rgba(255,255,255,0.50196078431373);} +#next,#previous{background-color:#ffffff;} +#shadow{-moz-box-shadow:0 0 20px rgba(0,0,0,0.61176470588235);-webkit-box-shadow:0 0 20px rgba(0,0,0,0.61176470588235);-o-box-shadow:0 0 20px rgba(0,0,0,0.61176470588235);-ms-box-shadow:0 0 20px rgba(0,0,0,0.61176470588235);box-shadow:0 0 20px rgba(0,0,0,0.61176470588235)} +#l_0{left:585.96532801197px;top:72.332252432028px;width:142.61037665253px;height:16.096283362435px;} +#l_1{left:585.96532801197px;top:167.22624095784px;width:142.61037665253px;height:16.096283362435px;} +#l_2{left:585.96532801197px;top:238.85133449738px;width:142.61037665253px;height:16.096283362435px;} +#l_3{left:781.07383387378px;top:72.298578199052px;width:142.61037665253px;height:16.096283362435px;} +#l_4{left:781.07383387378px;top:132.87852332252px;width:142.61037665253px;height:16.096283362435px;} +#l_5{left:781.07383387378px;top:235.21451733599px;width:142.61037665253px;height:16.096283362435px;} +#l_6{left:968.40359191818px;top:72.938388625592px;width:142.61037665253px;height:16.096283362435px;} +#l_7{left:584.21426789723px;top:71.625093539536px;width:527.473185333px;height:18.453479670741px;} +#l_8{left:584.51733599401px;top:90.482664005987px;width:527.473185333px;height:18.419805437765px;} +#l_9{left:584.21426789723px;top:110.04739336493px;width:527.473185333px;height:18.386131204789px;} +#l_a{left:584.21426789723px;top:130.35295584934px;width:527.473185333px;height:18.419805437765px;} +#l_b{left:584.21426789723px;top:149.37889748067px;width:527.473185333px;height:18.386131204789px;} +#l_c{left:584.21426789723px;top:168.47218757795px;width:527.473185333px;height:18.419805437765px;} +#l_d{left:584.21426789723px;top:188.20528810177px;width:527.473185333px;height:18.453479670741px;} +#l_e{left:356.30705911699px;top:354.82539286605px;width:72.433275130955px;height:10.236966824645px;} +#l_f{left:358.02444499875px;top:344.48740334248px;width:82.6702419556px;height:10.236966824645px;} +.link a.displayArea:hover,.link a.displayArea.animating{background-color:rgba(0,109,170,0.4);} +.link a.displayArea:hover{opacity:1 !important;} +.link a.displayArea{-webkit-tap-highlight-color:rgba(0,109,170,0.4);background-color:rgba(0,109,170,0.003921568627451);} +.portrait .mview{width:567px;min-height:400.91194811674px} +.landscape .mview{width:1134px;min-height:400.91194811674px} +.mview{background-color:#000000;color:#ffffff;} +#indexView .thumb img{width:100px;height:71px;} +#indexView .doubleThumb{height:71px;-moz-box-shadow:0 0 3px rgba(0,0,0,0.61176470588235);-webkit-box-shadow:0 0 3px rgba(0,0,0,0.61176470588235);-o-box-shadow:0 0 3px rgba(0,0,0,0.61176470588235);-ms-box-shadow:0 0 3px rgba(0,0,0,0.61176470588235);box-shadow:0 0 3px rgba(0,0,0,0.61176470588235)} +#indexView .doubleThumb .overlay{height:71px;} +#indexView .doubleThumb .hits.yes{background-color:#ffffff;color:#000000} \ No newline at end of file diff --git a/charte-graphique/m/data/thumbnails/p1.jpg b/charte-graphique/m/data/thumbnails/p1.jpg new file mode 100644 index 0000000..feeb88f Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p1.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p10.jpg b/charte-graphique/m/data/thumbnails/p10.jpg new file mode 100644 index 0000000..5fa76d6 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p10.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p11.jpg b/charte-graphique/m/data/thumbnails/p11.jpg new file mode 100644 index 0000000..3a2a3de Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p11.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p12.jpg b/charte-graphique/m/data/thumbnails/p12.jpg new file mode 100644 index 0000000..8c99196 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p12.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p13.jpg b/charte-graphique/m/data/thumbnails/p13.jpg new file mode 100644 index 0000000..161f485 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p13.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p14.jpg b/charte-graphique/m/data/thumbnails/p14.jpg new file mode 100644 index 0000000..e845976 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p14.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p15.jpg b/charte-graphique/m/data/thumbnails/p15.jpg new file mode 100644 index 0000000..3a2a3de Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p15.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p16.jpg b/charte-graphique/m/data/thumbnails/p16.jpg new file mode 100644 index 0000000..06d7656 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p16.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p17.jpg b/charte-graphique/m/data/thumbnails/p17.jpg new file mode 100644 index 0000000..40d2b64 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p17.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p18.jpg b/charte-graphique/m/data/thumbnails/p18.jpg new file mode 100644 index 0000000..f3d0c43 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p18.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p19.jpg b/charte-graphique/m/data/thumbnails/p19.jpg new file mode 100644 index 0000000..b206351 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p19.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p2.jpg b/charte-graphique/m/data/thumbnails/p2.jpg new file mode 100644 index 0000000..06d7656 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p2.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p20.jpg b/charte-graphique/m/data/thumbnails/p20.jpg new file mode 100644 index 0000000..08ba56d Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p20.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p21.jpg b/charte-graphique/m/data/thumbnails/p21.jpg new file mode 100644 index 0000000..3a2a3de Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p21.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p22.jpg b/charte-graphique/m/data/thumbnails/p22.jpg new file mode 100644 index 0000000..06d7656 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p22.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p23.jpg b/charte-graphique/m/data/thumbnails/p23.jpg new file mode 100644 index 0000000..01b773e Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p23.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p24.jpg b/charte-graphique/m/data/thumbnails/p24.jpg new file mode 100644 index 0000000..9ead94b Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p24.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p25.jpg b/charte-graphique/m/data/thumbnails/p25.jpg new file mode 100644 index 0000000..950b9aa Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p25.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p26.jpg b/charte-graphique/m/data/thumbnails/p26.jpg new file mode 100644 index 0000000..6d11ce8 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p26.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p27.jpg b/charte-graphique/m/data/thumbnails/p27.jpg new file mode 100644 index 0000000..3a2a3de Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p27.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p28.jpg b/charte-graphique/m/data/thumbnails/p28.jpg new file mode 100644 index 0000000..06d7656 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p28.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p29.jpg b/charte-graphique/m/data/thumbnails/p29.jpg new file mode 100644 index 0000000..761ebe3 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p29.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p3.jpg b/charte-graphique/m/data/thumbnails/p3.jpg new file mode 100644 index 0000000..1603c58 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p3.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p30.jpg b/charte-graphique/m/data/thumbnails/p30.jpg new file mode 100644 index 0000000..98ec202 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p30.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p31.jpg b/charte-graphique/m/data/thumbnails/p31.jpg new file mode 100644 index 0000000..8c45781 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p31.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p32.jpg b/charte-graphique/m/data/thumbnails/p32.jpg new file mode 100644 index 0000000..06d7656 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p32.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p33.jpg b/charte-graphique/m/data/thumbnails/p33.jpg new file mode 100644 index 0000000..8186c46 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p33.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p34.jpg b/charte-graphique/m/data/thumbnails/p34.jpg new file mode 100644 index 0000000..2c52397 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p34.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p35.jpg b/charte-graphique/m/data/thumbnails/p35.jpg new file mode 100644 index 0000000..aadf790 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p35.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p36.jpg b/charte-graphique/m/data/thumbnails/p36.jpg new file mode 100644 index 0000000..529cfaa Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p36.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p37.jpg b/charte-graphique/m/data/thumbnails/p37.jpg new file mode 100644 index 0000000..3a2a3de Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p37.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p38.jpg b/charte-graphique/m/data/thumbnails/p38.jpg new file mode 100644 index 0000000..45fbebb Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p38.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p39.jpg b/charte-graphique/m/data/thumbnails/p39.jpg new file mode 100644 index 0000000..3a2a3de Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p39.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p4.jpg b/charte-graphique/m/data/thumbnails/p4.jpg new file mode 100644 index 0000000..06d7656 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p4.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p40.jpg b/charte-graphique/m/data/thumbnails/p40.jpg new file mode 100644 index 0000000..a1ab511 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p40.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p41.jpg b/charte-graphique/m/data/thumbnails/p41.jpg new file mode 100644 index 0000000..be01460 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p41.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p42.jpg b/charte-graphique/m/data/thumbnails/p42.jpg new file mode 100644 index 0000000..ed465f6 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p42.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p43.jpg b/charte-graphique/m/data/thumbnails/p43.jpg new file mode 100644 index 0000000..3a2a3de Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p43.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p44.jpg b/charte-graphique/m/data/thumbnails/p44.jpg new file mode 100644 index 0000000..06d7656 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p44.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p45.jpg b/charte-graphique/m/data/thumbnails/p45.jpg new file mode 100644 index 0000000..4b3e6e1 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p45.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p46.jpg b/charte-graphique/m/data/thumbnails/p46.jpg new file mode 100644 index 0000000..ac62f4f Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p46.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p47.jpg b/charte-graphique/m/data/thumbnails/p47.jpg new file mode 100644 index 0000000..5e284eb Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p47.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p48.jpg b/charte-graphique/m/data/thumbnails/p48.jpg new file mode 100644 index 0000000..df4bc82 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p48.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p49.jpg b/charte-graphique/m/data/thumbnails/p49.jpg new file mode 100644 index 0000000..a5b513e Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p49.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p5.jpg b/charte-graphique/m/data/thumbnails/p5.jpg new file mode 100644 index 0000000..db6960c Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p5.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p50.jpg b/charte-graphique/m/data/thumbnails/p50.jpg new file mode 100644 index 0000000..06d7656 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p50.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p51.jpg b/charte-graphique/m/data/thumbnails/p51.jpg new file mode 100644 index 0000000..26a9215 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p51.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p52.jpg b/charte-graphique/m/data/thumbnails/p52.jpg new file mode 100644 index 0000000..330a1c6 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p52.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p6.jpg b/charte-graphique/m/data/thumbnails/p6.jpg new file mode 100644 index 0000000..be32ab4 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p6.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p7.jpg b/charte-graphique/m/data/thumbnails/p7.jpg new file mode 100644 index 0000000..b3895c4 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p7.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p8.jpg b/charte-graphique/m/data/thumbnails/p8.jpg new file mode 100644 index 0000000..1aa6233 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p8.jpg differ diff --git a/charte-graphique/m/data/thumbnails/p9.jpg b/charte-graphique/m/data/thumbnails/p9.jpg new file mode 100644 index 0000000..be3a521 Binary files /dev/null and b/charte-graphique/m/data/thumbnails/p9.jpg differ diff --git a/charte-graphique/m/data/widget.js b/charte-graphique/m/data/widget.js new file mode 100644 index 0000000..44d9a63 --- /dev/null +++ b/charte-graphique/m/data/widget.js @@ -0,0 +1,5 @@ +var DATAS={"version":"2","title":"Levidac - Charte graphique","url_link":"http:\/\/www.levidac.fr","signature":"1","friend":true,"email_title":"","email_body":"","email_editable":true,"askAcknowledge":false,"facebook":true,"facebook_title":"","facebook_description":"","twitter":true,"twitter_description":"%title% : %short%","customSharer":"","friendWidth":319,"friendHeight":500,"pages":52,"width":567,"height":400.91194811674,"visualisationMode":"3","viewMode":"0","antialiasReading":true,"pagesBaseAngle":2,"extraXSpace":0,"extraYSpace":0,"centerBook":true,"fullscreen":true,"navOrder":"index, chapters, print, friend, bookmark, pdf, archives, basket, fullscreen, sound, 3d, help","bookmark":true,"bookmark_email_title":"","bookmark_email_body":"","bookmarkCornerSize":10,"help":true,"helpStartup":false,"helpStartupTime":15,"indexAutoScroll":false,"print":true,"printMode":"vector","printCoverWithMarks":true,"search":false,"ignoreSearch":"","ignoreSearchSeparators":"","textExtraction":"pdfbox","soundTheme":"classic","soundOn":true,"preload":16,"pdf":true,"pdfName":"charte-levidac.pdf","pdfComplex":false,"pdfReplace":"","offlineExport":false,"zoomMode":"0","zoom":200,"zoomw":300,"stats":true,"stats_score":true,"googleAnalytics":"","googleAnalyticsCustom":"","displayChaptersIcon":true,"displayChaptersLine":true,"chaptersPage":"","displayChaptersAtStart":false,"chaptersColumns":1,"chaptersColMaxWidth":300,"chaptersLevelLimit":5,"externalChapters":"","fullExternalChapters":false,"chaptersPosition":"center","chaptersCascade":false,"ongletsXML":"","ongletsSWF":"","tabs2DSWF":"","customLinkClass":"","permanentLinks":false,"linkBlinkTime":1,"linkTooltipManager":"","linkTracker":"","linkTrackerRegexp":"","linkMultimediaPerformanceMode":false,"linkMultimediaQuality":1,"linkCornerSize":10,"videoReset":false,"videoBigPlay":true,"externalArchives":"","archivesLink":"","archivesLabel":"","basket":false,"basketManager":"com.fluidbook.player.basket.BasketManager","basketReferences":"","basketImages":"","basketPDFBackground":"","offlineLink":"http:\/\/","mobileVersion":"html5-images","mobileLVersion":"stable","mobileTransitions":"flip","mobileTransitionDuration":1,"mobileIconVector":true,"mobileServerConfig":false,"mobilePlugins":"","mobileVideosPath":"","phonegapId":"com.fluidbook.phonegap.$id","phonegapVersion":"1.0.0","secureURL":"http:\/\/","secureURLRedirect":"http:\/\/","seoVersion":false,"seoRobots":false,"seoDescription":"","home":"","multilang":"","plv":false,"plvTimer":5,"plvMode":"first","widget":false,"widgetCover":true,"widgetSize":200,"widgetQuality":85,"widgetStart":1,"widgetEnd":8,"extras":"","v1SWF":"","disableDemo":false,"redirectDemo":"","couleurA":"ffffffff","arrowsColor":"283943","shadeOnArrows":false,"couleurB":"c9000000","subTextColor":"ffffffff","subSelectColor":"ffffffff","subTextSelectColor":"000000","subTextFieldColor":"000000","subFieldColor":"fffeffff","subStrokeWidth":0,"subStrokeColor":"ffffff","subShade":"00000000","subRound":10,"subButtonCustom":false,"subButtonBackground":"cccccc","subButtonColor":"000000","subButtonDecoration":"797979","couleurS":"ffffff","searchFieldColor":"ffffff","searchShadeAlpha":0,"highlightColor":"00ff00","searchFieldWidth":230,"searchIndexNoResultColor":"CC000000","iconSet":"1","colorizeIcons":true,"couleurI":"ffffff","iconShadeColor":"00000000","iconsHMargin":13,"fontKit":"auto","bookShadeColor":"9c000000","shadeAlpha":100,"pageReflection":false,"usePageEdges":true,"displayPageNumber":true,"colorPageNumber":"ffffff","linksColor":"006daa","videoBackgroundColor":"000000","popupVideoOverlay":"00000000","pageEdgeColor":"dddddd","pageEdgeThickness":100,"tooltipBackColor":"CC000000","tooltipTextColor":"ffffff","bookmarkBackgroundColor":"ffadadad","bookmarkStarDisabledColor":"00ffffff","bookmarkStarEnabledColor":"ff7700","creditsColor":"80ffffff","transparentBackground":false,"backgroundColor":"333333","backgroundImage":"bg.jpg","repeat":"0","backgroundHAlign":"4","backgroundVAlign":"7","displayBackgroundDuringLoading":true,"menuHeight":39,"menuColor":"00ffffff","shadeOnMenu":false,"menuImage":"","invertMenuPosition":false,"topBar":"","topBarAlign":"5","afterSearch":"","logo":"logo.png","favicon":"","iosicon":"","androidicon":"","logoLoader":"logo.png","couleurL":"283943","loadingSecColor":"ffffff","loadingBackColor":"283943","loaderPosition":false,"pagesBar":true,"pageBarThumbBack":"c9000000","bookmarkColor":"ffffff","plugins":[],"links":{"0":"","1":"","2":"
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>","3":"","4":"","5":"","6":"","7":"","8":"","9":"","10":"","11":"","12":"","13":"","14":"","15":"","16":"","17":"","18":"","19":"","20":"","21":"","22":"","23":"","24":"","25":"","26":"","27":"","28":"","29":"","30":"","31":"","32":"","33":"","34":"","35":"","36":"","37":"","38":"","39":"","40":"","41":"","42":"","43":"","44":"","45":"","46":"","47":"","48":"","49":"","50":"
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>
    <\/a><\/div>","51":"","52":"
    <\/a><\/div>
    <\/a><\/div>","53":"","aftersearch":""},"clinks":{"0":"","1":"","2":"","3":"","4":"","5":"","6":"","7":"","8":"","9":"","10":"","11":"","12":"","13":"","14":"","15":"","16":"","17":"","18":"","19":"","20":"","21":"","22":"","23":"","24":"","25":"","26":"","27":"","28":"","29":"","30":"","31":"","32":"","33":"","34":"","35":"","36":"","37":"","38":"","39":"","40":"","41":"","42":"","43":"","44":"","45":"","46":"","47":"","48":"","49":"","50":"","51":"","52":"","53":"","aftersearch":""},"iconsDimensions":{"nav-bookmark":[21,20],"nav-friend":[19,20],"nav-help":[14,20],"nav-index":[27,20],"nav-sommaire":[22,20],"next":[40,100],"previous":[40,100],"search":[20,20],"nav-facebook":[20,20],"nav-twitter":[20,20],"help-fingers":[400,200],"help-mouse":[100,200],"nav-home":[23,20],"nav-archives":[28,20],"nav-map":[15,20],"nav-tag":[24,20]},"l10n":{"default":{"0":"","you can't bookmark the frontpage":"Vous ne pouvez pas mettre un marque page sur la couverture","the e-mail(s) of your friend(s)":"Destinataires","next double page":"Double page suivante","hover your mouse to display again this help":"Passer votre souris pour afficher \u00e0 nouveau l'aide","download pdf":"T\u00e9l\u00e9charger en pdf","switch between fullscreen and normal":"Basculer entre le mode plein \u00e9cran et le mode normal","switch on \/ switch off the sound":"Activer \/ D\u00e9sactiver le son","between pages":"De la page","printing will start automatically when pages are downloaded":"L'impression va d\u00e9marrer automatiquement dans quelques instants","marked pages":"Pages marqu\u00e9es","tap twice or spread your fingers to zoom in":"Tapez deux fois ou \u00e9cartez les doigts pour zoomer","share on facebook":"Partager sur Facebook","print":"Imprimer","you don't have any bookmarks":"Vous n'avez aucun marque-page","zoom in and out":"Zoomer et d\u00e9zoomer","next page with the word":"R\u00e9sultat suivant","my cart":"Mon panier","click and drag a corner to switch page":"Cliquez-glissez dans un coin pour changer de page","overview":"Index","click to hide help":"Cliquez pour faire dispara\u00eetre l'aide","your name":"Votre nom","click for more information about the product":"Plus d'infos","back to previous page":"Retour \u00e0 la page pr\u00e9c\u00e9dente","%name% invites you to discover %title%":"%name% vous invite \u00e0 d\u00e9couvrir %title%","you need to enter 3 letters to start searching":"Vous devez taper 3 lettres minimum","chapters":"Sommaire","Please click on the following link to open %title : %link%":"Veuillez cliquer sur le lien suivant pour ouvrir %title%\r%link%","add \/ remove bookmark":"Ajouter \/ supprimer un marque-page","last page":"Derni\u00e8re de couverture","click to open the link":"Cliquez pour vous rendre \u00e0 la page web","basket":"Panier","click once to zoom in, click again to zoom out":"Cliquez une fois pour zoomer, cliquez \u00e0 nouveau pour d\u00e9zoomer","click to open the file":"T\u00e9l\u00e9charger le fichier","download":"T\u00e9l\u00e9charger","spread":"Double page","your e-mail":"Votre e-mail","home":"Retour \u00e0 l'accueil","entire brochure":"Toute la brochure","An update of the publication is available. Do you want to load it ?":"Une mise \u00e0 jour de cette publication est disponible. Souhaitez-vous la charger ?","promotions":"Promotions","use a comma to separate several e-mails":"S\u00e9parer plusieurs e-mails avec une virgule","one page per sheet":"Une page par feuille","send":"Envoyer","download the whole document for offline use":"T\u00e9l\u00e9charger le document pour une consultation hors-ligne","share on twitter":"Partager sur Twitter","right page":"Page de droite","preparing print":"Impression en cours","video":"vid\u00e9o","press the link below to open Fluidbook:":"Cliquez sur le lien ci-apr\u00e8s pour ouvrir fluidbook:","archives":"Archives","Send details by email":"Envoyer les coordonn\u00e9es par e-mail","click on a bookmark to go to page":"Cliquez sur un marque-page pour vous rendre \u00e0 cette page","normal view":"Vue normale","search":"Rechercher","zoom in":"Zoomer","next to me":"A proximit\u00e9","tell a friend":"Envoyer \u00e0 un(e) ami(e)","the message":"Votre message","%total% hits on %pages% pages, %this% hits on this page":"%total% r\u00e9sultat(s) sur %pages% page(s), %this% r\u00e9sultat(s) sur cette page","multimedia":"Multim\u00e9dia","hit(s)":"r\u00e9sultat(s)","roll the mouse wheel to zoom in\/out":"Zoomer\/d\u00e9zoomer avec la molette de souris","help":"Aide","no result found":"Aucun r\u00e9sultat","click to send an e-mail":"Envoyer un email","find a distributor":"Trouver un distributeur","back":"Retour","no result on this page":"Pas de r\u00e9sultat sur cette page","go to the page":"Voir la page","zoom out":"D\u00e9zoomer","previous page":"R\u00e9sultat pr\u00e9c\u00e9dent","two pages per sheet":"Deux pages par feuille","fluidbook":"Fluidbook","drag handle to switch page":"Glissez pour changer de page","click to magnify":"Cliquez pour agrandir","previous double page":"Double page pr\u00e9c\u00e9dente","go to page":"Voir la page","Total":"Total","add to cart":"Ajouter au panier","switch between book and overview":"Basculer entre le livre et l'index","click to play the video":"Cliquez pour voir la vid\u00e9o","download for offline use":"T\u00e9l\u00e9charger la version hors-ligne","tel:":"T\u00e9l :","close":"Fermer","left page":"Page de gauche","search results for":"R\u00e9sultats de la recherche","the item has been added to your cart":"L'article a bien \u00e9t\u00e9 ajout\u00e9 au panier","switch between 2d and 3d mode":"Activer \/ D\u00e9sactiver le mode 3D","frontpage":"Couverture"},"ar":{"printing will start automatically when pages are downloaded":"","the item has been added to your cart":"","my cart":"","Total":"","chapters":"\u0627\u0644\u0641\u0635\u0648\u0644","no result found":"\u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u0649 \u0623\u064a \u0646\u062a\u064a\u062c\u0629","hit(s)":"\u0646\u062a\u0627\u0626\u062c","marked pages":"","entire brochure":"\u0643\u0644 \u0627\u0644\u0635\u0641\u062d\u0627\u062a","you don't have any bookmarks":"","left page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u064a\u0633\u0631\u0649","right page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u064a\u0645\u0646\u0649","spread":"\u0635\u0641\u062d\u0629 \u0645\u0632\u062f\u0648\u062c\u0629","download pdf":"PDF\u062a\u062d\u0645\u064a\u0644","download the whole document for offline use":"","download for offline use":"","print":"\u0637\u0628\u0627\u0639\u0629","drag handle to switch page":"","click and drag a corner to switch page":"\u0627\u0646\u0642\u0631 \u0648\u0627\u0633\u062d\u0628 \u0627\u0644\u0631\u0643\u0646 \u0644\u062a\u063a\u064a\u064a\u0631 \u0627\u0644\u0635\u0641\u062d\u0629","click once to zoom in, click again to zoom out":"\u0642\u0631 \u0645\u0631\u0629 \u0648\u0627\u062d\u062f\u0629 \u0644\u0644\u062a\u0643\u0628\u064a\u0631\u060c \u062b\u0645 \u0627\u0646\u0642\u0631 \u0645\u0631\u0629 \u0623\u062e\u0631\u0649 \u0644\u0644\u062a\u0635\u063a\u064a\u0631","roll the mouse wheel to zoom in\/out":"\u062f\u0648\u0651\u0631 \u0639\u062c\u0644\u0629 \u0627\u0644\u0645\u0627\u0648\u0633 \u0644\u0644\u062a\u0643\u0628\u064a\u0631\/\u0627\u0644\u062a\u0635\u063a\u064a\u0631","previous double page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0645\u0632\u062f\u0648\u062c\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629","frontpage":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0623\u0648\u0644\u0649","next double page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0645\u0632\u062f\u0648\u062c\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629","last page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0623\u062e\u064a\u0631\u0629","add to cart":"","click to send an e-mail":"\u0627\u0646\u0642\u0631 \u0644\u0625\u0631\u0633\u0627\u0644 \u0628\u0631\u064a\u062f \u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","click to open the file":"","click to open the link":"\u0627\u0646\u0642\u0631 \u0644\u0641\u062a\u062d \u0627\u0644\u0648\u0635\u0644\u0629","go to the page":"\u0627\u0630\u0647\u0628 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062d\u0629","click to play the video":"","click for more information about the product":"\u0625\u0636\u063a\u0637 \u0647\u0646\u0627 \u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a \u062d\u0648\u0644 \u0627\u0644\u0645\u0646\u062a\u062c","click to magnify":"","switch between book and overview":"\u0627\u0644\u062a\u0628\u062f\u064a\u0644 \u0628\u064a\u0646 \u0627\u0644\u0643\u062a\u0627\u0628 \u0648\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","tell a friend":"\u0623\u062e\u0628\u0631 \u0635\u062f\u064a\u0642","add \/ remove bookmark":"\u0625\u0636\u0627\u0641\u0629 \/\u0625\u0632\u0627\u0644\u0629 \u0639\u0644\u0627\u0645\u0629 \u0645\u0631\u062c\u0639\u064a\u0629","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","help":"\u0645\u0633\u0627\u0639\u062f\u0629","search":"\u0628\u062d\u062b","you need to enter 3 letters to start searching":"\u062a\u062d\u062a\u0627\u062c \u0625\u0644\u0649 \u0625\u062f\u062e\u0627\u0644 3 \u0623\u062d\u0631\u0641 \u0644\u0628\u062f\u0621 \u0627\u0644\u0628\u062d\u062b","previous page":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0633\u0627\u0628\u0642\u0629","next page with the word":"\u0627\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0645\u0639 \u0627\u0644\u0643\u0644\u0645\u0629","%total% hits on %pages% pages, %this% hits on this page":"\u0646\u062a\u0627\u0626\u062c \u0639\u0644\u0649 \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629%this% \u060c\u0627\u0644\u0635\u0641\u062d\u0627\u062a %pages% \u0646\u062a\u0627\u0626\u062c \u0639\u0644\u0649%total%","your name":"\u0627\u0633\u0645\u0643","your e-mail":"\u0631\u064a\u062f\u0643 \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a","the e-mail(s) of your friend(s)":"\u0627\u0644\u0628\u0631\u064a\u062f \u0627\u0644\u0625\u0644\u0643\u062a\u0631\u0648\u0646\u064a \u0644\u0635\u062f\u064a\u0642\u0643","use a comma to separate several e-mails":"","the message":"\u0627\u0644\u0631\u0633\u0627\u0644\u0629","send":"\u0627\u0631\u0633\u0644","overview":"\ufeff\u0646\u0638\u0631\u0629 \u0639\u0627\u0645\u0629","normal view":"\u0645\u0642\u0627\u0633 \u0639\u0627\u062f\u064a","zoom in":"\u062a\u0643\u0628\u064a\u0631","zoom out":"\u062a\u0635\u063a\u064a\u0631","zoom in and out":"\u062a\u0643\u0628\u064a\u0631 \u0648\u062a\u0635\u063a\u064a\u0631","click on a bookmark to go to page":"\u0627\u0646\u0642\u0631 \u0639\u0644\u0649 \u0627\u0644\u0639\u0644\u0627\u0645\u0629 \u0627\u0644\u0645\u0631\u062c\u0639\u064a\u0629 \u0644\u0644\u0630\u0647\u0627\u0628 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062d\u0629","preparing print":"\u0625\u0639\u062f\u0627\u062f \u0627\u0644\u0637\u0628\u0627\u0639\u0629","between pages":"\u0628\u064a\u0646 \u0627\u0644\u0635\u0641\u062d\u0627\u062a","one page per sheet":"\u0635\u0641\u062d\u0629 \u0648\u0627\u062d\u062f\u0629 \u0644\u0643\u0644 \u0648\u0631\u0642\u0629","two pages per sheet":"\u0635\u0641\u062d\u062a\u064a\u0646 \u0644\u0643\u0644 \u0648\u0631\u0642\u0629","print-":"\u0637\u0628\u0627\u0639\u0629","close":"\u0625\u063a\u0644\u0627\u0642","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"\u0627\u0636\u063a\u0637 \u0639\u0644\u0649 \u0627\u0644\u0648\u0635\u0644\u0629 \u0627\u0644\u062a\u0627\u0644\u064a\u0629 \u0644\u0641\u062a\u062d \u0641\u0644\u0648\u064a\u062f \u0628\u0648\u0643:","go to page":"\u0627\u0630\u0647\u0628 \u0625\u0644\u0649 \u0627\u0644\u0635\u0641\u062d\u0629","you can't bookmark the frontpage":"\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062d\u0641\u0638 \u0639\u0644\u0627\u0645\u0629 \u0645\u0631\u062c\u0639\u064a\u0629 \u0644\u0644\u0635\u0641\u062d\u0629 \u0627\u0644\u0627\u0648\u0644\u0649","video":"\u0641\u064a\u062f\u064a\u0648","multimedia":"\u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0627\u0644\u0645\u062a\u0639\u062f\u062f\u0629","no result on this page":"\u0644\u0627 \u0646\u062a\u0627\u0626\u062c \u0641\u064a \u0647\u0630\u0647 \u0627\u0644\u0635\u0641\u062d\u0629","":""},"cs":{"printing will start automatically when pages are downloaded":"Tisk bude zah\u00e1jen automaticky po sta\u017een\u00ed str\u00e1nek","normal view":"Norm\u00e1ln\u00ed zobrazen\u00ed","zoom in":"P\u0159ibl\u00ed\u017eit","zoom out":"Odd\u00e1lit","print":"Tisk","tell a friend":"Doporu\u010d zn\u00e1m\u00e9mu","search":"Hledat","add \/ remove bookmark":"P\u0159idat \/ odebrat z\u00e1lo\u017eku","download pdf":"St\u00e1hnout pdf","help":"N\u00e1pov\u011bda","switch between book and overview":"P\u0159epnout mezi dvoustr\u00e1nkou a p\u0159ehledem","zoom in and out":"P\u0159ibl\u00ed\u017eit a odd\u00e1lit","previous double page":"P\u0159edchoz\u00ed dvoustr\u00e1nka","frontpage":"Tituln\u00ed str\u00e1nka","next double page":"Dal\u0161\u00ed dvoustr\u00e1nka","last page":"Posledn\u00ed str\u00e1nka","click once to zoom in, click again to zoom out":"Klikn\u011bte jednou pro zv\u011bt\u0161en\u00ed, klikn\u011bte op\u011bt na odd\u00e1len\u00ed","roll the mouse wheel to zoom in\/out":"Ot\u00e1\u010den\u00edm kole\u010dka my\u0161i p\u0159ibl\u00ed\u017eit\/odd\u00e1lit","click and drag a corner to switch page":"Kliknut\u00edm a t\u00e1hnut\u00edm za roh p\u0159ej\u00edt na str\u00e1nku","click on a bookmark to go to page":"Kliknut\u00edm na z\u00e1lo\u017eku p\u0159ej\u00edt na str\u00e1nku","preparing print":"P\u0159\u00edprava tisku","right page":"Prav\u00e1 str\u00e1nka","left page":"Lev\u00e1 str\u00e1nka","spread":"Na dv\u011b str\u00e1nky","entire brochure":"Kompletn\u00ed bro\u017eura","between pages":"Mezi str\u00e1nkami","one page per sheet":"Jedna str\u00e1nka na list pap\u00edru","two pages per sheet":"Dvoustr\u00e1nka na list pap\u00edru","close":"Zav\u0159\u00edt","your name":"Va\u0161e jm\u00e9no","the message":"Va\u0161e zpr\u00e1va","the e-mail(s) of your friend(s)":"Email Va\u0161eho zn\u00e1m\u00e9ho","send":"Poslat","no result found":"\u017d\u00e1dn\u00fd v\u00fdsledek","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Kliknut\u00edm na n\u00ed\u017ee uveden\u00fd odkaz otev\u0159ete Fluidbook:","next page with the word":"Dal\u0161\u00ed v\u00fdsledek","previous page":"P\u0159edchoz\u00ed v\u00fdsledek","%total% hits on %pages% pages, %this% hits on this page":"%total% v\u00fdsledek (-y\/-\u016f) na %pages% str\u00e1nce (-\u00e1ch), %this% Tento v\u00fdsledek (-\u016f) na t\u00e9to str\u00e1nce","chapters":"P\u0159ehled","marked pages":"","you need to enter 3 letters to start searching":"Zadejte 3 p\u00edsmena k aktivaci vyhled\u00e1n\u00ed","hit(s)":"V\u00fdsledek (-y\/-\u016f) ","go to page":"P\u0159ej\u00edt na str\u00e1nku","you can't bookmark the frontpage":"Nelze zaz\u00e1lo\u017ekovat obal","click for more information about the product":"V\u00edce informac\u00ed","click to open the link":"Kliknut\u00edm otev\u0159ete odkaz","click to send an e-mail":"Odeslat e-mail","video":"video","go to the page":"P\u0159ej\u00edt na str\u00e1nku","multimedia":"Multim\u00e9dia","no result on this page":"Na str\u00e1nce nic nenalezeno","your e-mail":"V\u00e1\u0161 e-mail","use a comma to separate several e-mails":"Jednotliv\u00e9 e-mailov\u00e9 adresy odd\u011blte \u010d\u00e1rkou","0":"","click to magnify":"Kliknut\u00edm zv\u011bt\u0161\u00edte zobrazen\u00ed","the item has been added to your cart":"Polo\u017eka byla p\u0159id\u00e1na do va\u0161eho ko\u0161\u00edku","my cart":"M\u016fj ko\u0161\u00edk","Total":"Celkem","back":"zp\u00e1tky","you don't have any bookmarks":"Nem\u00e1te \u017e\u00e1dn\u00e9 z\u00e1lo\u017eky","download the whole document for offline use":"St\u00e1hn\u011bte cel\u00fd dokument pro \u00fa\u010dely pou\u017eit\u00ed offline","download for offline use":"St\u00e1hnout pro \u00fa\u010dely pou\u017eit\u00ed offline","drag handle to switch page":"Ta\u017een\u00edm za manipul\u00e1tor lze p\u0159ep\u00ednat mezi str\u00e1nkami","add to cart":"P\u0159idat do ko\u0161\u00edku","click to open the file":"Kliknut\u00edm otev\u0159ete soubor","click to play the video":"Kliknut\u00edm p\u0159ehrajete video","back to previous page":"Zp\u011bt na p\u0159edchoz\u00ed str\u00e1nku","download":"St\u00e1hnout","archives":"Archivy","basket":"ko\u0161\u00edk","switch between fullscreen and normal":"P\u0159ep\u00edn\u00e1n\u00ed mezi norm\u00e1ln\u00edm re\u017eimem a re\u017eimem cel\u00e9 obrazovky","switch on \/ switch off the sound":"Zapnut\u00ed \/ vypnut\u00ed zvuku","switch between 2d and 3d mode":"P\u0159ep\u00edn\u00e1n\u00ed mezi re\u017eimem 2d a 3d","%name% invites you to discover %title%":"%name% by v\u00e1m r\u00e1d uk\u00e1zal %title%\n","Please click on the following link to open %title : %link%":"Klikn\u011bte na n\u00e1sleduj\u00edc\u00ed odkaz a otev\u0159ete %title%\n%link%","overview":"P\u0159ehled","search results for":"V\u00fdsledky hled\u00e1n\u00ed","tap twice or spread your fingers to zoom in":"Klepn\u011bte dvakr\u00e1t nebo rozt\u00e1hnout prsty pro zv\u011bt\u0161en\u00ed","share on facebook":"Facebook","share on twitter":"Twitter"},"da":{"printing will start automatically when pages are downloaded":"Udskrivning vil starte automatisk n\u00e5r sider er hentet","normal view":"Normal st\u00f8rrelse","zoom in":"Zoom ind","zoom out":"Zoom ud","print":"Udskriv","tell a friend":"Send til en ven","search":"S\u00f8g","add \/ remove bookmark":"Tilf\u00f8j\/fjern bogm\u00e6rke","download pdf":"Download pdf","help":"Hj\u00e6lp","switch between book and overview":"Skift mellem bog og oversigt","zoom in and out":"Zoom ind og ud","previous double page":"Forrige dobbeltside","frontpage":"Forside","next double page":"N\u00e6ste dobbeltside","last page":"Sidste side","click once to zoom in, click again to zoom out":"Klik \u00e9n gang for at zoome ind; klik igen for at zoome ud","roll the mouse wheel to zoom in\/out":"Scroll p\u00e5 musen for at zoome ind\/ud","click and drag a corner to switch page":"Klik og tr\u00e6k i et hj\u00f8rne for at skifte side","click on a bookmark to go to page":"Klik p\u00e5 et bogm\u00e6rke for at g\u00e5 til side","preparing print":"Forbered udskrivning","right page":"H\u00f8jre side","left page":"Venstre side","spread":"Fold ud","entire brochure":"Hele brochuren","between pages":"Mellem sider","one page per sheet":"En side pr ark","two pages per sheet":"To sider pr ark","close":"Luk","your name":"Dit navn","the message":"Meddelelsen","the e-mail(s) of your friend(s)":"Din vens e-mail-adresse\/dine venners e-mail-adresser","send":"Send","no result found":"Der er ikke fundet noget resultat","fluidbook":"Fluidbook ","press the link below to open Fluidbook:":"Klik p\u00e5 linket nedenfor for at \u00e5bne Fluidbook:","next page with the word":"N\u00e6ste side med ordet","previous page":"Forrige side","%total% hits on %pages% pages, %this% hits on this page":"%total% antal p\u00e5 %sider%sider, %denne% antal p\u00e5 denne side","chapters":"Afsnit","marked pages":"Markedssider","you need to enter 3 letters to start searching":"Du skal angive 3 bogstaver for at kunne begynde s\u00f8gning","hit(s)":"antal","go to page":"G\u00e5 til side","you can't bookmark the frontpage":"Du kan ikke bookmarke forsiden","click for more information about the product":"Klik for at f\u00e5 mere information om produktet","click to open the link":"Klik for at \u00e5bne linket","click to send an e-mail":"Klik for at sende en e-mail","video":"video","go to the page":"G\u00e5 til siden","multimedia":"multimedia","no result on this page":"Intet resultat p\u00e5 denne side","your e-mail":"Din e-mail-adresse","use a comma to separate several e-mails":"Brug et komma til at adskille flere e-mail-adresser","0":"","click to magnify":"Klik for at forst\u00f8rre","the item has been added to your cart":"Varen er blevet f\u00f8jet til din indk\u00f8bskurv","my cart":"Min indk\u00f8bskurv","Total":"I alt","back":"tilbage","you don't have any bookmarks":"Du har ingen bogm\u00e6rker","download the whole document for offline use":"Hent hele dokumentet til offline-brug","download for offline use":"Hent til offline-brug","drag handle to switch page":"Tr\u00e6k h\u00e5ndtag for at skifte side","add to cart":"Tilf\u00f8j til indk\u00f8bskurv","click to open the file":"Klik for at \u00e5bne filen","click to play the video":"Klik for at afspille videoen","back to previous page":"","download":"Hent","archives":"Arkiver","basket":"Din indk\u00f8bskurv","switch between fullscreen and normal":"Skift mellem fuld sk\u00e6rm og normal","switch on \/ switch off the sound":"T\u00e6nd\/Sluk for lyden","switch between 2d and 3d mode":"Skift mellem 2d og 3d tilstand","%name% invites you to discover %title%":"%name% synes, at du skal se p\u00e5 %title%\n","Please click on the following link to open %title : %link%":"Klik p\u00e5 linket nedenfor for at \u00e5bne %title%\n%link%","overview":"Oversigt","search results for":"s\u00f8geresultaterne for","tap twice or spread your fingers to zoom in":"Tryk to gange eller sprede dine fingre til at zoome ind","share on facebook":"Del p\u00e5 Facebook","share on twitter":"Del p\u00e5 Twitter"},"de":{"click to hide help":"","hover your mouse to display again this help":"","you don't have any bookmarks":"Sie haben kein Lesezeichen gesetzt","printing will start automatically when pages are downloaded":"Der Druckvorgang wird in einigen Sekunden automatisch gestartet","normal view":"Seitenansicht","zoom in":"Vergr\u00f6ssern","zoom out":"Verkleinern","print":"Drucken","tell a friend":"An einen Freund senden ","search":"Suchen","add \/ remove bookmark":"Lesezeichen setzen\/l\u00f6schen","download pdf":"Als Pdf downloaden","help":"Hilfe","switch between book and overview":"Zwischen Seitenansicht und Prospekt\u00fcbersicht wechseln","zoom in and out":"Vergr\u00f6ssern und verkleinern","previous double page":"Vorherige Doppelseite","frontpage":"Titelseite","next double page":"Folgende Doppelseite","last page":"Letzte Titelseite","click once to zoom in, click again to zoom out":"Einmal klicken zum Vergr\u00f6ssern, erneut klicken zum Verkleinern","roll the mouse wheel to zoom in\/out":"Vergr\u00f6ssern\/Verkleinern mit dem Mausrad","click and drag a corner to switch page":"In die Ecke klicken, um die Seite umzubl\u00e4ttern","click on a bookmark to go to page":"Ein Lesezeichen anklicken, um zu dieser Seite zu gelangen","preparing print":"Druckauftrag l\u00e4uft","right page":"Rechte Seite","left page":"Linke Seite","spread":"Doppelseite","entire brochure":"Gesamte Brosch\u00fcre","between pages":"Von Seite","one page per sheet":"Ein Blatt pro Seite","two pages per sheet":"Zwei Seiten pro Blatt","close":"Schliessen","your name":"Ihr Name","the message":"Ihre Mitteilung","the e-mail(s) of your friend(s)":"E-Mail Ihres Freundes","send":"Senden","no result found":"Kein Ergebnis","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Klicken Sie den folgenden Link an, um das Fluidbook zu \u00f6ffnen","next page with the word":"N\u00e4chstes Ergebnis","previous page":"Vorheriges Ergebnis","%total% hits on %pages% pages, %this% hits on this page":"%total% Ergebins(se) auf %pages% Seite(n) %this% Ergbnis(se) auf dieser Seite","chapters":"Inhaltsverzeichnis","marked pages":"Markierten Seiten","you need to enter 3 letters to start searching":"Sie m\u00fcssen mindestens 3 Buchstaben tippen","hit(s)":"Ergebnis(se)","go to page":"Siehe Seite","you can't bookmark the frontpage":"Auf den Aussenseiten sind keine Lesezeichen m\u00f6glich","click for more information about the product":"Mehr Infos","click to open the link":"Klicken, um zur Website zu gelangen","click to send an e-mail":"E-Mail versenden","video":"video","go to the page":"Siehe Seite","multimedia":"Multimedia","no result on this page":"Kein Ergebnis auf dieser Seite","your e-mail":"Ihr E-Mail","use a comma to separate several e-mails":"Mehrere E-Mail-Adressen mit einem Komma trennen","":"","click to magnify":"Klicken zum Vergr\u00f6\u00dfern","the item has been added to your cart":"The item has beend added to your cart","my cart":"Mein Einkaufswagen","Total":"Gesamt","share bookmarks":"Senden markierten Seiten","%title%":"%title%","Please see the attached files from \"%title%\".":"Bitte beachten Sie die angeh\u00e4ngten Dateien von \"% title%\".","bookmarks":"Lesezeichen ","back":"Zur\u00fcckkehren","download the whole document for offline use":"Download des Dokuments f\u00fcr eine Ansicht im offline-Modus","download for offline use":"Download der offline-Version","drag handle to switch page":"Zum Umbl\u00e4ttern die Maus mit gedr\u00fcckter Taste \u00fcber die Seite ziehen","add to cart":"In den Einkaufswagen legen","click to open the file":"Datei downloaden","click to play the video":"Video abspielen","back to previous page":"Zur\u00fcck zur vorherigen Seite","download":"Download","archives":"Archiv","basket":"Warenkorb","switch between fullscreen and normal":"Zwischen Vollbildmodus und normaler Ansicht wechseln","switch on \/ switch off the sound":"Ton einschalten \/ ausschalten","switch between 2d and 3d mode":"3D-Ansicht einschalten \/ ausschalten","share by email":"Aktien per E-Mail","share on twitter":"Aktien mit twitter","share on facebook":"Aktien mit facebook","share":"","%name% invites you to discover %title%":"%name% m\u00f6chte Sie auf %title% aufmerksam machen\n","Please click on the following link to open %title : %link%":"Klicken Sie auf den Link weiter unten, um %title% zu \u00f6ffnen \n%link%","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"Tippen Sie zweimal oder verbreiten Sie Ihre Finger, um zu vergr\u00f6\u00dfern","overview":"Prospekt-\u00fcbersicht","search results for":"Suchergebnisse f\u00fcr","home":"Home","find a distributor":"Finden Sie einen H\u00e4ndler","tel:":"Tel:","Send details by email":"Senden Sie Informationen per E-Mail","promotions":"Promotionen","next to me":"Neben mir"},"el":{"printing will start automatically when pages are downloaded":"","chapters":"\u039a\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1","no result found":"\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03bc\u03b1","hit(s)":"\u03c7\u03c4\u03cd\u03c0\u03b7\u03bc\u03b1(\u03c7\u03c4\u03c5\u03c0\u03ae\u03bc\u03b1\u03c4\u03b1)","marked pages":"\u03a3\u03b7\u03bc\u03b5\u03b9\u03c9\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2","entire brochure":"\u038c\u03bb\u03bf \u03c4\u03bf \u03c6\u03c5\u03bb\u03bb\u03ac\u03b4\u03b9\u03bf","you don't have any bookmarks":"","left page":"\u0391\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ae \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","right page":"\u0394\u03b5\u03be\u03b9\u03ac \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","spread":"\u0394\u03b9\u03ac\u03ba\u03b5\u03bd\u03bf","download pdf":"\u039a\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 pdf","download the whole document for offline use":"","download for offline use":"","print":"\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7","drag handle to switch page":"","click and drag a corner to switch page":"\u039a\u03bb\u03b9\u03ba\u03ac\u03c1\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03c3\u03cd\u03c1\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b3\u03c9\u03bd\u03af\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03c4\u03b5 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","click once to zoom in, click again to zoom out":"\u039c\u03b5 \u03b5\u03bd\u03b1 \u03ba\u03bb\u03b9\u03ba \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 zoom in \u03ba\u03b1\u03b9 \u03bc\u03b5 \u03b4\u03b5\u03cd\u03c4\u03b5\u03c1\u03bf \u03ba\u03bb\u03b9\u03ba zoom out","roll the mouse wheel to zoom in\/out":"\u039a\u03c5\u03bb\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03ba\u03bf\u03c5\u03bc\u03c0\u03af \u03c3\u03c4\u03bf \u03c0\u03bf\u03bd\u03c4\u03af\u03ba\u03b9 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 zoom in\/out","previous double page":"\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03b4\u03b9\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf","frontpage":"\u03a0\u03c1\u03ce\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","next double page":"\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b4\u03b9\u03c3\u03ad\u03bb\u03b9\u03b4\u03bf","last page":"\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","click to send an e-mail":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c3\u03c4\u03b5\u03af\u03bb\u03b5\u03c4\u03b5 e-mail","click to open the file":"","click to open the link":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf","go to the page":"\u039c\u03b5\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","click to play the video":"","click for more information about the product":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b3\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c0\u03c1\u03bf\u03ca\u03cc\u03bd","click to magnify":"\u039a\u03ac\u03bd\u03c4\u03b5 \u03ba\u03bb\u03b9\u03ba \u03b3\u03b9\u03b1 \u03bc\u03b5\u03b3\u03ad\u03b8\u03c5\u03bd\u03c3\u03b7","switch between book and overview":"\u0391\u03bb\u03bb\u03ac\u03be\u03c4\u03b5 \u03bc\u03b5\u03c4\u03b1\u03be\u03cd \u03b2\u03b9\u03b2\u03bb\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7\u03c2","tell a friend":"\u03a0\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c6\u03af\u03bb\u03bf","add \/ remove bookmark":"\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5\/\u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03c4\u03b5 \u03c3\u03b5\u03bb\u03b9\u03b4\u03bf\u03b4\u03b5\u03af\u03ba\u03c4\u03b7","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","help":"\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1","search":"\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7","you need to enter 3 letters to start searching":"\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 3 \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03c3\u03b5\u03b9 \u03b7 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7","previous page":"\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","next page with the word":"\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03bc\u03b5 \u03c4\u03b7 \u03bb\u03ad\u03be\u03b7","%total% hits on %pages% pages, %this% hits on this page":"%total% \u03c7\u03c1\u03c5\u03c0\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c3\u03b5 %pages% \u03c3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2, %this% \u03c7\u03c4\u03c5\u03c0\u03ae\u03bc\u03b1\u03c4\u03b1 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","your name":"\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c3\u03b1\u03c2","your e-mail":"\u03a4\u03bf e-mail \u03c3\u03b1\u03c2","the e-mail(s) of your friend(s)":"\u03a4\u03b1 e-mail \u03c4\u03bf\u03c5 \u03c6\u03af\u03bb\u03bf\u03c5\/\u03c6\u03af\u03bb\u03c9\u03bd \u03c3\u03b1\u03c2","use a comma to separate several e-mails":"\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c3\u03c4\u03b5 \u03ba\u03cc\u03bc\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b5\u03c7\u03c9\u03c1\u03af\u03c3\u03b5\u03c4\u03b5 \u03c0\u03bf\u03bb\u03bb\u03ac e-mails","the message":"\u03a4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1","send":"\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae","overview":"\u03a0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7","normal view":"\u039a\u03b1\u03bd\u03bf\u03bd\u03b9\u03ba\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1","zoom in":"Zoom in","zoom out":"Zoom out","zoom in and out":"Zoom in \u03ba\u03b1\u03b9 out","click on a bookmark to go to page":"\u039a\u03bb\u03b9\u03ba\u03ac\u03c1\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c3\u03b5\u03bb\u03b9\u03b4\u03bf\u03b4\u03b5\u03af\u03ba\u03c4\u03b7 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c0\u03ac\u03c4\u03b5 \u03c3\u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","preparing print":"\u03a0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7\u03c2","between pages":"\u039c\u03b5\u03c4\u03b1\u03be\u03cd \u03c4\u03c9\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03c9\u03bd","one page per sheet":"\u039c\u03b9\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03b1\u03bd\u03ac \u03c6\u03cd\u03bb\u03bb\u03bf","two pages per sheet":"\u0394\u03c5\u03bf \u03c3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 \u03b1\u03bd\u03ac \u03c6\u03cd\u03bb\u03bb\u03bf","print-":"\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7","close":"\u039a\u03bb\u03b5\u03af\u03c3\u03c4\u03b5","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"\u03a0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf\u03bd \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03bf Fluidbook:","go to page":"\u039c\u03b5\u03c4\u03ac\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","you can't bookmark the frontpage":"\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03c4\u03b5 \u03bc\u03b5 \u03c3\u03b5\u03bb\u03b9\u03b4\u03bf\u03b4\u03b5\u03af\u03ba\u03c4\u03b7 \u03c4\u03b7\u03bd \u03c0\u03c1\u03ce\u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","video":"\u03b2\u03af\u03bd\u03c4\u03b5\u03bf","multimedia":"\u03a0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1","no result on this page":"\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1","":""},"en":{"click to hide help":"Click to hide help","hover your mouse to display again this help":"Hover your mouse to display again this help","you don't have any bookmarks":"You don't have any bookmarks","printing will start automatically when pages are downloaded":"Printing will start automatically when pages are downloaded","normal view":"Normal view","zoom in":"Zoom in","zoom out":"Zoom out","print":"Print","tell a friend":"Tell a friend","search":"Search","add \/ remove bookmark":"Add \/ remove bookmark","download pdf":"Download pdf","help":"Help","switch between book and overview":"Switch between book and overview","zoom in and out":"Zoom in and out","previous double page":"Previous double page","frontpage":"Frontpage","next double page":"Next double page","last page":"Last page","click once to zoom in, click again to zoom out":"Click once to zoom in, click again to zoom out","roll the mouse wheel to zoom in\/out":"Roll the mouse wheel to zoom in\/out","click and drag a corner to switch page":"Click and drag a corner to switch page","click on a bookmark to go to page":"Click on a bookmark to go to page","preparing print":"Preparing print","right page":"Right page","left page":"Left page","spread":"Spread","entire brochure":"Entire brochure","between pages":"Between pages","one page per sheet":"One page per sheet","two pages per sheet":"Two pages per sheet","close":"Close","your name":"Your name","the message":"The message","the e-mail(s) of your friend(s)":"The e-mail(s) of your friend(s)","send":"Send","no result found":"No result found","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Press the link below to open Fluidbook:","next page with the word":"Next page with the word","previous page":"Previous page","%total% hits on %pages% pages, %this% hits on this page":"%total% hits on %pages% pages, %this% hits on this page","chapters":"Contents","marked pages":"Marked pages","you need to enter 3 letters to start searching":"You need to enter 3 letters to start searching","hit(s)":"hit(s)","go to page":"Go to page","you can't bookmark the frontpage":"You can't bookmark the frontpage","click for more information about the product":"Click for more information about the product","click to open the link":"Click to open the link","click to send an e-mail":"Click to send an e-mail","video":"video","go to the page":"Go to the page","multimedia":"Multimedia","no result on this page":"No result on this page","your e-mail":"Your e-mail","use a comma to separate several e-mails":"Use a comma to separate several e-mails","":"","click to magnify":"Click to magnify","the item has been added to your cart":"The item has been added to your cart","my cart":"My cart","Total":"Total","share bookmarks":"Send pages marked","%title%":"%title%","Please see the attached files from \"%title%\".":"Please find attached the extracted files from \"%title%\".","bookmarks":"Bookmarks","back":"Back","download the whole document for offline use":"Downlad the whole document for offline use","download for offline use":"Download for offline use","drag handle to switch page":"Drag handle to switch page","add to cart":"Add to cart","click to open the file":"Click to open the file","click to play the video":"Click to play the video","back to previous page":"Back to previous page","download":"Download","archives":"Archives","basket":"Your cart","switch between fullscreen and normal":"Switch between fullscreen and normal","switch on \/ switch off the sound":"Switch on \/ switch off the sound","switch between 2d and 3d mode":"Switch between 2d and 3d mode","share by email":"Share by email","share on twitter":"Share on Twitter","share on facebook":"Share on Facebook","share":"Share","%name% invites you to discover %title%":"%name% invites you to discover %title%","Please click on the following link to open %title : %link%":"Please click on the following link to open %title%\n%link%","An update of the publication is available. Do you want to load it ?":"An update of the publication is available. Do you want to load it ?","tap twice or spread your fingers to zoom in":"Tap twice or spread your fingers to zoom in","overview":"Overview","search results for":"Search results for","home":"Back to home","find a distributor":"Find a distributor","tel:":"Tel:","Send details by email":"Send details by email","promotions":"Promotions","next to me":"Next to me"},"es":{"click to hide help":"","hover your mouse to display again this help":"","you don't have any bookmarks":"No tiene ning\u00fan marcador","printing will start automatically when pages are downloaded":"En beve se inicia La impresi\u00f3n automaticamente","normal view":"Vista normal","zoom in":"Ampliar","zoom out":"Reducir","print":"Imprimir ","tell a friend":"Enviar a un amigo ","search":"Buscar","add \/ remove bookmark":"A\u00f1adir\/suprimir un marcador de p\u00e1ginas","download pdf":"Descargar en formato pdf","help":"Ayuda","switch between book and overview":"Pasar del libro al \u00edndice","zoom in and out":"Ampliar y reducir","previous double page":"Doble p\u00e1gina anterior","frontpage":"Portada ","next double page":"P\u00e1gina doble siguiente","last page":"\u00daltima portada","click once to zoom in, click again to zoom out":"Haga clic una vez para ampliar, haga clic de nuevo para reducir","roll the mouse wheel to zoom in\/out":"Ampliar o reducir con la rueda del r\u00e1ton","click and drag a corner to switch page":"Haga clic-deslice hacia una esquina para cambiar de p\u00e1gina","click on a bookmark to go to page":"Haga clic sobre un marcador de p\u00e1ginas para llegar a esta p\u00e1gina","preparing print":"Impresi\u00f3n en curso","right page":"P\u00e1gina de la derecha","left page":"P\u00e1gina de la izquierda","spread":"Doble p\u00e1gina","entire brochure":"Cat\u00e1logo completo","between pages":"De la p\u00e1gina","one page per sheet":"Una pagin\u00e1 por hoja","two pages per sheet":"Dos p\u00e1ginas por hoja","close":"Cerrar","your name":"Su nombre ","the message":"Su mensaje","the e-mail(s) of your friend(s)":"El e-mail de su amigo","send":"Enviar","no result found":"No se encontr\u00f3 ning\u00fan resultado","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Cliquee sobre este enlace para abrir el fluidbook :","next page with the word":"Resultado siguiente","previous page":"Resultado anterior","%total% hits on %pages% pages, %this% hits on this page":"%total% resultado(s) sobre %pages% p\u00e1gina(s), %this% sobre esta pagin\u00e1 ","chapters":"Sumario","marked pages":"Marcador","you need to enter 3 letters to start searching":"Debe teclear o introducir 3 letras como m\u00ednimo","hit(s)":"Resultados","go to page":"Ver la pagin\u00e1","you can't bookmark the frontpage":"No puede introducir un marcador de pagin\u00e1 en la portada","click for more information about the product":"Mas informaci\u00f3n","click to open the link":"Haz clic para ir a la p\u00e1gina web","click to send an e-mail":"Enviar un e-mail","video":"Video","go to the page":"Ver la p\u00e1gina","multimedia":"Multimedia","no result on this page":"Sin resultado en esta p\u00e1gina","your e-mail":"Su e-mail","use a comma to separate several e-mails":"Separar varios e-mails con coma","":"","click to magnify":"Pulsa para aumentar","the item has been added to your cart":"El art\u00edculo se ha a\u00f1adido a su cesta","my cart":"Mi cesta","Total":"Total","share bookmarks":"Enviar p\u00e1ginas marcadas","%title%":"%title%","Please see the attached files from \"%title%\".":"Se adjunta los archivos extra\u00eddos en \"% title%\".","bookmarks":"Marcadores","back":"Volver","download the whole document for offline use":"Descargar el documento para consultar sin conexi\u00f3n","download for offline use":"Descargar la versi\u00f3n sin conexi\u00f3n","drag handle to switch page":"Deslice para pasar la p\u00e1gina","add to cart":"A\u00f1adir a la cesta","click to open the file":"Descargar el archivo","click to play the video":"Reproducir el v\u00eddeo","back to previous page":"Vuelva a la p\u00e1gina anterior","download":"Descargar","archives":"Archivos","basket":"Cesta","switch between fullscreen and normal":"Activar\/desactivar el modo pantalla completa","switch on \/ switch off the sound":"Activar\/desactivar el sonido","switch between 2d and 3d mode":"Activar\/desactivar el modo 3D","share by email":"Compartir por email","share on twitter":"Compartir por twitter","share on facebook":"Compartir por facebook","share":"","%name% invites you to discover %title%":"%name% le gustar\u00eda mostrarle %title%\n","Please click on the following link to open %title : %link%":"Pulse sobre el enlace de abajo para abrir %title% ","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"Toque dos veces o difundir sus dedos para hacer zoom","overview":"\u00cdndice","search results for":"Resultados de la b\u00fasqueda","home":"Home","find a distributor":"Encontrar un distribuidor","tel:":"Tel : ","Send details by email":"Enviar detalles por correo electr\u00f3nico","promotions":"Promociones","next to me":"Cerca de m\u00ed"},"fi":{"printing will start automatically when pages are downloaded":"Tulostus alkaa automaattisesti sivujen latauduttua","normal view":"Normaali n\u00e4kym\u00e4","zoom in":"Suurenna","zoom out":"Pienenn\u00e4","print":"Tulosta","tell a friend":"Kerro yst\u00e4v\u00e4lle","search":"Haku","add \/ remove bookmark":"Lis\u00e4\u00e4 \/poista kirjanmerkki","download pdf":"Lataa pdf","help":"Ohje","switch between book and overview":"Vaihda kirjan ja yleisn\u00e4kym\u00e4n v\u00e4lill\u00e4","zoom in and out":"Suurenna ja pienenn\u00e4","previous double page":"Aikaisempi aukeama","frontpage":"Etusivu","next double page":"Seuraava aukeama","last page":"Viimeinen sivu","click once to zoom in, click again to zoom out":"Klikkaa kerran suurentaaksesi, ja klikkaa toisen kerran pienent\u00e4\u00e4ksesi","roll the mouse wheel to zoom in\/out":"K\u00e4yt\u00e4 hiiren vieritysrullaa l\u00e4hent\u00e4miseen\/loitontamiseen","click and drag a corner to switch page":"Klikkaa ja ved\u00e4 kulmaa vaihtaaksesi sivua","click on a bookmark to go to page":"Klikkaa kirjanmerkki\u00e4 siirty\u00e4ksesi sivulle","preparing print":"Valmistelee tulostusta","right page":"Oikea sivu","left page":"Vasen sivu","spread":"Aukeama","entire brochure":"Koko esite","between pages":"Sivut","one page per sheet":"Yksi sivu arkkia kohti","two pages per sheet":"Kaksi sivua arkkia kohti","close":"Sulje","your name":"Nimesi","the message":"Viesti","the e-mail(s) of your friend(s)":"Yst\u00e4v\u00e4n\/yst\u00e4vien s-postiosoite","send":"L\u00e4het\u00e4","no result found":"Ei tulosta","fluidbook":"Digitaalinen kuvasto","press the link below to open Fluidbook:":"Klikkaa alla olevaa linkki\u00e4 avataksesi digitaalisen kuvaston","next page with the word":"Seuraava sivu, jossa sana on","previous page":"Aikaisempi sivu","%total% hits on %pages% pages, %this% hits on this page":"%total% osumaa %pages% sivulla, %this% osumaa t\u00e4ll\u00e4 sivulla","chapters":"Kappaleet","marked pages":"Merkityt sivut","you need to enter 3 letters to start searching":"Sinun tulee kirjoittaa 3 kirjainta aloittaaksesi haun","hit(s)":"osumat","go to page":"Siirry sivulle","you can't bookmark the frontpage":"Et voi lis\u00e4t\u00e4 kirjanmerkki\u00e4 etusivulle","click for more information about the product":"Klikkaa saadaksesi lis\u00e4tietoa tuotteesta","click to open the link":"Klikkaa avataksesi linkin","click to send an e-mail":"Siirry sivulle","video":"video","go to the page":"Multimedia","multimedia":"Klikkaa l\u00e4hett\u00e4\u00e4ksesi s-postin","no result on this page":"Ei tuloksia t\u00e4ll\u00e4 sivulla","your e-mail":"S-postiosoitteesi","use a comma to separate several e-mails":"K\u00e4yt\u00e4 pilkkua erottaaksesi eri s\u00e4hk\u00f6postit toisistaan","0":"","click to magnify":"Klikkaa suurentaaksesi","the item has been added to your cart":"Kohde on lis\u00e4tty ostosk\u00e4rryysi","my cart":"Oma ostosk\u00e4rry","Total":"Yhteens\u00e4","back":"takaisin","you don't have any bookmarks":"Sinulla ei ole kirjanmerkkej\u00e4","download the whole document for offline use":"Lataa koko dokumentti offline-k\u00e4ytt\u00f6\u00e4 varten","download for offline use":"Lataa offline-k\u00e4ytt\u00f6\u00e4 varten","drag handle to switch page":"Ved\u00e4 kahvaa vaihtaaksesi sivua","add to cart":"Lis\u00e4\u00e4 ostosk\u00e4rryyn","click to open the file":"Napsauta avataksesi tiedoston","click to play the video":"Napsauta toistaaksesi videon","back to previous page":"","download":"Lataa","archives":"Arkistot","basket":"Oma ostosk\u00e4rrysi","switch between fullscreen and normal":"Vaihda normaalin ja t\u00e4yskuvaruututilan v\u00e4lill\u00e4","switch on \/ switch off the sound":"Laita \u00e4\u00e4ni p\u00e4\u00e4lle \/ pois p\u00e4\u00e4lt\u00e4","switch between 2d and 3d mode":"Vaihda 2D ja 3D -tilan v\u00e4lill\u00e4","%name% invites you to discover %title%":"%name% suosittelee sinulle %title%\n","Please click on the following link to open %title : %link%":"Klikkaa alla olevaa linkki\u00e4 avataksesi %title%","overview":"yleiskatsaus","search results for":"Hakutulokset","tap twice or spread your fingers to zoom in":"napauttamalla kahdesti tai levit\u00e4 sormien zoomata","share on facebook":"Jaa Facebookissa","share on twitter":"jakaa Twitteriss\u00e4"},"fr":{"click to hide help":"Cliquez pour faire dispara\u00eetre l'aide","hover your mouse to display again this help":"Passer votre souris pour afficher \u00e0 nouveau l'aide","you don't have any bookmarks":"Vous n'avez aucun marque-page","printing will start automatically when pages are downloaded":"L'impression va d\u00e9marrer automatiquement dans quelques instants","normal view":"Vue normale","zoom in":"Zoomer","zoom out":"D\u00e9zoomer","print":"Imprimer","tell a friend":"Envoyer \u00e0 un(e) ami(e)","search":"Rechercher","add \/ remove bookmark":"Ajouter \/ supprimer un marque-page","download pdf":"T\u00e9l\u00e9charger en pdf","help":"Aide","switch between book and overview":"Basculer entre le livre et l'index","zoom in and out":"Zoomer et d\u00e9zoomer","previous double page":"Double page pr\u00e9c\u00e9dente","frontpage":"Couverture","next double page":"Double page suivante","last page":"Derni\u00e8re de couverture","click once to zoom in, click again to zoom out":"Cliquez une fois pour zoomer, cliquez \u00e0 nouveau pour d\u00e9zoomer","roll the mouse wheel to zoom in\/out":"Zoomer\/d\u00e9zoomer avec la molette de souris","click and drag a corner to switch page":"Cliquez-glissez dans un coin pour changer de page","click on a bookmark to go to page":"Cliquez sur un marque-page pour vous rendre \u00e0 cette page","preparing print":"Impression en cours","right page":"Page de droite","left page":"Page de gauche","spread":"Double page","entire brochure":"Toute la brochure","between pages":"De la page","one page per sheet":"Une page par feuille","two pages per sheet":"Deux pages par feuille","close":"Fermer","your name":"Votre nom","the message":"Votre message","the e-mail(s) of your friend(s)":"Destinataires","send":"Envoyer","no result found":"Aucun r\u00e9sultat","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Cliquez sur le lien ci-apr\u00e8s pour ouvrir fluidbook: ","next page with the word":"R\u00e9sultat suivant","previous page":"R\u00e9sultat pr\u00e9c\u00e9dent","%total% hits on %pages% pages, %this% hits on this page":"%total% r\u00e9sultat(s) sur %pages% page(s), %this% r\u00e9sultat(s) sur cette page","chapters":"Sommaire","marked pages":"Pages marqu\u00e9es","you need to enter 3 letters to start searching":"Vous devez taper 3 lettres minimum","hit(s)":"r\u00e9sultat(s)","go to page":"Voir la page","you can't bookmark the frontpage":"Vous ne pouvez pas mettre un marque page sur la couverture","click for more information about the product":"Plus d'infos","click to open the link":"Cliquez pour vous rendre \u00e0 la page web","click to send an e-mail":"Envoyer un email","video":"vid\u00e9o","go to the page":"Voir la page","multimedia":"Multim\u00e9dia","no result on this page":"Pas de r\u00e9sultat sur cette page","your e-mail":"Votre e-mail","use a comma to separate several e-mails":"S\u00e9parer plusieurs e-mails avec une virgule","":"","click to magnify":"Cliquez pour agrandir","the item has been added to your cart":"L'article a bien \u00e9t\u00e9 ajout\u00e9 au panier","my cart":"Mon panier","Total":"Total","share bookmarks":"Envoyer les pages marqu\u00e9es","%title%":"%title%","Please see the attached files from \"%title%\".":"Veuillez trouver ci-joint les fichiers extraits de \"%title%\".","bookmarks":"Marque-pages","back":"Retour","download the whole document for offline use":"T\u00e9l\u00e9charger le document pour une consultation hors-ligne","download for offline use":"T\u00e9l\u00e9charger la version hors-ligne","drag handle to switch page":"Glissez pour changer de page","add to cart":"Ajouter au panier","click to open the file":"T\u00e9l\u00e9charger le fichier","click to play the video":"Cliquez pour voir la vid\u00e9o","back to previous page":"Retour \u00e0 la page pr\u00e9c\u00e9dente","download":"T\u00e9l\u00e9charger","archives":"Archives","basket":"Panier","switch between fullscreen and normal":"Basculer entre le mode plein \u00e9cran et le mode normal","switch on \/ switch off the sound":"Activer \/ D\u00e9sactiver le son","switch between 2d and 3d mode":"Activer \/ D\u00e9sactiver le mode 3D","share by email":"Partager par e-mail","share on twitter":"Partager sur Twitter","share on facebook":"Partager sur Facebook","share":"Partager","%name% invites you to discover %title%":"%name% vous invite \u00e0 d\u00e9couvrir %title%","Please click on the following link to open %title : %link%":"Veuillez cliquer sur le lien suivant pour ouvrir %title%\n%link%","An update of the publication is available. Do you want to load it ?":"Une mise \u00e0 jour de cette publication est disponible. Souhaitez-vous la charger ?","tap twice or spread your fingers to zoom in":"Tapez deux fois ou \u00e9cartez les doigts pour zoomer","overview":"Index","search results for":"R\u00e9sultats de la recherche","home":"Retour \u00e0 l'accueil","find a distributor":"Trouver un distributeur","tel:":"T\u00e9l : ","Send details by email":"Envoyer les coordonn\u00e9es par e-mail","promotions":"Promotions","next to me":"A proximit\u00e9"},"hi":{"printing will start automatically when pages are downloaded":"","normal view":"\u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0935\u094d\u092f\u0942","zoom in":"\u091c\u093c\u0942\u092e \u0907\u0928","zoom out":"\u091c\u093c\u0942\u092e \u0906\u0909\u091f","print":"\u092a\u094d\u0930\u093f\u0902\u091f \u0915\u0930\u0947\u0902","tell a friend":"\u0915\u093f\u0938\u0940 \u0938\u0939\u0915\u0930\u094d\u092e\u0940 \u0915\u094b \u092c\u0924\u093e\u090f\u0902","search":"\u0916\u094b\u091c \u0915\u0930\u0947\u0902","add \/ remove bookmark":"\u092c\u0941\u0915\u092e\u093e\u0930\u094d\u0915 \u0921\u093e\u0932\u0947\u0902\/\u0939\u091f\u093e\u090f\u0902","download pdf":"pdf \u0921\u093e\u0909\u0928\u0932\u094b\u0921 \u0915\u0930\u0947\u0902","help":"\u0938\u0939\u093e\u092f\u0924\u093e","switch between book and overview":"\u092a\u0941\u0938\u094d\u0924\u0915 \u0914\u0930 \u0938\u093f\u0902\u0939\u093e\u0935\u0932\u094b\u0915\u0928 \u0915\u0947 \u092c\u0940\u091a \u0906\u090f\u0902 \u0914\u0930 \u091c\u093e\u090f\u0902","zoom in and out":"\u091c\u093c\u0942\u092e \u0907\u0928 \u0914\u0930 \u0906\u0909\u091f","previous double page":"\u092a\u093f\u091b\u0932\u093e \u0926\u094b\u0939\u0930\u093e \u092a\u0943\u0937\u094d\u0920","frontpage":"\u0905\u0917\u0932\u093e \u092a\u0943\u0937\u094d\u0920","next double page":"\u0905\u0917\u0932\u093e \u0926\u094b\u0939\u0930\u093e \u092a\u0943\u0937\u094d\u0920","last page":"\u0905\u0902\u0924\u093f\u092e \u092a\u0943\u0937\u094d\u0920","click once to zoom in, click again to zoom out":"\u091c\u093c\u0942\u092e \u0907\u0928 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u090f\u0915 \u092c\u093e\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902, \u091c\u093c\u0942\u092e \u0906\u0909\u091f \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0926\u094b\u092c\u093e\u0930\u093e \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","roll the mouse wheel to zoom in\/out":"\u091c\u093c\u0942\u092e \u0907\u0928\/\u091c\u093c\u0942\u092e \u0906\u0909\u091f \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092e\u093e\u0909\u0938 \u0935\u094d\u0939\u0940\u0932 \u0915\u094b \u0930\u094b\u0932 \u0915\u0930\u0947\u0902","click and drag a corner to switch page":"\u092a\u0943\u0937\u094d\u0920 \u0915\u094b \u0938\u094d\u0935\u093f\u091a \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0915\u094b\u0928\u0947 \u092a\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902 \u0914\u0930 \u0921\u094d\u0930\u0948\u0917 \u0915\u0930\u0947\u0902","click on a bookmark to go to page":"\u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u091c\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092c\u0941\u0915\u092e\u093e\u0930\u094d\u0915 \u092a\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","preparing print":"\u092a\u094d\u0930\u093f\u0902\u091f \u0924\u0948\u092f\u093e\u0930 \u0915\u093f\u092f\u093e \u091c\u093e \u0930\u0939\u093e \u0939\u0948","right page":"\u0926\u093e\u092f\u093e\u0901 \u092a\u0943\u0937\u094d\u0920","left page":"\u092c\u093e\u092f\u093e\u0901 \u092a\u0943\u0937\u094d\u0920","spread":"\u092b\u0948\u0932\u093e\u090f\u0902 ","entire brochure":"\u092a\u0942\u0930\u093e \u092c\u094d\u0930\u094b\u0936\u0930","between pages":"\u092a\u0943\u0937\u094d\u0920\u094b\u0902 \u0915\u0947 \u092c\u0940\u091a","one page per sheet":"\u092a\u094d\u0930\u0924\u093f \u0936\u0940\u091f \u090f\u0915 \u092a\u0943\u0937\u094d\u0920","two pages per sheet":"\u092a\u094d\u0930\u0924\u093f \u0936\u0940\u091f \u0926\u094b \u092a\u0943\u0937\u094d\u0920","close":"\u092c\u0928\u094d\u0926 \u0915\u0930\u0947\u0902","your name":"\u0906\u092a\u0915\u093e \u0928\u093e\u092e","the message":"\u0938\u0928\u094d\u0926\u0947\u0936","the e-mail(s) of your friend(s)":"\u0906\u092a\u0915\u0947 \u0938\u0939\u0915\u0930\u094d\u092e\u0940 \u0915\u093e \u0908-\u092e\u0947\u0932 ","send":"\u092d\u0947\u091c\u0947\u0902","no result found":"\u0915\u094b\u0908 \u092a\u0930\u093f\u0923\u093e\u092e \u0928\u0939\u0940\u0902 \u092e\u093f\u0932\u093e","fluidbook":"\u092b\u094d\u0932\u0942\u0921\u092c\u0941\u0915","press the link below to open Fluidbook:":"\u092b\u094d\u0932\u0942\u0921\u092c\u0941\u0915 \u0916\u094b\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0928\u0940\u091a\u0947 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \u0932\u093f\u0902\u0915 \u0926\u092c\u093e\u090f\u0902:","next page with the word":"\u0936\u092c\u094d\u0926 \u0935\u093e\u0932\u093e \u0905\u0917\u0932\u093e \u092a\u0943\u0937\u094d\u0920","previous page":"\u092a\u093f\u091b\u0932\u093e \u092a\u0943\u0937\u094d\u0920","%total% hits on %pages% pages, %this% hits on this page":"%total% \u092a\u0943\u0937\u094d\u0920\u094b\u0902 \u092e\u0947\u0902 %pages% \u0939\u093f\u091f\u094d\u0938, \u0907\u0938 \u092a\u0943\u0937\u094d\u0920 \u092a\u0930 %this% \u0939\u093f\u091f\u094d\u0938","chapters":"\u0905\u0927\u094d\u092f\u093e\u092f","marked pages":"\u0909\u092a\u092f\u094b\u0917 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u0917\u092f\u093e","you need to enter 3 letters to start searching":"\u0906\u092a\u0915\u094b \u0916\u094b\u091c \u0915\u0930\u0928\u093e \u0906\u0930\u092e\u094d\u092d \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f 3 \u0905\u0915\u094d\u0937\u0930 \u0921\u093e\u0932\u0928\u0947 \u091a\u093e\u0939\u093f\u090f","hit(s)":"\u0939\u093f\u091f (\u0939\u093f\u091f\u094d\u0938)","go to page":"\u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u091c\u093e\u090f\u0902","you can't bookmark the frontpage":"\u0906\u092a \u0907\u0938 \u0905\u0917\u0932\u0947 \u092a\u0943\u0937\u094d\u0920 \u0915\u094b \u092c\u0941\u0915\u092e\u093e\u0930\u094d\u0915 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947","click for more information about the product":"\u0909\u0924\u094d\u092a\u093e\u0926 \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947\u0902 \u0914\u0930 \u0905\u0927\u093f\u0915 \u0938\u0942\u091a\u0928\u093e \u0915\u0947 \u0932\u093f\u090f \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","click to open the link":"\u0932\u093f\u0902\u0915 \u0916\u094b\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","click to send an e-mail":"\u0908-\u092e\u0947\u0932 \u092d\u0947\u091c\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902","video":"\u0935\u0940\u0921\u093f\u092f\u094b","go to the page":"\u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u091c\u093e\u090f\u0902","multimedia":"\u092e\u0932\u094d\u091f\u0940\u092e\u0940\u0921\u093f\u092f\u093e","no result on this page":"\u0907\u0938 \u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u0915\u094b\u0908 \u092a\u0930\u093f\u0923\u093e\u092e \u0928\u0939\u0940\u0902","your e-mail":"\u0906\u092a\u0915\u093e \u0908-\u092e\u0947\u0932","use a comma to separate several e-mails":"","0":"","click to magnify":"","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name% \u0906\u092a\u0915\u094b %title% \u092c\u0924\u093e\u0928\u093e \u091a\u093e\u0939\u0924\u093e\/\u0924\u0940 \u0939\u0948\n","Please click on the following link to open %title : %link%":"\u0916\u094b\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0928\u093f\u092e\u094d\u200d\u0928 \u0932\u093f\u0902\u0915 \u092a\u0930 \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902 %title%\n%link%","overview":"\u0938\u093f\u0902\u0939\u093e\u0935\u0932\u094b\u0915\u0928","search results for":"","tap twice or spread your fingers to zoom in":"","share on facebook":"","share on twitter":""},"id":{"printing will start automatically when pages are downloaded":"","normal view":"Tampilan normal","zoom in":"Perbesar","zoom out":"Perkecil","print":"Cetak","tell a friend":"Beritahu teman","search":"Cari","add \/ remove bookmark":"Tambah\/ hapus penanda","download pdf":"Unduh pdf","help":"Bantuan","switch between book and overview":"Beralih antara buku dan ikhtisar","zoom in and out":"Perbesar dan perkecil","previous double page":"Halaman ganda sebelumnya","frontpage":"Halaman depan","next double page":"Halaman ganda berikutnya","last page":"Halaman terakhir","click once to zoom in, click again to zoom out":"Klik satu kali untuk perbesar, klik lagi untuk perkecil","roll the mouse wheel to zoom in\/out":"Gulir roda mouse untuk perbesar\/ perkecil","click and drag a corner to switch page":"Klik dan seret sudut untuk beralih halaman","click on a bookmark to go to page":"Klik penanda untuk membuka halaman","preparing print":"Persiapan cetak","right page":"Halaman kanan","left page":"Halaman kiri","spread":"Bentang","entire brochure":"Seluruh brosur","between pages":"Antar halaman","one page per sheet":"Satu halaman per lembar","two pages per sheet":"Dua halaman per lembar","close":"Tutup","your name":"Nama Anda","the message":"Pesan","the e-mail(s) of your friend(s)":"Email dari teman","send":"Kirim","no result found":"Tidak ada hasil yang ditemukan","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Klik link di bawah ini untuk membuka Fluidbook:","next page with the word":"Halaman berikutnya dengan kata","previous page":"Halaman sebelumnya","%total% hits on %pages% pages, %this% hits on this page":"%total% hits dari %pages% halaman, %this% hits dari halaman ini","chapters":"Bab","marked pages":"Halaman yang ditandai","you need to enter 3 letters to start searching":"Anda harus memasukkan 3 huruf untuk memulai pencarian","hit(s)":"hit","go to page":"Buka halaman","you can't bookmark the frontpage":"Anda tidak dapat menandai halaman depan","click for more information about the product":"Klik untuk informasi selengkapnya tentang produk","click to open the link":"Klik untuk membuka link","click to send an e-mail":"Klik untuk mengirim email","video":"video","go to the page":"Buka halaman","multimedia":"Multimedia","no result on this page":"Tidak ada hasil di halaman ini","your e-mail":"Email Anda","use a comma to separate several e-mails":"Gunakan tanda koma untuk memisahkan beberapa email","0":"","click to magnify":"Klik untuk perbesar","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name% ingin memperlihatkan kepada Anda %title%\n","Please click on the following link to open %title : %link%":"Klik pada tautan di bawah untuk membuka %title%\n%link%","overview":"Ikhtisar","search results for":"","tap twice or spread your fingers to zoom in":"","share on facebook":"","share on twitter":""},"it":{"click to hide help":"","hover your mouse to display again this help":"","you don't have any bookmarks":"Non hai nessun segnalibro","printing will start automatically when pages are downloaded":"La stampa inizier\u00e0 automaticamente tra qualche istante","normal view":"Visualizzazione normale","zoom in":"Ingrandimento","zoom out":"Riduzione","print":"Stampa","tell a friend":"Invia a un amico","search":"Cerca","add \/ remove bookmark":"Aggiungi\/elimina un segnalibro","download pdf":"Scarica in formato pdf","help":"Guida in linea","switch between book and overview":"Passa da libro a indice","zoom in and out":"Ingrandisci e riduci","previous double page":"Doppia pagina precedente","frontpage":"Copertina","next double page":"Doppia pagina successiva","last page":"Ultima di copertina","click once to zoom in, click again to zoom out":"Fare un clic per ingrandire, farne due per ridurre","roll the mouse wheel to zoom in\/out":"Ingrandisci\/riduci con la rotella del mouse","click and drag a corner to switch page":"Per voltare pagina, trascinare l\u2019angolo","click on a bookmark to go to page":"Per tornare ad una pagina, fare clic sul segnalibro","preparing print":"Stampa in corso","right page":"Pagina destra","left page":"Pagina sinistra","spread":"Doppia pagina","entire brochure":"Brochure completa","between pages":"Da pagina","one page per sheet":"Una pagina per foglio","two pages per sheet":"Due pagine per foglio","close":"Chiudi","your name":"Il tuo nome","the message":"Il tuo messaggio","the e-mail(s) of your friend(s)":"L'e-mail del tuo amico","send":"Invia","no result found":"Nessun risultato","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Fare clic su questo collegamento per aprire fluidbook:","next page with the word":"Risultato successivo","previous page":"Risultato precedente","%total% hits on %pages% pages, %this% hits on this page":"%total% risultato\/i su %pages% pagina\/e, %this% risultato\/i su questa pagina","chapters":"Tabella dei contenuti","marked pages":"Segnalibro","you need to enter 3 letters to start searching":"Digitare almeno 3 lettere","hit(s)":"risultato\/i","go to page":"Visualizza la pagina","you can't bookmark the frontpage":"Impossibile mettere un segnalibro sulla copertina","click for more information about the product":"Maggiori informazioni","click to open the link":"Fare clic per andare alla pagina web","click to send an e-mail":"Invia un\u2019e-mail","video":"video","go to the page":"Visualizza la pagina","multimedia":"Multimedia","no result on this page":"Nessun risultato su questa pagina","your e-mail":"La tua e-mail","use a comma to separate several e-mails":"Inserisci pi\u00f9 indirizzi email separati da una virgola","":"","click to magnify":"Clicca per ingrandire","the item has been added to your cart":"L'articolo \u00e8 stato aggiunto al tuo carrello","my cart":"Il mio carrello","Total":"Totale","share bookmarks":"Invia pagine contrassegnate","%title%":"%title%","Please see the attached files from \"%title%\".":"Si prega di consultare i file allegati da \"% title%\".","bookmarks":"Segnalibri","back":"Ritorno","download the whole document for offline use":"Scarica il documento per consultarlo off-line","download for offline use":"Scarica la versione off-line","drag handle to switch page":"Scorri per cambiare pagina","add to cart":"Aggiungi al carrello","click to open the file":"Scarica il file","click to play the video":"Riproduci il video","back to previous page":"Torna alla pagina precedente","download":"Scarica","archives":"Archivio","basket":"Carrello","switch between fullscreen and normal":"Passa da modalit\u00e0 schermo intero a modalit\u00e0 normale","switch on \/ switch off the sound":"Attiva \/ Disattiva il suono","switch between 2d and 3d mode":"Attiva \/ Disattiva la modalit\u00e0 3D","share by email":"e-mail","share on twitter":"twitter","share on facebook":"facebook","share":"Quota","%name% invites you to discover %title%":"%name% vorrebbe mostrarti %title%\n","Please click on the following link to open %title : %link%":"Clicca sul link qui sotto per aprire %title%\n%link%","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"Tocca due volte o allarga due dita per ingrandire","overview":"Indice","search results for":"Risultati di ricerca","home":"Home","find a distributor":"Trovare un distributore","tel:":"Tel:","Send details by email":"Inviare via e-mail","promotions":"Promozioni","next to me":"Accanto a me"},"ja":{"printing will start automatically when pages are downloaded":"","the item has been added to your cart":"","my cart":"","Total":"","chapters":"","no result found":"","hit(s)":"","marked pages":"","entire brochure":"","you don't have any bookmarks":"","left page":"","right page":"","spread":"","download pdf":"","download the whole document for offline use":"","download for offline use":"","print":"","drag handle to switch page":"","click and drag a corner to switch page":"","click once to zoom in, click again to zoom out":"","roll the mouse wheel to zoom in\/out":"","previous double page":"","frontpage":"","next double page":"","last page":"","add to cart":"","click to send an e-mail":"","click to open the file":"","click to open the link":"","go to the page":"","click to play the video":"","click for more information about the product":"","click to magnify":"","switch between book and overview":"","tell a friend":"","add \/ remove bookmark":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","help":"","search":"","you need to enter 3 letters to start searching":"","previous page":"","next page with the word":"","%total% hits on %pages% pages, %this% hits on this page":"","your name":"","your e-mail":"","the e-mail(s) of your friend(s)":"","use a comma to separate several e-mails":"","the message":"","send":"","overview":"Overview","normal view":"Normal view","zoom in":"Zoom in","zoom out":"Zoom out","zoom in and out":"Zoom in and out","click on a bookmark to go to page":"Click on a bookmark to go to page","preparing print":"Preparing print","between pages":"Between pages","one page per sheet":"One page per sheet","two pages per sheet":"Two pages per sheet","print-":"Print","close":"Close","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Press the link below to open Fluidbook:","go to page":"Go to page","you can't bookmark the frontpage":"You can't bookmark the cover","video":"video","multimedia":"Multimedia","no result on this page":"No result on this page","":""},"nl":{"click to hide help":"","hover your mouse to display again this help":"","you don't have any bookmarks":"Volledige brochure","printing will start automatically when pages are downloaded":"Afdrukken start automatisch wanneer pagina's worden gedownload","normal view":"Normaal zicht","zoom in":"Zoom in","zoom out":"Zoom uit","print":"Afdrukken","tell a friend":"Stuur naar vrienden","search":"Zoeken","add \/ remove bookmark":"Bladwijzer toevoegen\/verwijderen","download pdf":"Downloaden als pdf","help":"Help","switch between book and overview":"Wisselen tussen het boek en de index","zoom in and out":"Inzoomer en uitzoomen","previous double page":"Vorige spread","frontpage":"Voorpagina","next double page":"Volgende spread","last page":"Achterpagina","click once to zoom in, click again to zoom out":"Klik eenmaal voor inzoomen, klik opnieuw voor uitzoomen","roll the mouse wheel to zoom in\/out":"Inzoomen\/uitzoomen met scroll button van muis","click and drag a corner to switch page":"Klik en sleep in een hoek om van pagina te wisselen","click on a bookmark to go to page":"Klik op een bladwijzer om naar die pagina te gaan","preparing print":"Bezig met afdrukken","right page":"Rechterpagina","left page":"Linkerpagina","spread":"Dubbele pagina","entire brochure":"Alle paginas","between pages":"Van pagina x tot x","one page per sheet":"E\u00e9n pagina per blad","two pages per sheet":"Twee paginas per blad","close":"Sluiten","your name":"Uw naam","the message":"Uw boodschap","the e-mail(s) of your friend(s)":"De e-mail van uw vriend","send":"Versturen","no result found":"Geen resultaat","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Klik op de volgende link om fluidbook te openen:","next page with the word":"Volgende resultaat","previous page":"Vorige resultaat","%total% hits on %pages% pages, %this% hits on this page":"%total% resulta(at)ten op %pages% pagina(s), %this% resulta(at)ten op deze pagina","chapters":"Inhoudsopgave","marked pages":"Gemarkeerde pagina's","you need to enter 3 letters to start searching":"Tik minstens 3 letters in","hit(s)":"Resulta(at)ten","go to page":"Pagina bekijken","you can't bookmark the frontpage":"U kunt geen bladwijzer op de cover plaatsen","click for more information about the product":"Meer info","click to open the link":"Klik hier om naar de webpagina te gaan","click to send an e-mail":"Stuur een e-mail","video":"Video","go to the page":"Bekijk de pagina","multimedia":"Multimedia","no result on this page":"Geen resultaat op deze pagina","your e-mail":"Uw e-mail","use a comma to separate several e-mails":"Gebruik een komma om Aparte meerdere e-mails","":"","click to magnify":"Klik om te vergroten","the item has been added to your cart":"Het item is toegevoegd aan uw winkelwagen","my cart":"Mijn winkelwagen","Total":"Totaal","share bookmarks":"Stuur gemarkeerd pagina's","%title%":"%title%","Please see the attached files from \"%title%\".":"Zie de bijgevoegde bestanden van \"% title%\".","bookmarks":"Bladwijzers","back":"Terug","download the whole document for offline use":"Download het hele document voor offline gebruik","download for offline use":"Downloaden voor offline gebruik","drag handle to switch page":"Sleep knop om van pagina te wisselen","add to cart":"Toevoegen aan winkelwagen","click to open the file":"Klik om het bestand te openen","click to play the video":"Ga naar de pagina","back to previous page":"Terug naar de vorige pagina","download":"Download","archives":"Archieven","basket":"Mand","switch between fullscreen and normal":"Schakelen tussen volledig en normaal scherm","switch on \/ switch off the sound":"Geluid aan\/uit","switch between 2d and 3d mode":"Switchen tussen 2D en 3D modus","share by email":"Email","share on twitter":"Twitter","share on facebook":"Facebook","share":"Aandeel","%name% invites you to discover %title%":"%name% nodigt je uit om %title% te ontdekken\n","Please click on the following link to open %title : %link%":"Klik op de volgende link om %title% te openen\n%link%","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"Tik op twee of spreid je vingers om in te zoomen","overview":"Inhoud","search results for":"zoekresultaten voor","home":"Home","find a distributor":"Vind een distributeur","tel:":"Tel:","Send details by email":"Stuur informatie per e-mail","promotions":"Promoties","next to me":"Dicht bij mij"},"no":{"printing will start automatically when pages are downloaded":"utskrift vil starte automatisk n\u00e5r sidene lastes ned","normal view":"Normal view","zoom in":"Zoom inn","zoom out":"Zoom ut","print":"Skriv ut","tell a friend":"Tips en venn","search":"S\u00f8k","add \/ remove bookmark":"Legg til\/ta bort bokmerke","download pdf":"Last ned pdf","help":"Hjelp","switch between book and overview":"Switch mellom bok og oversikt","zoom in and out":"Zoom inn og ut","previous double page":"Foreg\u00e5ende oppslag","frontpage":"Forsiden","next double page":"Neste oppslag","last page":"Baksiden","click once to zoom in, click again to zoom out":"Klikk for \u00e5 zoome inn, klikk igjen for \u00e5 zoome ut","roll the mouse wheel to zoom in\/out":"Rull p\u00e5 hjulet for \u00e5 zoome inn\/ut","click and drag a corner to switch page":"Klikk og dra i et hj\u00f8rne for \u00e5 snu side","click on a bookmark to go to page":"Klikk p\u00e5 et bokmerke for \u00e5 g\u00e5 til siden","preparing print":"Forbereder utskrift","right page":"H\u00f8yre side","left page":"Venstre side","spread":"Oppslaget","entire brochure":"Alle sider","between pages":"Mellom sidene","one page per sheet":"En side pr papir","two pages per sheet":"To sider pr papir","close":"Steng","your name":"Ditt navn","the message":"Din melding","the e-mail(s) of your friend(s)":"Din venns e-mail","send":"Send","no result found":"Ditt s\u00f8k ga ingen treff","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Trykk p\u00e5 linken for \u00e5 \u00e5pne Fluidbook","next page with the word":"Neste side med s\u00f8keordet","previous page":"Forrige side med s\u00f8keordet","%total% hits on %pages% pages, %this% hits on this page":"%total% treff p\u00e5 %pages% sider, %this% treff p\u00e5 denne siden","chapters":"Sammendrag","marked pages":"not used","you need to enter 3 letters to start searching":"S\u00f8k skjer ikke p\u00e5 mindre enn 3 bokstaver","hit(s)":"treff","go to page":"G\u00e5 til side","you can't bookmark the frontpage":"Det g\u00e5r inte att s\u00e4tta bokm\u00e4rke p\u00e5 omslaget","click for more information about the product":"Klikk for \u00e5 f\u00e5 mer informasjon om produktet","click to open the link":"Klikk for \u00e5 \u00e5pne linken","click to send an e-mail":"Klikk for \u00e5 sende en e-mail","video":"video","go to the page":"G\u00e5 til siden","multimedia":"Multimedia","no result on this page":"Ingen treff p\u00e5 denne siden","your e-mail":"Din e-mail","use a comma to separate several e-mails":"bruk et komma for \u00e5 skille flere e-postadresser","0":"","click to magnify":"klikk for \u00e5 forst\u00f8rre","the item has been added to your cart":"varen har blitt lagt til i handlekurven din","my cart":"min handlekurv","Total":"Totalt","back":"tilbake","you don't have any bookmarks":"du har ingen bokmerker","download the whole document for offline use":"last ned hele dokumentet for frakoblet bruk","download for offline use":"last ned for frakoblet bruk","drag handle to switch page":"Dra i h\u00e5ndtaket for \u00e5 bytte side","add to cart":"legg til i handlekurv","click to open the file":"klikk for \u00e5 \u00e5pne filen","click to play the video":"klikk for \u00e5 spille av videoen","back to previous page":"","download":"Last ned","archives":"Arkiver","basket":"Kurv","switch between fullscreen and normal":"Bytt mellom fullskjerm og normal","switch on \/ switch off the sound":"Skru p\u00e5 \/ skru av lyden","switch between 2d and 3d mode":"Bytt mellom 2D- og 3D-modus","%name% invites you to discover %title%":"%name% inviterer deg inn til %title%\n","Please click on the following link to open %title : %link%":"Trykk p\u00e5 linken for \u00e5 \u00e5pne %title%\n%link%","overview":"Oversikt","search results for":"S\u00f8keresultater","tap twice or spread your fingers to zoom in":"Trykk to ganger eller spre fingrene til \u00e5 zoome inn","share on facebook":"Del p\u00e5 Facebook","share on twitter":"Del p\u00e5 Twitter"},"pl":{"printing will start automatically when pages are downloaded":"Drukowanie rozpcznie si\u0119 automatycznie, kiedy zostan\u0105 pobrane strony","normal view":"Normalny widok","zoom in":"Przybli\u017c","zoom out":"Oddal","print":"Drukuj","tell a friend":"Pole\u0107 znajomemu","search":"Szukaj","add \/ remove bookmark":"Dodaj\/usu\u0144 zak\u0142adk\u0119","download pdf":"Pobierz pdf","help":"Pomoc","switch between book and overview":"Prze\u0142\u0105cz miedzy dwiema stronami a przegl\u0105dem wszystkich stron ","zoom in and out":"P\u0159ibl\u00ed\u017eit a odd\u00e1lit","previous double page":"Poprzednie dwie strony","frontpage":"Pierwsza strona","next double page":"Nastepne dwie strony","last page":"Ostatnia strona","click once to zoom in, click again to zoom out":"Kliknij raz aby przybli\u017cy\u0107, kliknij ponownie aby oddali\u0107","roll the mouse wheel to zoom in\/out":"Pokr\u0119\u0107 rolk\u0105 myszki aby przybli\u017cy\u0107\/oddali\u0107","click and drag a corner to switch page":"kliknij i przeci\u0105gnij r\u00f3g aby przel\u0105czy\u0107 stron\u0119","click on a bookmark to go to page":"Kliknut\u00edm na z\u00e1lo\u017eku p\u0159ej\u00edt na str\u00e1nku","preparing print":"P\u0159\u00edprava tisku","right page":"Prawa strona","left page":"Lewa strona","spread":"P\u00e1gina dupla","entire brochure":"Todo o folheto","between pages":"Mi\u0119dzy stronami","one page per sheet":"Jedna strona na kartce","two pages per sheet":"Dwie strony na kartce","close":"Zamknij","your name":"Twoje imi\u0119","the message":"Wiadomo\u015b\u0107","the e-mail(s) of your friend(s)":"E-mail znajomego","send":"Wy\u015blij","no result found":"Brak rezultat\u00f3w","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Kliknij link poni\u017cej aby otworzy\u0107 Fluidbook","next page with the word":"Nastepny wynik","previous page":"Poprzedni wynik","%total% hits on %pages% pages, %this% hits on this page":"%total% wynik (-i, -\u00f3w) %pages% na stronie (-ach), %this% wynik (-i) na tej stronie","chapters":"Przegl\u0105d","marked pages":"not used","you need to enter 3 letters to start searching":"Musisz wprowadzi\u0107 3 litery aby rozpocz\u0105\u0107 wyszukiwanie","hit(s)":"wynik (-i, -\u00f3w)","go to page":"Przejd\u017a do strony","you can't bookmark the frontpage":"Nie mo\u017cesz zaznaczy\u0107 ok\u0142adki","click for more information about the product":"Wi\u0119cej informacji","click to open the link":"Kliknij aby otworzy\u0107 link","click to send an e-mail":"Wy\u015blij e-mail","video":"wideo","go to the page":"Przejd\u017a do strony","multimedia":"Multimedia","no result on this page":"Brak wynik\u00f3w na tej stronie","your e-mail":"Twoj e-mail","use a comma to separate several e-mails":"U\u017cyj przecinka, aby oddzieli\u0107 kilka e-maili","0":"","click to magnify":"Kliknij aby powi\u0119kszy\u0107","the item has been added to your cart":"Produkt zosta\u0142 dodany do koszyka","my cart":"M\u00f3j koszyk","Total":"Og\u00f3\u0142em","back":"Powr\u00f3t","you don't have any bookmarks":"Nie masz \u017cadnych zak\u0142adek","download the whole document for offline use":"Pobierz ca\u0142y dokument do u\u017cytku w trybie offline","download for offline use":"Pobierz do u\u017cytku w trybie offline","drag handle to switch page":"Poci\u0105gnij za r\u0105czk\u0119, aby prze\u0142\u0105czy\u0107 stron\u0119","add to cart":"Dodaj do koszyka","click to open the file":"Kliknij aby otworzy\u0107 plik","click to play the video":"Kliknij aby odtworzy\u0107 wideo","back to previous page":"Powr\u00f3t do poprzedniej strony","download":"Pobierz","archives":"Archiwa","basket":"Kosz","switch between fullscreen and normal":"Prze\u0142\u0105cz pomi\u0119dzy ekranem pe\u0142nym, a normalnym","switch on \/ switch off the sound":"W\u0142\u0105cz \/ wy\u0142\u0105cz d\u017awi\u0119k","switch between 2d and 3d mode":"Prze\u0142\u0105cz pomi\u0119dzy trybem 2. a 3.","%name% invites you to discover %title%":"%name% pragnie zaprezentowa\u0107 Tobie Podstawowe %title%\n","Please click on the following link to open %title : %link%":"Kliknij na poni\u017cszy link, aby otworzy\u0107 %link% Podstawowe %title%\n%link%","overview":"Poka\u017c wszystkie strony","search results for":"Wyniki wyszukiwania","tap twice or spread your fingers to zoom in":"Uderz dwukrotnie lub rozszerz dwa palce, aby przybli\u017cy\u0107\/oddali\u0107","share on facebook":"Facebook","share on twitter":"Twitter"},"pt":{"printing will start automatically when pages are downloaded":"A impress\u00e3o ir\u00e1 iniciar-se automaticamente quando as p\u00e1ginas forem descarregadas","normal view":"Vista normal","zoom in":"Aumentar","zoom out":"Diminuir","print":"Imprimir","tell a friend":"Enviar a um amigo","search":"Pesquisa","add \/ remove bookmark":"Adicionar \/ Suprimir uma marca","download pdf":"Descarregar em pdf","help":"Ajuda","switch between book and overview":"Alternar entre o livro e o index","zoom in and out":"Aumentar e retornar","previous double page":"P\u00e1gina dupla anterior","frontpage":"Capa","next double page":"P\u00e1gina dupla seguinte","last page":"Contracapa","click once to zoom in, click again to zoom out":"Clicar uma vez para aumentar, clicar de novo para retornar","roll the mouse wheel to zoom in\/out":"Aumentar e retornar com a roda do rato","click and drag a corner to switch page":"Clicar e arrastar num canto para virar a pagina","click on a bookmark to go to page":"Clicar sobre um marcador para ir para essa p\u00e1gina","preparing print":"Impress\u00e3o a decorrer","right page":"Pagina da direita","left page":"Pagina da esquerda","spread":"Paginas duplas","entire brochure":"Todas as p\u00e1ginas","between pages":"Desde a p\u00e1gina","one page per sheet":"Uma p\u00e1gina por folha","two pages per sheet":"Duas p\u00e1ginas por folha","close":"Fechar","your name":"Seu nome","the message":"Sua mensagem","the e-mail(s) of your friend(s)":"E-mail do seu amigo","send":"Enviar","no result found":"Nenhum resultado","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Clique neste link para abrir fluidbook","next page with the word":"Resultado seguinte","previous page":"Resultado anterior","%total% hits on %pages% pages, %this% hits on this page":"%total% resultado(s) em %pages% pagina(s), %this% resultado(s) nesta pagina","chapters":"Cap\u00edtulos","marked pages":"p\u00e1ginas marcadas","you need to enter 3 letters to start searching":"Deve escrever 3 letras no minimo","hit(s)":"resultado(s)","go to page":"Ver a p\u00e1gina","you can't bookmark the frontpage":"Impossivel marcar a capa","click for more information about the product":"Mais informa\u00e7\u00e3o","click to open the link":"Clicar para ir para a pagina web","click to send an e-mail":"Enviar um email","video":"video","go to the page":"Ver a p\u00e1gina","multimedia":"Multimedia","no result on this page":"Sem resultados nesta p\u00e1gina","your e-mail":"Seu email","use a comma to separate several e-mails":"Utilize uma v\u00edrgula para separar v\u00e1rios endere\u00e7os de e-mail","0":"","click to magnify":"Clique para aumentar","the item has been added to your cart":"O item foi adicionado ao seu carrinho","my cart":"O meu carrinho","Total":"Total","back":"","you don't have any bookmarks":"N\u00e3o tem quaisquer marcadores","download the whole document for offline use":"Descarregue o documento completo para utiliza\u00e7\u00e3o offline","download for offline use":"Descarregue para utiliza\u00e7\u00e3o offline","drag handle to switch page":"Arraste o man\u00edpulo para mudar de p\u00e1gina","add to cart":"Adicionar ao carrinho","click to open the file":"Clique para abrir o ficheiro","click to play the video":"Clique para visualizar o v\u00eddeo","back to previous page":"","download":"Fazer download","archives":"Arquivos","basket":"Cesto","switch between fullscreen and normal":"Alternar entre ecr\u00e3 panor\u00e2mico e normal","switch on \/ switch off the sound":"Ligar\/desligar o som","switch between 2d and 3d mode":"Alternar entre 2D e 3D modo","%name% invites you to discover %title%":"%name% que gostaria que aparecesse, o seu %title%\n","Please click on the following link to open %title : %link%":"Clique no link abaixo para abrir %title%\n%link%","overview":"","search results for":"","tap twice or spread your fingers to zoom in":"Clique duas vezes ou afaste dois dedos para fazer zoom","share on facebook":"Compartilhar Facebook","share on twitter":"Compartilhar Twitter"},"pt-br":{"printing will start automatically when pages are downloaded":"","normal view":"","zoom in":"","zoom out":"","print":"Imprimir","tell a friend":"Informe um amigo","search":"Pesquisar","add \/ remove bookmark":"Adicionar \/remover marcador","download pdf":"Baixar pdf","help":"Ajuda","switch between book and overview":"Alternar entre visualiza\u00e7\u00e3o geral e livro ","zoom in and out":"","previous double page":"P\u00e1gina dupla anterior","frontpage":"P\u00e1gina Principal","next double page":"Pr\u00f3xima p\u00e1gina dupla","last page":"\u00daltima p\u00e1gina","click once to zoom in, click again to zoom out":"Clique uma vez para aproximar e clique de novo para afastar","roll the mouse wheel to zoom in\/out":"Role a roda do mouse para aproximar ou afastar","click and drag a corner to switch page":"Clique no canto e arraste para alternar entre p\u00e1ginas ","click on a bookmark to go to page":"","preparing print":"","right page":"P\u00e1gina direita","left page":"P\u00e1gina esquerda","spread":" P\u00e1gina dupla","entire brochure":"Brochura completa","between pages":"","one page per sheet":"","two pages per sheet":"","close":"","your name":"Seu nome","the message":"A mensagem","the e-mail(s) of your friend(s)":"O(s) e-mail(s) de seu(s) amigo(s)","send":"Enviar","no result found":"Resultado n\u00e3o encontrado","fluidbook":"","press the link below to open Fluidbook:":"","next page with the word":"Pr\u00f3xima p\u00e1gina com a palavra","previous page":"P\u00e1gina anterior","%total% hits on %pages% pages, %this% hits on this page":"%total% de cliques nas%p\u00e1ginas% p\u00e1ginas, %nesta% cliques nesta p\u00e1gina","chapters":"Cap\u00edtulos","marked pages":" P\u00e1ginas marcadas","you need to enter 3 letters to start searching":"Voc\u00ea precisa digitar 3 letras para come\u00e7ar a pesquisar","hit(s)":"clique(s)","go to page":"","you can't bookmark the frontpage":"","click for more information about the product":"Clique para obter mais informa\u00e7\u00f5es sobre o produto","click to open the link":"Clique para abrir o link","click to send an e-mail":"Clique para enviar um e-mail","video":"","go to the page":"V\u00e1 para a p\u00e1gina","multimedia":"","no result on this page":"","your e-mail":"Seu e-mail","use a comma to separate several e-mails":"Use a v\u00edrgula para separar v\u00e1rios e-mails","0":"","click to magnify":"Clique para aumentar","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name% gostaria de lhe mostrar %title%\n","Please click on the following link to open %title : %link%":"Clique sobre o link abaixo para abrir %title%\n%link%","overview":"","search results for":"","tap twice or spread your fingers to zoom in":"","share on facebook":"","share on twitter":""},"ro":{"printing will start automatically when pages are downloaded":"Tip\u0103rirea va \u00eencepe automat atunci c\u00e2nd sunt desc\u0103rcate paginile","normal view":"Vizualizare normal\u0103","zoom in":"M\u0103rire","zoom out":"Mic\u015forare","print":"Imprimare","tell a friend":"Spune unui prieten","search":"C\u0103utare","add \/ remove bookmark":"Ad\u0103ugare\/\u015ftergere semn de carte","download pdf":"Desc\u0103rcare pdf","help":"Ajutor","switch between book and overview":"Comutare \u00eentre carte \u015fi prezentare general\u0103","zoom in and out":"M\u0103rire \u015fi mic\u015forare","previous double page":"Pagina dubl\u0103 anterioar\u0103","frontpage":"Frontpage","next double page":"Pagina dubl\u0103 urm\u0103toare","last page":"Ultima pagin\u0103","click once to zoom in, click again to zoom out":"Face\u0163i clic o dat\u0103 pentru m\u0103rire, \u015fi \u00eenc\u0103 o dat\u0103 pentru mic\u015forare","roll the mouse wheel to zoom in\/out":"Folosi\u0163i roti\u0163a mouse-ului pentru mic\u015forare\/m\u0103rire","click and drag a corner to switch page":"Face\u0163i clic pe un col\u0163 \u015fi trage\u0163i-l cu mouse-ul pentru a da pagina","click on a bookmark to go to page":"Face\u0163i clic pe un semn de carte pentru a merge pe pagina respectiv\u0103","preparing print":"Preg\u0103tire imprimare","right page":"Pagina din dreapta","left page":"Pagina din st\u00e2nga","spread":"Spread","entire brochure":"\u00centreaga bro\u015fur\u0103","between pages":"\u00centre pagini","one page per sheet":"C\u00e2te o pagin\u0103 pe foaie","two pages per sheet":"C\u00e2te dou\u0103 pagini pe foaie","close":"\u00cenchidere","your name":"Numele dumneavoastr\u0103","the message":"Mesajul","the e-mail(s) of your friend(s)":"E-mail-ul(urile) de la prietenul\/a(ii\/ele) dumneavoastr\u0103","send":"Trimitere","no result found":"Nu s-a g\u0103sit niciun rezultat","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Ap\u0103sa\u0163i pe link-ul de mai jos pentru a deschide Fluidbook:","next page with the word":"Urm\u0103toarea pagin\u0103 cu cuv\u00e2ntul","previous page":"Pagina anterioar\u0103","%total% hits on %pages% pages, %this% hits on this page":"%total% rezultate pe %pages% pagini, %this% rezultate pe aceast\u0103 pagin\u0103","chapters":"Capitole","marked pages":"Pagini marcate","you need to enter 3 letters to start searching":"Trebuie s\u0103 introduce\u0163i 3 litere pentru a \u00eencepe c\u0103utarea","hit(s)":"rezultat(e)","go to page":"Mergi la pagina","you can't bookmark the frontpage":"Nu pute\u0163i pune semn de carte la prima pagin\u0103","click for more information about the product":"Face\u0163i clic pentru mai multe informa\u0163ii despre produs","click to open the link":"Face\u0163i clic pentru a deschide link-ul","click to send an e-mail":"Face\u0163i clic pentru a trimite un e-mail","video":"video","go to the page":"Mergi la pagina","multimedia":"Multimedia","no result on this page":"Nu s-a g\u0103sit niciun rezultat pe aceast\u0103 pagin\u0103","your e-mail":"E-mail-ul dumneavoastr\u0103","use a comma to separate several e-mails":"Folosi\u0163i virgula pentru a separa mai multe e-mail-uri","0":"","click to magnify":"Face\u0163i clic pentru a m\u0103ri","the item has been added to your cart":"Trticolul a fost ad\u0103ugat \u00een c\u0103ruciorul dvs","my cart":"C\u0103ruciorul meu","Total":"Total","back":"\u00eenapoi","you don't have any bookmarks":"Nu ave\u0163i niciun semn de carte","download the whole document for offline use":"Desc\u0103rcarea \u00eentregului document \u00een vederea utiliz\u0103rii off-line","download for offline use":"Desc\u0103rcare \u00een vederea utiliz\u0103rii off-line","drag handle to switch page":"Trage\u0163i reperul pentru a trece la alt\u0103 pagin\u0103","add to cart":"Ad\u0103ugare \u00een c\u0103rucior","click to open the file":"Face\u0163i clic pentru a deschide fi\u015fierul","click to play the video":"Face\u0163i clic pentru a reda secven\u0163a video","back to previous page":"\u00eenapoi la pagina anterioar\u0103","download":"Desc\u0103rcare","archives":"Arhive","basket":"Co\u015f","switch between fullscreen and normal":"Comutare \u00eentre ecranul \u00eentreg \u015fi cel normal","switch on \/ switch off the sound":"Pornire\/oprire sunet","switch between 2d and 3d mode":"Comutare \u00eentre modul 2D \u015fi cel 3D","%name% invites you to discover %title%":"%name% ar dori s\u0103 v\u0103 prezinte %title%\n","Please click on the following link to open %title : %link%":"Face\u0163i clic pe leg\u0103tura de mai jos pentru deschidere %title%\n%link%","overview":"Prezentare general\u0103","search results for":"rezultatele c\u0103ut\u0103rii pentru","tap twice or spread your fingers to zoom in":"Atinge\u0163i de dou\u0103 ori sau desface\u0163i dou\u0103 degete pentru a transfoca","share on facebook":"Facebook","share on twitter":"Twitter"},"ru":{"printing will start automatically when pages are downloaded":"\u041f\u0435\u0447\u0430\u0442\u044c \u043d\u0430\u0447\u043d\u0435\u0442\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u043e\u0441\u043b\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0441\u0442\u0440\u0430\u043d\u0438\u0446","normal view":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043e\u0442 \u0440\u0435\u0436\u0438\u043c\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u043a \u044d\u0441\u043a\u0438\u0437\u0430\u043c \u0441\u0442\u0440\u0430\u043d\u0438\u0446","zoom in":"\u0443\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c","zoom out":"\u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u044f \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430","print":"\u041f\u0435\u0447\u0430\u0442\u044c","tell a friend":"\u0420\u0430\u0441\u0441\u043a\u0430\u0437\u0430\u0442\u044c \u0434\u0440\u0443\u0433\u0443","search":"\u041f\u043e\u0438\u0441\u043a","add \/ remove bookmark":"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c\/\u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0443","download pdf":"\u0421\u043a\u0430\u0447\u0430\u0442\u044c pdf-\u0444\u0430\u0439\u043b ","help":"\u041f\u043e\u043c\u043e\u0449\u044c ","switch between book and overview":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043e\u0442 \u0440\u0435\u0436\u0438\u043c\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u043a \u044d\u0441\u043a\u0438\u0437\u0430\u043c \u0441\u0442\u0440\u0430\u043d\u0438\u0446","zoom in and out":"\u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044f \u0438 \u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f","previous double page":"\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439 \u0440\u0430\u0437\u0432\u043e\u0440\u043e\u0442","frontpage":"\u0411\u0440\u043e\u0448\u044e\u0440\u0430 \u0446\u0435\u043b\u0438\u043a\u043e\u043c","next double page":"\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437\u0432\u043e\u0440\u043e\u0442","last page":"\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u044f\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","click once to zoom in, click again to zoom out":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 1 \u0440\u0430\u0437 \u0434\u043b\u044f \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044f\/\u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u044f \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430","roll the mouse wheel to zoom in\/out":"\u0423\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u0435\/\u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u0435 \u043c\u0430\u0441\u0448\u0442\u0430\u0431\u0430 \u043a\u043e\u043b\u0435\u0441\u0438\u043a\u043e\u043c \u043c\u044b\u0448\u0438","click and drag a corner to switch page":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0438 \u043f\u043e\u0442\u044f\u043d\u0438\u0442\u0435 \u0437\u0430 \u0443\u0433\u043e\u043b \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043b\u0438\u0441\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b","click on a bookmark to go to page":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0443, \u0447\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443","preparing print":"\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043f\u0435\u0447\u0430\u0442\u0438","right page":"\u041f\u0440\u0430\u0432\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","left page":"\u041b\u0435\u0432\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","spread":"\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c","entire brochure":"\u0411\u0440\u043e\u0448\u044e\u0440\u0430 \u0446\u0435\u043b\u0438\u043a\u043e\u043c","between pages":"\u041c\u0435\u0436\u0434\u0443 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u043c\u0438","one page per sheet":"\u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u043d\u0430 \u043e\u0434\u043d\u043e\u043c \u043b\u0438\u0441\u0442\u0435","two pages per sheet":"\u0434\u0432\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043d\u0430 \u043e\u0434\u043d\u043e\u043c \u043b\u0438\u0441\u0442\u0435","close":"\u0431\u043b\u0438\u0437\u043a\u043e","your name":"\u0412\u0430\u0448\u0435 \u0438\u043c\u044f","the message":"\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435","the e-mail(s) of your friend(s)":"\u0410\u0434\u0440\u0435\u0441(\u0430) e-mail \u0432\u0430\u0448\u0438\u0445 \u0434\u0440\u0443\u0437\u0435\u0439","send":"\u041e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c","no result found":"\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Press the link below to open Fluidbook:","next page with the word":"\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 \u0441\u043e \u0441\u043b\u043e\u0432\u043e\u043c","previous page":"\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430","%total% hits on %pages% pages, %this% hits on this page":"%total% \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043d\u0430 %pages% \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0445, %this% \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043d\u0430 \u044d\u0442\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435","chapters":"\u0420\u0430\u0437\u0434\u0435\u043b\u044b","marked pages":"\u041f\u043e\u043c\u0435\u0447\u0435\u043d\u043d\u044b\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b","you need to enter 3 letters to start searching":"\u041d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0432\u0432\u0435\u0441\u0442\u0438 3 \u0431\u0443\u043a\u0432\u044b, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0447\u0430\u0442\u044c \u043f\u043e\u0438\u0441\u043a","hit(s)":"\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442(\u043e\u0432)","go to page":"\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435","you can't bookmark the frontpage":"\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0443 \u0433\u043b\u0430\u0432\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443","click for more information about the product":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u043e \u0442\u043e\u0432\u0430\u0440\u0435","click to open the link":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435","click to send an e-mail":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043e\u0442\u043f\u0440\u0430\u0432\u043a\u0438 e-mail","video":"video","go to the page":"\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435","multimedia":"Multimedia","no result on this page":"\u043d\u0438\u043a\u0430\u043a\u043e\u0433\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u043d\u0430 \u044d\u0442\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435","your e-mail":"\u0412\u0430\u0448 e-mail","use a comma to separate several e-mails":"\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e e-mail \u0430\u0434\u0440\u0435\u0441\u043e\u0432 \u0447\u0435\u0440\u0435\u0437 \u0437\u0430\u043f\u044f\u0442\u0443\u044e","0":"","click to magnify":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u0443\u0432\u0435\u043b\u0438\u0447\u0435\u043d\u0438\u044f","the item has been added to your cart":"\u0422\u043e\u0432\u0430\u0440 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d \u0432 \u043a\u043e\u0440\u0437\u0438\u043d\u0443","my cart":"\u041c\u043e\u044f \u043a\u043e\u0440\u0437\u0438\u043d\u0430","Total":"\u0418\u0442\u043e\u0433\u043e","back":"\u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u0442\u044c","you don't have any bookmarks":"\u0423 \u0432\u0430\u0441 \u043d\u0435\u0442 \u0437\u0430\u043a\u043b\u0430\u0434\u043e\u043a","download the whole document for offline use":"\u0421\u043a\u0430\u0447\u0430\u0442\u044c \u0432\u0435\u0441\u044c \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435","download for offline use":"\u0421\u043a\u0430\u0447\u0430\u0442\u044c \u0434\u043b\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435","drag handle to switch page":"\u041f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u043e\u0439 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043b\u0438\u0441\u0442\u044b\u0432\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446","add to cart":"\u041f\u043e\u043b\u043e\u0436\u0438\u0442\u044c \u0432 \u043a\u043e\u0440\u0437\u0438\u043d\u0443","click to open the file":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u044f \u043f\u0430\u043f\u043a\u0438","click to play the video":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0432\u0438\u0434\u0435\u043e","back to previous page":"\u0412\u0435\u0440\u043d\u0443\u0442\u044c\u0441\u044f \u043d\u0430 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443","download":"\u0421\u043a\u0430\u0447\u0430\u0442\u044c","archives":"\u0410\u0440\u0445\u0438\u0432","basket":"\u043a\u043e\u0440\u0437\u0438\u043d\u0430","switch between fullscreen and normal":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043e\u0442 \u043e\u0431\u044b\u0447\u043d\u043e\u0433\u043e \u043a \u043f\u043e\u043b\u043d\u043e\u044d\u043a\u0440\u0430\u043d\u043d\u043e\u043c\u0443 \u0440\u0435\u0436\u0438\u043c\u0443","switch on \/ switch off the sound":"\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c\/\u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0432\u0443\u043a","switch between 2d and 3d mode":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043c\u0435\u0436\u0434\u0443 \u0444\u043e\u0440\u043c\u0430\u0442\u0430\u043c\u0438 2D \u0438 3D","%name% invites you to discover %title%":"%name% \u0445\u043e\u0447\u0435\u0442 \u043f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u0432\u0430\u043c %title%\n","Please click on the following link to open %title : %link%":"\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043d\u0430 \u0441\u0441\u044b\u043b\u043a\u0443 \u0432\u043d\u0438\u0437\u0443 \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u0445\u043e\u0434\u0430 %title%\n%link%","overview":"\u041f\u0435\u0440\u0435\u0445\u043e\u0434 \u043e\u0442 \u0440\u0435\u0436\u0438\u043c\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u043a \u044d\u0441\u043a\u0438\u0437\u0430\u043c \u0441\u0442\u0440\u0430\u043d\u0438\u0446","search results for":"\u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430","tap twice or spread your fingers to zoom in":"\u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u0432\u0430\u0436\u0434\u044b \u0434\u043b\u044f \u043f\u0440\u0438\u0431\u043b\u0438\u0436\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0440\u0430\u0441\u0442\u044f\u043d\u0438\u0442\u0435 \u043a\u0430\u0440\u0442\u0438\u043d\u043a\u0443 \u0434\u0432\u0443\u043c\u044f \u043f\u0430\u043b\u044c\u0446\u0430\u043c\u0438","share on facebook":"Facebook","share on twitter":"Twitter"},"si":{"printing will start automatically when pages are downloaded":"","normal view":"\u0db1\u0ddd\u0db8\u0dbd\u0dca \u0dc0\u0dd3\u0dc0\u0dca","zoom in":"\u0da2\u0dd6\u0db8\u0dca \u0d89\u0db1\u0dca","zoom out":"\u0da2\u0dd6\u0db8\u0dca \u0d85\u0dc0\u0dd4\u0da7\u0dca","print":"\u0db8\u0dd4\u0daf\u0dca\u0dbb\u0dab\u0dba \u0d9a\u0dd2\u0dbb\u0dd2\u0db8","tell a friend":"\u0db8\u0dd2\u0dad\u02db\u0dbb\u0dd9\u0d9a\u02db\u0da7 \u0d9a\u0dd2\u0dba\u0db1\u0dca\u0db1","search":"\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1","add \/ remove bookmark":"\u200d\u0db6\u0dd4\u0d9a\u0dca\u0db8\u0dcf\u0d9a\u0dca \u0d92\u0d9a\u0dad\u02db\/\u0d89\u0dc0\u0dad\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","download pdf":"\u0db4\u0dd3 \u0da9\u0dd3 \u0d92\u0db5\u0dca \u0da9\u0dc0\u0dd4\u0db1\u0dca\u0dbd\u0ddc\u0da9\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","help":"\u0dc4\u0dd9\u0dbd\u0dca\u0db4\u0dca","switch between book and overview":"\u0db6\u0dd4\u0d9a\u0dca \u0dc3\u0dc4 \u0d94\u0dc0\u0dc0\u0dd2\u0dc0\u0dca \u0d85\u0dad\u0dbb \u0dc3\u0dca\u0dc0\u0dd2\u0da7\u0dca\u0da0\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","zoom in and out":"\u0da2\u0dd4\u0db8\u0dca \u0d89\u0db1\u0dca \u0dc3\u0dc4 \u0da2\u0dd4\u0db8\u0dca \u0d85\u0dc0\u0dd4\u0da7\u0dca","previous double page":"\u0db4\u0dd6\u0dbb\u0dca\u0dc0 \u0daf\u0dca\u0dc0\u0dd2\u0dad\u0dca\u0dc0 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","frontpage":"\u0db4\u0dd9\u0dbb \u0db4\u0dd2\u0da7\u0dd4\u0dc0","next double page":"\u0d8a\u0dc5\u0d9c \u0daf\u0dca\u0dc0\u0dd2\u0dad\u0dca\u0dc0 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","last page":"\u0d85\u0dc0\u0dc3\u0dcf\u0db1 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","click once to zoom in, click again to zoom out":"\u0da2\u0dd4\u0db8\u0dca \u0d89\u0db1\u0dca \u0db1\u0dd2\u0dbb\u0dd2\u0db8\u0da7 \u0dc0\u0dbb\u0d9a\u0dca \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1\u201a\u0d92 \u0dc0\u0dd9\u0d9c\u0dca\u0db8 \u0da2\u0dd4\u0db8\u0dca \u0d85\u0dc0\u0dd4\u0da7\u0dca \u0d9a\u0dd2\u0dbb\u0dd2\u0db8\u0da7","roll the mouse wheel to zoom in\/out":"\u0db8\u0dc0\u0dd4\u0dc3\u0dca \u0dc0\u0dd3\u0dbd\u0dca \u0d92\u0d9a \u0da2\u0dd4\u0db8\u0dca \u0d89\u0db1\u0dca\/\u0d85\u0dc0\u0dd4\u0da7\u0dd2 \u0d9a\u0dd2\u0dbb\u0dd2\u0db8\u0da7 \u0dbb\u0ddc\u0dbd\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","click and drag a corner to switch page":"\u0db4\u0dd2\u0da7\u0dd4 \u0db4\u0dd9\u0dbb\u0dc5\u0dd2\u0db8 \u0dc3\u0db3\u0dc4\u0dcf \u0d9a\u0ddd\u0db1\u0dbb\u0dba\u0d9a\u0dca \u0da9\u0dd9\u0dbb\u0dca\u0d9a\u0dca \u0d9a\u0ddc\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","click on a bookmark to go to page":"\u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0da7 \u0dba\u0dcf\u0db8 \u0dc3\u0daf\u0dc4\u0dcf \u0db6\u0dd4\u0d9a\u0dca\u0db8\u0dcf\u0d9a\u0dca \u0d92\u0d9a \u0db8\u0dad \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","preparing print":"\u0db8\u0dd4\u0321\u0daf\u0dca\u0dbb\u0dab \u0dc3\u0dd6\u0daf\u0dcf\u0db1\u0db8\u0dca \u0d9a\u0dd2\u0dbb\u0dd2\u0db8","right page":"\u0daf\u0d9a\u0dd4\u0dab\u0dd6 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","left page":"\u0dc0\u0db8\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0","spread":"\u0dc0\u0dca\u200d\u0dba\u0dcf\u0db4\u0dca\u0dad \u0d9a\u0dbb\u0db1\u0dca\u0db1","entire brochure":"\u0db8\u0dd4\u0dbd\u0dd4 \u0db6\u0dca\u200d\u0dbb\u0ddd\u0da0\u0dbb\u0dba","between pages":"\u0db4\u0dd2\u0da7\u0dd4 \u0d85\u0dad\u0dbb","one page per sheet":"\u0dc3\u0dd1\u0db8 \u0dc2\u0dd2\u0da7\u0dca\u0da7\u0dd4\u0dc0\u0d9a\u0db8 \u0d92\u0d9a \u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0d9a\u0dca","two pages per sheet":"\u0dc3\u0dd1\u0db8 \u0dc2\u0dd2\u0da7\u0dca\u0da7\u0dd4\u0dc0\u0d9a\u0db8 \u0db6\u0dd2\u0da7\u0dd4 \u0daf\u0dd9\u0d9a\u0d9a\u0dca","close":"\u0dc0\u0dc3\u0dcf \u0daf\u0dd0\u0db8\u0dd3\u0db8","your name":"\u0d94\u0db6\u0d9c\u0dda \u0db1\u0db8","the message":"\u0db4\u0dab\u0dd2\u0dc0\u0dd4\u0da9\u0dba","the e-mail(s) of your friend(s)":"\u0d94\u0db6\u0dd9\u0d9c\u0dca \u0db8\u0dd2\u0dad\u02db\u0dbb\u0dcf\u0d9c\u0dda \u0d8a-\u0db8\u0dda\u0dbd\u0dca \u0d85\u0d82\u0d9a\u0dba","send":"\u0dc3\u0dd9\u0db1\u0dca\u0da9\u0dca","no result found":"\u0db4\u0dca\u0dbb\u0dad\u0dd2\u0db5\u0dbd \u0dbd\u0dd0\u0db6\u0dd2 \u0db1\u0dd0\u0dad","fluidbook":"\u0dc6\u0dca\u0dbd\u0dd4\u0dba\u0dd2\u0da9\u0dca \u0db6\u0dd4\u0d9a\u0dca","press the link below to open Fluidbook:":"\u0dc6\u0dca\u0dbd\u0dd4\u0dba\u0dd2\u0da9\u0dca \u0db6\u0dd4\u0d9a\u0dca \u0d87\u0dbb\u0dd3\u0db8\u0da7 \u0db4\u0dc4\u0dad \u0daf\u0dd0\u0d9a\u0dca\u0dc0\u0dd9\u0db1 \u0dbd\u0dd2\u0d82\u0d9a\u0dca \u0d94\u0db6\u0db1\u0dca\u0db1","next page with the word":"\u0dc0\u0da0\u0db1 \u0dc3\u0db8\u0d9c \u0d8a\u0dc5\u0d9c \u0db4\u0dd2\u0da7\u0dd4\u0dc0","previous page":"\u0db4\u0dd6\u0dbb\u0dca\u0dc0 \u0db4\u0dd2\u0da7\u0dd4\u0dc0","%total% hits on %pages% pages, %this% hits on this page":"%total% \u0dc4\u0dd2\u0da7\u0dca\u0dc3\u0dca \u0d94\u0db1\u0dca %pages% \u0db4\u0dd2\u0da7\u0dd4\u201a %this% \u0db8\u0dd9\u0db8 \u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0dda \u0dc4\u0dd2\u0da7\u0dca\u0dc3\u0dca \u0d94\u0db1\u0dca","chapters":"\u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da2\u0dda\u0daf","marked pages":"\u0db7\u0dcf\u0dc0\u0dd2\u0dad\u0dba\u0dda \u0db1\u0dd0\u0dad","you need to enter 3 letters to start searching":"\u0dc3\u0dd9\u0dc0\u0dd3\u0db8 \u0db4\u0da7\u0db1\u0dca \u0d9c\u0dd0\u0db1\u0dd2\u0db8 \u0dc3\u0db3\u0dc4\u0dca \u0d94\u0db6\u0da7 \u0d85\u0d9a\u02db\u0dbb\u0dd1 3 \u0d9a\u0dca \u0db4\u0dca\u0dbb\u0dd9\u0dc0\u0dca\u0dc1 \u0d9a\u0dc5 \u0dba\u0dd4\u0dad\u02db\u0dba","hit(s)":"\u0dc4\u0dd2\u0da7\u0dca (\u0dc4\u0dd2\u0da7\u0dca\u0dc3\u0dca)","go to page":"\u0db4\u0dd2\u0da7\u0dd4\u0dc0 \u0dc0\u0dd9\u0dad \u0dba\u0db1\u0dca\u0db1","you can't bookmark the frontpage":"\u0d94\u0db6\u0da7 \u0db8\u0dd4\u0dbd\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0da7 \u0db6\u0dd4\u0d9a\u0dca\u0db8\u0dcf\u0d9a\u0dca \u0d9a\u0dc5 \u0db1\u0ddc\u0dc4\u0dd0\u0d9a","click for more information about the product":"\u0d8b\u0dad\u0dca\u0db4\u0dcf\u0daf\u0db1 \u0d9c\u0dd0\u0db1 \u0dc0\u0dd0\u0da9\u0dd2\u0daf\u0dd4\u0dbb \u0daf\u0dd0\u0db1\u0d9c\u0dd0\u0db1\u0dd2\u0db8\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","click to open the link":"\u0dc3\u0db8\u0dca\u0db6\u0db1\u0dca\u0db0\u0dba \u0dc0\u0dd2\u0dc0\u0dbb \u0d9a\u0dd2\u0dbb\u0dd2\u0db8\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","click to send an e-mail":"\u0d8a-\u0db8\u0dd9\u0dbd\u0dca \u0d92\u0d9a\u0d9a\u0dca \u0dba\u0dd0\u0dc0\u0dd3\u0db8\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1","video":"\u0dc0\u0dd3\u0da9\u0dd3\u0dba\u0ddd","go to the page":"\u0db4\u0dd2\u0da7\u0dd4\u0dc0 \u0dc0\u0dd9\u0dad\u0da7 \u0dba\u0db1\u0dca\u0db1","multimedia":"\u0db6\u0dc4\u0dd4 \u0db8\u0dcf\u0db0\u0dca\u200d\u0dba","no result on this page":"\u0db8\u0dd9\u0db8 \u0db4\u0dd2\u0da7\u0dd4\u0dc0\u0dda \u0db4\u0dca\u0dbb\u0dad\u0dd2\u0db5\u0dbd \u0db1\u0dd0\u0dad","your e-mail":"\u0d94\u0db6\u0dd9\u0d9c\u0dca \u0d8a-\u0db8\u0dda\u0dbd\u0dca \u0d92\u0d9a","use a comma to separate several e-mails":"","0":"","click to magnify":"","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name% \u0d94\u0db6\u0da7 %title% \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1\u0da7 \u0d9a\u0dd0\u0db8\u0dd0\u0dad\u0dd2 \u0dc0\u0dd9\u0dba\u0dd2]\n","Please click on the following link to open %title : %link%":"%title% \u0dc0\u0dd2\u0dc0\u0dbb \u0d9a\u0dd2\u0dbb\u0dd2\u0db8 \u0dc3\u0db3\u0dc4\u0dcf \u0db4\u0dc4\u0dad \u0daf\u0dd0\u0d9a\u0dca\u0dc0\u0dd9\u0db1 %link% \u0d91\u0d9a\u0da7 \u0d9a\u0dca\u0dbd\u0dd2\u0d9a\u0dca \u0d9a\u0dbb\u0db1\u0dca\u0db1\n%link%","overview":"\u0d94\u0dc0\u0dc0\u0dd3\u0dc0\u0dca","search results for":"","tap twice or spread your fingers to zoom in":"","share on facebook":"","share on twitter":""},"sv":{"printing will start automatically when pages are downloaded":"Utskriften startar automatiskt n\u00e4r sidorna \u00e4r nerladdade","normal view":"Normal view","zoom in":"Zooma in","zoom out":"Zooma ut","print":"Skriv ut","tell a friend":"Tipsa en v\u00e4n","search":"S\u00f6k","add \/ remove bookmark":"L\u00e4gg till\/ta bort bokm\u00e4rke","download pdf":"Ladda ner pdf","help":"Hj\u00e4lp","switch between book and overview":"Switcha mellan bok och \u00f6versikt","zoom in and out":"Zooma in och ut","previous double page":"F\u00f6reg\u00e5ende uppslag","frontpage":"Framsidan","next double page":"N\u00e4sta uppslag","last page":"Baksidan","click once to zoom in, click again to zoom out":"Klicka f\u00f6r att zooma in, klicka igen f\u00f6r att zooma ut","roll the mouse wheel to zoom in\/out":"Rulla p\u00e5 hjulet f\u00f6r at zooma in\/ut","click and drag a corner to switch page":"Klicka och dra i ett h\u00f6rn f\u00f6r att v\u00e4nda sida","click on a bookmark to go to page":"Klicka p\u00e5 ett bokm\u00e4rke f\u00f6r att g\u00e5 till sidan","preparing print":"F\u00f6rbereder utskrift","right page":"H\u00f6ger sida","left page":"V\u00e4nster sida","spread":"Uppslaget","entire brochure":"Alla sidor","between pages":"Mellan sidorna","one page per sheet":"En sida per papper","two pages per sheet":"Tv\u00e5 sidor per papper","close":"St\u00e4ng","your name":"Ditt namn","the message":"Meddelande","the e-mail(s) of your friend(s)":"Din v\u00e4ns e-mail","send":"Skicka","no result found":"Din s\u00f6kning gav inga tr\u00e4ffar","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Tryck p\u00e5 l\u00e4nken f\u00f6r att \u00f6ppna Fluidbook: ","next page with the word":"N\u00e4sta sida med s\u00f6kordet","previous page":"F\u00f6reg\u00e5ende sida med s\u00f6kordet","%total% hits on %pages% pages, %this% hits on this page":"%total% tr\u00e4ffar p\u00e5 %pages% sidor, %this% tr\u00e4ffar p\u00e5 denna sidan","chapters":"Inneh\u00e5llsf\u00f6rteckning","marked pages":"Markerade sidor","you need to enter 3 letters to start searching":"S\u00f6kning sker ej p\u00e5 mindre \u00e4n 3 bokst\u00e4ver","hit(s)":"tr\u00e4ff(ar)","go to page":"G\u00e5 till sida","you can't bookmark the frontpage":"Det g\u00e5r inte att s\u00e4tta bokm\u00e4rke p\u00e5 omslaget","click for more information about the product":"Klicka f\u00f6r mer information om produkten","click to open the link":"Klicka f\u00f6r att \u00f6ppna l\u00e4nken","click to send an e-mail":"Klicka f\u00f6r att skicka ett e-mail","video":"video","go to the page":"G\u00e5 till sidan","multimedia":"Multimedia","no result on this page":"Inga tr\u00e4ffar p\u00e5 denna sidan","your e-mail":"Din e-mail","use a comma to separate several e-mails":"Anv\u00e4nd kommatecken f\u00f6r att skilja flera e-postmeddelanden","0":"","click to magnify":"Klicka f\u00f6r att f\u00f6rstora","the item has been added to your cart":"objektet har lagts till din varukorg","my cart":"Varukorg","Total":"Summa","back":"Tillbaka","you don't have any bookmarks":"Du har inga bokm\u00e4rken","download the whole document for offline use":"Ladda ner hela dokumentet f\u00f6r anv\u00e4ndning offline","download for offline use":"Ladda ner f\u00f6r anv\u00e4ndning offline","drag handle to switch page":"Dra handtaget f\u00f6r att byta sida","add to cart":"","click to open the file":"Klicka f\u00f6r att \u00f6ppna filen","click to play the video":"Klicka f\u00f6r att spela videon","back to previous page":"Tillbaka till f\u00f6reg\u00e5ende sida","download":"Ladda ner pdf","archives":"Arkiv","basket":"Kundkorg","switch between fullscreen and normal":"V\u00e4xla mellan fullsk\u00e4rm och normal","switch on \/ switch off the sound":"S\u00e4tta p\u00e5 \/ st\u00e4nga av ljudet","switch between 2d and 3d mode":"V\u00e4xla mellan 2D och 3D","%name% invites you to discover %title%":"%name% tycker att du ska ta en titt p\u00e5 %title%\n","Please click on the following link to open %title : %link%":"Klicka p\u00e5 l\u00e4nken nedan f\u00f6r att \u00f6ppna %title%\n%link%","overview":"\u00d6versikt","search results for":"s\u00f6kresultat f\u00f6r","tap twice or spread your fingers to zoom in":"peka tv\u00e5 g\u00e5nger eller sprid fingrarna f\u00f6r att zooma in","share on facebook":"Dela p\u00e5 Facebook","share on twitter":"Dela p\u00e5 Twitter"},"zh":{"click to hide help":"","hover your mouse to display again this help":"","printing will start automatically when pages are downloaded":"","normal view":"\u5e38\u89c4\u89c6\u7a97","zoom in":"\u653e\u5927","zoom out":"\u7f29\u5c0f","print":"\u6253\u5370","tell a friend":"\u544a\u8bc9\u597d\u53cb","search":"\u641c\u5bfb","add \/ remove bookmark":"\u589e\u52a0\/\u5220\u9664\u4e66\u7b7e","download pdf":"\u4e0b\u8f7dPDF\u6587\u4ef6","help":"\u5e2e\u52a9","switch between book and overview":"\u5728\u5f53\u524d\u9875\u548c\u7d22\u5f15\u4e4b\u95f4\u8f6c\u6362","zoom in and out":"\u653e\u5927\u548c\u7f29\u5c0f","previous double page":"\u4e0a\u4e00\u9875","frontpage":"\u5c01\u9762","next double page":"\u4e0b\u4e00\u9875","last page":"\u5c01\u5e95","click once to zoom in, click again to zoom out":"\u5355\u51fb\u653e\u5927\uff0c\u53cc\u51fb\u7f29\u5c0f","roll the mouse wheel to zoom in\/out":"\u62d6\u52a8\u9f20\u6807\u6eda\u8f6e\u653e\u5927\/\u7f29\u5c0f","click and drag a corner to switch page":"\u70b9\u51fb\u62d6\u52a8\u4e66\u89d2\u7ffb\u9875","click on a bookmark to go to page":"\u70b9\u51fb\u4e66\u7b7e\u56de\u5230\u6b64\u9875","preparing print":"\u6b63\u5728\u6253\u5370\u4e2d","right page":"\u53f3\u9875","left page":"\u5de6\u9875","spread":"\u6574\u7248","entire brochure":"\u6574\u518c","between pages":"\u4ece \u2026\u9875 \u5230\u2026\u9875","one page per sheet":"\u4e00\u5f20\u4e00\u9875","two pages per sheet":"\u4e00\u5f20\u4e24\u9875","close":"\u5173\u95ed","your name":"\u60a8\u7684\u59d3","the message":"\u60a8\u7684\u7559\u8a00","the e-mail(s) of your friend(s)":"\u597d\u53cb\u7684\u7535\u5b50\u90ae\u7bb1","send":"\u53d1\u9001","no result found":"\u65e0\u7ed3\u679c","fluidbook":"\u52a8\u611f\u4e4b\u4e66","press the link below to open Fluidbook:":"\u70b9\u51fb\u540e\u9762\u94fe\u63a5\u4ee5\u6253\u5f00\u52a8\u611f\u4e4b\u4e66","next page with the word":"\u4e0b\u4e00\u641c\u5bfb\u7ed3\u679c","previous page":"\u4e0a\u4e00\u641c\u5bfb\u7ed3\u679c","%total% hits on %pages% pages, %this% hits on this page":"\u603b\u5171\u5728%pages%\u9875\u627e\u5230%total%\u4e2a\u641c\u5bfb\u7ed3\u679c \u5728\u6b64\u9875\u4e0a\u7684%this%\u4e2a\u641c\u5bfb\u7ed3\u679c ","chapters":"\u76ee\u5f55","marked pages":"\u4e66\u7b7e\u9875","you need to enter 3 letters to start searching":"\u4f60\u5e94\u8be5\u81f3\u5c11\u6253\u4e09\u4e2a\u5b57\u6bcd","hit(s)":"\u641c\u5bfb\u7ed3\u679c","go to page":"\u8bf7\u770b\u7b2c\u2026\u9875","you can't bookmark the frontpage":"\u4f60\u4e0d\u80fd\u5728\u5c01\u9762\u4e0a\u4f5c\u4e66\u7b7e\u8bb0\u53f7","click for more information about the product":"\u66f4\u591a\u7684\u4fe1\u606f","click to open the link":"\u70b9\u51fb\u8bbf\u95ee\u7f51\u9875","click to send an e-mail":"\u53d1\u9001\u90ae\u4ef6","video":"\u89c6\u9891","go to the page":"\u8bf7\u770b\u7b2c\u2026\u9875 ","multimedia":"\u591a\u5a92\u4f53","no result on this page":"\u6b64\u9875\u6ca1\u6709\u60a8\u8981\u627e\u7684\u5185\u5bb9","your e-mail":"\u60a8\u7684\u90ae\u4ef6","use a comma to separate several e-mails":"\u7535\u5b50\u90ae\u4ef6\u4e4b\u95f4\u8bf7\u7528\u9017\u53f7\u5206\u5f00","0":"","click to magnify":"","the item has been added to your cart":"","my cart":"","Total":"","back":"","you don't have any bookmarks":"","download the whole document for offline use":"","download for offline use":"","drag handle to switch page":"","add to cart":"","click to open the file":"","click to play the video":"","back to previous page":"","download":"\u4e0b\u8f7d","archives":"","basket":"","switch between fullscreen and normal":"","switch on \/ switch off the sound":"\u5207\u6362\u58f0\u97f3","switch between 2d and 3d mode":"","%name% invites you to discover %title%":"%name%\u9080\u8bf7\u60a8\u53c2\u89c2%title%\n","Please click on the following link to open %title : %link%":"\u8bf7\u70b9\u51fb\u540e\u9762\u7684\u94fe\u63a5\u4ee5\u6253\u5f00%title% \n%link%","An update of the publication is available. Do you want to load it ?":"","tap twice or spread your fingers to zoom in":"","overview":"\u7d22\u5f15","search results for":"","share on facebook":"","share on twitter":"","home":"","find a distributor":"","tel:":"","Send details by email":"","promotions":"","next to me":""},"tr":{"printing will start automatically when pages are downloaded":"Sayfalar y\u00fcklendi\u011finde, bask\u0131 otomatik olarak ba\u015flat\u0131lacakt\u0131r","normal view":"Normal g\u00f6r\u00fcn\u00fcm","zoom in":"Yak\u0131nla\u015ft\u0131r","zoom out":"Uzakla\u015ft\u0131r","print":"Bask\u0131","tell a friend":"Arkada\u015f\u0131na bahset","search":"Ara","add \/ remove bookmark":"Yer i\u015fareti ekle\/kald\u0131r","download pdf":"PDF indir","help":"Yard\u0131m","switch between book and overview":"Kitap g\u00f6r\u00fcn\u00fcm\u00fc ile genel g\u00f6r\u00fcn\u00fcm aras\u0131nda ge\u00e7i\u015f yap","zoom in and out":"Yak\u0131nla\u015ft\u0131r ve uzakla\u015ft\u0131r","previous double page":"\u00d6nceki iki sayfa","frontpage":"\u00d6n sayfa","next double page":"Sonraki iki sayfa","last page":"Son sayfa","click once to zoom in, click again to zoom out":"Yak\u0131nla\u015ft\u0131rmak i\u00e7in bir kez t\u0131klat\u0131n, uzakla\u015ft\u0131rmak i\u00e7in tekrar t\u0131klat\u0131n","roll the mouse wheel to zoom in\/out":"Yak\u0131nla\u015ft\u0131rmak\/uzakla\u015ft\u0131rmak i\u00e7in fare tekerle\u011fini d\u00f6nd\u00fcr\u00fcn","click and drag a corner to switch page":"Sayfay\u0131 de\u011fi\u015ftirmek i\u00e7in bir k\u00f6\u015feye t\u0131klat\u0131p s\u00fcr\u00fckleyin\n","click on a bookmark to go to page":"\u0130lgili sayfaya gitmek i\u00e7in yer i\u015faretini t\u0131klat\u0131n\n","preparing print":"Bask\u0131 haz\u0131rl\u0131\u011f\u0131","right page":"Sa\u011f sayfa","left page":"Sol sayfa","spread":"Yay","entire brochure":"T\u00fcm bro\u015f\u00fcr","between pages":"Sayfalar aras\u0131","one page per sheet":"Her yaprakta tek sayfa","two pages per sheet":"Her yaprakta iki sayfa","close":"Kapat","your name":"Ad\u0131n\u0131z","the message":"Mesaj\u0131n\u0131z","the e-mail(s) of your friend(s)":"Arkada\u015f(lar)\u0131n\u0131z\u0131n e-posta adres(ler)i","send":"G\u00f6nder","no result found":"Sonu\u00e7 bulunamad\u0131","fluidbook":"Fluidbook","press the link below to open Fluidbook:":"Fluidbook'u a\u00e7mak i\u00e7in l\u00fctfen a\u015fa\u011f\u0131daki ba\u011flant\u0131y\u0131 t\u0131klat\u0131n:","next page with the word":"S\u00f6z\u00fc i\u00e7eren sonraki sayfa","previous page":"\u00d6nceki sayfa","%total% hits on %pages% pages, %this% hits on this page":"%pages% sayfada %total% sonu\u00e7, bu sayfada %this% sonu\u00e7","chapters":"B\u00f6l\u00fcmler","marked pages":"\u0130\u015faretli sayfalar","you need to enter 3 letters to start searching":"Aramay\u0131 ba\u015flatabilmek i\u00e7in 3 harf girmeniz gerekiyor","hit(s)":"sonu\u00e7","go to page":"Sayfaya git","you can't bookmark the frontpage":"\u00d6n sayfaya yer i\u015fareti koyamazs\u0131n\u0131z","click for more information about the product":"\u00dcr\u00fcn hakk\u0131nda daha fazla bilgi i\u00e7in t\u0131klat\u0131n","click to open the link":"Ba\u011flant\u0131y\u0131 a\u00e7mak i\u00e7in t\u0131klat\u0131n","click to send an e-mail":"E-posta g\u00f6ndermek i\u00e7in t\u0131klat\u0131n","video":"video","go to the page":"Sayfaya git","multimedia":"Multimedya","no result on this page":"Bu sayfada sonu\u00e7 yok","your e-mail":"E-posta adresiniz","use a comma to separate several e-mails":"Birden \u00e7ok e-postay\u0131 ay\u0131rmak i\u00e7in virg\u00fcl kullan\u0131n","0":"","click to magnify":"B\u00fcy\u00fctmek i\u00e7in t\u0131klat\u0131n","the item has been added to your cart":"Bu \u00f6\u011fe sepetinize eklendi","my cart":"Sepetim","Total":"Toplam","back":"Geri","you don't have any bookmarks":"Hi\u00e7 yer i\u015faretiniz yok","download the whole document for offline use":"\u00c7evrimd\u0131\u015f\u0131 kullan\u0131m i\u00e7in belgenin tamam\u0131n\u0131 indirin","download for offline use":"\u00c7evrimd\u0131\u015f\u0131 kullan\u0131m i\u00e7in indir","drag handle to switch page":"Sayfay\u0131 de\u011fi\u015ftirmek i\u00e7in bu \u00f6\u011feyi s\u00fcr\u00fckleyin","add to cart":"Sepete ekle","click to open the file":"Dosyay\u0131 a\u00e7mak i\u00e7in t\u0131klat\u0131n","click to play the video":"Videoyu oynatmak i\u00e7in t\u0131klat\u0131n","back to previous page":"\u00d6nceki sayfaya d\u00f6n","download":"\u0130ndir","archives":"Ar\u015fivler","basket":"Sepetiniz","switch between fullscreen and normal":"Tam ekran ile normal ekran aras\u0131nda ge\u00e7i\u015f yap","switch on \/ switch off the sound":"Sesi a\u00e7\/kapat","switch between 2d and 3d mode":"2 boyutlu mod ile 3 boyutlu mod aras\u0131nda ge\u00e7i\u015f yap","%name% invites you to discover %title%":"%name% size \u015funu g\u00f6stermek istiyor: %title%\n","Please click on the following link to open %title : %link%":"\u015eunu a\u00e7mak i\u00e7in a\u015fa\u011f\u0131daki ba\u011flant\u0131y\u0131 t\u0131klat\u0131n: %title%\n%link%","overview":"Genel g\u00f6r\u00fcn\u00fcm","search results for":"\u015eunun i\u00e7in arama sonu\u00e7lar\u0131:","tap twice or spread your fingers to zoom in":"Yak\u0131nla\u015ft\u0131rmak i\u00e7in iki kez dokunun ya da parmaklar\u0131n\u0131z\u0131 yay\u0131n","share on facebook":"Facebook'ta payla\u015f","share on twitter":"Twitter'da payla\u015f"},"hu":{"click to hide help":"Kattintson a Help elt\u00fcntet\u00e9s\u00e9hez","hover your mouse to display again this help":"Mozgassa meg az egeret a Help megjelen\u00edt\u00e9s\u00e9hez\n","you don't have any bookmarks":"Nincsenek k\u00f6nyvjelz\u0151i","printing will start automatically when pages are downloaded":"A nyomtat\u00e1s automatikusan indul let\u00f6lt\u00e9s ut\u00e1n","normal view":"Norm\u00e1l n\u00e9zet","zoom in":"Nagy\u00edt\u00e1s","zoom out":"Kicsiny\u00edt\u00e9s","print":"Nyomtat\u00e1s","tell a friend":"Aj\u00e1nlom ismer\u0151s\u00f6mnek","search":"Keres\u00e9s","add \/ remove bookmark":"K\u00f6nyvjelz\u0151 Hozz\u00e1ad\u00e1sa\/T\u00f6rl\u00e9se","download pdf":"PDF let\u00f6lt\u00e9se","help":"Help","switch between book and overview":"V\u00e1lt\u00e1s k\u00f6nyv \u00e9s r\u00e1n\u00e9zet k\u00f6z\u00f6tt","zoom in and out":"Kicsiny\u00edt\u00e9s, nagy\u00edt\u00e1s","previous double page":"El\u0151z\u0151 dupla oldal","frontpage":"C\u00edmlap","next double page":"K\u00f6vetkez\u0151 dupla oldal","last page":"Utols\u00f3 oldal","click once to zoom in, click again to zoom out":"Kattintson egyszer a nagy\u00edt\u00e1shoz, m\u00e9g egyszer a kicsiny\u00edt\u00e9shez","roll the mouse wheel to zoom in\/out":"Tekerje az egeret a zoomol\u00e1shoz","click and drag a corner to switch page":"Kattintson a sarokba \u00e9s h\u00fazzon a lapoz\u00e1shoz","click on a bookmark to go to page":"Kattintson a k\u00f6nyvjelz\u0151re az oldalra ugr\u00e1shoz","preparing print":"Nyomtat\u00e1s el\u0151k\u00e9sz\u00edt\u00e9se","right page":"Jobb oldali lap","left page":"Bal oldali lap","spread":"Sz\u00e9th\u00faz\u00e1s","entire brochure":"Teljes bross\u00fara","between pages":"Oldalak k\u00f6z\u00f6tt","one page per sheet":"Egy oldal \u00edvenk\u00e9nt","two pages per sheet":"K\u00e9t oldal \u00edvenk\u00e9nt","close":"Bez\u00e1r\u00e1s\n","your name":"Neve","the message":"\u00dczenet","the e-mail(s) of your friend(s)":"Bar\u00e1t(ai) e-mail c\u00edme(i):","send":"K\u00fcld\u00e9s","no result found":"Nincs eredm\u00e9ny","fluidbook":"Folyad\u00e9kk\u00f6nyv","press the link below to open Fluidbook:":"Kattintson a hivatkoz\u00e1sra a K\u00f6nyv megnyit\u00e1s\u00e1hoz","next page with the word":"K\u00f6vetkez\u0151 oldal a sz\u00f3val","previous page":"El\u0151z\u0151 oldal","%total% hits on %pages% pages, %this% hits on this page":"%total% tal\u00e1lat %pages% oldalak %this% tal\u00e1lat ezen az oldalon","chapters":"Tartalom\n","marked pages":"Jel\u00f6lt oldalak","you need to enter 3 letters to start searching":"3 bet\u0171t be kell \u00edrni a keres\u00e9s kezd\u00e9s\u00e9hez","hit(s)":"tal\u00e1lat(ok)","go to page":"Menj az oldalra","you can't bookmark the frontpage":"Nem lehet a kezd\u0151oldalra k\u00f6nyvjelz\u0151t tenni","click for more information about the product":"Kattintson tov\u00e1bbi inform\u00e1ci\u00f3\u00e9rt a term\u00e9kr\u0151l","click to open the link":"Kattintson a hivatkoz\u00e1s megnyit\u00e1s\u00e1hoz","click to send an e-mail":"Kattintson e-mail k\u00fcld\u00e9s\u00e9hez","video":"Video","go to the page":"Menj az oldalra","multimedia":"Multim\u00e9dia","no result on this page":"Nincs eredm\u00e9ny ezen az oldalon","your e-mail":"Az \u00d6n e-mail c\u00edme","use a comma to separate several e-mails":"Haszn\u00e1ljon vessz\u0151t az e-mailek elv\u00e1laszt\u00e1s\u00e1hoz","":"","click to magnify":"Kattintson a nagy\u00edt\u00e1shoz","the item has been added to your cart":"A cikket hozz\u00e1adtuk a kartonj\u00e1hoz","my cart":"Kartonom","Total":"Teljes","share bookmarks":"megoszt\u00e1s k\u00f6nyvjelz\u0151k","%title%":"Vissza","Please see the attached files from \"%title%\".":"K\u00e9rj\u00fck, olvassa el a csatolt f\u00e1jlokat \"%title%\".","bookmarks":"k\u00f6nyvjelz\u0151k","back":"Vissza","download the whole document for offline use":"Teljes dokumentum let\u00f6lt\u00e9se az offline haszn\u00e1lathoz","download for offline use":"Let\u00f6lt\u00e9s az offline haszn\u00e1lathoz","drag handle to switch page":"H\u00fazza a fog\u00f3t a lapoz\u00e1shoz","add to cart":"Adja a kartonhoz","click to open the file":"Kattintson a megnyit\u00e1shoz","click to play the video":"Kattintson a vide\u00f3 lej\u00e1tsz\u00e1s\u00e1hoz","back to previous page":"Vissza az el\u0151z\u0151 oldalra","download":"Let\u00f6lt\u00e9s","archives":"Arch\u00edvum","basket":"Az \u00d6n kartonja","switch between fullscreen and normal":"V\u00e1lt\u00e1s teljes k\u00e9perny\u0151s \u00e9s norm\u00e1l n\u00e9zet k\u00f6z\u00f6tt","switch on \/ switch off the sound":"Hang be \/ kikapcsol\u00e1sa","switch between 2d and 3d mode":"V\u00e1lt\u00e1s 2. \u00e9s 3. m\u00f3d k\u00f6z\u00f6tt","share by email":"megoszt\u00e1s email","share on twitter":"megoszt\u00e1s Twitteren\n","share on facebook":"megoszt\u00e1s Facebookon","share":"megoszt\u00e1s","%name% invites you to discover %title%":"%name% megh\u00edv\u00e1s felfedez\u00e9sre %title%","Please click on the following link to open %title : %link%":"Kattintson a k\u00f6vetkez\u0151 hivatkoz\u00e1sra a %title% %link% megnyit\u00e1s\u00e1hoz","An update of the publication is available. Do you want to load it ?":"A publik\u00e1ci\u00f3 friss\u00edt\u00e9se el\u00e9rhet\u0151. T\u00f6lteni akarja?","tap twice or spread your fingers to zoom in":"Kattintson k\u00e9tszer vagy h\u00fazza sz\u00e9t az ujjait a zoomol\u00e1shoz","overview":"\u00c1ttekint\u00e9s","search results for":"Keres\u00e9s","home":"Haza","find a distributor":"megtal\u00e1lni a forgalmaz\u00f3","tel:":"tel:","Send details by email":"K\u00fcld\u00e9s tov\u00e1bbi r\u00e9szletek e-mailben","promotions":"akci\u00f3k","next to me":"mell\u00e9m"}},"defaultLang":"fr","numerotation":["1","2","3","4","5","6","7","8","9","10","11","12","13","14","15","16","17","18","19","20","21","22","23","24","25","26","27","28","29","30","31","32","33","34","35","36","37","38","39","40","41","42","43","44","45","46","47","48","49","50","51","52"],"id":"11001","cacheDate":1355909213,"optimalWidth":567,"optimalHeight":709,"chapters":[{"page":"5","color":"","level":0,"label":"01. FONDAMENTAUX"},{"page":"17","color":"","level":0,"label":"02. CARTE DE VISITE"},{"page":"23","color":"","level":0,"label":"03. PAPIER \u00c0 EN-T\u00caTE"},{"page":"29","color":"","level":0,"label":"04. DEVIS ET FACTURE"},{"page":"33","color":"","level":0,"label":"05. DOSSIER DE PRESSE"},{"page":"45","color":"","level":0,"label":"06. POWERPOINT"},{"page":"51","color":"","level":0,"label":"07. T\u00c9L\u00c9CHARGEMENTS"}],"coquilletteBack":"#ffffff","coquilletteFront":"#283943","videoFormats":["mp4","ogv","webm","flv"],"standalone":false}; +function a(a){console!=undefined&&console.log(a);return}function b(a){a==undefined&&(a={});var b=window.location.search.substr(1).split("&"),c=[];for(var d=0;d",a,""].join(""),k.id=h,m.innerHTML+=f,m.appendChild(k),l||(m.style.background="",g.appendChild(m)),i=c(k,a),l?k.parentNode.removeChild(k):m.parentNode.removeChild(m),!!i},z=function(b){var c=a.matchMedia||a.msMatchMedia;if(c)return c(b).matches;var d;return y("@media "+b+" { #"+h+" { position: absolute; } }",function(b){d=(a.getComputedStyle?getComputedStyle(b,null):b.currentStyle)["position"]=="absolute"}),d},A=function(){function d(d,e){e=e||b.createElement(a[d]||"div"),d="on"+d;var f=d in e;return f||(e.setAttribute||(e=b.createElement("div")),e.setAttribute&&e.removeAttribute&&(e.setAttribute(d,""),f=F(e[d],"function"),F(e[d],"undefined")||(e[d]=c),e.removeAttribute(d))),e=null,f}var a={select:"input",change:"input",submit:"form",reset:"form",error:"img",load:"img",abort:"img"};return d}(),B={}.hasOwnProperty,C;!F(B,"undefined")&&!F(B.call,"undefined")?C=function(a,b){return B.call(a,b)}:C=function(a,b){return b in a&&F(a.constructor.prototype[b],"undefined")},Function.prototype.bind||(Function.prototype.bind=function(b){var c=this;if(typeof c!="function")throw new TypeError;var d=w.call(arguments,1),e=function(){if(this instanceof e){var a=function(){};a.prototype=c.prototype;var f=new a,g=c.apply(f,d.concat(w.call(arguments)));return Object(g)===g?g:f}return c.apply(b,d.concat(w.call(arguments)))};return e});var K=function(c,d){var f=c.join(""),g=d.length;y(f,function(c,d){var f=b.styleSheets[b.styleSheets.length-1],h=f?f.cssRules&&f.cssRules[0]?f.cssRules[0].cssText:f.cssText||"":"",i=c.childNodes,j={};while(g--)j[i[g].id]=i[g];e.touch="ontouchstart"in a||a.DocumentTouch&&b instanceof DocumentTouch||(j.touch&&j.touch.offsetTop)===9,e.csstransforms3d=(j.csstransforms3d&&j.csstransforms3d.offsetLeft)===9&&j.csstransforms3d.offsetHeight===3,e.generatedcontent=(j.generatedcontent&&j.generatedcontent.offsetHeight)>=1,e.fontface=/src/i.test(h)&&h.indexOf(d.split(" ")[0])===0},g,d)}(['@font-face {font-family:"font";src:url("https://")}',["@media (",n.join("touch-enabled),("),h,")","{#touch{top:9px;position:absolute}}"].join(""),["@media (",n.join("transform-3d),("),h,")","{#csstransforms3d{left:9px;position:absolute;height:3px;}}"].join(""),['#generatedcontent:after{content:"',l,'";visibility:hidden}'].join("")],["fontface","touch","csstransforms3d","generatedcontent"]);s.flexbox=function(){return J("flexOrder")},s["flexbox-legacy"]=function(){return J("boxDirection")},s.canvas=function(){var a=b.createElement("canvas");return!!a.getContext&&!!a.getContext("2d")},s.canvastext=function(){return!!e.canvas&&!!F(b.createElement("canvas").getContext("2d").fillText,"function")},s.webgl=function(){try{var d=b.createElement("canvas"),e;e=!(!a.WebGLRenderingContext||!d.getContext("experimental-webgl")&&!d.getContext("webgl")),d=c}catch(f){e=!1}return e},s.touch=function(){return e.touch},s.geolocation=function(){return!!navigator.geolocation},s.postmessage=function(){return!!a.postMessage},s.websqldatabase=function(){return!!a.openDatabase},s.indexedDB=function(){return!!J("indexedDB",a)},s.hashchange=function(){return A("hashchange",a)&&(b.documentMode===c||b.documentMode>7)},s.history=function(){return!!a.history&&!!history.pushState},s.draganddrop=function(){var a=b.createElement("div");return"draggable"in a||"ondragstart"in a&&"ondrop"in a},s.websockets=function(){for(var b=-1,c=p.length;++b",d.insertBefore(c.lastChild,d.firstChild)}function h(){var a=k.elements;return typeof a=="string"?a.split(" "):a}function i(a){var b={},c=a.createElement,e=a.createDocumentFragment,f=e();a.createElement=function(a){var e=(b[a]||(b[a]=c(a))).cloneNode();return k.shivMethods&&e.canHaveChildren&&!d.test(a)?f.appendChild(e):e},a.createDocumentFragment=Function("h,f","return function(){var n=f.cloneNode(),c=n.createElement;h.shivMethods&&("+h().join().replace(/\w+/g,function(a){return b[a]=c(a),f.createElement(a),'c("'+a+'")'})+");return n}")(k,f)}function j(a){var b;return a.documentShived?a:(k.shivCSS&&!e&&(b=!!g(a,"article,aside,details,figcaption,figure,footer,header,hgroup,nav,section{display:block}audio{display:none}canvas,video{display:inline-block;*display:inline;*zoom:1}[hidden]{display:none}audio[controls]{display:inline-block;*display:inline;*zoom:1}mark{background:#FF0;color:#000}")),f||(b=!i(a)),b&&(a.documentShived=b),a)}var c=a.html5||{},d=/^<|^(?:button|form|map|select|textarea)$/i,e,f;(function(){var a=b.createElement("a");a.innerHTML="",e="hidden"in a,f=a.childNodes.length==1||function(){try{b.createElement("a")}catch(a){return!0}var c=b.createDocumentFragment();return typeof c.cloneNode=="undefined"||typeof c.createDocumentFragment=="undefined"||typeof c.createElement=="undefined"}()})();var k={elements:c.elements||"abbr article aside audio bdi canvas data datalist details figcaption figure footer header hgroup mark meter nav output progress section summary time video",shivCSS:c.shivCSS!==!1,shivMethods:c.shivMethods!==!1,type:"default",shivDocument:j};a.html5=k,j(b)}(this,b),e._version=d,e._prefixes=n,e._domPrefixes=q,e._cssomPrefixes=p,e.mq=z,e.hasEvent=A,e.testProp=function(a){return H([a])},e.testAllProps=J,e.testStyles=y,e.prefixed=function(a,b,c){return b?J(a,b,c):J(a,"pfx")},g.className=g.className.replace(/(^|\s)no-js(\s|$)/,"$1$2")+(f?" js "+v.join(" "):""),e}(this,this.document),function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ab(){return!1}function bb(){return!0}function hb(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function ib(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function jb(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(eb.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function kb(a){var b=lb.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function Cb(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function Db(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){Ib=e.body.appendChild(Ib||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!Jb||!Ib.createElement)Jb=(Ib.contentWindow||Ib.contentDocument).document,Jb.write(""),Jb.close();b=Jb.body.appendChild(Jb.createElement(a)),c=Hb(b,"display"),e.body.removeChild(Ib)}return Sb[a]=c,c}function ic(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ec.test(a)?d(a,e):ic(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ic(a+"["+e+"]",b[e],c,d);else d(a,b)}function zc(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)!=="<"||a.charAt(a.length-1)!==">"||a.length<3?f=u.exec(a):f=[null,a,null];if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?a+"":E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return Function("return "+b)();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=Array(d),i=Array(d),j=Array(d);for(;b
    a",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="
    t
    ",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0 +,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
    ",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p=="undefined"||!!a&&p.event.triggered===a.type?b:p.event.dispatch.apply(h.elem,arguments)},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function cb(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return pb(a.replace(L,"$1"),b,c,d,i)}function db(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function eb(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function fb(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function gb(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function hb(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?cb.error(a):C(a,i).slice(0)}function ib(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function jb(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function kb(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&jb(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=kb(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&cb.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function ob(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function qb(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=RegExp("^"+E+"*,"+E+"*"),N=RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:RegExp("^#("+F+")"),CLASS:RegExp("^\\.("+F+")"),NAME:RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:RegExp("^("+F.replace("w","w*")+")"),ATTR:RegExp("^"+I),PSEUDO:RegExp("^"+J),POS:RegExp(K,"i"),CHILD:RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ab=X(function(a){a.id=o+0,a.innerHTML="
    ",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}cb.matches=function(a,b){return cb(a,null,null,b)},cb.matchesSelector=function(a,b){return cb(b,null,null,[a]).length>0},f=cb.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=cb.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=cb.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},cb.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=cb.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ab&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"? +(a[2]||cb.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&cb.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=hb(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=cb.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||cb.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return cb(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:db("radio"),checkbox:db("checkbox"),file:db("file"),password:db("password"),image:db("image"),submit:eb("submit"),reset:eb("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:fb(function(a,b,c){return[0]}),last:fb(function(a,b,c){return[b-1]}),eq:fb(function(a,b,c){return[c<0?c+b:c]}),even:fb(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:fb(function(a,b,c){for(var d=c<0?c+b:c;++d",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="

    ",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=RegExp(e.join("|")),pb=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=hb(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=RegExp(f.join("|")),cb.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return cb(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=qb.prototype=e.pseudos,e.setFilters=new qb,cb.attr=p.attr,p.find=cb,p.expr=cb.selectors,p.expr[":"]=p.expr.pseudos,p.unique=cb.uniqueSort,p.text=cb.getText,p.isXMLDoc=cb.isXML,p.contains=cb.contains}(a);var cb=/Until$/,db=/^(?:parents|prev(?:Until|All))/,eb=/^.[^:#\[\.,]*$/,fb=p.expr.match.needsContext,gb={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=fb.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(hb(c[0])||hb(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return ib(a,"nextSibling")},prev:function(a){return ib(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return cb.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!gb[a]?p.unique(e):e,this.length>1&&db.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var lb="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",mb=/ jQuery\d+="(?:null|\d+)"/g,nb=/^\s+/,ob=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,pb=/<([\w:]+)/,qb=/]","i"),vb=/^(?:checkbox|radio)$/,wb=/checked\s*(?:[^=]|=\s*.checked.)/i,xb=/\/(java|ecma)script/i,yb=/^\s*\s*$/g,zb={option:[1,""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},Ab=kb(e),Bb=Ab.appendChild(e.createElement("div"));zb.optgroup=zb.option,zb.tbody=zb.tfoot=zb.colgroup=zb.caption=zb.thead,zb.th=zb.td,p.support.htmlSerialize||(zb._default=[1,"X
    ","
    "]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!hb(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!hb(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(mb,""):b;if(typeof a=="string"&&!sb.test(a)&&(p.support.htmlSerialize||!ub.test(a))&&(p.support.leadingWhitespace||!nb.test(a))&&!zb[(pb.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(ob,"<$1>");try{for(;d1&&typeof j=="string"&&wb.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!ub.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(Bb.innerHTML=a.outerHTML,Bb.removeChild(g=Bb.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){Eb(a,g),d=Fb(a),e=Fb(g);for(f=0;d[f];++f)e[f]&&Eb(d[f],e[f])}if(b){Db(a,g);if(c){d=Fb(a),e=Fb(g);for(f=0;d[f];++f)Db(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&Ab,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!rb.test(h))h=b.createTextNode(h);else{s=s||kb(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(ob,"<$1>"),i=(pb.exec(h)||["",""])[1].toLowerCase(),j=zb[i]||zb._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=qb.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&nb.test(h)&&l.insertBefore(b.createTextNode(nb.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?Gb(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),Gb);if(c){q=function(a){if(!a.type||xb.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function(d,e){return e&&e instanceof p&&!(e instanceof a)&&(e=a(e)),p.fn.init.call(this,d,e,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var Hb,Ib,Jb,Kb=/alpha\([^)]*\)/i,Lb=/opacity=([^)]*)/,Mb=/^(top|right|bottom|left)$/,Nb=/^(none|table(?!-c[ea]).+)/,Ob=/^margin/,Pb=RegExp("^("+q+")(.*)$","i"),Qb=RegExp("^("+q+")(?!px)[a-z%]+$","i"),Rb=RegExp("^([-+])=("+q+")","i"),Sb={},Tb={position:"absolute",visibility:"hidden",display:"block"},Ub={letterSpacing:0,fontWeight:400},Vb=["Top","Right","Bottom","Left"],Wb=["Webkit","O","Moz","ms"],Xb=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return $b(this,!0)},hide:function(){return $b(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?Xb.apply(this,arguments):this.each(function(){(c?a:Zb(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=Hb(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=Yb(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=Rb.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=Yb(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=Hb(a,c)),f==="normal"&&c in Ub&&(f=Ub[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?Hb=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),Qb.test(d)&&Ob.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(Hb=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),Qb.test(e)&&!Mb.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&Nb.test(Hb(a,"display"))?p.swap(a,Tb,function(){return bc(a,b,d)}):bc(a,b,d)},set:function(a,c,d){return _b(a,c,d?ac(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return Lb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(Kb,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=Kb.test(f)?f.replace(Kb,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return Hb(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=Hb(a,b);return Qb.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||Hb(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+Vb[d]+b]=e[d]||e[d-2]||e[0];return f}},Ob.test(a)||(p.cssHooks[a+b].set=_b)});var dc=/%20/g,ec=/\[\]$/,fc=/\r?\n/g,gc=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,hc=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||hc.test(this.nodeName)||gc.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(fc,"\r\n")}}):{name:b.name,value:c.replace(fc,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ic(d,a[d],c,f);return e.join("&").replace(dc,"+")};var jc,kc,lc=/#.*$/,mc=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,nc=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,oc=/^(?:GET|HEAD)$/,pc=/^\/\//,qc=/\?/,rc=/)<[^<]*)*<\/script>/gi,sc=/([?&])_=[^&]*/,tc=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,uc=p.fn.load,vc={},wc={},xc=["*/"]+["*"];try{kc=f.href}catch(yc){kc=e.createElement("a"),kc.href="",kc=kc.href}jc=tc.exec(kc.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&uc)return uc.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("
    ").append(a.replace(rc,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?Bc(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),Bc(a,b),a},ajaxSettings:{url:kc,isLocal:nc.test(jc[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":xc},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:zc(vc),ajaxTransport:zc(wc),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=Cc(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=Dc(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=mc.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(lc,"").replace(pc,jc[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=tc.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==jc.join(":")+(jc[3]?"":jc[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),Ac(vc,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!oc.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(qc.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(sc,"$1_="+z);l.url=A+(A===l.url?(qc.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+xc+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=Ac(wc,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v>=2)throw B;y(-1,B)}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var Ec=[],Fc=/\?/,Gc=/(=)\?(?=&|$)|\?\?/,Hc=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=Ec.pop()||p.expando+"_"+Hc++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&Gc.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&Gc.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(Gc,"$1"+f):m?c.data=i.replace(Gc,"$1"+f):k&&(c.url+=(Fc.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,Ec.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var Ic,Jc=a.ActiveXObject?function(){for(var a in Ic)Ic[a](0,1)}:!1,Kc=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&Lc()||Mc()}:Lc,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,Jc&&delete Ic[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++Kc,Jc&&(Ic||(Ic={},p(a).unload(Jc)),Ic[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var Nc,Oc,Pc=/^(?:toggle|show|hide)$/,Qc=RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),Rc=/queueHooks$/,Sc=[Yc],Tc={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=Qc.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h/=i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(Wc,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=_c.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!_c.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=ad(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})}(window),function(a){function d(a){var c=["Moz","Webkit","O","ms"],d=a.charAt(0).toUpperCase()+a.substr(1);if(a in b.style)return a;for(var e=0;e0&&(g+=" "+p(e));var h=[];return a.each(f,function(a,b){h.push(b+" "+g)}),h.join(", ")}function m(b,d){d||(a.cssNumber[b]=!0),a.transit.propertyMap[b]=c.transform,a.cssHooks[b]={get:function(c){var d=a(c).css("transform")||new i;return d.get(b)},set:function(c,d){var e=a(c).css("transform")||new i;e.setFromString(b,d),a(c).css({transform:e})}}}function n(a){return a.replace(/([A-Z])/g,function(a){return"-"+a.toLowerCase()})}function o(a,b){return typeof a=="string"&&!a.match(/^[\-0-9\.]+$/)?a:""+a+b}function p(b){var c=b;return a.fx.speeds[c]&&(c=a.fx.speeds[c]),o(c,"ms")}"use strict",a.transit={version:"0.1.3",propertyMap:{marginLeft:"margin",marginRight:"margin",marginBottom:"margin",marginTop:"margin",paddingLeft:"padding",paddingRight:"padding",paddingBottom:"padding",paddingTop:"padding"},enabled:!0,useTransitionEnd:!1};var b=document.createElement("div"),c={},f=navigator.userAgent.toLowerCase().indexOf("chrome")>-1;c.transition=d("transition"),c.transitionDelay=d("transitionDelay"),c.transform=d("transform"),c.transformOrigin=d("transformOrigin"),c.transform3d=e(),a.extend(a.support,c);var g={MozTransition:"transitionend",OTransition:"oTransitionEnd",WebkitTransition:"webkitTransitionEnd",msTransition:"MSTransitionEnd"},h=c.transitionEnd=g[c.transition]||null;b=null,a.cssEase={_default:"ease","in":"ease-in",out:"ease-out","in-out":"ease-in-out",snap:"cubic-bezier(0,1,.5,1)"},a.cssHooks.transform={get:function(b){return a(b).data("transform")},set:function(b,d){var e=d;e instanceof i||(e=new i(e)),b.style[c.transform]=e+"",a(b).data("transform",e)}},a.cssHooks.transformOrigin={get:function(a){return a.style[c.transformOrigin]},set:function(a,b){a.style[c.transformOrigin]=b}},m("scale"),m("translate"),m("rotate"),m("rotateX"),m("rotateY"),m("rotate3d"),m("perspective"),m("skewX"),m("skewY"),m("x",!0),m("y",!0),i.prototype={setFromString:function(a,b){var c=typeof b=="string"?b.split(","):b.constructor===Array?b:[b];c.unshift(a),i.prototype.set.apply(this,c)},set:function(a){var b=Array.prototype.slice.apply(arguments,[1]);this.setter[a]?this.setter[a].apply(this,b):this[a]=b.join(",")},get:function(a){return this.getter[a]?this.getter[a].apply(this):this[a]||0},setter:{rotate:function(a){this.rotate=o(a,"deg")},rotateX:function(a){this.rotateX=o(a,"deg")},rotateY:function(a){this.rotateY=o(a,"deg")},scale:function(a,b){b===undefined&&(b=a),this.scale=a+","+b},skewX:function(a){this.skewX=o(a,"deg")},skewY:function(a){this.skewY=o(a,"deg")},perspective:function(a){this.perspective=o(a,"px")},x:function(a){this.set("translate",a,null)},y:function(a){this.set("translate",null,a)},translate:function(a,b){this._translateX===undefined&&(this._translateX=0),this._translateY===undefined&&(this._translateY=0),a!==null&&(this._translateX=o(a,"px")),b!==null&&(this._translateY=o(b,"px")),this.translate=this._translateX+","+this._translateY}},getter:{x:function(){return this._translateX||0},y:function(){return this._translateY||0},scale:function(){var a=(this.scale||"1,1").split(",");return a[0]&&(a[0]=parseFloat(a[0])),a[1]&&(a[1]=parseFloat(a[1])),a[0]===a[1]?a[0]:a},rotate3d:function(){var a=(this.rotate3d||"0,0,0,0deg").split(",");for(var b=0;b<=3;++b)a[b]&&(a[b]=parseFloat(a[b]));return a[3]&&(a[3]=o(a[3],"deg")),a}},parse:function(a){var b=this;a.replace(/([a-zA-Z0-9]+)\((.*?)\)/g,function(a,c,d){b.setFromString(c,d)})},toString:function(a){var b=[];for(var d in this)if(this.hasOwnProperty(d)){if(!c.transform3d&&(d==="rotateX"||d==="rotateY"||d==="perspective"||d==="transformOrigin"))continue;d[0]!=="_"&&(a&&d==="scale"?b.push(d+"3d("+this[d]+",1)"):a&&d==="translate"?b.push(d+"3d("+this[d]+",0)"):b.push(d+"("+this[d]+")"))}return b.join(" ")}},a.fn.transition=a.fn.transit=function(b,d,e,f){var g=this,i=0,k=!0;typeof d=="function"&&(f=d,d=undefined),typeof e=="function"&&(f=e,e=undefined),typeof b.easing!="undefined"&&(e=b.easing,delete b.easing),typeof b.duration!="undefined"&&(d=b.duration,delete b.duration),typeof b.complete!="undefined"&&(f=b.complete,delete b.complete),typeof b.queue!="undefined"&&(k=b.queue,delete b.queue),typeof b.delay!="undefined"&&(i=b.delay,delete b.delay),typeof d=="undefined"&&(d=a.fx.speeds._default),typeof e=="undefined"&&(e=a.cssEase._default),d=p(d);var m=l(b,d,e,i),n=a.transit.enabled&&c.transition,o=n?parseInt(d,10)+parseInt(i,10):0;if(o===0){var q=function(a){g.css(b),f&&f(),a()};return j(g,k,q),g}var r={},s=function(d){var e=!1,i=function(){e&&g.unbind(h,i),o>0&&g.each(function(){this.style[c.transition]=r[this]||null}),typeof f=="function"&&f.apply(g),typeof d=="function"&&d()};o>0&&h&&a.transit.useTransitionEnd?(e=!0,g.bind(h,i)):window.setTimeout(i,o),g.each(function(){o>0&&(this.style[c.transition]=m),a(this).css(b)})},t=function(a){var b=0;c.transition==="MozTransition"&&b<25&&(b=25),window.setTimeout(function(){s(a)},b)};return j(g,k,t),this},a.transit.getTransitionValue=l}(jQuery),$(function(){_GET=b({background:"transparent",target:"_blank",link:"../index.html",time:4}),_GET.time=Math.max(1.5,_GET.time),$("body").css("background-color",c(_GET.background)),$("#widget").fluidbookWidget(Math.max(0,DATAS.widgetStart),Math.min(DATAS.pages,DATAS.widgetEnd)),$(document).on("click",function(){window.open(_GET.link,_GET.target,"width="+screen.width+",height="+screen.height+",status=0,toolbar=0,menubar=0,scrollbars=1")})}),function(b){function c(a,b,c){this.transition="none",Modernizr.csstransforms&&(this.transition="2d"),Modernizr.csstransforms3d&&(this.transition="3d"),this.started=!1,this.e=a,this.from=b,this.from%2==1&&this.from--,this.to=c,this.from%2==0&&this.to++,this.to=Math.min(DATAS.pages,this.to),this.currentPage=0,this.dir=1,this.bookWidth,this.bookHeight,this.init(),this.transitionendevents=["transitionend","mozTransitionEnd","webkitTransitionEnd","oTransitionEnd","msTransitionEnd"].join(" ")}c.prototype={init:function(){this.e.append('
    ');for(i=this.from;i<=this.to;i++){var a=i;a%2==1&&a--;var b="p",c="",d="left";i%2==1&&(d="right"),i==0?b+=" loaded":c='
    ',b+=" "+d,this.e.append('
    '+c+"
    ")}this.preloadImages()},preloadImages:function(){var a=this,c=this.e.find(".p:not(.loaded)").first();if(c.length==0){this.endLoading();return}var d=b(c).attr("data-page"),e=new Image;b(e).one("load error",function(){b(c).append(this),b(c).addClass("loaded"),a.preloadImages()}),e.src="data/background/36/t"+d+".jpg",e.complete&&(b(c).append(e),b(c).addClass("loaded"),this.preloadImages())},endLoading:function(){if(this.started)return;this.started=!0,this.e.find(".p").hide();var a=b(".p>img").first().get(0);this.bookWidth=a.width*2,this.bookHeight=a.height,b("#widget").css({width:this.bookWidth,minWidth:this.bookWidth,maxWidth:this.bookWidth,height:this.bookHeight,minHeight:this.bookHeight,maxHeight:this.bookHeight}),b(".p .shade img").css({width:this.bookWidth/6,height:this.bookHeight}),b(".p .shade").css({width:this.bookWidth/2,height:this.bookHeight}),b(".p").css({width:this.bookWidth/2,height:this.bookHeight}),this.resize(),this.gotoPage(0,!1);var c=this;setInterval(function(){if(c.animating)return;c.goNextPage()},_GET.time*1e3),b("#container:hidden").fadeIn()},gotoPage:function(a,c){var d=this;this.animating=!0;var e=b(".p[data-page="+a+"]"),f=b(".p[data-page="+(a+1)+"]");if(!c||this.transition=="none")b("#nextDoublePage .p,#currentDoublePage .p").hide().appendTo(this.e),b("#currentDoublePage").append(b(e)).append(b(f)),b(e).show(),b(f).show(),b(".p.right").css({left:this.bookWidth/2}),b("#currentDoublePage,#nextDoublePage").css({x:0,left:0}),b("#nextDoublePage").remove(),this.animating=!1;else if(this.transition=="2d")b("#widget").css("overflow","hidden"),this.e.append('
    '),b(e).show(),b(f).show(),b("#nextDoublePage").append(b(e)).append(b(f)),b(".p.right").css({left:this.bookWidth/2}),Modernizr.csstransitions?(b("#nextDoublePage").css({x:this.bookWidth*this.dir}),b("#currentDoublePage").transition({x:this.bookWidth*this.dir*-1},1e3),b("#nextDoublePage").transition({x:0},1e3,function(){d.gotoPage(a,!1)})):(b("#nextDoublePage").css({left:this.bookWidth*this.dir}),b("#currentDoublePage").animate({left:this.bookWidth*this.dir*-1},1e3),b("#nextDoublePage").animate({left:0},1e3,function(){d.gotoPage(a,!1)}));else if(this.transition=="3d"){b("#widget").css("overflow","visible");var g;this.dir==1?g="next":g="prev",this.e.append('
    '),b("#currentDoublePage .p").hide().appendTo(this.e);var h,i;this.dir==1?(e=b(".p[data-page="+this.currentPage+"]"),f=b(".p[data-page="+(a+1)+"]"),h=b(".p[data-page="+a+"]"),i=b(".p[data-page="+(this.currentPage+1)+"]")):(e=b(".p[data-page="+a+"]"),f=b(".p[data-page="+(this.currentPage+1)+"]"),h=b(".p[data-page="+this.currentPage+"]"),i=b(".p[data-page="+(a+1)+"]")),b(e).show(),b(f).show(),b(h).show(),b(i).show(),b("#currentDoublePage").append(b(e)).append(b(f)),this.dir==-1?b("#nextDoublePage").append(b(h)).append(b(i)):b("#nextDoublePage").append(b(i)).append(b(h)),b(".p.right").css({left:this.bookWidth/2}),b("#nextDoublePage").addClass(g+"end"),b("#nextDoublePage").one(this.transitionendevents,function(){d.animating=!1,d.gotoPage(a,!1)})}this.currentPage=a},goNextPage:function(){var a;this.dir==1?(a=this.currentPage+2,a>this.to&&(a-=4,this.dir=-1)):(a=this.currentPage-2,a + + + Levidac - Charte graphique + + + + + + + + + + + + + + + +
    +
    + +
    +
    + + + +
    +
    +
    +
    +
    +
    +
    +
    + +
    +
    + +
    +
    + +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + \ No newline at end of file diff --git a/charte-graphique/m/style/fluidbook.css b/charte-graphique/m/style/fluidbook.css new file mode 100644 index 0000000..02a5d36 --- /dev/null +++ b/charte-graphique/m/style/fluidbook.css @@ -0,0 +1,1001 @@ +/* Incompatible */ +.no-csstransforms #device{ + display:none; +} +.csstransforms #message{ + display:none; +} + +@media all and (orientation: portrait) { + #ol{display:none;} +} + +@media all and (orientation: landscape) { + #op{display:none;} +} + +/* Disable print div*/ +#printpages{ + display:none; +} + +/* Global settings */ +a,input[type=text],input[type=password],input[type=file],textarea{outline:none;-webkit-appearance:none;} +a{text-decoration:none;color:inherit;} +*{-webkit-tap-highlight-color:rgba(0,0,0,0)} +img{border:0;} +*{padding:0;margin:0;} +html{ + user-select:text; + -moz-user-select:text; + -webkit-user-select:text; + -o-user-select:text; + -ms-user-select:text; +} + +body,input{ + font-family: Ubuntu, Arial, Helvetica, sans-serif; +} + +body.loading *{ + cursor:progress !important; +} + +body{ + overflow-y: hidden; + overflow-x: hidden; +} + +body.view{ + overflow-y: auto; +} + +#main{ + position:absolute; + display:none; + overflow:hidden; +} + +/* Orientation */ +.portrait .shade, .portrait .page.right{display:none;} + +/* Desktop devices */ + +.desktop #links{ + cursor:url(../images/cur-zoom-in.png), -moz-zoom-in; +} +.desktop.zoomed #links{ + cursor:url(../images/cur-zoom-out.png), -moz-zoom-out; +} + +#links .link{ + cursor:auto; +} + +/* Coquillette */ +#coquillette{ + position:absolute; + top:0px; + left:0px; + z-index: 1000; +} + +/* Pages */ +.background,.texts{ + position:absolute; + top:0px; + left:0px; + overflow: visible; +} + +.background{ + background-repeat:no-repeat; +} + +.background img{ + width:100%; + height:100%; +} + +.texts{ +} + +.texts img,.texts object{ + position:absolute; + top:0px; + left:0px; +} + +/* Espaces forcés */ + +.page{ + overflow: hidden; + position:absolute; + top:0px; + background-color:#fff; +} + +.page .shade{ + position:absolute; + top:0px; +} + + +.page.right .shade{ + left:0px; +} + +.page.left .shade{ + right:0px; +} + +.background,.texts, .l, .g, .s{ + position:absolute; + top:0px; + left:0px; +} +.texts .g { + line-height: 1; +} + +.g,.gs,.l{ + white-space: nowrap; +} +.texts .gs{ + display:inline-block; +} + +.o{ + font-style: oblique; +} + + +.doublePage,#shadow,#pages{ + position:absolute; + top:0px; + left:0px; + overflow:hidden; +} +#pages{ + position:absolute; + top:0px; + left:0px; + +} + +/* Nav */ +#nav #locales{ + display: inline-block; + width:22px; + height:17px; + border-radius: 3px; + background-position:50% 50%; + background-repeat:no-repeat; + margin:11px 2px 10px 22px; +} + +.localesList li a{ + background-repeat: no-repeat; + background-position: 20px 50%; + padding:10px 20px 10px 50px !important; +} + +/* Fluidbook */ +#fluidbook{ + position:absolute; + z-index: 9; +} + +#cache{ + display:none; +} + +#pagesnumbers{ + font-size:12px; + padding: 0; + position: absolute; + white-space: nowrap; + margin:5px 0 0 0; +} + +#pagesnumbers div{ + text-align: center; + display:inline-block; +} + +.portrait #pagesnumbers .right{ + display:none; +} + +/* Interface */ +#interface{ + position:static; +} + +#next,#previous{ + background:#f00; + width: 40px; + height:100px; + position:absolute; + top:310px; + display:block; + opacity:1; + z-index:21; + + transition: opacity 1s ease-in-out; + -moz-transition: opacity 1s ease-in-out; + -webkit-transition: opacity 1s ease-in-out; + -o-transition: opacity 1s ease-in-out; + -ms-transition: opacity 1s ease-in-out; +} + +#next.hidden.help,#previous.hidden.help{ + transition: none; + -moz-transition: none; + -webkit-transition: none; + -o-transition: none; + -ms-transition: none; + opacity:1; + +} + +#next.hidden,#previous.hidden{ + opacity:0; + cursor:default; +} + +#next{ + right:0px; + border-top-left-radius:7px; + border-bottom-left-radius:7px; +} + +#previous{ + left:0px; + border-top-right-radius:7px; + border-bottom-right-radius:7px; +} + +/* Header */ +header{position:relative;z-index:10;} +#nav>a{ + margin:0 0 0 20px; + vertical-align: top; +} +#nav>a>img{ + padding: 10px 2px 0px 2px; + vertical-align: top; +} + +#nav{ + float:left; + position:relative; + z-index:2; + white-space: nowrap; +} + +#afterSearch{ + display:inline-block; + position:relative; + vertical-align: top; + left:30px; +} + +#afterSearch .c{ + position:absolute; + top:0px; + left:0px; + z-index: 9; + display: block; +} + +#afterSearch .links{ + position:absolute; + top:0px; + left:0px; + z-index:10; +} + +#search{ + position:relative; + display:inline-block; + margin:8px 0 0 30px; + z-index: 2; + vertical-align: top; +} +#search img{ + vertical-align: middle; +} +#search input{ + padding:5px; + border-radius:5px; + border: 0; + height:12px; + width:150px; + +} + +.hint{ + padding:5px; + height:12px; + width:130px; + margin:2px; + background-color:#fff; + color:#000; + display:block; + font-size:12px; +} +.hint:hover{ + background-color:#000; + color:#fff; +} + +#searchHints{ + background:#fff; + border-radius:5px; + width:150px; + padding:5px; + display:none; +} + +#logo{ + position:absolute; + top:0px; + right:0px; + background-repeat: no-repeat; +} +.portrait #logo{ + display:none; +} + +/* Credits */ +footer{ + font-family: Silkscreen,Arial,Helvetica,sans-serif; + font-size:8px; + text-transform: uppercase; + position: absolute; + bottom:0px; + right:0px; + z-index: 20; +} +footer a{ + text-decoration: none; + margin:0 4px 4px 0; +} + +/* Fluidbook zooming */ + +footer,header,#interface{ + transition: opacity 1s ease-in; + -moz-transition: opacity 1s ease-in; + -webkit-transition: opacity 1s ease-in; + -o-transition: opacity 1s ease-in; + -ms-transition: opacity 1s ease-in; +} + +footer.hidden,header.hidden,#interface.hidden{ + opacity:0; + z-index:0; +} + +footer,header,#interface{ + +} + +#fluidbook{ + transition: transform 1s ease-out; + -moz-transition: -moz-transform 1s ease-out,transform 1s ease-out; + -webkit-transition:-webkit-transform 1s ease-out,transform 1s ease-out; + -o-transition: -o-transform 1s ease-out,transform 1s ease-out; + -ms-transition: -ms-transform 1s ease-out,transform 1s ease-out; +} + +#fluidbook.animate{ + transition: all 1s ease-out; + -moz-transition: all 1s ease-out; + -webkit-transition: all 1s ease-out; + -ms-transition: all 1s ease-out; + -o-transition: all 1s ease-out; +} + +/* Links */ +#links{ + position:absolute; + top:0px; + left:0px; + z-index:4; + background-color: rgba(0,0,0,0.001); +} + +.link{ + position: absolute; + cursor:auto; + z-index: 1; +} + +.link.contentLink{ + z-index:0; +} + +.link a{ + width:100%; + height:100%; + display:block; + border-radius:5px; + background-color:rgba(0,0,0,0.001); +} + +.link a.displayArea.animating{ + transition: opacity 1s ease-in; + -moz-transition: opacity 1s ease-in; + -webkit-transition: opacity 1s ease-in; + -o-transition: opacity 1s ease-in; + -ms-transition: opacity 1s ease-in; +} + +/* View */ + +.mview{ + position:absolute; + z-index:22; + display:none; + overflow-x: hidden; + overflow-y: auto; + -webkit-overflow-scrolling: touch; +} + +.mview.animate{ + transition: transform 600ms ease-out; + -moz-transition: -moz-transform 600ms ease-out,transform 600ms ease-out; + -webkit-transition:-webkit-transform 600ms ease-out; + -o-transition: -o-transform 600ms ease-out,transform 600ms ease-out; + -ms-transition: -ms-transform 600ms ease-out,transform 600ms ease-out; +} + +.mview .caption{ + padding:10px; + height:30px; + background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC43Ii8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4="); + background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.5))); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* IE10+ */ + background: linear-gradient(top bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* W3C */ + border-bottom: 1px solid rgba(200,200,200,0.5); + position:fixed; + z-index: 1; +} + +.mview .caption h2{ + font-size:30px; + text-align: center; + font-weight: normal; +} + +.mview .caption .back{ + float:left; + height:20px; + background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzFlMWUxZSIgc3RvcC1vcGFjaXR5PSIwLjciLz4KICAgIDxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzgwODA4MCIgc3RvcC1vcGFjaXR5PSIwLjMiLz4KICA8L2xpbmVhckdyYWRpZW50PgogIDxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxIiBoZWlnaHQ9IjEiIGZpbGw9InVybCgjZ3JhZC11Y2dnLWdlbmVyYXRlZCkiIC8+Cjwvc3ZnPg=="); + background: -moz-linear-gradient(top, rgba(30,30,30,0.7) 0%, rgba(128,128,128,0.3) 100%); /* FF3.6+ */ + background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(30,30,30,0.7)), color-stop(100%,rgba(128,128,128,0.3))); /* Chrome,Safari4+ */ + background: -webkit-linear-gradient(top, rgba(30,30,30,0.7) 0%,rgba(128,128,128,0.3) 100%); /* Chrome10+,Safari5.1+ */ + background: -o-linear-gradient(top, rgba(30,30,30,0.7) 0%,rgba(128,128,128,0.3) 100%); /* Opera 11.10+ */ + background: -ms-linear-gradient(top, rgba(30,30,30,0.7) 0%,rgba(128,128,128,0.3) 100%); /* IE10+ */ + background: linear-gradient(top bottom, rgba(30,30,30,0.7) 0%,rgba(128,128,128,0.3) 100%); /* W3C */ + padding:5px 10px 2px 10px; + border-radius:5px; +} + +.mview .content{ + text-align: center; + position:absolute; + top:50px; +} + +#indexView{ + margin:auto; +} + +#indexView .doubleThumb,#indexView .padding{ + display:inline-block; + margin:10px 10px 20px 10px; + position:relative; + width:200px; + cursor:pointer; + text-align: center; +} + +#indexView .padding{ + height:1px; +} + + +#indexView .doubleThumb .overlay{ + background-color:rgba(0,0,0,0.5); + position:absolute; + top:0px; + left:0px; + width:200px; + z-index:4; +} + +#indexView .doubleThumb.simple .overlay{ + width:100px; +} + +#indexView .doubleThumb .hits{ + position:relative; + display:inline; + top:30px; + z-index:5; + font-size:12px; +} + +#indexView .doubleThumb .hits.yes{ + padding:5px; + border-radius:5px; +} +#indexView .thumb{ + position:absolute; + top:0px; + left:0px; + color:#000; + font-size:12px; +} + +#indexView .thumb img{ + background:#fff; +} + +#indexView .thumb .number{ + text-align:center; + display:block; + font-family: Arial,Helvetica,sans-serif; + margin: 1px 0 0 0; +} + +#indexView .thumb.right{ + left:100px; +} + +#indexView .doubleThumb.simple{ + width:100px; +} + +#indexView .doubleThumb.simple.right{ + margin-left:110px; +} +#indexView .doubleThumb.left{ + margin-right:110px; +} + + +#indexView .right .thumb.right{ + left:0px; +} + +/* Search */ +.highlight0{ + background-color:#00ff00; +} +.highlight1{ + background-color:#ffff00; +} +.highlight2{ + background-color:#00ffff; +} +.highlight3{ + background-color:#ff00ff; +} +.highlight4{ + background-color:#ff0000; +} + +/* Help */ +#helpView{ + background-color: rgba(0,0,0,0.7); + position:absolute; + z-index:20; + display:none; + color:#ffffff; + overflow:hidden; +} + +#helpView .illustration{ + text-align:center; + font-size:20px; +} + +#helpView .illustration p{ + position:static; +} + +#helpView #icons{ + position:absolute; + top:0px; +} + +#helpView .icon{ + position:absolute; + top:0px; + display:inline-block; + border-left: 1px solid #ffffff; + font-size:16px; + text-align: left; + width:400px; + padding-left:5px; +} + +#helpView .interface hr{ + width:30px; + height:0px; + border:0; + border-top:1px solid #ffffff; + display:inline-block; + margin: 0 10px; + vertical-align: middle; +} + +#helpView .interface .next, +#helpView .interface .last{ + text-align: right; + right:40px; + top:340px; +} + +#helpView .interface .first, +#helpView .interface .previous{ + left:40px; + top:340px; +} + +#helpView .interface .first, +#helpView .interface .last{ + margin-top:43px; +} + +#helpView .interface .next, +#helpView .interface .previous{ + margin-top:-5px; +} + + +#helpView .interface div{ + position:absolute; +} + +.portrait .interface{ + display:none; +} + +/* Videos */ +.mview .videoContainer{ + box-sizing: border-box; + -moz-box-sizing: border-box; + -webkit-box-sizing: border-box; + -ms-box-sizing: border-box; + -o-box-sizing: border-box; + padding:20px; + width:100%; + height:100%; +} + +.mview .videoContainer video, +.mview .videoContainer object,.webvideo{ + position:static; + width: 100%; + height:auto; + display: block; +} +.videoContainer{ + position:relative; +} + +/* Chapters */ +ul.chapters a{ + display:block; + text-align: left; + padding:10px 20px 10px 20px; +} + +ul.chapters a.level0{ + font-size:150%; + font-family: Ubuntu; + font-weight: 700; + + box-shadow: 0 5px 5px rgba(0,0,0,0.25); + -moz-box-shadow: 0 5px 5px rgba(0,0,0,0.25); + -webkit-box-shadow: 0 5px 5px rgba(0,0,0,0.25); + -ms-box-shadow: 0 5px 5px rgba(0,0,0,0.25); + -o-box-shadow: 0 5px 5px rgba(0,0,0,0.25); + + background-color:rgba(0,0,0,0.1); +} + +ul.chapters a.level1{ + padding:10px 20px 10px 50px; + font-size:120%; + + box-shadow: 0 3px 3px rgba(0,0,0,0.25); + -moz-box-shadow: 0 3px 3px rgba(0,0,0,0.25); + -webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.25); + -ms-box-shadow: 0 3px 3px rgba(0,0,0,0.25); + -o-box-shadow: 0 3px 3px rgba(0,0,0,0.25); + + background-color:rgba(0,0,0,0.05); +} + +ul.chapters a.level2{ + padding:10px 20px 10px 80px; + font-size: 100%; + box-shadow: 0 1px 1px rgba(0,0,0,0.25); + -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.25); + -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.25); + -o-box-shadow: 0 1px 1px rgba(0,0,0,0.25); +} + +ul.chapters a.level3{ + padding:10px 20px 10px 110px; + font-size:80%; + + box-shadow: 0 1px 1px rgba(0,0,0,0.15); + -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.15); + -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.15); + -ms-box-shadow: 0 1px 1px rgba(0,0,0,0.15); + -o-box-shadow: 0 1px 1px rgba(0,0,0,0.15); +} + +ul.chapters, ul.chapters ul{ + list-style: none; +} + +ul.chapters a .right{ + float:right; +} + +ul.chapters a .right .puce{ + width:25px; + height:25px; + + border-radius: 5px; + -moz-border-radius: 5px; + -webkit-border-radius: 5px; + -ms-border-radius: 5px; + -o-border-radius: 5px; + + box-shadow: 2px 2px 4px rgba(0,0,0,0.25); + -moz-box-shadow: 2px 2px 4px rgba(0,0,0,0.25); + -webkit-box-shadow: 2px 2px 4px rgba(0,0,0,0.25); + -ms-box-shadow: 2px 2px 4px rgba(0,0,0,0.25); + -o-box-shadow: 2px 2px 4px rgba(0,0,0,0.25); + + + background-image: url("../images/chapters-arrow.png"); + background-repeat: no-repeat; +} + +ul.chapters a.level0 .right .puce{ + margin:2px 0 0 0; +} + +ul.chapters a.level2 .right .puce{ + margin:-2px 0 0 0; +} + +ul.chapters a>nav{ + display:none; +} + +/* Transitions */ + +/* 2D */ +.doublePage._2d.sliding{ + transition: none; + -moz-transition:none; + -webkit-transition:none; + -o-transition: none; + -ms-transition: none; +} + +/* 3D */ +#pages._3dtransition{ + perspective: 5000px; + -moz-perspective:5000px; + -webkit-perspective:5000px; + -o-perspective:5000px; + -ms-perspective:5000px; + + + perspective-origin: 50% 75%; + -moz-perspective-origin:50% 75%; + -webkit-perspective-origin:50% 75%; + -ms-perspective-origin:50% 75%; + -o-perspective-origin:50% 75%; + + + overflow: visible !important; +} + +.doublePage._3d{ + overflow: visible; + z-index:100; + + transform-style: preserve-3d; + -moz-transform-style:preserve-3d; + -webkit-transform-style:preserve-3d; + -o-transform-style:preserve-3d; + -ms-transform-style:preserve-3d; +} + +._3d .page{ + backface-visibility: hidden; + -moz-backface-visibility:hidden; + -webkit-backface-visibility:hidden; + -o-backface-visibility:hidden; + -ms-backface-visibility:hidden; + + left:0px !important; +} + +.doublePage._3d .right{ + transform: rotate3d(0,1,0,0deg); + -moz-transform: rotateY(0deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,0deg); + -o-transform: rotate3d(0,1,0,0deg); + -ms-transform: rotate3d(0,1,0,0deg); +} + +.doublePage._3d .left{ + transform: rotate3d(0,1,0,180deg); + -moz-transform: rotateY(180deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,180deg); + -o-transform: rotate3d(0,1,0,180deg); + -ms-transform: rotate3d(0,1,0,180deg); +} + +.doublePage._3d.nextstart{ + transform: rotate3d(0,1,0,360deg); + -moz-transform: rotateY(360deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,360deg); + -o-transform: rotate3d(0,1,0,360deg); + -ms-transform: rotate3d(0,1,0,360deg); + + transform-origin: 0 0; + -moz-transform-origin: 0 0; + -webkit-transform-origin: 0 0; + -o-transform-origin: 0 0; + -ms-transform-origin: 0 0; +} + +.doublePage._3d.nextend{ + transform: rotate3d(0,1,0,180deg); + -moz-transform: rotateY(180deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,180deg); + -o-transform: rotate3d(0,1,0,180deg); + -ms-transform: rotate3d(0,1,0,180deg); +} + +.doublePage._3d.prevstart{ + transform: rotate3d(0,1,0,180deg); + -moz-transform: rotateY(180deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,180deg); + -o-transform: rotate3d(0,1,0,180deg); + -ms-transform: rotate3d(0,1,0,180deg); + + transform-origin: 0 0; + -moz-transform-origin: 0 0; + -webkit-transform-origin: 0 0; + -o-transform-origin: 0 0; + -ms-transform-origin: 0 0; +} + +.doublePage._3d.prevend{ + transform: rotate3d(0,1,0,360deg); + -moz-transform: rotateY(360deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,360deg); + -o-transform: rotate3d(0,1,0,360deg); + -ms-transform: rotate3d(0,1,0,360deg); + +} + +a.button{ + display:inline-block; + padding:8px 32px 8px 16px; + border-radius: 6px; + font-weight: bold; + margin:10px 0; + background-image: url("../images/arrow-button.png"); + background-repeat: no-repeat; + background-position: 100% 50%; +} + + +#fontsLoader{ + position:absolute; + bottom:0px; + right: 0px; + width:0; + height:0px; + overflow:hidden; +} + + +/* Webfonts*/ +@font-face { + font-family: 'Silkscreen'; + src: url('fonts/slkscr-webfont.woff') format('woff'), + url('fonts/slkscr-webfont.ttf') format('truetype'); + font-weight: normal; + font-style: normal; + +} + +@font-face { + font-family: 'Ubuntu'; + src: url('fonts/Ubuntu-R-webfont.woff') format('woff'), + url('fonts/Ubuntu-R-webfont.ttf') format('truetype'); + font-weight: 400; + font-style: normal; +} + +@font-face { + font-family: 'Ubuntu'; + src: url('fonts/Ubuntu-RI-webfont.woff') format('woff'), + url('fonts/Ubuntu-RI-webfont.ttf') format('truetype'); + font-weight: 400; + font-style: italic; +} + +@font-face { + font-family: 'Ubuntu'; + src: url('fonts/Ubuntu-B-webfont.woff') format('woff'), + url('fonts/Ubuntu-B-webfont.ttf') format('truetype'); + font-weight: 700; + font-style: normal; + +} + +@font-face { + font-family: 'Ubuntu'; + src: url('fonts/Ubuntu-BI-webfont.woff') format('woff'), + url('fonts/Ubuntu-BI-webfont.ttf') format('truetype'); + font-weight: 700; + font-style: italic; + +} + +@font-face { + font-family: 'Ubuntu'; + src: url('fonts/Ubuntu-L-webfont.woff') format('woff'), + url('fonts/Ubuntu-L-webfont.ttf') format('truetype'); + font-weight:300; + font-style: normal; +} + +@font-face { + font-family: 'Ubuntu'; + src: url('fonts/Ubuntu-LI-webfont.woff') format('woff'), + url('fonts/Ubuntu-LI-webfont.ttf') format('truetype'); + font-weight: 300; + font-style: italic; +} + +@font-face { + font-family: 'Ubuntu'; + src: url('fonts/Ubuntu-M-webfont.woff') format('woff'), + url('fonts/Ubuntu-M-webfont.ttf') format('truetype'); + font-weight: 600; + font-style: normal; +} + +@font-face { + font-family: 'Ubuntu'; + src: url('fonts/Ubuntu-MI-webfont.woff') format('woff'), + url('fonts/Ubuntu-MI-webfont.ttf') format('truetype'); + font-weight: 600; + font-style: italic; +} + + + diff --git a/charte-graphique/m/style/fonts/Ubuntu-B-webfont.ttf b/charte-graphique/m/style/fonts/Ubuntu-B-webfont.ttf new file mode 100644 index 0000000..c81f83a Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-B-webfont.ttf differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-B-webfont.woff b/charte-graphique/m/style/fonts/Ubuntu-B-webfont.woff new file mode 100644 index 0000000..d275286 Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-B-webfont.woff differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-BI-webfont.ttf b/charte-graphique/m/style/fonts/Ubuntu-BI-webfont.ttf new file mode 100644 index 0000000..4b4217a Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-BI-webfont.ttf differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-BI-webfont.woff b/charte-graphique/m/style/fonts/Ubuntu-BI-webfont.woff new file mode 100644 index 0000000..171b64f Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-BI-webfont.woff differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-L-webfont.ttf b/charte-graphique/m/style/fonts/Ubuntu-L-webfont.ttf new file mode 100644 index 0000000..186e5a2 Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-L-webfont.ttf differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-L-webfont.woff b/charte-graphique/m/style/fonts/Ubuntu-L-webfont.woff new file mode 100644 index 0000000..7c2af3b Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-L-webfont.woff differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-LI-webfont.ttf b/charte-graphique/m/style/fonts/Ubuntu-LI-webfont.ttf new file mode 100644 index 0000000..177e956 Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-LI-webfont.ttf differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-LI-webfont.woff b/charte-graphique/m/style/fonts/Ubuntu-LI-webfont.woff new file mode 100644 index 0000000..70ee056 Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-LI-webfont.woff differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-M-webfont.ttf b/charte-graphique/m/style/fonts/Ubuntu-M-webfont.ttf new file mode 100644 index 0000000..5c4967c Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-M-webfont.ttf differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-M-webfont.woff b/charte-graphique/m/style/fonts/Ubuntu-M-webfont.woff new file mode 100644 index 0000000..72ce7ad Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-M-webfont.woff differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-MI-webfont.ttf b/charte-graphique/m/style/fonts/Ubuntu-MI-webfont.ttf new file mode 100644 index 0000000..2dab3b7 Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-MI-webfont.ttf differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-MI-webfont.woff b/charte-graphique/m/style/fonts/Ubuntu-MI-webfont.woff new file mode 100644 index 0000000..c1f6294 Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-MI-webfont.woff differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-R-webfont.ttf b/charte-graphique/m/style/fonts/Ubuntu-R-webfont.ttf new file mode 100644 index 0000000..147d98e Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-R-webfont.ttf differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-R-webfont.woff b/charte-graphique/m/style/fonts/Ubuntu-R-webfont.woff new file mode 100644 index 0000000..cb3dc6f Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-R-webfont.woff differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-RI-webfont.ttf b/charte-graphique/m/style/fonts/Ubuntu-RI-webfont.ttf new file mode 100644 index 0000000..92e05d8 Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-RI-webfont.ttf differ diff --git a/charte-graphique/m/style/fonts/Ubuntu-RI-webfont.woff b/charte-graphique/m/style/fonts/Ubuntu-RI-webfont.woff new file mode 100644 index 0000000..4f09e67 Binary files /dev/null and b/charte-graphique/m/style/fonts/Ubuntu-RI-webfont.woff differ diff --git a/charte-graphique/m/style/fonts/slkscr-webfont.ttf b/charte-graphique/m/style/fonts/slkscr-webfont.ttf new file mode 100644 index 0000000..1f4550d Binary files /dev/null and b/charte-graphique/m/style/fonts/slkscr-webfont.ttf differ diff --git a/charte-graphique/m/style/fonts/slkscr-webfont.woff b/charte-graphique/m/style/fonts/slkscr-webfont.woff new file mode 100644 index 0000000..6f18403 Binary files /dev/null and b/charte-graphique/m/style/fonts/slkscr-webfont.woff differ diff --git a/charte-graphique/m/style/print.css b/charte-graphique/m/style/print.css new file mode 100644 index 0000000..835dcaa --- /dev/null +++ b/charte-graphique/m/style/print.css @@ -0,0 +1,23 @@ +body>div{ + display:none; +} + +body>div#printpages{ + display:block; +} + +.printpage{ + page-break-after: always; +} + +.printpage:last-child { + page-break-after:avoid; +} + +.printpage img{ + max-width: 100%; + max-height: 100%; + display: inline-block; + text-align: center; + vertical-align: middle; +} \ No newline at end of file diff --git a/charte-graphique/m/style/widget.css b/charte-graphique/m/style/widget.css new file mode 100644 index 0000000..310ef0c --- /dev/null +++ b/charte-graphique/m/style/widget.css @@ -0,0 +1,161 @@ +*{margin:0;padding:0} + +body{ + overflow: hidden; + cursor:pointer; +} + +#container{ + overflow:hidden; + display:none; +} + +#widget{ + position:absolute; + top:0px; + left:0px; +} + +.p{ + display:none; + position:absolute; + top:0px; + left:0px; +} + +.p>img{ + position:absolute; + top:0px; + left:0px; +} + +.p .shade img{ + position: absolute; + top:0px; +} + +.p.left .shade img{ + right:0px; +} + +.p.right .shade img{ + left:0px; +} + +.shade img{ + display:block; + position:relative; + z-index:4; +} + +#currentDoublePage,#nextDoublePage{ + position:absolute; + top:0px; + left:0px; +} + +#nextDoublePage{ + z-index:3; +} + +#widget{ + perspective: 5000px; + -moz-perspective:5000px; + -webkit-perspective:5000px; + -o-perspective:5000px; + -ms-perspective:5000px; + + + perspective-origin: 50% 75%; + -moz-perspective-origin:50% 75%; + -webkit-perspective-origin:50% 75%; + -ms-perspective-origin:50% 75%; + -o-perspective-origin:50% 75%; +} + +#nextDoublePage._3d{ + overflow: visible; + z-index:100; + + transition: all 1s ease-out; + -moz-transition: all 1s ease-out; + -webkit-transition: all 1s ease-out; + -o-transition: all 1s ease-out; + -ms-transition: all 1s ease-out; + + transform-style: preserve-3d; + -moz-transform-style:preserve-3d; + -webkit-transform-style:preserve-3d; + -o-transform-style:preserve-3d; + -ms-transform-style:preserve-3d; +} + +#nextDoublePage._3d .p{ + backface-visibility: hidden; + -moz-backface-visibility:hidden; + -webkit-backface-visibility:hidden; + -o-backface-visibility:hidden; + -ms-backface-visibility:hidden; + + left:0px !important; +} + +#nextDoublePage._3d .right{ + transform: rotate3d(0,1,0,0deg); + -moz-transform: rotateY(0deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,0deg); + -o-transform: rotate3d(0,1,0,0deg); + -ms-transform: rotate3d(0,1,0,0deg); +} + +#nextDoublePage._3d .left{ + transform: rotate3d(0,1,0,180deg); + -moz-transform: rotateY(180deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,180deg); + -o-transform: rotate3d(0,1,0,180deg); + -ms-transform: rotate3d(0,1,0,180deg); +} + +#nextDoublePage._3d.nextstart{ + transform: rotate3d(0,1,0,360deg); + -moz-transform: rotateY(360deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,360deg); + -o-transform: rotate3d(0,1,0,360deg); + -ms-transform: rotate3d(0,1,0,360deg); + + transform-origin: 0 0; + -moz-transform-origin: 0 0; + -webkit-transform-origin: 0 0; + -o-transform-origin: 0 0; + -ms-transform-origin: 0 0; +} + +#nextDoublePage._3d.nextend{ + transform: rotate3d(0,1,0,180deg); + -moz-transform: rotateY(180deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,180deg); + -o-transform: rotate3d(0,1,0,180deg); + -ms-transform: rotate3d(0,1,0,180deg); +} + +#nextDoublePage._3d.prevstart{ + transform: rotate3d(0,1,0,180deg); + -moz-transform: rotateY(180deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,180deg); + -o-transform: rotate3d(0,1,0,180deg); + -ms-transform: rotate3d(0,1,0,180deg); + + transform-origin: 0 0; + -moz-transform-origin: 0 0; + -webkit-transform-origin: 0 0; + -o-transform-origin: 0 0; + -ms-transform-origin: 0 0; +} + +#nextDoublePage._3d.prevend{ + transform: rotate3d(0,1,0,360deg); + -moz-transform: rotateY(360deg) translate3d(0,0,0); + -webkit-transform: rotate3d(0,1,0,360deg); + -o-transform: rotate3d(0,1,0,360deg); + -ms-transform: rotate3d(0,1,0,360deg); +} \ No newline at end of file diff --git a/charte-graphique/m/widget.html b/charte-graphique/m/widget.html new file mode 100644 index 0000000..d7c4c9f --- /dev/null +++ b/charte-graphique/m/widget.html @@ -0,0 +1,17 @@ + + + + Levidac - Charte graphique + + + + + + +
    +
    + +
    +
    + + \ No newline at end of file diff --git a/charte-graphique/player.swf b/charte-graphique/player.swf new file mode 100644 index 0000000..c2efe4c Binary files /dev/null and b/charte-graphique/player.swf differ diff --git a/charte-graphique/style.css b/charte-graphique/style.css new file mode 100644 index 0000000..399545a --- /dev/null +++ b/charte-graphique/style.css @@ -0,0 +1,12 @@ +html{height:100%;overflow:hidden;} +#fluidbook{height:100%} +body{height:100%;margin:0;padding:0;font-family:Arial, Helvetica, sans-serif;color:#666;font-size:11px;} +.center{margin:10px auto;text-align:center;} +blockquote{width:75%;margin:auto;padding-top:150px;} +a{color:#000;text-decoration:none;} +img{border:0;} +.download div{float:left;} +.download img{margin-right:20px;} +.fr{color:#eee;} +.link .clink{text-align:center;padding-top:100px;} +.ref{color:#333;} \ No newline at end of file diff --git a/css/all.css b/css/all.css new file mode 100644 index 0000000..7abd4a3 --- /dev/null +++ b/css/all.css @@ -0,0 +1,439 @@ +@font-face { + font-family: 'webfontuploaded_file'; + src: url('../fonts/flexo-medium-webfont-webfont.eot'); + src: url('../fonts/flexo-medium-webfont-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/flexo-medium-webfont-webfont.woff') format('woff'), + url('../fonts/flexo-medium-webfont-webfont.ttf') format('truetype'), + url('../fonts/flexo-medium-webfont-webfont.svg#webfontuploaded_file') format('svg'); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'ubuntu_lightregular'; + src: url('../fonts/ubuntu-l-webfont.eot'); + src: url('../fonts/ubuntu-l-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/ubuntu-l-webfont.woff') format('woff'), + url('../fonts/ubuntu-l-webfont.ttf') format('truetype'), + url('../fonts/ubuntu-l-webfont.svg#ubuntu_lightregular') format('svg'); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'ubunturegular'; + src: url('../fonts/ubuntu-r-webfont.eot'); + src: url('../fonts/ubuntu-r-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/ubuntu-r-webfont.woff') format('woff'), + url('../fonts/ubuntu-r-webfont.ttf') format('truetype'), + url('../fonts/ubuntu-r-webfont.svg#ubunturegular') format('svg'); + font-weight: normal; + font-style: normal; +} + @font-face { + font-family: 'ubuntubold'; + src: url('../fonts/ubuntu-b-webfont.eot'); + src: url('../fonts/ubuntu-b-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/ubuntu-b-webfont.woff') format('woff'), + url('../fonts/ubuntu-b-webfont.ttf') format('truetype'), + url('../fonts/ubuntu-b-webfont.svg#ubuntubold') format('svg'); + font-weight: normal; + font-style: normal; +} +body{ + margin:0; + color:#283843; + font:14px/21px ubunturegular, Arial, Helvetica, sans-serif; + background:#fff; + min-width:1000px; + -webkit-text-size-adjust:100%; +} +img{border-style:none;} +a{ + text-decoration:underline; + color:#283843; +} +a:hover{text-decoration:none;} +input, +textarea, +select{ + font:100% Arial, Helvetica, sans-serif; + vertical-align:middle; + color:#000; +} +form, +fieldset{ + margin:0; + padding:0; + border-style:none; +} +#wrapper{ + width:100%; +} +#header{ + background:#283843; +} +.header-holder{ + width:952px; + margin:0 auto; + overflow:hidden; + padding:19px 26px 19px 22px; +} +.logo{ + background:url(../images/logo.png) no-repeat; + width:202px; + height:53px; + text-indent:-9999px; + overflow:hidden; + float:left; +} +.logo a{ + display:block; + height:100%; +} +.contact-us{ + font:17px/22px ubuntu_lightregular, Arial, Helvetica, sans-serif; + color:#fff; + float:right; + text-decoration:none; + margin:15px 0 0; +} +.contact-us:hover{text-decoration:underline;} +.intro{ + background:#fff url(../images/bg-intro.jpg) no-repeat 50% 100%; + background-size:auto 100%; +} +.intro .holder{ + width:464px; + margin:0 auto; + padding:50px 518px 0 18px; + height:423px; + text-align:center; + color:#fff; + font-size:22px; + line-height:29px; + overflow:hidden; +} +.intro h1{ + margin:0 0 42px; + font:90px/88px webfontuploaded_file, Arial, Helvetica, sans-serif; + color:#fff; + letter-spacing:-4px; + word-spacing:-2px; +} +.intro p{margin:0;} +.about{ + overflow:hidden; + width:960px; + margin:-7px auto 33px; + padding:0 18px 0 22px; +} +.about .video{ + background:url(../images/bg-shadow.png) no-repeat 50% 100%; + padding:0 0 29px; +} +.about .video img{vertical-align:top;} +.about .alignleft{ + float:left; + margin:9px 62px 0 0; +} +.about .alignright{ + float:right; + margin:9px 0 0 62px; +} +.about .description{ + overflow:hidden; +} +h2{ + font:44px/50px webfontuploaded_file, Arial, Helvetica, sans-serif; + color:#283843; + margin:0 0 12px; + word-spacing:-1px; + text-align:left; +} +h3{ + font:22px ubunturegular, Arial, Helvetica, sans-serif; + color:#8dc63f; + margin:0 0 19px; + text-align:left; +} +.orange h3{color:#f1694c;} +.blue h3{color:#018acf;} +.yellow h3{color:#ee8018;} +.green h3{color:#8bbc3e;} +.red h3{color:#ec4b32;} +.section p, +.about p{margin:0 0 10px;} +.more{ + text-transform:uppercase; + color:#8dc63f; + text-decoration:none; +} +.orange .more{color:#f1694c;} +.blue .more{color:#018acf;} +.yellow .more{color:#ee8018;} +.green .more{color:#8bbc3e;} +.red .more{color:#ec4b32;} +.more:hover{text-decoration:underline;} +.section{ + background:url(../images/bg-section.png) repeat-x; +} +.section .holder{ + width:959px; + margin:0 auto; + overflow:hidden; + padding:0 18px 60px 23px; +} +.section .photo{ + background:url(../images/bg-shadow.png) no-repeat 50% 100%; + padding:0 0 29px; +} +.section .photo img{vertical-align:top;} +.section .photo.alignright{ + float:right; + margin:50px 0 0 55px; +} +.section .photo.alignleft{ + float:left; + margin:50px 55px 0 0; +} +.section .description{ + padding:40px 0 0; + overflow:hidden; +} +.illustration.alignright{ + float:right; + margin:0 0 0 60px; +} +.illustration.alignleft{ + float:left; + margin:0 60px 0 0; +} +.contact{ + background:#283944; + width:100%; + overflow:hidden; +} +.contact .holder{ + width:964px; + margin:0 auto; + padding:0 18px; +} +.contact h2{ + color:#fff; + margin: 45px 0 0; +} +.contact .columns:after{ + content:''; + display:block; + clear:both; +} +.contact .col{ + +} +.address-block{ + padding:44px 0 104px; + float:left; + width:276px; + margin: 0 57px 0 0; +} + +.address-block.nomargin{ + margin:0; +} + +.address-block a { + color: #fff; + text-decoration: none; +} + +.address-block h3{ + color:#fff; + margin:0 0 14px; +} +.address-block ul{ + padding:0; + margin:0; + list-style:none; + line-height:16px; + color:#fff; +} +.address-block ul li{ + padding:0 0 31px 57px; + min-height:46px; + overflow:hidden; +} +.address-block .address{ + background:url(../images/bg-address.png) no-repeat 0 2px; +} +.address-block .email{ + background:url(../images/bg-email.png) no-repeat; +} +.address-block .phone{ + background:url(../images/bg-phone.png) no-repeat; +} +.address-block .phone a{ + color:#fff; + text-decoration:none; +} +.address-block address{ + font-style:normal; + padding:0; +} +.address-block ul .email a{ + color:#fff; + text-decoration:none; + float:left; +} +.address-block ul .email a:hover{text-decoration:underline;} +.address-block dl{ + margin:0; + overflow:hidden; + padding:5px 0 0; +} +.address-block dl dt{ + float:left; + padding:0 5px 0 0; + clear:left; +} +.address-block dl dd{margin:0;} +.map{ + background:url(../images/bg-map.png) no-repeat 50% 100%; + width:270px; + height:176px; + padding:0 0 30px 0; + margin:0 0 10px 0; +} +.map img{vertical-align:top;} +.partners{ + background:#fefefe url(../images/bg-partners.png) repeat-x; +} +.partners .holder{ + width:964px; + margin:0 auto; + padding:42px 18px 48px; +} +.partners h2{ + color:#283843; + margin:0 0 37px; +} +.partners-list img{vertical-align:top;} +#footer{ + font-size:12px; + line-height:15px; + color:#fff; + background:#283843; + height:50px; +} +.footer-holder{ + width:960px; + margin:0 auto; + padding:16px 18px 18px 22px; +} +#footer .slogan{ + float:right; +} +#footer p{margin:0;} +#footer a{color:#fff;} + +#footer .addthis_toolbox{ + float:left; +} + +#footer .credits{ + float:right; +} + +.fb-like{ + float:right; +} + +.popup-holder { + height: 0; + overflow: hidden; + position: relative; +} +.lightbox{ + width:782px; + padding:0 29px 20px; + background:#fff; +} +.lightbox .heading{ + overflow:hidden; + padding:12px 0; + margin:0 -29px 0 0; +} +.lightbox h3{ + color:#283843; + font:22px/26px webfontuploaded_file, Arial, Helvetica, sans-serif; + margin:0; + word-spacing:-1px; +} +.lightbox .block{ + background:url(../images/bg-block.png) repeat-x; + margin:0 -29px 0; + padding:28px 29px 9px; +} +.lightbox .block h4{ + font-size:22px; + line-height:25px; + font-weight:normal; + color:#ee8018; + margin:0 0 11px; +} +.lightbox .block dl{ + margin:0; + overflow:hidden; + line-height:21px; +} +.lightbox .block dl dt{ + float:left; + clear:left; + width:251px; + overflow:hidden; + font-family:ubuntubold, Arial, Helvetica, sans-serif; + text-transform:uppercase; + padding:0 0 5px; +} +.lightbox .block dl dt strong{ + float:left; + margin-right:20px; + font-weight:normal; +} +.lightbox .block dl dt span{ + background:url(../images/separator.png) repeat-x 0 100%; + height:15px; + float:left; + margin:0 -251px 0 0; + padding:0 251px 0 0; +} + +.lightbox .block dl.turb{ + overflow: visible; + margin: -30px 0 0 0; +} +.lightbox .block dl.turb dd.first, +.lightbox .block dl dd{ + margin:0; + overflow:hidden; + padding:0 0 5px 20px; +} + +.lightbox .block dl.turb dd.title{ + font-family: ubuntubold; + position:relative; + + left:250px; + z-index: 2; +} + + + +.lightbox .block dl.turb dd{ + width:102px; + float:left; + padding:0 0 5px 0; +} + +.lightbox .addthis_button{ + float:right; + margin:6px 0 0 0; +} \ No newline at end of file diff --git a/css/all.old b/css/all.old new file mode 100644 index 0000000..5162592 --- /dev/null +++ b/css/all.old @@ -0,0 +1,389 @@ +@font-face { + font-family: 'webfontuploaded_file'; + src: url('../fonts/flexo-medium-webfont-webfont.eot'); + src: url('../fonts/flexo-medium-webfont-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/flexo-medium-webfont-webfont.woff') format('woff'), + url('../fonts/flexo-medium-webfont-webfont.ttf') format('truetype'), + url('../fonts/flexo-medium-webfont-webfont.svg#webfontuploaded_file') format('svg'); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'ubuntu_lightregular'; + src: url('../fonts/ubuntu-l-webfont.eot'); + src: url('../fonts/ubuntu-l-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/ubuntu-l-webfont.woff') format('woff'), + url('../fonts/ubuntu-l-webfont.ttf') format('truetype'), + url('../fonts/ubuntu-l-webfont.svg#ubuntu_lightregular') format('svg'); + font-weight: normal; + font-style: normal; +} +@font-face { + font-family: 'ubunturegular'; + src: url('../fonts/ubuntu-r-webfont.eot'); + src: url('../fonts/ubuntu-r-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/ubuntu-r-webfont.woff') format('woff'), + url('../fonts/ubuntu-r-webfont.ttf') format('truetype'), + url('../fonts/ubuntu-r-webfont.svg#ubunturegular') format('svg'); + font-weight: normal; + font-style: normal; +} + @font-face { + font-family: 'ubuntubold'; + src: url('../fonts/ubuntu-b-webfont.eot'); + src: url('../fonts/ubuntu-b-webfont.eot?#iefix') format('embedded-opentype'), + url('../fonts/ubuntu-b-webfont.woff') format('woff'), + url('../fonts/ubuntu-b-webfont.ttf') format('truetype'), + url('../fonts/ubuntu-b-webfont.svg#ubuntubold') format('svg'); + font-weight: normal; + font-style: normal; +} +body{ + margin:0; + color:#283843; + font:14px/21px ubunturegular, Arial, Helvetica, sans-serif; + background:#fff; + min-width:1000px; + -webkit-text-size-adjust:100%; +} +img{border-style:none;} +a{ + text-decoration:underline; + color:#283843; +} +a:hover{text-decoration:none;} +input, +textarea, +select{ + font:100% Arial, Helvetica, sans-serif; + vertical-align:middle; + color:#000; +} +form, +fieldset{ + margin:0; + padding:0; + border-style:none; +} +#wrapper{ + width:100%; +} +#header{ + background:#283843; +} +.header-holder{ + width:952px; + margin:0 auto; + overflow:hidden; + padding:19px 26px 19px 22px; +} +.logo{ + background:url(../images/logo.png) no-repeat; + width:202px; + height:53px; + text-indent:-9999px; + overflow:hidden; + float:left; +} +.logo a{ + display:block; + height:100%; +} +.contact-us{ + font:17px/22px ubuntu_lightregular, Arial, Helvetica, sans-serif; + color:#fff; + float:right; + text-decoration:none; + margin:15px 0 0; +} +.contact-us:hover{text-decoration:underline;} +.intro{ + background:#fff url(../images/bg-intro.jpg) no-repeat 50% 100%; + background-size:auto 100%; +} +.intro .holder{ + width:464px; + margin:0 auto; + padding:50px 518px 0 18px; + height:423px; + text-align:center; + color:#fff; + font-size:22px; + line-height:29px; + overflow:hidden; +} +.intro h1{ + margin:0 0 42px; + font:90px/88px webfontuploaded_file, Arial, Helvetica, sans-serif; + color:#fff; + letter-spacing:-4px; + word-spacing:-2px; +} +.intro p{margin:0;} +.about{ + overflow:hidden; + width:960px; + margin:-7px auto 33px; + padding:0 18px 0 22px; +} +.about .video{ + background:url(../images/bg-shadow.png) no-repeat 50% 100%; + padding:0 0 29px; +} +.about .video img{vertical-align:top;} +.about .alignleft{ + float:left; + margin:9px 62px 0 0; +} +.about .alignright{ + float:right; + margin:9px 0 0 62px; +} +.about .description{ + overflow:hidden; +} +h2{ + font:44px/50px webfontuploaded_file, Arial, Helvetica, sans-serif; + color:#283843; + margin:0 0 12px; + word-spacing:-1px; + text-align:left; +} +h3{ + font:22px ubuntu_lightregular, Arial, Helvetica, sans-serif; + color:#8dc63f; + margin:0 0 19px; + text-align:left; +} +.orange h3{color:#f1694c;} +.blue h3{color:#018acf;} +.yellow h3{color:#ee8018;} +.green h3{color:#8bbc3e;} +.section p, +.about p{margin:0 0 10px;} +.more{ + text-transform:uppercase; + color:#8dc63f; + text-decoration:none; +} +.orange .more{color:#f1694c;} +.blue .more{color:#018acf;} +.yellow .more{color:#ee8018;} +.green .more{color:#8bbc3e;} +.more:hover{text-decoration:underline;} +.section{ + background:url(../images/bg-section.png) repeat-x; +} +.section .holder{ + width:959px; + margin:0 auto; + overflow:hidden; + padding:0 18px 60px 23px; +} +.section .photo{ + background:url(../images/bg-shadow.png) no-repeat 50% 100%; + padding:0 0 29px; +} +.section .photo img{vertical-align:top;} +.section .photo.alignright{ + float:right; + margin:50px 0 0 55px; +} +.section .photo.alignleft{ + float:left; + margin:50px 55px 0 0; +} +.section .description{ + padding:40px 0 0; + overflow:hidden; +} +.illustration.alignright{ + float:right; + margin:0 0 0 60px; +} +.illustration.alignleft{ + float:left; + margin:0 60px 0 0; +} +.contact{ + background:#283944; + width:100%; + overflow:hidden; +} +.contact .holder{ + width:964px; + margin:0 auto; + padding:0 18px; +} +.contact h2{ + color:#fff; + margin:0; +} +.contact .columns:after{ + content:''; + display:block; + clear:both; +} +.contact .col{ + width:491px; + float:left; + padding:38px 15px 0 4px; + margin:0 0 -23px; + z-index:2; + position:relative; +} +.address-block{padding:44px 0 54px;} +.address-block h3{ + color:#fff; + margin:0 0 14px; +} +.address-block ul{ + padding:0; + margin:0; + list-style:none; + line-height:16px; + color:#fff; +} +.address-block ul li{ + padding:0 0 31px 57px; + min-height:46px; + overflow:hidden; +} +.address-block .address{ + background:url(../images/bg-address.png) no-repeat 0 2px; +} +.address-block .email{ + background:url(../images/bg-email.png) no-repeat; +} +.address-block .phone{ + background:url(../images/bg-phone.png) no-repeat; +} +.address-block .phone a{ + color:#fff; + text-decoration:none; +} +.address-block address{ + font-style:normal; + padding:0; +} +.address-block ul .email a{ + color:#fff; + text-decoration:none; + float:left; + padding:14px 0 0; +} +.address-block ul .email a:hover{text-decoration:underline;} +.address-block dl{ + margin:0; + overflow:hidden; + padding:5px 0 0; +} +.address-block dl dt{ + float:left; + padding:0 5px 0 0; + clear:left; +} +.address-block dl dd{margin:0;} +.map{ + float:right; + background:url(../images/bg-map.png) no-repeat; + width:449px; + height:291px; + padding:139px 210px 216px 214px; + margin:0 -210px 0 -214px; + z-index:1; + position:relative; +} +.map img{vertical-align:top;} +.partners{ + background:#fefefe url(../images/bg-partners.png) repeat-x; +} +.partners .holder{ + width:964px; + margin:0 auto; + padding:42px 18px 48px; +} +.partners h2{ + color:#283843; + margin:0 0 37px; +} +.partners-list img{vertical-align:top;} +#footer{ + font-size:12px; + line-height:15px; + color:#fff; + background:#283843; +} +.footer-holder{ + width:960px; + margin:0 auto; + padding:16px 18px 18px 22px; +} +#footer .slogan{ + float:right; +} +#footer p{margin:0;} +.popup-holder { + height: 0; + overflow: hidden; + position: relative; +} +.lightbox{ + width:782px; + padding:0 29px 20px; + background:#fff; +} +.lightbox .heading{ + overflow:hidden; + padding:12px 0; + margin:0 -29px 0 0; +} +.lightbox h3{ + color:#283843; + font:22px/26px webfontuploaded_file, Arial, Helvetica, sans-serif; + margin:0; + word-spacing:-1px; +} +.lightbox .block{ + background:url(../images/bg-block.png) repeat-x; + margin:0 -29px 0; + padding:28px 29px 9px; +} +.lightbox .block h4{ + font-size:22px; + line-height:25px; + font-weight:normal; + color:#ee8018; + margin:0 0 11px; +} +.lightbox .block dl{ + margin:0; + overflow:hidden; + line-height:21px; +} +.lightbox .block dl dt{ + float:left; + clear:left; + width:251px; + overflow:hidden; + font-family:ubuntubold, Arial, Helvetica, sans-serif; + text-transform:uppercase; + padding:0 0 5px; +} +.lightbox .block dl dt strong{ + float:left; + margin-right:20px; + font-weight:normal; +} +.lightbox .block dl dt span{ + background:url(../images/separator.png) repeat-x 0 100%; + height:15px; + float:left; + margin:0 -251px 0 0; + padding:0 251px 0 0; +} +.lightbox .block dl dd{ + margin:0; + overflow:hidden; + padding:0 0 5px 20px; +} \ No newline at end of file diff --git a/css/fancybox.css b/css/fancybox.css new file mode 100644 index 0000000..2cc06f5 --- /dev/null +++ b/css/fancybox.css @@ -0,0 +1,292 @@ +#fancybox-loading { + position: fixed; + top: 50%; + left: 50%; + width: 40px; + height: 40px; + margin-top: -20px; + margin-left: -20px; + cursor: pointer; + overflow: hidden; + z-index: 1104; + display: none; +} +#fancybox-loading div { + position: absolute; + top: 0; + left: 0; + width: 40px; + height: 480px; + background-image: url(../images/fancybox/fancybox.png); +} +#fancybox-overlay { + position: absolute; + top: 0; + left: 0; + width: 100%; + z-index: 1100; + display: none; +} +#fancybox-tmp { + padding: 0; + margin: 0; + border: 0; + overflow: auto; + display: none; +} +#fancybox-wrap { + position: absolute; + top: 0; + left: 0; + padding:4px; + z-index: 1101; + outline: none; + display: none; +} +#fancybox-outer { + position: relative; + width: 100%; + height: 100%; + background: #fff; +} +#fancybox-content { + width: 0; + height: 0; + padding: 0; + outline: none; + position: relative; + overflow: hidden; + z-index: 1102; + border: 0px solid #fff; +} +#fancybox-hide-sel-frame { + position: absolute; + top: 0; + left: 0; + width: 100%; + height: 100%; + background: transparent; + z-index: 1101; +} +#fancybox-close { + position: absolute; + top: 0; + right: 0; + width: 50px; + height: 50px; + background: transparent url(../images/bg-close.png) no-repeat; + cursor: pointer; + z-index: 1103; + display: none; +} +#fancybox-error { + color: #444; + font: normal 12px/20px Arial; + padding: 14px; + margin: 0; +} +#fancybox-img { + width: 100%; + height: 100%; + padding: 0; + margin: 0; + border: none; + outline: none; + line-height: 0; + vertical-align: top; +} +#fancybox-frame { + width: 100%; + height: 100%; + border: none; + display: block; +} +#fancybox-left, #fancybox-right { + position: absolute; + bottom: 0px; + height: 100%; + width: 35%; + cursor: pointer; + outline: none; + background: transparent url(../images/fancybox/blank.gif); + z-index: 1102; + display: none; +} +#fancybox-left { + left: 0px; +} +#fancybox-right { + right: 0px; +} +#fancybox-left-ico, #fancybox-right-ico { + position: absolute; + top: 50%; + left: -9999px; + width: 30px; + height: 30px; + margin-top: -15px; + cursor: pointer; + z-index: 1102; + display: block; +} +#fancybox-left-ico { + background-image: url(../images/fancybox/fancybox.png); + background-position: -40px -30px; +} +#fancybox-right-ico { + background-image: url(../images/fancybox/fancybox.png); + background-position: -40px -60px; +} +#fancybox-left:hover, #fancybox-right:hover { + visibility: visible; /* IE6 */ +} +#fancybox-left:hover span { + left: 20px; +} +#fancybox-right:hover span { + left: auto; + right: 20px; +} +.fancybox-bg { + position: absolute; + padding: 0; + margin: 0; + border: 0; + width: 4px; + height: 4px; + z-index: 1001; +} +#fancybox-bg-n { + top: -4px; + left: 0; + width: 100%; + background-image: url(../images/fancybox/fancybox-x.png); +} +#fancybox-bg-ne { + top: -4px; + right: -4px; + background-image: url(../images/fancybox/fancybox.png); + background-position: -40px -162px; +} +#fancybox-bg-e { + top: 0; + right: -4px; + height: 100%; + background-image: url(../images/fancybox/fancybox-y.png); + background-position: -20px 0px; +} +#fancybox-bg-se { + bottom: -4px; + right: -4px; + background-image: url(../images/fancybox/fancybox.png); + background-position: -40px -182px; +} +#fancybox-bg-s { + bottom: -4px; + left: 0; + width: 100%; + background-image: url(../images/fancybox/fancybox-x.png); + background-position: 0px -20px; +} +#fancybox-bg-sw { + bottom: -4px; + left: -4px; + background-image: url(../images/fancybox/fancybox.png); + background-position: -40px -142px; +} +#fancybox-bg-w { + top: 0; + left: -4px; + height: 100%; + background-image: url(../images/fancybox/fancybox-y.png); +} +#fancybox-bg-nw { + top: -4px; + left: -4px; + background-image: url(../images/fancybox/fancybox.png); + background-position: -40px -122px; +} +#fancybox-title { + font-family: Helvetica; + font-size: 12px; + z-index: 1102; +} +.fancybox-title-inside { + padding-bottom: 10px; + text-align: center; + color: #333; + background: #fff; + position: relative; +} +.fancybox-title-outside { + padding-top: 10px; + color: #fff; +} +.fancybox-title-over { + position: absolute; + bottom: 0; + left: 0; + color: #fff; + text-align: left; +} +#fancybox-title-over { + padding: 10px; + background-image: url(../images/fancybox/fancy_title_over.png); + display: block; +} +.fancybox-title-float { + position: absolute; + left: 0; + bottom: -20px; + height: 32px; +} +#fancybox-title-float-wrap { + border: none; + border-collapse: collapse; + width: auto; +} +#fancybox-title-float-wrap td { + border: none; + white-space: nowrap; +} +#fancybox-title-float-left { + padding: 0 0 0 15px; + background: url(../images/fancybox/fancybox.png) -40px -90px no-repeat; +} +#fancybox-title-float-main { + color: #fff; + line-height: 29px; + font-weight: bold; + padding: 0 0 3px 0; + background: url(../images/fancybox/fancybox-x.png) 0px -40px; +} +#fancybox-title-float-right { + padding: 0 0 0 15px; + background: url(../images/fancybox/fancybox.png) -55px -90px no-repeat; +} +/* IE6 */ +.fancybox-ie6 #fancybox-close { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_close.png', sizingMethod='scale'); } +.fancybox-ie6 #fancybox-left-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_nav_left.png', sizingMethod='scale'); } +.fancybox-ie6 #fancybox-right-ico { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_nav_right.png', sizingMethod='scale'); } +.fancybox-ie6 #fancybox-title-over { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_title_over.png', sizingMethod='scale'); zoom: 1; } +.fancybox-ie6 #fancybox-title-float-left { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_title_left.png', sizingMethod='scale'); } +.fancybox-ie6 #fancybox-title-float-main { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_title_main.png', sizingMethod='scale'); } +.fancybox-ie6 #fancybox-title-float-right { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_title_right.png', sizingMethod='scale'); } +.fancybox-ie6 #fancybox-bg-w, .fancybox-ie6 #fancybox-bg-e, .fancybox-ie6 #fancybox-left, .fancybox-ie6 #fancybox-right, #fancybox-hide-sel-frame { + height: expression(this.parentNode.clientHeight + "px"); +} +#fancybox-loading.fancybox-ie6 { + position: absolute; margin-top: 0; + top: expression( (-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'); +} +#fancybox-loading.fancybox-ie6 div { background: transparent; filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='fancybox/fancy_loading.png', sizingMethod='scale'); } +/* IE6, IE7, IE8 */ +.fancybox-ie .fancybox-bg { background: transparent !important; } +.fancybox-ie #fancybox-bg-n { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_n.png', sizingMethod='scale'); } +.fancybox-ie #fancybox-bg-ne { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_ne.png', sizingMethod='scale'); } +.fancybox-ie #fancybox-bg-e { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_e.png', sizingMethod='scale'); } +.fancybox-ie #fancybox-bg-se { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_se.png', sizingMethod='scale'); } +.fancybox-ie #fancybox-bg-s { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_s.png', sizingMethod='scale'); } +.fancybox-ie #fancybox-bg-sw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_sw.png', sizingMethod='scale'); } +.fancybox-ie #fancybox-bg-w { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_w.png', sizingMethod='scale'); } +.fancybox-ie #fancybox-bg-nw { filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='images/fancybox/fancy_shadow_nw.png', sizingMethod='scale'); } \ No newline at end of file diff --git a/email.html b/email.html new file mode 100644 index 0000000..4f291ab --- /dev/null +++ b/email.html @@ -0,0 +1,63 @@ + + + + +Levidac + + + +
    + + + +
    +
    + + + + + + + + + + + + + +
    header
    +
    + + + + + + + + +
     
    + Dear Mr Cadivel,
    +
    +On the occasion of the Future Energy Forum & Asia Smart Grid exhibition 2012, + Illya Cadivel, Levidac CEO, and his team, are pleased to invite you to a cocktail
    +on 23 October 2012 from 4:00 pm at the Levidac Booth.
    +Levidac Booth G17, Hall C1, Level 1.
    +
    +
    We kindly ask you to confirm your attendance by e-mail before October 19th to provost@levidac.fr
    +
    +
    + Clotilde Provost
    +Communication & Marketing Director

    +
    +
    +
     
     About Levidac +
    Levidac is a company committed to preserving the environment. With its expertise in energy independence, it provides answers to problems related to the exponential growth in new energy needs, the rarefaction of fossil resources and the urgent need to clean-up pollution. +Levidac specializes in the research, design, development and manufacturing of clean vehicles and turnkey systems for the production, storage and smart grid redistribution of clean energy, particularly in areas with tropical climate conditions. +Levidac is the only company in the market to propose communities and individuals a turnkey eco-responsible pack, permitting the completely independent production of green electricity, consistent with local energy environments, through to its end use in a next generation building or electric vehicle, equipped with a micro-turbine 'drive by wire' system withoutmechanical transmission.
    +
    +
    +
     
    footer
    +

     

    +
    + + diff --git a/email/logo.jpg b/email/logo.jpg new file mode 100644 index 0000000..b3dfb32 Binary files /dev/null and b/email/logo.jpg differ diff --git a/email/rounded.jpg b/email/rounded.jpg new file mode 100644 index 0000000..7e49116 Binary files /dev/null and b/email/rounded.jpg differ diff --git a/email/scratch.jpg b/email/scratch.jpg new file mode 100644 index 0000000..1c84c32 Binary files /dev/null and b/email/scratch.jpg differ diff --git a/email/signature-alain-mgouvri.html b/email/signature-alain-mgouvri.html new file mode 100644 index 0000000..40de097 --- /dev/null +++ b/email/signature-alain-mgouvri.html @@ -0,0 +1,36 @@ + + + + + + + + + + +
    Alain M'GOUVRI - EV Technician
    Phone +262 (0) 262 202 402 | + Mobile +262 (0) 692 082 455 | + Fax +262 (0) 262 202 627
    + + + + + +
    logo + + + + + + + + + + + + + + + +
    spacer
    Levidac Reunion Island
    9, avenue Roland Garros
    97438 Sainte Marie - Reunion Island - FRANCE
    spacer
    rounded
    + diff --git a/email/signature-cecile-jiang.html b/email/signature-cecile-jiang.html new file mode 100644 index 0000000..8536b59 --- /dev/null +++ b/email/signature-cecile-jiang.html @@ -0,0 +1,35 @@ + + + + + + + + + + +
    Cecile JIANG - Back Office Leader
    Mobile +86 156 0177 3636 | + jiang@levidac.fr
    + + + + + +
    logo + + + + + + + + + + + + + + + +
    spacer
    Levidac Shanghai Office
    Lane No. 12, 88 Shaoxing Rd
    200 020 Shanghai - CHINA
    spacer
    rounded
    + diff --git a/email/signature-christophe-saune.html b/email/signature-christophe-saune.html new file mode 100644 index 0000000..d2ba09d --- /dev/null +++ b/email/signature-christophe-saune.html @@ -0,0 +1,35 @@ + + + + + + + + + + +
    Christophe SAUNE - Sourcing Leader
    Mobile +86 156 0177 0055 | + saune@levidac.fr
    + + + + + +
    logo + + + + + + + + + + + + + + + +
    spacer
    Levidac Shanghai Office
    Lane No. 12, 88 Shaoxing Rd
    200 020 Shanghai - CHINA
    spacer
    rounded
    + diff --git a/email/signature-clotilde.html b/email/signature-clotilde.html new file mode 100644 index 0000000..33ef2cd --- /dev/null +++ b/email/signature-clotilde.html @@ -0,0 +1,34 @@ + + + + + + + + + + +
    Clotilde PROVOST - Communication & Marketing Director
    Mobile +33 (0) 6 47 99 11 57 | provost@levidac.fr
    + + + + + +
    logo + + + + + + + + + + + + + + + +
    spacer
    Levidac Group Corporation
    Flat B on 20th floor of Block 1, The Arch No 1, Austin Road
    West Kowloon - HONG-KONG
    spacer
    rounded
    + diff --git a/email/signature-emails.zip b/email/signature-emails.zip new file mode 100644 index 0000000..04f7e09 Binary files /dev/null and b/email/signature-emails.zip differ diff --git a/email/signature-illya-cadivel.html b/email/signature-illya-cadivel.html new file mode 100644 index 0000000..4d06280 --- /dev/null +++ b/email/signature-illya-cadivel.html @@ -0,0 +1,36 @@ + + + + + + + + + + +
    Illya CADIVEL - Chairman & Founder
    Mobile +33 (0)6 72 93 39 63 | + Mobile +852 66 82 00 93 | + cadivel@levidac.fr
    + + + + + +
    logo + + + + + + + + + + + + + + + +
    spacer
    Levidac Group Corporation
    Flat B on 20th floor of Block 1, The Arch No 1, Austin Road
    West Kowloon - HONG-KONG
    spacer
    rounded
    + diff --git a/email/signature-isabelle-duc.html b/email/signature-isabelle-duc.html new file mode 100644 index 0000000..654aea6 --- /dev/null +++ b/email/signature-isabelle-duc.html @@ -0,0 +1,36 @@ + + + + + + + + + + +
    Isabelle DUC - Vice President & Founder
    Phone +262 (0) 262 202 402 | + Mobile +262 (0) 692 038 038 | + Fax +262 (0) 262 202 627
    + + + + + +
    logo + + + + + + + + + + + + + + + +
    spacer
    Levidac Reunion Island
    9, avenue Roland Garros
    97438 Sainte Marie - Reunion Island - FRANCE
    spacer
    rounded
    + diff --git a/email/signature-julien-clement.html b/email/signature-julien-clement.html new file mode 100644 index 0000000..308ff00 --- /dev/null +++ b/email/signature-julien-clement.html @@ -0,0 +1,35 @@ + + + + + + + + + + +
    Julien CLEMENT - Project Leader
    Mobile +86 156 0177 8833 | + clement@levidac.fr
    + + + + + +
    logo + + + + + + + + + + + + + + + +
    spacer
    Levidac Shanghai Office
    Lane No. 12, 88 Shaoxing Rd
    200 020 Shanghai - CHINA
    spacer
    rounded
    + diff --git a/email/signature-keira-chen.html b/email/signature-keira-chen.html new file mode 100644 index 0000000..92aad78 --- /dev/null +++ b/email/signature-keira-chen.html @@ -0,0 +1,35 @@ + + + + + + + + + + +
    Keira CHEN - Sales Leader Asia
    Mobile +86 156 1870 7347 | + chen@levidac.fr
    + + + + + +
    logo + + + + + + + + + + + + + + + +
    spacer
    Levidac Shanghai Office
    Lane No. 12, 88 Shaoxing Rd
    200 020 Shanghai - CHINA
    spacer
    rounded
    + diff --git a/fonts/flexo-medium-webfont-webfont.eot b/fonts/flexo-medium-webfont-webfont.eot new file mode 100644 index 0000000..23ae695 Binary files /dev/null and b/fonts/flexo-medium-webfont-webfont.eot differ diff --git a/fonts/flexo-medium-webfont-webfont.svg b/fonts/flexo-medium-webfont-webfont.svg new file mode 100644 index 0000000..84efd50 --- /dev/null +++ b/fonts/flexo-medium-webfont-webfont.svg @@ -0,0 +1,4137 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/flexo-medium-webfont-webfont.ttf b/fonts/flexo-medium-webfont-webfont.ttf new file mode 100644 index 0000000..90a2772 Binary files /dev/null and b/fonts/flexo-medium-webfont-webfont.ttf differ diff --git a/fonts/flexo-medium-webfont-webfont.woff b/fonts/flexo-medium-webfont-webfont.woff new file mode 100644 index 0000000..91dee24 Binary files /dev/null and b/fonts/flexo-medium-webfont-webfont.woff differ diff --git a/fonts/ubuntu-b-webfont.eot b/fonts/ubuntu-b-webfont.eot new file mode 100644 index 0000000..e861f4e Binary files /dev/null and b/fonts/ubuntu-b-webfont.eot differ diff --git a/fonts/ubuntu-b-webfont.svg b/fonts/ubuntu-b-webfont.svg new file mode 100644 index 0000000..6493b3c --- /dev/null +++ b/fonts/ubuntu-b-webfont.svg @@ -0,0 +1,1915 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/ubuntu-b-webfont.ttf b/fonts/ubuntu-b-webfont.ttf new file mode 100644 index 0000000..c4b66fb Binary files /dev/null and b/fonts/ubuntu-b-webfont.ttf differ diff --git a/fonts/ubuntu-b-webfont.woff b/fonts/ubuntu-b-webfont.woff new file mode 100644 index 0000000..2219970 Binary files /dev/null and b/fonts/ubuntu-b-webfont.woff differ diff --git a/fonts/ubuntu-l-webfont.eot b/fonts/ubuntu-l-webfont.eot new file mode 100644 index 0000000..f5b83ee Binary files /dev/null and b/fonts/ubuntu-l-webfont.eot differ diff --git a/fonts/ubuntu-l-webfont.svg b/fonts/ubuntu-l-webfont.svg new file mode 100644 index 0000000..c708b33 --- /dev/null +++ b/fonts/ubuntu-l-webfont.svg @@ -0,0 +1,1207 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/ubuntu-l-webfont.ttf b/fonts/ubuntu-l-webfont.ttf new file mode 100644 index 0000000..48299ac Binary files /dev/null and b/fonts/ubuntu-l-webfont.ttf differ diff --git a/fonts/ubuntu-l-webfont.woff b/fonts/ubuntu-l-webfont.woff new file mode 100644 index 0000000..85aba34 Binary files /dev/null and b/fonts/ubuntu-l-webfont.woff differ diff --git a/fonts/ubuntu-r-webfont.eot b/fonts/ubuntu-r-webfont.eot new file mode 100644 index 0000000..c177df8 Binary files /dev/null and b/fonts/ubuntu-r-webfont.eot differ diff --git a/fonts/ubuntu-r-webfont.svg b/fonts/ubuntu-r-webfont.svg new file mode 100644 index 0000000..1a495db --- /dev/null +++ b/fonts/ubuntu-r-webfont.svg @@ -0,0 +1,1306 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/fonts/ubuntu-r-webfont.ttf b/fonts/ubuntu-r-webfont.ttf new file mode 100644 index 0000000..eedb9d1 Binary files /dev/null and b/fonts/ubuntu-r-webfont.ttf differ diff --git a/fonts/ubuntu-r-webfont.woff b/fonts/ubuntu-r-webfont.woff new file mode 100644 index 0000000..bffc5b8 Binary files /dev/null and b/fonts/ubuntu-r-webfont.woff differ diff --git a/images/BGS009.jpg b/images/BGS009.jpg new file mode 100644 index 0000000..d0d16bd Binary files /dev/null and b/images/BGS009.jpg differ diff --git a/images/bg-address.png b/images/bg-address.png new file mode 100644 index 0000000..460ad7c Binary files /dev/null and b/images/bg-address.png differ diff --git a/images/bg-block.png b/images/bg-block.png new file mode 100644 index 0000000..5052071 Binary files /dev/null and b/images/bg-block.png differ diff --git a/images/bg-close.png b/images/bg-close.png new file mode 100644 index 0000000..9323794 Binary files /dev/null and b/images/bg-close.png differ diff --git a/images/bg-email.png b/images/bg-email.png new file mode 100644 index 0000000..5c4a333 Binary files /dev/null and b/images/bg-email.png differ diff --git a/images/bg-intro.jpg b/images/bg-intro.jpg new file mode 100644 index 0000000..20ca111 Binary files /dev/null and b/images/bg-intro.jpg differ diff --git a/images/bg-map.png b/images/bg-map.png new file mode 100644 index 0000000..08de70b Binary files /dev/null and b/images/bg-map.png differ diff --git a/images/bg-partners.png b/images/bg-partners.png new file mode 100644 index 0000000..7752076 Binary files /dev/null and b/images/bg-partners.png differ diff --git a/images/bg-phone.png b/images/bg-phone.png new file mode 100644 index 0000000..beaa892 Binary files /dev/null and b/images/bg-phone.png differ diff --git a/images/bg-section.png b/images/bg-section.png new file mode 100644 index 0000000..bbaa1ed Binary files /dev/null and b/images/bg-section.png differ diff --git a/images/bg-shadow.png b/images/bg-shadow.png new file mode 100644 index 0000000..7f52c61 Binary files /dev/null and b/images/bg-shadow.png differ diff --git a/images/eco-responsible-pack.jpg b/images/eco-responsible-pack.jpg new file mode 100644 index 0000000..bd0b1a8 Binary files /dev/null and b/images/eco-responsible-pack.jpg differ diff --git a/images/email-footer.jpg b/images/email-footer.jpg new file mode 100644 index 0000000..4afcf45 Binary files /dev/null and b/images/email-footer.jpg differ diff --git a/images/email-header.jpg b/images/email-header.jpg new file mode 100644 index 0000000..9e4b77a Binary files /dev/null and b/images/email-header.jpg differ diff --git a/images/eolienne.png b/images/eolienne.png new file mode 100644 index 0000000..a96d575 Binary files /dev/null and b/images/eolienne.png differ diff --git a/images/fancybox/blank.gif b/images/fancybox/blank.gif new file mode 100644 index 0000000..35d42e8 Binary files /dev/null and b/images/fancybox/blank.gif differ diff --git a/images/fancybox/fancy_close.png b/images/fancybox/fancy_close.png new file mode 100644 index 0000000..0703530 Binary files /dev/null and b/images/fancybox/fancy_close.png differ diff --git a/images/fancybox/fancy_loading.png b/images/fancybox/fancy_loading.png new file mode 100644 index 0000000..2503017 Binary files /dev/null and b/images/fancybox/fancy_loading.png differ diff --git a/images/fancybox/fancy_nav_left.png b/images/fancybox/fancy_nav_left.png new file mode 100644 index 0000000..ebaa6a4 Binary files /dev/null and b/images/fancybox/fancy_nav_left.png differ diff --git a/images/fancybox/fancy_nav_right.png b/images/fancybox/fancy_nav_right.png new file mode 100644 index 0000000..873294e Binary files /dev/null and b/images/fancybox/fancy_nav_right.png differ diff --git a/images/fancybox/fancy_shadow_e.png b/images/fancybox/fancy_shadow_e.png new file mode 100644 index 0000000..2eda089 Binary files /dev/null and b/images/fancybox/fancy_shadow_e.png differ diff --git a/images/fancybox/fancy_shadow_n.png b/images/fancybox/fancy_shadow_n.png new file mode 100644 index 0000000..69aa10e Binary files /dev/null and b/images/fancybox/fancy_shadow_n.png differ diff --git a/images/fancybox/fancy_shadow_ne.png b/images/fancybox/fancy_shadow_ne.png new file mode 100644 index 0000000..79f6980 Binary files /dev/null and b/images/fancybox/fancy_shadow_ne.png differ diff --git a/images/fancybox/fancy_shadow_nw.png b/images/fancybox/fancy_shadow_nw.png new file mode 100644 index 0000000..7182cd9 Binary files /dev/null and b/images/fancybox/fancy_shadow_nw.png differ diff --git a/images/fancybox/fancy_shadow_s.png b/images/fancybox/fancy_shadow_s.png new file mode 100644 index 0000000..d8858bf Binary files /dev/null and b/images/fancybox/fancy_shadow_s.png differ diff --git a/images/fancybox/fancy_shadow_se.png b/images/fancybox/fancy_shadow_se.png new file mode 100644 index 0000000..541e3ff Binary files /dev/null and b/images/fancybox/fancy_shadow_se.png differ diff --git a/images/fancybox/fancy_shadow_sw.png b/images/fancybox/fancy_shadow_sw.png new file mode 100644 index 0000000..b451689 Binary files /dev/null and b/images/fancybox/fancy_shadow_sw.png differ diff --git a/images/fancybox/fancy_shadow_w.png b/images/fancybox/fancy_shadow_w.png new file mode 100644 index 0000000..8a4e4a8 Binary files /dev/null and b/images/fancybox/fancy_shadow_w.png differ diff --git a/images/fancybox/fancy_title_left.png b/images/fancybox/fancy_title_left.png new file mode 100644 index 0000000..6049223 Binary files /dev/null and b/images/fancybox/fancy_title_left.png differ diff --git a/images/fancybox/fancy_title_main.png b/images/fancybox/fancy_title_main.png new file mode 100644 index 0000000..8044271 Binary files /dev/null and b/images/fancybox/fancy_title_main.png differ diff --git a/images/fancybox/fancy_title_over.png b/images/fancybox/fancy_title_over.png new file mode 100644 index 0000000..d9f458f Binary files /dev/null and b/images/fancybox/fancy_title_over.png differ diff --git a/images/fancybox/fancy_title_right.png b/images/fancybox/fancy_title_right.png new file mode 100644 index 0000000..e36d9db Binary files /dev/null and b/images/fancybox/fancy_title_right.png differ diff --git a/images/fancybox/fancybox-x.png b/images/fancybox/fancybox-x.png new file mode 100644 index 0000000..6c8d9e0 Binary files /dev/null and b/images/fancybox/fancybox-x.png differ diff --git a/images/fancybox/fancybox-y.png b/images/fancybox/fancybox-y.png new file mode 100644 index 0000000..2f7fae1 Binary files /dev/null and b/images/fancybox/fancybox-y.png differ diff --git a/images/fancybox/fancybox.png b/images/fancybox/fancybox.png new file mode 100644 index 0000000..ee00d88 Binary files /dev/null and b/images/fancybox/fancybox.png differ diff --git a/images/img1.jpg b/images/img1.jpg new file mode 100644 index 0000000..eb05790 Binary files /dev/null and b/images/img1.jpg differ diff --git a/images/img2.jpg b/images/img2.jpg new file mode 100644 index 0000000..3891bde Binary files /dev/null and b/images/img2.jpg differ diff --git a/images/img3.png b/images/img3.png new file mode 100644 index 0000000..2246386 Binary files /dev/null and b/images/img3.png differ diff --git a/images/img4.png b/images/img4.png new file mode 100644 index 0000000..552b93d Binary files /dev/null and b/images/img4.png differ diff --git a/images/img5.png b/images/img5.png new file mode 100644 index 0000000..44cdd6b Binary files /dev/null and b/images/img5.png differ diff --git a/images/img6.jpg b/images/img6.jpg new file mode 100644 index 0000000..d16d36a Binary files /dev/null and b/images/img6.jpg differ diff --git a/images/logo-cubedesigners-full.png b/images/logo-cubedesigners-full.png new file mode 100644 index 0000000..61bdffa Binary files /dev/null and b/images/logo-cubedesigners-full.png differ diff --git a/images/logo-levidac-compact.jpg b/images/logo-levidac-compact.jpg new file mode 100644 index 0000000..2ef32e4 Binary files /dev/null and b/images/logo-levidac-compact.jpg differ diff --git a/images/logo.png b/images/logo.png new file mode 100644 index 0000000..fffb431 Binary files /dev/null and b/images/logo.png differ diff --git a/images/partners-logo.jpg b/images/partners-logo.jpg new file mode 100644 index 0000000..bd3d071 Binary files /dev/null and b/images/partners-logo.jpg differ diff --git a/images/separator.png b/images/separator.png new file mode 100644 index 0000000..42cd1e2 Binary files /dev/null and b/images/separator.png differ diff --git a/images/turborange.jpg b/images/turborange.jpg new file mode 100644 index 0000000..c799924 Binary files /dev/null and b/images/turborange.jpg differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..cfb0e17 --- /dev/null +++ b/index.html @@ -0,0 +1,473 @@ + + + + + + + Levidac + + + + + + + + +
    + +
    + +
    +
    +

    The positive Energy

    +

    Levidac specializes in the research, design, development and manufacturing of clean vehicles and turnkey systems for clean energy.

    +
    +
    +
    +
    + image description +
    +
    +

    About LEVIDAC

    +

    Levidac is a company committed to preserving the environment.

    +

    With its expertise in energy independence, it provides answers to problems related to the exponential growth in new energy needs, the rarefaction of fossil resources and the urgent need to clean-up pollution.

    +

    Levidac specializes in the research, design, development and manufacturing of clean vehicles and turnkey systems for the production, storage and smart grid redistribution of clean energy, particularly in areas with tropical climate conditions.

    + » know more +
    +
    +
    +
    +
    + image description +
    +
    +

    Eco-responsible pack

    +

    Levidac is the only company in the market to propose communities and individuals a turnkey eco-responsible pack

    +

    Permitting the completely independent production of green electricity, consistent with local energy environments, through to its end use in a next generation building or electric vehicle, equipped with a micro-turbine ‘drive by wire’ system without mechanical transmission.

    + » know more +
    +
    +
    +
    +
    +
    + image description +
    +
    +

    Turbo Range Extender

    +

    Levidac, pioneer in micro-turbines for high-yield electric generators.

    +

    Levidac, in partnership with Lux PowerTrain, manufactures for the automobile and housing sectorsa revolutionary micro-turbine with unequalled performance derived from aeronautics: the Turbo Range Extender.

    +

    Able to operate with 9 types of fuel, the Turbo Range Extender functions as a high-yield electric generator.

    +

    Levidac is currently developing a first application of the Turbo Range Extender under a joint-venture with the leading Chinese automobile manufacturer, Dongfeng. This joint-venture will build a revolutionary new model of bus with unrivalled autonomy of 1,200 km.

    + » know more +
    +
    +
    +
    +
    +
    + image description +
    +
    +

    Bus Green Style

    +

    Levidac crosses the symbolic barrier of 1,000 km of autonomy with its hybrid bus BGS 009

    +

    Levidac is developing for Dongfeng, a leading Chinese automobile builder, a next generation hybridbus able to cover up to 1,200 km in complete autonomy.

    +

    This feat has been made possible thanks to an engine based on a revolutionary micro-turbine, derived from aeronautics technologies: the Turbo Range Extender. Able to operate using 9 types of fuel, the Turbo Range Extender functions like a high-yield electric generator (+ 40%).

    + » know more +
    +
    +
    +
    +
    +
    + image description +
    +
    +

    Aliseo

    +

    Levidac revolutionizes urban and extra-urban public transport with its ultra-light Aliseo vehicle.

    +

    Driverless, multimodal and completely clean, Aliseo provides an answer to all major problems of urban transportation with an investment cost 6 times lower than conventional tramway systems.

    + » know more +
    +
    +
    +
    +
    +
    + image description +
    +
    +

    Winturb

    +

    Levidac breathes new life into renewables

    +

    In partnership with Windrex, Levidac is proposing its vertical wind turbine, an innovative solution in the realm of renewable energy. Offering high yield levels, this quiet and visually discreet solution is especially well suited to urban zones.

    + » know more +
    +
    +
    + + + +
    + + + + + + + + + + + + \ No newline at end of file diff --git a/index.old b/index.old new file mode 100644 index 0000000..5030365 --- /dev/null +++ b/index.old @@ -0,0 +1,473 @@ + + + + + + + Levidac + + + + + + + + +
    + +
    + +
    +
    +

    The positive Energy

    +

    Levidac specializes in the research, design, development and manufacturing of clean vehicles and turnkey systems for clean energy.

    +
    +
    +
    +
    + image description +
    +
    +

    About LEVIDAC

    +

    Levidac is a company committed to preserving the environment.

    +

    With its expertise in energy independence, it provides answers to problems related to the exponential growth in new energy needs, the rarefaction of fossil resources and the urgent need to clean-up pollution.

    +

    Levidac specializes in the research, design, development and manufacturing of clean vehicles and turnkey systems for the production, storage and smart grid redistribution of clean energy, particularly in areas with tropical climate conditions.

    + » know more +
    +
    +
    +
    +
    + image description +
    +
    +

    Eco-responsible pack

    +

    Levidac is the only company in the market to propose communities and individuals a turnkey eco-responsible pack

    +

    Permitting the completely independent production of green electricity, consistent with local energy environments, through to its end use in a next generation building or electric vehicle, equipped with a micro-turbine ‘drive by wire’ system without mechanical transmission.

    + » know more +
    +
    +
    +
    +
    +
    + image description +
    +
    +

    Turbo Range Extender

    +

    Levidac, pioneer in micro-turbines for high-yield electric generators.

    +

    Levidac, in partnership with Lux PowerTrain, manufactures for the automobile and housing sectorsa revolutionary micro-turbine with unequalled performance derived from aeronautics: the Turbo Range Extender.

    +

    Able to operate with 9 types of fuel, the Turbo Range Extender functions as a high-yield electric generator.

    +

    Levidac is currently developing a first application of the Turbo Range Extender under a joint-venture with the leading Chinese automobile manufacturer, Dongfeng. This joint-venture will build a revolutionary new model of bus with unrivalled autonomy of 1,200 km.

    + » know more +
    +
    +
    +
    +
    +
    + image description +
    +
    +

    Bus Green Style

    +

    Levidac crosses the symbolic barrier of 1,000 km of autonomy with its hybrid bus BGS 009

    +

    Levidac is developing for Dongfeng, a leading Chinese automobile builder, a next generation hybridbus able to cover up to 1,200 km in complete autonomy.

    +

    This feat has been made possible thanks to an engine based on a revolutionary micro-turbine, derived from aeronautics technologies: the Turbo Range Extender. Able to operate using 9 types of fuel, the Turbo Range Extender functions like a high-yield electric generator (+ 40%).

    + » know more +
    +
    +
    +
    +
    +
    + image description +
    +
    +

    Aliseo

    +

    Levidac revolutionizes urban and extra-urban public transport with its ultra-light Aliseo vehicle.

    +

    Driverless, multimodal and completely clean, Aliseo provides an answer to all major problems of urban transportation with an investment cost 6 times lower than conventional tramway systems.

    + » know more +
    +
    +
    +
    +
    +
    + image description +
    +
    +

    Winturb

    +

    Levidac breathes new life into renewables

    +

    In partnership with Windrex, Levidac is proposing its vertical wind turbine, an innovative solution in the realm of renewable energy. Offering high yield levels, this quiet and visually discreet solution is especially well suited to urban zones.

    + » know more +
    +
    +
    + + + +
    + + + + + + + + + + + + \ No newline at end of file diff --git a/js/jquery-1.8.2.min.js b/js/jquery-1.8.2.min.js new file mode 100644 index 0000000..bc3fbc8 --- /dev/null +++ b/js/jquery-1.8.2.min.js @@ -0,0 +1,2 @@ +/*! jQuery v1.8.2 jquery.com | jquery.org/license */ +(function(a,b){function G(a){var b=F[a]={};return p.each(a.split(s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I,"-$1").toLowerCase();d=a.getAttribute(e);if(typeof d=="string"){try{d=d==="true"?!0:d==="false"?!1:d==="null"?null:+d+""===d?+d:H.test(d)?p.parseJSON(d):d}catch(f){}p.data(a,c,d)}else d=b}return d}function K(a){var b;for(b in a){if(b==="data"&&p.isEmptyObject(a[b]))continue;if(b!=="toJSON")return!1}return!0}function ba(){return!1}function bb(){return!0}function bh(a){return!a||!a.parentNode||a.parentNode.nodeType===11}function bi(a,b){do a=a[b];while(a&&a.nodeType!==1);return a}function bj(a,b,c){b=b||0;if(p.isFunction(b))return p.grep(a,function(a,d){var e=!!b.call(a,d,a);return e===c});if(b.nodeType)return p.grep(a,function(a,d){return a===b===c});if(typeof b=="string"){var d=p.grep(a,function(a){return a.nodeType===1});if(be.test(b))return p.filter(b,d,!c);b=p.filter(b,d)}return p.grep(a,function(a,d){return p.inArray(a,b)>=0===c})}function bk(a){var b=bl.split("|"),c=a.createDocumentFragment();if(c.createElement)while(b.length)c.createElement(b.pop());return c}function bC(a,b){return a.getElementsByTagName(b)[0]||a.appendChild(a.ownerDocument.createElement(b))}function bD(a,b){if(b.nodeType!==1||!p.hasData(a))return;var c,d,e,f=p._data(a),g=p._data(b,f),h=f.events;if(h){delete g.handle,g.events={};for(c in h)for(d=0,e=h[c].length;d").appendTo(e.body),c=b.css("display");b.remove();if(c==="none"||c===""){bI=e.body.appendChild(bI||p.extend(e.createElement("iframe"),{frameBorder:0,width:0,height:0}));if(!bJ||!bI.createElement)bJ=(bI.contentWindow||bI.contentDocument).document,bJ.write(""),bJ.close();b=bJ.body.appendChild(bJ.createElement(a)),c=bH(b,"display"),e.body.removeChild(bI)}return bS[a]=c,c}function ci(a,b,c,d){var e;if(p.isArray(b))p.each(b,function(b,e){c||ce.test(a)?d(a,e):ci(a+"["+(typeof e=="object"?b:"")+"]",e,c,d)});else if(!c&&p.type(b)==="object")for(e in b)ci(a+"["+e+"]",b[e],c,d);else d(a,b)}function cz(a){return function(b,c){typeof b!="string"&&(c=b,b="*");var d,e,f,g=b.toLowerCase().split(s),h=0,i=g.length;if(p.isFunction(c))for(;h)[^>]*$|#([\w\-]*)$)/,v=/^<(\w+)\s*\/?>(?:<\/\1>|)$/,w=/^[\],:{}\s]*$/,x=/(?:^|:|,)(?:\s*\[)+/g,y=/\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,z=/"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g,A=/^-ms-/,B=/-([\da-z])/gi,C=function(a,b){return(b+"").toUpperCase()},D=function(){e.addEventListener?(e.removeEventListener("DOMContentLoaded",D,!1),p.ready()):e.readyState==="complete"&&(e.detachEvent("onreadystatechange",D),p.ready())},E={};p.fn=p.prototype={constructor:p,init:function(a,c,d){var f,g,h,i;if(!a)return this;if(a.nodeType)return this.context=this[0]=a,this.length=1,this;if(typeof a=="string"){a.charAt(0)==="<"&&a.charAt(a.length-1)===">"&&a.length>=3?f=[null,a,null]:f=u.exec(a);if(f&&(f[1]||!c)){if(f[1])return c=c instanceof p?c[0]:c,i=c&&c.nodeType?c.ownerDocument||c:e,a=p.parseHTML(f[1],i,!0),v.test(f[1])&&p.isPlainObject(c)&&this.attr.call(a,c,!0),p.merge(this,a);g=e.getElementById(f[2]);if(g&&g.parentNode){if(g.id!==f[2])return d.find(a);this.length=1,this[0]=g}return this.context=e,this.selector=a,this}return!c||c.jquery?(c||d).find(a):this.constructor(c).find(a)}return p.isFunction(a)?d.ready(a):(a.selector!==b&&(this.selector=a.selector,this.context=a.context),p.makeArray(a,this))},selector:"",jquery:"1.8.2",length:0,size:function(){return this.length},toArray:function(){return k.call(this)},get:function(a){return a==null?this.toArray():a<0?this[this.length+a]:this[a]},pushStack:function(a,b,c){var d=p.merge(this.constructor(),a);return d.prevObject=this,d.context=this.context,b==="find"?d.selector=this.selector+(this.selector?" ":"")+c:b&&(d.selector=this.selector+"."+b+"("+c+")"),d},each:function(a,b){return p.each(this,a,b)},ready:function(a){return p.ready.promise().done(a),this},eq:function(a){return a=+a,a===-1?this.slice(a):this.slice(a,a+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(k.apply(this,arguments),"slice",k.call(arguments).join(","))},map:function(a){return this.pushStack(p.map(this,function(b,c){return a.call(b,c,b)}))},end:function(){return this.prevObject||this.constructor(null)},push:j,sort:[].sort,splice:[].splice},p.fn.init.prototype=p.fn,p.extend=p.fn.extend=function(){var a,c,d,e,f,g,h=arguments[0]||{},i=1,j=arguments.length,k=!1;typeof h=="boolean"&&(k=h,h=arguments[1]||{},i=2),typeof h!="object"&&!p.isFunction(h)&&(h={}),j===i&&(h=this,--i);for(;i0)return;d.resolveWith(e,[p]),p.fn.trigger&&p(e).trigger("ready").off("ready")},isFunction:function(a){return p.type(a)==="function"},isArray:Array.isArray||function(a){return p.type(a)==="array"},isWindow:function(a){return a!=null&&a==a.window},isNumeric:function(a){return!isNaN(parseFloat(a))&&isFinite(a)},type:function(a){return a==null?String(a):E[m.call(a)]||"object"},isPlainObject:function(a){if(!a||p.type(a)!=="object"||a.nodeType||p.isWindow(a))return!1;try{if(a.constructor&&!n.call(a,"constructor")&&!n.call(a.constructor.prototype,"isPrototypeOf"))return!1}catch(c){return!1}var d;for(d in a);return d===b||n.call(a,d)},isEmptyObject:function(a){var b;for(b in a)return!1;return!0},error:function(a){throw new Error(a)},parseHTML:function(a,b,c){var d;return!a||typeof a!="string"?null:(typeof b=="boolean"&&(c=b,b=0),b=b||e,(d=v.exec(a))?[b.createElement(d[1])]:(d=p.buildFragment([a],b,c?null:[]),p.merge([],(d.cacheable?p.clone(d.fragment):d.fragment).childNodes)))},parseJSON:function(b){if(!b||typeof b!="string")return null;b=p.trim(b);if(a.JSON&&a.JSON.parse)return a.JSON.parse(b);if(w.test(b.replace(y,"@").replace(z,"]").replace(x,"")))return(new Function("return "+b))();p.error("Invalid JSON: "+b)},parseXML:function(c){var d,e;if(!c||typeof c!="string")return null;try{a.DOMParser?(e=new DOMParser,d=e.parseFromString(c,"text/xml")):(d=new ActiveXObject("Microsoft.XMLDOM"),d.async="false",d.loadXML(c))}catch(f){d=b}return(!d||!d.documentElement||d.getElementsByTagName("parsererror").length)&&p.error("Invalid XML: "+c),d},noop:function(){},globalEval:function(b){b&&r.test(b)&&(a.execScript||function(b){a.eval.call(a,b)})(b)},camelCase:function(a){return a.replace(A,"ms-").replace(B,C)},nodeName:function(a,b){return a.nodeName&&a.nodeName.toLowerCase()===b.toLowerCase()},each:function(a,c,d){var e,f=0,g=a.length,h=g===b||p.isFunction(a);if(d){if(h){for(e in a)if(c.apply(a[e],d)===!1)break}else for(;f0&&a[0]&&a[i-1]||i===0||p.isArray(a));if(j)for(;h-1)i.splice(c,1),e&&(c<=g&&g--,c<=h&&h--)}),this},has:function(a){return p.inArray(a,i)>-1},empty:function(){return i=[],this},disable:function(){return i=j=c=b,this},disabled:function(){return!i},lock:function(){return j=b,c||l.disable(),this},locked:function(){return!j},fireWith:function(a,b){return b=b||[],b=[a,b.slice?b.slice():b],i&&(!d||j)&&(e?j.push(b):k(b)),this},fire:function(){return l.fireWith(this,arguments),this},fired:function(){return!!d}};return l},p.extend({Deferred:function(a){var b=[["resolve","done",p.Callbacks("once memory"),"resolved"],["reject","fail",p.Callbacks("once memory"),"rejected"],["notify","progress",p.Callbacks("memory")]],c="pending",d={state:function(){return c},always:function(){return e.done(arguments).fail(arguments),this},then:function(){var a=arguments;return p.Deferred(function(c){p.each(b,function(b,d){var f=d[0],g=a[b];e[d[1]](p.isFunction(g)?function(){var a=g.apply(this,arguments);a&&p.isFunction(a.promise)?a.promise().done(c.resolve).fail(c.reject).progress(c.notify):c[f+"With"](this===e?c:this,[a])}:c[f])}),a=null}).promise()},promise:function(a){return a!=null?p.extend(a,d):d}},e={};return d.pipe=d.then,p.each(b,function(a,f){var g=f[2],h=f[3];d[f[1]]=g.add,h&&g.add(function(){c=h},b[a^1][2].disable,b[2][2].lock),e[f[0]]=g.fire,e[f[0]+"With"]=g.fireWith}),d.promise(e),a&&a.call(e,e),e},when:function(a){var b=0,c=k.call(arguments),d=c.length,e=d!==1||a&&p.isFunction(a.promise)?d:0,f=e===1?a:p.Deferred(),g=function(a,b,c){return function(d){b[a]=this,c[a]=arguments.length>1?k.call(arguments):d,c===h?f.notifyWith(b,c):--e||f.resolveWith(b,c)}},h,i,j;if(d>1){h=new Array(d),i=new Array(d),j=new Array(d);for(;b
    a",c=n.getElementsByTagName("*"),d=n.getElementsByTagName("a")[0],d.style.cssText="top:1px;float:left;opacity:.5";if(!c||!c.length)return{};f=e.createElement("select"),g=f.appendChild(e.createElement("option")),h=n.getElementsByTagName("input")[0],b={leadingWhitespace:n.firstChild.nodeType===3,tbody:!n.getElementsByTagName("tbody").length,htmlSerialize:!!n.getElementsByTagName("link").length,style:/top/.test(d.getAttribute("style")),hrefNormalized:d.getAttribute("href")==="/a",opacity:/^0.5/.test(d.style.opacity),cssFloat:!!d.style.cssFloat,checkOn:h.value==="on",optSelected:g.selected,getSetAttribute:n.className!=="t",enctype:!!e.createElement("form").enctype,html5Clone:e.createElement("nav").cloneNode(!0).outerHTML!=="<:nav>",boxModel:e.compatMode==="CSS1Compat",submitBubbles:!0,changeBubbles:!0,focusinBubbles:!1,deleteExpando:!0,noCloneEvent:!0,inlineBlockNeedsLayout:!1,shrinkWrapBlocks:!1,reliableMarginRight:!0,boxSizingReliable:!0,pixelPosition:!1},h.checked=!0,b.noCloneChecked=h.cloneNode(!0).checked,f.disabled=!0,b.optDisabled=!g.disabled;try{delete n.test}catch(o){b.deleteExpando=!1}!n.addEventListener&&n.attachEvent&&n.fireEvent&&(n.attachEvent("onclick",m=function(){b.noCloneEvent=!1}),n.cloneNode(!0).fireEvent("onclick"),n.detachEvent("onclick",m)),h=e.createElement("input"),h.value="t",h.setAttribute("type","radio"),b.radioValue=h.value==="t",h.setAttribute("checked","checked"),h.setAttribute("name","t"),n.appendChild(h),i=e.createDocumentFragment(),i.appendChild(n.lastChild),b.checkClone=i.cloneNode(!0).cloneNode(!0).lastChild.checked,b.appendChecked=h.checked,i.removeChild(h),i.appendChild(n);if(n.attachEvent)for(k in{submit:!0,change:!0,focusin:!0})j="on"+k,l=j in n,l||(n.setAttribute(j,"return;"),l=typeof n[j]=="function"),b[k+"Bubbles"]=l;return p(function(){var c,d,f,g,h="padding:0;margin:0;border:0;display:block;overflow:hidden;",i=e.getElementsByTagName("body")[0];if(!i)return;c=e.createElement("div"),c.style.cssText="visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px",i.insertBefore(c,i.firstChild),d=e.createElement("div"),c.appendChild(d),d.innerHTML="
    t
    ",f=d.getElementsByTagName("td"),f[0].style.cssText="padding:0;margin:0;border:0;display:none",l=f[0].offsetHeight===0,f[0].style.display="",f[1].style.display="none",b.reliableHiddenOffsets=l&&f[0].offsetHeight===0,d.innerHTML="",d.style.cssText="box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;",b.boxSizing=d.offsetWidth===4,b.doesNotIncludeMarginInBodyOffset=i.offsetTop!==1,a.getComputedStyle&&(b.pixelPosition=(a.getComputedStyle(d,null)||{}).top!=="1%",b.boxSizingReliable=(a.getComputedStyle(d,null)||{width:"4px"}).width==="4px",g=e.createElement("div"),g.style.cssText=d.style.cssText=h,g.style.marginRight=g.style.width="0",d.style.width="1px",d.appendChild(g),b.reliableMarginRight=!parseFloat((a.getComputedStyle(g,null)||{}).marginRight)),typeof d.style.zoom!="undefined"&&(d.innerHTML="",d.style.cssText=h+"width:1px;padding:1px;display:inline;zoom:1",b.inlineBlockNeedsLayout=d.offsetWidth===3,d.style.display="block",d.style.overflow="visible",d.innerHTML="
    ",d.firstChild.style.width="5px",b.shrinkWrapBlocks=d.offsetWidth!==3,c.style.zoom=1),i.removeChild(c),c=d=f=g=null}),i.removeChild(n),c=d=f=g=h=i=n=null,b}();var H=/(?:\{[\s\S]*\}|\[[\s\S]*\])$/,I=/([A-Z])/g;p.extend({cache:{},deletedIds:[],uuid:0,expando:"jQuery"+(p.fn.jquery+Math.random()).replace(/\D/g,""),noData:{embed:!0,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:!0},hasData:function(a){return a=a.nodeType?p.cache[a[p.expando]]:a[p.expando],!!a&&!K(a)},data:function(a,c,d,e){if(!p.acceptData(a))return;var f,g,h=p.expando,i=typeof c=="string",j=a.nodeType,k=j?p.cache:a,l=j?a[h]:a[h]&&h;if((!l||!k[l]||!e&&!k[l].data)&&i&&d===b)return;l||(j?a[h]=l=p.deletedIds.pop()||p.guid++:l=h),k[l]||(k[l]={},j||(k[l].toJSON=p.noop));if(typeof c=="object"||typeof c=="function")e?k[l]=p.extend(k[l],c):k[l].data=p.extend(k[l].data,c);return f=k[l],e||(f.data||(f.data={}),f=f.data),d!==b&&(f[p.camelCase(c)]=d),i?(g=f[c],g==null&&(g=f[p.camelCase(c)])):g=f,g},removeData:function(a,b,c){if(!p.acceptData(a))return;var d,e,f,g=a.nodeType,h=g?p.cache:a,i=g?a[p.expando]:p.expando;if(!h[i])return;if(b){d=c?h[i]:h[i].data;if(d){p.isArray(b)||(b in d?b=[b]:(b=p.camelCase(b),b in d?b=[b]:b=b.split(" ")));for(e=0,f=b.length;e1,null,!1))},removeData:function(a){return this.each(function(){p.removeData(this,a)})}}),p.extend({queue:function(a,b,c){var d;if(a)return b=(b||"fx")+"queue",d=p._data(a,b),c&&(!d||p.isArray(c)?d=p._data(a,b,p.makeArray(c)):d.push(c)),d||[]},dequeue:function(a,b){b=b||"fx";var c=p.queue(a,b),d=c.length,e=c.shift(),f=p._queueHooks(a,b),g=function(){p.dequeue(a,b)};e==="inprogress"&&(e=c.shift(),d--),e&&(b==="fx"&&c.unshift("inprogress"),delete f.stop,e.call(a,g,f)),!d&&f&&f.empty.fire()},_queueHooks:function(a,b){var c=b+"queueHooks";return p._data(a,c)||p._data(a,c,{empty:p.Callbacks("once memory").add(function(){p.removeData(a,b+"queue",!0),p.removeData(a,c,!0)})})}}),p.fn.extend({queue:function(a,c){var d=2;return typeof a!="string"&&(c=a,a="fx",d--),arguments.length1)},removeAttr:function(a){return this.each(function(){p.removeAttr(this,a)})},prop:function(a,b){return p.access(this,p.prop,a,b,arguments.length>1)},removeProp:function(a){return a=p.propFix[a]||a,this.each(function(){try{this[a]=b,delete this[a]}catch(c){}})},addClass:function(a){var b,c,d,e,f,g,h;if(p.isFunction(a))return this.each(function(b){p(this).addClass(a.call(this,b,this.className))});if(a&&typeof a=="string"){b=a.split(s);for(c=0,d=this.length;c=0)d=d.replace(" "+c[f]+" "," ");e.className=a?p.trim(d):""}}}return this},toggleClass:function(a,b){var c=typeof a,d=typeof b=="boolean";return p.isFunction(a)?this.each(function(c){p(this).toggleClass(a.call(this,c,this.className,b),b)}):this.each(function(){if(c==="string"){var e,f=0,g=p(this),h=b,i=a.split(s);while(e=i[f++])h=d?h:!g.hasClass(e),g[h?"addClass":"removeClass"](e)}else if(c==="undefined"||c==="boolean")this.className&&p._data(this,"__className__",this.className),this.className=this.className||a===!1?"":p._data(this,"__className__")||""})},hasClass:function(a){var b=" "+a+" ",c=0,d=this.length;for(;c=0)return!0;return!1},val:function(a){var c,d,e,f=this[0];if(!arguments.length){if(f)return c=p.valHooks[f.type]||p.valHooks[f.nodeName.toLowerCase()],c&&"get"in c&&(d=c.get(f,"value"))!==b?d:(d=f.value,typeof d=="string"?d.replace(P,""):d==null?"":d);return}return e=p.isFunction(a),this.each(function(d){var f,g=p(this);if(this.nodeType!==1)return;e?f=a.call(this,d,g.val()):f=a,f==null?f="":typeof f=="number"?f+="":p.isArray(f)&&(f=p.map(f,function(a){return a==null?"":a+""})),c=p.valHooks[this.type]||p.valHooks[this.nodeName.toLowerCase()];if(!c||!("set"in c)||c.set(this,f,"value")===b)this.value=f})}}),p.extend({valHooks:{option:{get:function(a){var b=a.attributes.value;return!b||b.specified?a.value:a.text}},select:{get:function(a){var b,c,d,e,f=a.selectedIndex,g=[],h=a.options,i=a.type==="select-one";if(f<0)return null;c=i?f:0,d=i?f+1:h.length;for(;c=0}),c.length||(a.selectedIndex=-1),c}}},attrFn:{},attr:function(a,c,d,e){var f,g,h,i=a.nodeType;if(!a||i===3||i===8||i===2)return;if(e&&p.isFunction(p.fn[c]))return p(a)[c](d);if(typeof a.getAttribute=="undefined")return p.prop(a,c,d);h=i!==1||!p.isXMLDoc(a),h&&(c=c.toLowerCase(),g=p.attrHooks[c]||(T.test(c)?M:L));if(d!==b){if(d===null){p.removeAttr(a,c);return}return g&&"set"in g&&h&&(f=g.set(a,d,c))!==b?f:(a.setAttribute(c,d+""),d)}return g&&"get"in g&&h&&(f=g.get(a,c))!==null?f:(f=a.getAttribute(c),f===null?b:f)},removeAttr:function(a,b){var c,d,e,f,g=0;if(b&&a.nodeType===1){d=b.split(s);for(;g=0}})});var V=/^(?:textarea|input|select)$/i,W=/^([^\.]*|)(?:\.(.+)|)$/,X=/(?:^|\s)hover(\.\S+|)\b/,Y=/^key/,Z=/^(?:mouse|contextmenu)|click/,$=/^(?:focusinfocus|focusoutblur)$/,_=function(a){return p.event.special.hover?a:a.replace(X,"mouseenter$1 mouseleave$1")};p.event={add:function(a,c,d,e,f){var g,h,i,j,k,l,m,n,o,q,r;if(a.nodeType===3||a.nodeType===8||!c||!d||!(g=p._data(a)))return;d.handler&&(o=d,d=o.handler,f=o.selector),d.guid||(d.guid=p.guid++),i=g.events,i||(g.events=i={}),h=g.handle,h||(g.handle=h=function(a){return typeof p!="undefined"&&(!a||p.event.triggered!==a.type)?p.event.dispatch.apply(h.elem,arguments):b},h.elem=a),c=p.trim(_(c)).split(" ");for(j=0;j=0&&(s=s.slice(0,-1),i=!0),s.indexOf(".")>=0&&(t=s.split("."),s=t.shift(),t.sort());if((!f||p.event.customEvent[s])&&!p.event.global[s])return;c=typeof c=="object"?c[p.expando]?c:new p.Event(s,c):new p.Event(s),c.type=s,c.isTrigger=!0,c.exclusive=i,c.namespace=t.join("."),c.namespace_re=c.namespace?new RegExp("(^|\\.)"+t.join("\\.(?:.*\\.|)")+"(\\.|$)"):null,m=s.indexOf(":")<0?"on"+s:"";if(!f){h=p.cache;for(j in h)h[j].events&&h[j].events[s]&&p.event.trigger(c,d,h[j].handle.elem,!0);return}c.result=b,c.target||(c.target=f),d=d!=null?p.makeArray(d):[],d.unshift(c),n=p.event.special[s]||{};if(n.trigger&&n.trigger.apply(f,d)===!1)return;q=[[f,n.bindType||s]];if(!g&&!n.noBubble&&!p.isWindow(f)){r=n.delegateType||s,k=$.test(r+s)?f:f.parentNode;for(l=f;k;k=k.parentNode)q.push([k,r]),l=k;l===(f.ownerDocument||e)&&q.push([l.defaultView||l.parentWindow||a,r])}for(j=0;j=0:p.find(m,this,null,[f]).length),h[m]&&j.push(l);j.length&&u.push({elem:f,matches:j})}o.length>q&&u.push({elem:this,matches:o.slice(q)});for(d=0;d0?this.on(b,null,a,c):this.trigger(b)},Y.test(b)&&(p.event.fixHooks[b]=p.event.keyHooks),Z.test(b)&&(p.event.fixHooks[b]=p.event.mouseHooks)}),function(a,b){function bc(a,b,c,d){c=c||[],b=b||r;var e,f,i,j,k=b.nodeType;if(!a||typeof a!="string")return c;if(k!==1&&k!==9)return[];i=g(b);if(!i&&!d)if(e=P.exec(a))if(j=e[1]){if(k===9){f=b.getElementById(j);if(!f||!f.parentNode)return c;if(f.id===j)return c.push(f),c}else if(b.ownerDocument&&(f=b.ownerDocument.getElementById(j))&&h(b,f)&&f.id===j)return c.push(f),c}else{if(e[2])return w.apply(c,x.call(b.getElementsByTagName(a),0)),c;if((j=e[3])&&_&&b.getElementsByClassName)return w.apply(c,x.call(b.getElementsByClassName(j),0)),c}return bp(a.replace(L,"$1"),b,c,d,i)}function bd(a){return function(b){var c=b.nodeName.toLowerCase();return c==="input"&&b.type===a}}function be(a){return function(b){var c=b.nodeName.toLowerCase();return(c==="input"||c==="button")&&b.type===a}}function bf(a){return z(function(b){return b=+b,z(function(c,d){var e,f=a([],c.length,b),g=f.length;while(g--)c[e=f[g]]&&(c[e]=!(d[e]=c[e]))})})}function bg(a,b,c){if(a===b)return c;var d=a.nextSibling;while(d){if(d===b)return-1;d=d.nextSibling}return 1}function bh(a,b){var c,d,f,g,h,i,j,k=C[o][a];if(k)return b?0:k.slice(0);h=a,i=[],j=e.preFilter;while(h){if(!c||(d=M.exec(h)))d&&(h=h.slice(d[0].length)),i.push(f=[]);c=!1;if(d=N.exec(h))f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=d[0].replace(L," ");for(g in e.filter)(d=W[g].exec(h))&&(!j[g]||(d=j[g](d,r,!0)))&&(f.push(c=new q(d.shift())),h=h.slice(c.length),c.type=g,c.matches=d);if(!c)break}return b?h.length:h?bc.error(a):C(a,i).slice(0)}function bi(a,b,d){var e=b.dir,f=d&&b.dir==="parentNode",g=u++;return b.first?function(b,c,d){while(b=b[e])if(f||b.nodeType===1)return a(b,c,d)}:function(b,d,h){if(!h){var i,j=t+" "+g+" ",k=j+c;while(b=b[e])if(f||b.nodeType===1){if((i=b[o])===k)return b.sizset;if(typeof i=="string"&&i.indexOf(j)===0){if(b.sizset)return b}else{b[o]=k;if(a(b,d,h))return b.sizset=!0,b;b.sizset=!1}}}else while(b=b[e])if(f||b.nodeType===1)if(a(b,d,h))return b}}function bj(a){return a.length>1?function(b,c,d){var e=a.length;while(e--)if(!a[e](b,c,d))return!1;return!0}:a[0]}function bk(a,b,c,d,e){var f,g=[],h=0,i=a.length,j=b!=null;for(;h-1},h,!0),m=[function(a,c,d){return!g&&(d||c!==l)||((b=c).nodeType?j(a,c,d):k(a,c,d))}];for(;i1&&bj(m),i>1&&a.slice(0,i-1).join("").replace(L,"$1"),c,i0,f=a.length>0,g=function(h,i,j,k,m){var n,o,p,q=[],s=0,u="0",x=h&&[],y=m!=null,z=l,A=h||f&&e.find.TAG("*",m&&i.parentNode||i),B=t+=z==null?1:Math.E;y&&(l=i!==r&&i,c=g.el);for(;(n=A[u])!=null;u++){if(f&&n){for(o=0;p=a[o];o++)if(p(n,i,j)){k.push(n);break}y&&(t=B,c=++g.el)}d&&((n=!p&&n)&&s--,h&&x.push(n))}s+=u;if(d&&u!==s){for(o=0;p=b[o];o++)p(x,q,i,j);if(h){if(s>0)while(u--)!x[u]&&!q[u]&&(q[u]=v.call(k));q=bk(q)}w.apply(k,q),y&&!h&&q.length>0&&s+b.length>1&&bc.uniqueSort(k)}return y&&(t=B,l=z),x};return g.el=0,d?z(g):g}function bo(a,b,c,d){var e=0,f=b.length;for(;e2&&(j=h[0]).type==="ID"&&b.nodeType===9&&!f&&e.relative[h[1].type]){b=e.find.ID(j.matches[0].replace(V,""),b,f)[0];if(!b)return c;a=a.slice(h.shift().length)}for(g=W.POS.test(a)?-1:h.length-1;g>=0;g--){j=h[g];if(e.relative[k=j.type])break;if(l=e.find[k])if(d=l(j.matches[0].replace(V,""),R.test(h[0].type)&&b.parentNode||b,f)){h.splice(g,1),a=d.length&&h.join("");if(!a)return w.apply(c,x.call(d,0)),c;break}}}return i(a,m)(d,b,f,c,R.test(a)),c}function bq(){}var c,d,e,f,g,h,i,j,k,l,m=!0,n="undefined",o=("sizcache"+Math.random()).replace(".",""),q=String,r=a.document,s=r.documentElement,t=0,u=0,v=[].pop,w=[].push,x=[].slice,y=[].indexOf||function(a){var b=0,c=this.length;for(;be.cacheLength&&delete a[b.shift()],a[c]=d},a)},B=A(),C=A(),D=A(),E="[\\x20\\t\\r\\n\\f]",F="(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+",G=F.replace("w","w#"),H="([*^$|!~]?=)",I="\\["+E+"*("+F+")"+E+"*(?:"+H+E+"*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|("+G+")|)|)"+E+"*\\]",J=":("+F+")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:"+I+")|[^:]|\\\\.)*|.*))\\)|)",K=":(even|odd|eq|gt|lt|nth|first|last)(?:\\("+E+"*((?:-\\d)?\\d*)"+E+"*\\)|)(?=[^-]|$)",L=new RegExp("^"+E+"+|((?:^|[^\\\\])(?:\\\\.)*)"+E+"+$","g"),M=new RegExp("^"+E+"*,"+E+"*"),N=new RegExp("^"+E+"*([\\x20\\t\\r\\n\\f>+~])"+E+"*"),O=new RegExp(J),P=/^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/,Q=/^:not/,R=/[\x20\t\r\n\f]*[+~]/,S=/:not\($/,T=/h\d/i,U=/input|select|textarea|button/i,V=/\\(?!\\)/g,W={ID:new RegExp("^#("+F+")"),CLASS:new RegExp("^\\.("+F+")"),NAME:new RegExp("^\\[name=['\"]?("+F+")['\"]?\\]"),TAG:new RegExp("^("+F.replace("w","w*")+")"),ATTR:new RegExp("^"+I),PSEUDO:new RegExp("^"+J),POS:new RegExp(K,"i"),CHILD:new RegExp("^:(only|nth|first|last)-child(?:\\("+E+"*(even|odd|(([+-]|)(\\d*)n|)"+E+"*(?:([+-]|)"+E+"*(\\d+)|))"+E+"*\\)|)","i"),needsContext:new RegExp("^"+E+"*[>+~]|"+K,"i")},X=function(a){var b=r.createElement("div");try{return a(b)}catch(c){return!1}finally{b=null}},Y=X(function(a){return a.appendChild(r.createComment("")),!a.getElementsByTagName("*").length}),Z=X(function(a){return a.innerHTML="",a.firstChild&&typeof a.firstChild.getAttribute!==n&&a.firstChild.getAttribute("href")==="#"}),$=X(function(a){a.innerHTML="";var b=typeof a.lastChild.getAttribute("multiple");return b!=="boolean"&&b!=="string"}),_=X(function(a){return a.innerHTML="",!a.getElementsByClassName||!a.getElementsByClassName("e").length?!1:(a.lastChild.className="e",a.getElementsByClassName("e").length===2)}),ba=X(function(a){a.id=o+0,a.innerHTML="
    ",s.insertBefore(a,s.firstChild);var b=r.getElementsByName&&r.getElementsByName(o).length===2+r.getElementsByName(o+0).length;return d=!r.getElementById(o),s.removeChild(a),b});try{x.call(s.childNodes,0)[0].nodeType}catch(bb){x=function(a){var b,c=[];for(;b=this[a];a++)c.push(b);return c}}bc.matches=function(a,b){return bc(a,null,null,b)},bc.matchesSelector=function(a,b){return bc(b,null,null,[a]).length>0},f=bc.getText=function(a){var b,c="",d=0,e=a.nodeType;if(e){if(e===1||e===9||e===11){if(typeof a.textContent=="string")return a.textContent;for(a=a.firstChild;a;a=a.nextSibling)c+=f(a)}else if(e===3||e===4)return a.nodeValue}else for(;b=a[d];d++)c+=f(b);return c},g=bc.isXML=function(a){var b=a&&(a.ownerDocument||a).documentElement;return b?b.nodeName!=="HTML":!1},h=bc.contains=s.contains?function(a,b){var c=a.nodeType===9?a.documentElement:a,d=b&&b.parentNode;return a===d||!!(d&&d.nodeType===1&&c.contains&&c.contains(d))}:s.compareDocumentPosition?function(a,b){return b&&!!(a.compareDocumentPosition(b)&16)}:function(a,b){while(b=b.parentNode)if(b===a)return!0;return!1},bc.attr=function(a,b){var c,d=g(a);return d||(b=b.toLowerCase()),(c=e.attrHandle[b])?c(a):d||$?a.getAttribute(b):(c=a.getAttributeNode(b),c?typeof a[b]=="boolean"?a[b]?b:null:c.specified?c.value:null:null)},e=bc.selectors={cacheLength:50,createPseudo:z,match:W,attrHandle:Z?{}:{href:function(a){return a.getAttribute("href",2)},type:function(a){return a.getAttribute("type")}},find:{ID:d?function(a,b,c){if(typeof b.getElementById!==n&&!c){var d=b.getElementById(a);return d&&d.parentNode?[d]:[]}}:function(a,c,d){if(typeof c.getElementById!==n&&!d){var e=c.getElementById(a);return e?e.id===a||typeof e.getAttributeNode!==n&&e.getAttributeNode("id").value===a?[e]:b:[]}},TAG:Y?function(a,b){if(typeof b.getElementsByTagName!==n)return b.getElementsByTagName(a)}:function(a,b){var c=b.getElementsByTagName(a);if(a==="*"){var d,e=[],f=0;for(;d=c[f];f++)d.nodeType===1&&e.push(d);return e}return c},NAME:ba&&function(a,b){if(typeof b.getElementsByName!==n)return b.getElementsByName(name)},CLASS:_&&function(a,b,c){if(typeof b.getElementsByClassName!==n&&!c)return b.getElementsByClassName(a)}},relative:{">":{dir:"parentNode",first:!0}," ":{dir:"parentNode"},"+":{dir:"previousSibling",first:!0},"~":{dir:"previousSibling"}},preFilter:{ATTR:function(a){return a[1]=a[1].replace(V,""),a[3]=(a[4]||a[5]||"").replace(V,""),a[2]==="~="&&(a[3]=" "+a[3]+" "),a.slice(0,4)},CHILD:function(a){return a[1]=a[1].toLowerCase(),a[1]==="nth"?(a[2]||bc.error(a[0]),a[3]=+(a[3]?a[4]+(a[5]||1):2*(a[2]==="even"||a[2]==="odd")),a[4]=+(a[6]+a[7]||a[2]==="odd")):a[2]&&bc.error(a[0]),a},PSEUDO:function(a){var b,c;if(W.CHILD.test(a[0]))return null;if(a[3])a[2]=a[3];else if(b=a[4])O.test(b)&&(c=bh(b,!0))&&(c=b.indexOf(")",b.length-c)-b.length)&&(b=b.slice(0,c),a[0]=a[0].slice(0,c)),a[2]=b;return a.slice(0,3)}},filter:{ID:d?function(a){return a=a.replace(V,""),function(b){return b.getAttribute("id")===a}}:function(a){return a=a.replace(V,""),function(b){var c=typeof b.getAttributeNode!==n&&b.getAttributeNode("id");return c&&c.value===a}},TAG:function(a){return a==="*"?function(){return!0}:(a=a.replace(V,"").toLowerCase(),function(b){return b.nodeName&&b.nodeName.toLowerCase()===a})},CLASS:function(a){var b=B[o][a];return b||(b=B(a,new RegExp("(^|"+E+")"+a+"("+E+"|$)"))),function(a){return b.test(a.className||typeof a.getAttribute!==n&&a.getAttribute("class")||"")}},ATTR:function(a,b,c){return function(d,e){var f=bc.attr(d,a);return f==null?b==="!=":b?(f+="",b==="="?f===c:b==="!="?f!==c:b==="^="?c&&f.indexOf(c)===0:b==="*="?c&&f.indexOf(c)>-1:b==="$="?c&&f.substr(f.length-c.length)===c:b==="~="?(" "+f+" ").indexOf(c)>-1:b==="|="?f===c||f.substr(0,c.length+1)===c+"-":!1):!0}},CHILD:function(a,b,c,d){return a==="nth"?function(a){var b,e,f=a.parentNode;if(c===1&&d===0)return!0;if(f){e=0;for(b=f.firstChild;b;b=b.nextSibling)if(b.nodeType===1){e++;if(a===b)break}}return e-=d,e===c||e%c===0&&e/c>=0}:function(b){var c=b;switch(a){case"only":case"first":while(c=c.previousSibling)if(c.nodeType===1)return!1;if(a==="first")return!0;c=b;case"last":while(c=c.nextSibling)if(c.nodeType===1)return!1;return!0}}},PSEUDO:function(a,b){var c,d=e.pseudos[a]||e.setFilters[a.toLowerCase()]||bc.error("unsupported pseudo: "+a);return d[o]?d(b):d.length>1?(c=[a,a,"",b],e.setFilters.hasOwnProperty(a.toLowerCase())?z(function(a,c){var e,f=d(a,b),g=f.length;while(g--)e=y.call(a,f[g]),a[e]=!(c[e]=f[g])}):function(a){return d(a,0,c)}):d}},pseudos:{not:z(function(a){var b=[],c=[],d=i(a.replace(L,"$1"));return d[o]?z(function(a,b,c,e){var f,g=d(a,null,e,[]),h=a.length;while(h--)if(f=g[h])a[h]=!(b[h]=f)}):function(a,e,f){return b[0]=a,d(b,null,f,c),!c.pop()}}),has:z(function(a){return function(b){return bc(a,b).length>0}}),contains:z(function(a){return function(b){return(b.textContent||b.innerText||f(b)).indexOf(a)>-1}}),enabled:function(a){return a.disabled===!1},disabled:function(a){return a.disabled===!0},checked:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&!!a.checked||b==="option"&&!!a.selected},selected:function(a){return a.parentNode&&a.parentNode.selectedIndex,a.selected===!0},parent:function(a){return!e.pseudos.empty(a)},empty:function(a){var b;a=a.firstChild;while(a){if(a.nodeName>"@"||(b=a.nodeType)===3||b===4)return!1;a=a.nextSibling}return!0},header:function(a){return T.test(a.nodeName)},text:function(a){var b,c;return a.nodeName.toLowerCase()==="input"&&(b=a.type)==="text"&&((c=a.getAttribute("type"))==null||c.toLowerCase()===b)},radio:bd("radio"),checkbox:bd("checkbox"),file:bd("file"),password:bd("password"),image:bd("image"),submit:be("submit"),reset:be("reset"),button:function(a){var b=a.nodeName.toLowerCase();return b==="input"&&a.type==="button"||b==="button"},input:function(a){return U.test(a.nodeName)},focus:function(a){var b=a.ownerDocument;return a===b.activeElement&&(!b.hasFocus||b.hasFocus())&&(!!a.type||!!a.href)},active:function(a){return a===a.ownerDocument.activeElement},first:bf(function(a,b,c){return[0]}),last:bf(function(a,b,c){return[b-1]}),eq:bf(function(a,b,c){return[c<0?c+b:c]}),even:bf(function(a,b,c){for(var d=0;d=0;)a.push(d);return a}),gt:bf(function(a,b,c){for(var d=c<0?c+b:c;++d",a.querySelectorAll("[selected]").length||e.push("\\["+E+"*(?:checked|disabled|ismap|multiple|readonly|selected|value)"),a.querySelectorAll(":checked").length||e.push(":checked")}),X(function(a){a.innerHTML="

    ",a.querySelectorAll("[test^='']").length&&e.push("[*^$]="+E+"*(?:\"\"|'')"),a.innerHTML="",a.querySelectorAll(":enabled").length||e.push(":enabled",":disabled")}),e=new RegExp(e.join("|")),bp=function(a,d,f,g,h){if(!g&&!h&&(!e||!e.test(a))){var i,j,k=!0,l=o,m=d,n=d.nodeType===9&&a;if(d.nodeType===1&&d.nodeName.toLowerCase()!=="object"){i=bh(a),(k=d.getAttribute("id"))?l=k.replace(c,"\\$&"):d.setAttribute("id",l),l="[id='"+l+"'] ",j=i.length;while(j--)i[j]=l+i[j].join("");m=R.test(a)&&d.parentNode||d,n=i.join(",")}if(n)try{return w.apply(f,x.call(m.querySelectorAll(n),0)),f}catch(p){}finally{k||d.removeAttribute("id")}}return b(a,d,f,g,h)},h&&(X(function(b){a=h.call(b,"div");try{h.call(b,"[test!='']:sizzle"),f.push("!=",J)}catch(c){}}),f=new RegExp(f.join("|")),bc.matchesSelector=function(b,c){c=c.replace(d,"='$1']");if(!g(b)&&!f.test(c)&&(!e||!e.test(c)))try{var i=h.call(b,c);if(i||a||b.document&&b.document.nodeType!==11)return i}catch(j){}return bc(c,null,null,[b]).length>0})}(),e.pseudos.nth=e.pseudos.eq,e.filters=bq.prototype=e.pseudos,e.setFilters=new bq,bc.attr=p.attr,p.find=bc,p.expr=bc.selectors,p.expr[":"]=p.expr.pseudos,p.unique=bc.uniqueSort,p.text=bc.getText,p.isXMLDoc=bc.isXML,p.contains=bc.contains}(a);var bc=/Until$/,bd=/^(?:parents|prev(?:Until|All))/,be=/^.[^:#\[\.,]*$/,bf=p.expr.match.needsContext,bg={children:!0,contents:!0,next:!0,prev:!0};p.fn.extend({find:function(a){var b,c,d,e,f,g,h=this;if(typeof a!="string")return p(a).filter(function(){for(b=0,c=h.length;b0)for(e=d;e=0:p.filter(a,this).length>0:this.filter(a).length>0)},closest:function(a,b){var c,d=0,e=this.length,f=[],g=bf.test(a)||typeof a!="string"?p(a,b||this.context):0;for(;d-1:p.find.matchesSelector(c,a)){f.push(c);break}c=c.parentNode}}return f=f.length>1?p.unique(f):f,this.pushStack(f,"closest",a)},index:function(a){return a?typeof a=="string"?p.inArray(this[0],p(a)):p.inArray(a.jquery?a[0]:a,this):this[0]&&this[0].parentNode?this.prevAll().length:-1},add:function(a,b){var c=typeof a=="string"?p(a,b):p.makeArray(a&&a.nodeType?[a]:a),d=p.merge(this.get(),c);return this.pushStack(bh(c[0])||bh(d[0])?d:p.unique(d))},addBack:function(a){return this.add(a==null?this.prevObject:this.prevObject.filter(a))}}),p.fn.andSelf=p.fn.addBack,p.each({parent:function(a){var b=a.parentNode;return b&&b.nodeType!==11?b:null},parents:function(a){return p.dir(a,"parentNode")},parentsUntil:function(a,b,c){return p.dir(a,"parentNode",c)},next:function(a){return bi(a,"nextSibling")},prev:function(a){return bi(a,"previousSibling")},nextAll:function(a){return p.dir(a,"nextSibling")},prevAll:function(a){return p.dir(a,"previousSibling")},nextUntil:function(a,b,c){return p.dir(a,"nextSibling",c)},prevUntil:function(a,b,c){return p.dir(a,"previousSibling",c)},siblings:function(a){return p.sibling((a.parentNode||{}).firstChild,a)},children:function(a){return p.sibling(a.firstChild)},contents:function(a){return p.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:p.merge([],a.childNodes)}},function(a,b){p.fn[a]=function(c,d){var e=p.map(this,b,c);return bc.test(a)||(d=c),d&&typeof d=="string"&&(e=p.filter(d,e)),e=this.length>1&&!bg[a]?p.unique(e):e,this.length>1&&bd.test(a)&&(e=e.reverse()),this.pushStack(e,a,k.call(arguments).join(","))}}),p.extend({filter:function(a,b,c){return c&&(a=":not("+a+")"),b.length===1?p.find.matchesSelector(b[0],a)?[b[0]]:[]:p.find.matches(a,b)},dir:function(a,c,d){var e=[],f=a[c];while(f&&f.nodeType!==9&&(d===b||f.nodeType!==1||!p(f).is(d)))f.nodeType===1&&e.push(f),f=f[c];return e},sibling:function(a,b){var c=[];for(;a;a=a.nextSibling)a.nodeType===1&&a!==b&&c.push(a);return c}});var bl="abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|header|hgroup|mark|meter|nav|output|progress|section|summary|time|video",bm=/ jQuery\d+="(?:null|\d+)"/g,bn=/^\s+/,bo=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi,bp=/<([\w:]+)/,bq=/]","i"),bv=/^(?:checkbox|radio)$/,bw=/checked\s*(?:[^=]|=\s*.checked.)/i,bx=/\/(java|ecma)script/i,by=/^\s*\s*$/g,bz={option:[1,""],legend:[1,"
    ","
    "],thead:[1,"","
    "],tr:[2,"","
    "],td:[3,"","
    "],col:[2,"","
    "],area:[1,"",""],_default:[0,"",""]},bA=bk(e),bB=bA.appendChild(e.createElement("div"));bz.optgroup=bz.option,bz.tbody=bz.tfoot=bz.colgroup=bz.caption=bz.thead,bz.th=bz.td,p.support.htmlSerialize||(bz._default=[1,"X
    ","
    "]),p.fn.extend({text:function(a){return p.access(this,function(a){return a===b?p.text(this):this.empty().append((this[0]&&this[0].ownerDocument||e).createTextNode(a))},null,a,arguments.length)},wrapAll:function(a){if(p.isFunction(a))return this.each(function(b){p(this).wrapAll(a.call(this,b))});if(this[0]){var b=p(a,this[0].ownerDocument).eq(0).clone(!0);this[0].parentNode&&b.insertBefore(this[0]),b.map(function(){var a=this;while(a.firstChild&&a.firstChild.nodeType===1)a=a.firstChild;return a}).append(this)}return this},wrapInner:function(a){return p.isFunction(a)?this.each(function(b){p(this).wrapInner(a.call(this,b))}):this.each(function(){var b=p(this),c=b.contents();c.length?c.wrapAll(a):b.append(a)})},wrap:function(a){var b=p.isFunction(a);return this.each(function(c){p(this).wrapAll(b?a.call(this,c):a)})},unwrap:function(){return this.parent().each(function(){p.nodeName(this,"body")||p(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.appendChild(a)})},prepend:function(){return this.domManip(arguments,!0,function(a){(this.nodeType===1||this.nodeType===11)&&this.insertBefore(a,this.firstChild)})},before:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(a,this),"before",this.selector)}},after:function(){if(!bh(this[0]))return this.domManip(arguments,!1,function(a){this.parentNode.insertBefore(a,this.nextSibling)});if(arguments.length){var a=p.clean(arguments);return this.pushStack(p.merge(this,a),"after",this.selector)}},remove:function(a,b){var c,d=0;for(;(c=this[d])!=null;d++)if(!a||p.filter(a,[c]).length)!b&&c.nodeType===1&&(p.cleanData(c.getElementsByTagName("*")),p.cleanData([c])),c.parentNode&&c.parentNode.removeChild(c);return this},empty:function(){var a,b=0;for(;(a=this[b])!=null;b++){a.nodeType===1&&p.cleanData(a.getElementsByTagName("*"));while(a.firstChild)a.removeChild(a.firstChild)}return this},clone:function(a,b){return a=a==null?!1:a,b=b==null?a:b,this.map(function(){return p.clone(this,a,b)})},html:function(a){return p.access(this,function(a){var c=this[0]||{},d=0,e=this.length;if(a===b)return c.nodeType===1?c.innerHTML.replace(bm,""):b;if(typeof a=="string"&&!bs.test(a)&&(p.support.htmlSerialize||!bu.test(a))&&(p.support.leadingWhitespace||!bn.test(a))&&!bz[(bp.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(bo,"<$1>");try{for(;d1&&typeof j=="string"&&bw.test(j))return this.each(function(){p(this).domManip(a,c,d)});if(p.isFunction(j))return this.each(function(e){var f=p(this);a[0]=j.call(this,e,c?f.html():b),f.domManip(a,c,d)});if(this[0]){e=p.buildFragment(a,this,k),g=e.fragment,f=g.firstChild,g.childNodes.length===1&&(g=f);if(f){c=c&&p.nodeName(f,"tr");for(h=e.cacheable||l-1;i0?this.clone(!0):this).get(),p(g[e])[b](d),f=f.concat(d);return this.pushStack(f,a,g.selector)}}),p.extend({clone:function(a,b,c){var d,e,f,g;p.support.html5Clone||p.isXMLDoc(a)||!bu.test("<"+a.nodeName+">")?g=a.cloneNode(!0):(bB.innerHTML=a.outerHTML,bB.removeChild(g=bB.firstChild));if((!p.support.noCloneEvent||!p.support.noCloneChecked)&&(a.nodeType===1||a.nodeType===11)&&!p.isXMLDoc(a)){bE(a,g),d=bF(a),e=bF(g);for(f=0;d[f];++f)e[f]&&bE(d[f],e[f])}if(b){bD(a,g);if(c){d=bF(a),e=bF(g);for(f=0;d[f];++f)bD(d[f],e[f])}}return d=e=null,g},clean:function(a,b,c,d){var f,g,h,i,j,k,l,m,n,o,q,r,s=b===e&&bA,t=[];if(!b||typeof b.createDocumentFragment=="undefined")b=e;for(f=0;(h=a[f])!=null;f++){typeof h=="number"&&(h+="");if(!h)continue;if(typeof h=="string")if(!br.test(h))h=b.createTextNode(h);else{s=s||bk(b),l=b.createElement("div"),s.appendChild(l),h=h.replace(bo,"<$1>"),i=(bp.exec(h)||["",""])[1].toLowerCase(),j=bz[i]||bz._default,k=j[0],l.innerHTML=j[1]+h+j[2];while(k--)l=l.lastChild;if(!p.support.tbody){m=bq.test(h),n=i==="table"&&!m?l.firstChild&&l.firstChild.childNodes:j[1]===""&&!m?l.childNodes:[];for(g=n.length-1;g>=0;--g)p.nodeName(n[g],"tbody")&&!n[g].childNodes.length&&n[g].parentNode.removeChild(n[g])}!p.support.leadingWhitespace&&bn.test(h)&&l.insertBefore(b.createTextNode(bn.exec(h)[0]),l.firstChild),h=l.childNodes,l.parentNode.removeChild(l)}h.nodeType?t.push(h):p.merge(t,h)}l&&(h=l=s=null);if(!p.support.appendChecked)for(f=0;(h=t[f])!=null;f++)p.nodeName(h,"input")?bG(h):typeof h.getElementsByTagName!="undefined"&&p.grep(h.getElementsByTagName("input"),bG);if(c){q=function(a){if(!a.type||bx.test(a.type))return d?d.push(a.parentNode?a.parentNode.removeChild(a):a):c.appendChild(a)};for(f=0;(h=t[f])!=null;f++)if(!p.nodeName(h,"script")||!q(h))c.appendChild(h),typeof h.getElementsByTagName!="undefined"&&(r=p.grep(p.merge([],h.getElementsByTagName("script")),q),t.splice.apply(t,[f+1,0].concat(r)),f+=r.length)}return t},cleanData:function(a,b){var c,d,e,f,g=0,h=p.expando,i=p.cache,j=p.support.deleteExpando,k=p.event.special;for(;(e=a[g])!=null;g++)if(b||p.acceptData(e)){d=e[h],c=d&&i[d];if(c){if(c.events)for(f in c.events)k[f]?p.event.remove(e,f):p.removeEvent(e,f,c.handle);i[d]&&(delete i[d],j?delete e[h]:e.removeAttribute?e.removeAttribute(h):e[h]=null,p.deletedIds.push(d))}}}}),function(){var a,b;p.uaMatch=function(a){a=a.toLowerCase();var b=/(chrome)[ \/]([\w.]+)/.exec(a)||/(webkit)[ \/]([\w.]+)/.exec(a)||/(opera)(?:.*version|)[ \/]([\w.]+)/.exec(a)||/(msie) ([\w.]+)/.exec(a)||a.indexOf("compatible")<0&&/(mozilla)(?:.*? rv:([\w.]+)|)/.exec(a)||[];return{browser:b[1]||"",version:b[2]||"0"}},a=p.uaMatch(g.userAgent),b={},a.browser&&(b[a.browser]=!0,b.version=a.version),b.chrome?b.webkit=!0:b.webkit&&(b.safari=!0),p.browser=b,p.sub=function(){function a(b,c){return new a.fn.init(b,c)}p.extend(!0,a,this),a.superclass=this,a.fn=a.prototype=this(),a.fn.constructor=a,a.sub=this.sub,a.fn.init=function c(c,d){return d&&d instanceof p&&!(d instanceof a)&&(d=a(d)),p.fn.init.call(this,c,d,b)},a.fn.init.prototype=a.fn;var b=a(e);return a}}();var bH,bI,bJ,bK=/alpha\([^)]*\)/i,bL=/opacity=([^)]*)/,bM=/^(top|right|bottom|left)$/,bN=/^(none|table(?!-c[ea]).+)/,bO=/^margin/,bP=new RegExp("^("+q+")(.*)$","i"),bQ=new RegExp("^("+q+")(?!px)[a-z%]+$","i"),bR=new RegExp("^([-+])=("+q+")","i"),bS={},bT={position:"absolute",visibility:"hidden",display:"block"},bU={letterSpacing:0,fontWeight:400},bV=["Top","Right","Bottom","Left"],bW=["Webkit","O","Moz","ms"],bX=p.fn.toggle;p.fn.extend({css:function(a,c){return p.access(this,function(a,c,d){return d!==b?p.style(a,c,d):p.css(a,c)},a,c,arguments.length>1)},show:function(){return b$(this,!0)},hide:function(){return b$(this)},toggle:function(a,b){var c=typeof a=="boolean";return p.isFunction(a)&&p.isFunction(b)?bX.apply(this,arguments):this.each(function(){(c?a:bZ(this))?p(this).show():p(this).hide()})}}),p.extend({cssHooks:{opacity:{get:function(a,b){if(b){var c=bH(a,"opacity");return c===""?"1":c}}}},cssNumber:{fillOpacity:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,widows:!0,zIndex:!0,zoom:!0},cssProps:{"float":p.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,c,d,e){if(!a||a.nodeType===3||a.nodeType===8||!a.style)return;var f,g,h,i=p.camelCase(c),j=a.style;c=p.cssProps[i]||(p.cssProps[i]=bY(j,i)),h=p.cssHooks[c]||p.cssHooks[i];if(d===b)return h&&"get"in h&&(f=h.get(a,!1,e))!==b?f:j[c];g=typeof d,g==="string"&&(f=bR.exec(d))&&(d=(f[1]+1)*f[2]+parseFloat(p.css(a,c)),g="number");if(d==null||g==="number"&&isNaN(d))return;g==="number"&&!p.cssNumber[i]&&(d+="px");if(!h||!("set"in h)||(d=h.set(a,d,e))!==b)try{j[c]=d}catch(k){}},css:function(a,c,d,e){var f,g,h,i=p.camelCase(c);return c=p.cssProps[i]||(p.cssProps[i]=bY(a.style,i)),h=p.cssHooks[c]||p.cssHooks[i],h&&"get"in h&&(f=h.get(a,!0,e)),f===b&&(f=bH(a,c)),f==="normal"&&c in bU&&(f=bU[c]),d||e!==b?(g=parseFloat(f),d||p.isNumeric(g)?g||0:f):f},swap:function(a,b,c){var d,e,f={};for(e in b)f[e]=a.style[e],a.style[e]=b[e];d=c.call(a);for(e in b)a.style[e]=f[e];return d}}),a.getComputedStyle?bH=function(b,c){var d,e,f,g,h=a.getComputedStyle(b,null),i=b.style;return h&&(d=h[c],d===""&&!p.contains(b.ownerDocument,b)&&(d=p.style(b,c)),bQ.test(d)&&bO.test(c)&&(e=i.width,f=i.minWidth,g=i.maxWidth,i.minWidth=i.maxWidth=i.width=d,d=h.width,i.width=e,i.minWidth=f,i.maxWidth=g)),d}:e.documentElement.currentStyle&&(bH=function(a,b){var c,d,e=a.currentStyle&&a.currentStyle[b],f=a.style;return e==null&&f&&f[b]&&(e=f[b]),bQ.test(e)&&!bM.test(b)&&(c=f.left,d=a.runtimeStyle&&a.runtimeStyle.left,d&&(a.runtimeStyle.left=a.currentStyle.left),f.left=b==="fontSize"?"1em":e,e=f.pixelLeft+"px",f.left=c,d&&(a.runtimeStyle.left=d)),e===""?"auto":e}),p.each(["height","width"],function(a,b){p.cssHooks[b]={get:function(a,c,d){if(c)return a.offsetWidth===0&&bN.test(bH(a,"display"))?p.swap(a,bT,function(){return cb(a,b,d)}):cb(a,b,d)},set:function(a,c,d){return b_(a,c,d?ca(a,b,d,p.support.boxSizing&&p.css(a,"boxSizing")==="border-box"):0)}}}),p.support.opacity||(p.cssHooks.opacity={get:function(a,b){return bL.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?.01*parseFloat(RegExp.$1)+"":b?"1":""},set:function(a,b){var c=a.style,d=a.currentStyle,e=p.isNumeric(b)?"alpha(opacity="+b*100+")":"",f=d&&d.filter||c.filter||"";c.zoom=1;if(b>=1&&p.trim(f.replace(bK,""))===""&&c.removeAttribute){c.removeAttribute("filter");if(d&&!d.filter)return}c.filter=bK.test(f)?f.replace(bK,e):f+" "+e}}),p(function(){p.support.reliableMarginRight||(p.cssHooks.marginRight={get:function(a,b){return p.swap(a,{display:"inline-block"},function(){if(b)return bH(a,"marginRight")})}}),!p.support.pixelPosition&&p.fn.position&&p.each(["top","left"],function(a,b){p.cssHooks[b]={get:function(a,c){if(c){var d=bH(a,b);return bQ.test(d)?p(a).position()[b]+"px":d}}}})}),p.expr&&p.expr.filters&&(p.expr.filters.hidden=function(a){return a.offsetWidth===0&&a.offsetHeight===0||!p.support.reliableHiddenOffsets&&(a.style&&a.style.display||bH(a,"display"))==="none"},p.expr.filters.visible=function(a){return!p.expr.filters.hidden(a)}),p.each({margin:"",padding:"",border:"Width"},function(a,b){p.cssHooks[a+b]={expand:function(c){var d,e=typeof c=="string"?c.split(" "):[c],f={};for(d=0;d<4;d++)f[a+bV[d]+b]=e[d]||e[d-2]||e[0];return f}},bO.test(a)||(p.cssHooks[a+b].set=b_)});var cd=/%20/g,ce=/\[\]$/,cf=/\r?\n/g,cg=/^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,ch=/^(?:select|textarea)/i;p.fn.extend({serialize:function(){return p.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?p.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||ch.test(this.nodeName)||cg.test(this.type))}).map(function(a,b){var c=p(this).val();return c==null?null:p.isArray(c)?p.map(c,function(a,c){return{name:b.name,value:a.replace(cf,"\r\n")}}):{name:b.name,value:c.replace(cf,"\r\n")}}).get()}}),p.param=function(a,c){var d,e=[],f=function(a,b){b=p.isFunction(b)?b():b==null?"":b,e[e.length]=encodeURIComponent(a)+"="+encodeURIComponent(b)};c===b&&(c=p.ajaxSettings&&p.ajaxSettings.traditional);if(p.isArray(a)||a.jquery&&!p.isPlainObject(a))p.each(a,function(){f(this.name,this.value)});else for(d in a)ci(d,a[d],c,f);return e.join("&").replace(cd,"+")};var cj,ck,cl=/#.*$/,cm=/^(.*?):[ \t]*([^\r\n]*)\r?$/mg,cn=/^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/,co=/^(?:GET|HEAD)$/,cp=/^\/\//,cq=/\?/,cr=/)<[^<]*)*<\/script>/gi,cs=/([?&])_=[^&]*/,ct=/^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/,cu=p.fn.load,cv={},cw={},cx=["*/"]+["*"];try{ck=f.href}catch(cy){ck=e.createElement("a"),ck.href="",ck=ck.href}cj=ct.exec(ck.toLowerCase())||[],p.fn.load=function(a,c,d){if(typeof a!="string"&&cu)return cu.apply(this,arguments);if(!this.length)return this;var e,f,g,h=this,i=a.indexOf(" ");return i>=0&&(e=a.slice(i,a.length),a=a.slice(0,i)),p.isFunction(c)?(d=c,c=b):c&&typeof c=="object"&&(f="POST"),p.ajax({url:a,type:f,dataType:"html",data:c,complete:function(a,b){d&&h.each(d,g||[a.responseText,b,a])}}).done(function(a){g=arguments,h.html(e?p("
    ").append(a.replace(cr,"")).find(e):a)}),this},p.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){p.fn[b]=function(a){return this.on(b,a)}}),p.each(["get","post"],function(a,c){p[c]=function(a,d,e,f){return p.isFunction(d)&&(f=f||e,e=d,d=b),p.ajax({type:c,url:a,data:d,success:e,dataType:f})}}),p.extend({getScript:function(a,c){return p.get(a,b,c,"script")},getJSON:function(a,b,c){return p.get(a,b,c,"json")},ajaxSetup:function(a,b){return b?cB(a,p.ajaxSettings):(b=a,a=p.ajaxSettings),cB(a,b),a},ajaxSettings:{url:ck,isLocal:cn.test(cj[1]),global:!0,type:"GET",contentType:"application/x-www-form-urlencoded; charset=UTF-8",processData:!0,async:!0,accepts:{xml:"application/xml, text/xml",html:"text/html",text:"text/plain",json:"application/json, text/javascript","*":cx},contents:{xml:/xml/,html:/html/,json:/json/},responseFields:{xml:"responseXML",text:"responseText"},converters:{"* text":a.String,"text html":!0,"text json":p.parseJSON,"text xml":p.parseXML},flatOptions:{context:!0,url:!0}},ajaxPrefilter:cz(cv),ajaxTransport:cz(cw),ajax:function(a,c){function y(a,c,f,i){var k,s,t,u,w,y=c;if(v===2)return;v=2,h&&clearTimeout(h),g=b,e=i||"",x.readyState=a>0?4:0,f&&(u=cC(l,x,f));if(a>=200&&a<300||a===304)l.ifModified&&(w=x.getResponseHeader("Last-Modified"),w&&(p.lastModified[d]=w),w=x.getResponseHeader("Etag"),w&&(p.etag[d]=w)),a===304?(y="notmodified",k=!0):(k=cD(l,u),y=k.state,s=k.data,t=k.error,k=!t);else{t=y;if(!y||a)y="error",a<0&&(a=0)}x.status=a,x.statusText=(c||y)+"",k?o.resolveWith(m,[s,y,x]):o.rejectWith(m,[x,y,t]),x.statusCode(r),r=b,j&&n.trigger("ajax"+(k?"Success":"Error"),[x,l,k?s:t]),q.fireWith(m,[x,y]),j&&(n.trigger("ajaxComplete",[x,l]),--p.active||p.event.trigger("ajaxStop"))}typeof a=="object"&&(c=a,a=b),c=c||{};var d,e,f,g,h,i,j,k,l=p.ajaxSetup({},c),m=l.context||l,n=m!==l&&(m.nodeType||m instanceof p)?p(m):p.event,o=p.Deferred(),q=p.Callbacks("once memory"),r=l.statusCode||{},t={},u={},v=0,w="canceled",x={readyState:0,setRequestHeader:function(a,b){if(!v){var c=a.toLowerCase();a=u[c]=u[c]||a,t[a]=b}return this},getAllResponseHeaders:function(){return v===2?e:null},getResponseHeader:function(a){var c;if(v===2){if(!f){f={};while(c=cm.exec(e))f[c[1].toLowerCase()]=c[2]}c=f[a.toLowerCase()]}return c===b?null:c},overrideMimeType:function(a){return v||(l.mimeType=a),this},abort:function(a){return a=a||w,g&&g.abort(a),y(0,a),this}};o.promise(x),x.success=x.done,x.error=x.fail,x.complete=q.add,x.statusCode=function(a){if(a){var b;if(v<2)for(b in a)r[b]=[r[b],a[b]];else b=a[x.status],x.always(b)}return this},l.url=((a||l.url)+"").replace(cl,"").replace(cp,cj[1]+"//"),l.dataTypes=p.trim(l.dataType||"*").toLowerCase().split(s),l.crossDomain==null&&(i=ct.exec(l.url.toLowerCase())||!1,l.crossDomain=i&&i.join(":")+(i[3]?"":i[1]==="http:"?80:443)!==cj.join(":")+(cj[3]?"":cj[1]==="http:"?80:443)),l.data&&l.processData&&typeof l.data!="string"&&(l.data=p.param(l.data,l.traditional)),cA(cv,l,c,x);if(v===2)return x;j=l.global,l.type=l.type.toUpperCase(),l.hasContent=!co.test(l.type),j&&p.active++===0&&p.event.trigger("ajaxStart");if(!l.hasContent){l.data&&(l.url+=(cq.test(l.url)?"&":"?")+l.data,delete l.data),d=l.url;if(l.cache===!1){var z=p.now(),A=l.url.replace(cs,"$1_="+z);l.url=A+(A===l.url?(cq.test(l.url)?"&":"?")+"_="+z:"")}}(l.data&&l.hasContent&&l.contentType!==!1||c.contentType)&&x.setRequestHeader("Content-Type",l.contentType),l.ifModified&&(d=d||l.url,p.lastModified[d]&&x.setRequestHeader("If-Modified-Since",p.lastModified[d]),p.etag[d]&&x.setRequestHeader("If-None-Match",p.etag[d])),x.setRequestHeader("Accept",l.dataTypes[0]&&l.accepts[l.dataTypes[0]]?l.accepts[l.dataTypes[0]]+(l.dataTypes[0]!=="*"?", "+cx+"; q=0.01":""):l.accepts["*"]);for(k in l.headers)x.setRequestHeader(k,l.headers[k]);if(!l.beforeSend||l.beforeSend.call(m,x,l)!==!1&&v!==2){w="abort";for(k in{success:1,error:1,complete:1})x[k](l[k]);g=cA(cw,l,c,x);if(!g)y(-1,"No Transport");else{x.readyState=1,j&&n.trigger("ajaxSend",[x,l]),l.async&&l.timeout>0&&(h=setTimeout(function(){x.abort("timeout")},l.timeout));try{v=1,g.send(t,y)}catch(B){if(v<2)y(-1,B);else throw B}}return x}return x.abort()},active:0,lastModified:{},etag:{}});var cE=[],cF=/\?/,cG=/(=)\?(?=&|$)|\?\?/,cH=p.now();p.ajaxSetup({jsonp:"callback",jsonpCallback:function(){var a=cE.pop()||p.expando+"_"+cH++;return this[a]=!0,a}}),p.ajaxPrefilter("json jsonp",function(c,d,e){var f,g,h,i=c.data,j=c.url,k=c.jsonp!==!1,l=k&&cG.test(j),m=k&&!l&&typeof i=="string"&&!(c.contentType||"").indexOf("application/x-www-form-urlencoded")&&cG.test(i);if(c.dataTypes[0]==="jsonp"||l||m)return f=c.jsonpCallback=p.isFunction(c.jsonpCallback)?c.jsonpCallback():c.jsonpCallback,g=a[f],l?c.url=j.replace(cG,"$1"+f):m?c.data=i.replace(cG,"$1"+f):k&&(c.url+=(cF.test(j)?"&":"?")+c.jsonp+"="+f),c.converters["script json"]=function(){return h||p.error(f+" was not called"),h[0]},c.dataTypes[0]="json",a[f]=function(){h=arguments},e.always(function(){a[f]=g,c[f]&&(c.jsonpCallback=d.jsonpCallback,cE.push(f)),h&&p.isFunction(g)&&g(h[0]),h=g=b}),"script"}),p.ajaxSetup({accepts:{script:"text/javascript, application/javascript, application/ecmascript, application/x-ecmascript"},contents:{script:/javascript|ecmascript/},converters:{"text script":function(a){return p.globalEval(a),a}}}),p.ajaxPrefilter("script",function(a){a.cache===b&&(a.cache=!1),a.crossDomain&&(a.type="GET",a.global=!1)}),p.ajaxTransport("script",function(a){if(a.crossDomain){var c,d=e.head||e.getElementsByTagName("head")[0]||e.documentElement;return{send:function(f,g){c=e.createElement("script"),c.async="async",a.scriptCharset&&(c.charset=a.scriptCharset),c.src=a.url,c.onload=c.onreadystatechange=function(a,e){if(e||!c.readyState||/loaded|complete/.test(c.readyState))c.onload=c.onreadystatechange=null,d&&c.parentNode&&d.removeChild(c),c=b,e||g(200,"success")},d.insertBefore(c,d.firstChild)},abort:function(){c&&c.onload(0,1)}}}});var cI,cJ=a.ActiveXObject?function(){for(var a in cI)cI[a](0,1)}:!1,cK=0;p.ajaxSettings.xhr=a.ActiveXObject?function(){return!this.isLocal&&cL()||cM()}:cL,function(a){p.extend(p.support,{ajax:!!a,cors:!!a&&"withCredentials"in a})}(p.ajaxSettings.xhr()),p.support.ajax&&p.ajaxTransport(function(c){if(!c.crossDomain||p.support.cors){var d;return{send:function(e,f){var g,h,i=c.xhr();c.username?i.open(c.type,c.url,c.async,c.username,c.password):i.open(c.type,c.url,c.async);if(c.xhrFields)for(h in c.xhrFields)i[h]=c.xhrFields[h];c.mimeType&&i.overrideMimeType&&i.overrideMimeType(c.mimeType),!c.crossDomain&&!e["X-Requested-With"]&&(e["X-Requested-With"]="XMLHttpRequest");try{for(h in e)i.setRequestHeader(h,e[h])}catch(j){}i.send(c.hasContent&&c.data||null),d=function(a,e){var h,j,k,l,m;try{if(d&&(e||i.readyState===4)){d=b,g&&(i.onreadystatechange=p.noop,cJ&&delete cI[g]);if(e)i.readyState!==4&&i.abort();else{h=i.status,k=i.getAllResponseHeaders(),l={},m=i.responseXML,m&&m.documentElement&&(l.xml=m);try{l.text=i.responseText}catch(a){}try{j=i.statusText}catch(n){j=""}!h&&c.isLocal&&!c.crossDomain?h=l.text?200:404:h===1223&&(h=204)}}}catch(o){e||f(-1,o)}l&&f(h,j,l,k)},c.async?i.readyState===4?setTimeout(d,0):(g=++cK,cJ&&(cI||(cI={},p(a).unload(cJ)),cI[g]=d),i.onreadystatechange=d):d()},abort:function(){d&&d(0,1)}}}});var cN,cO,cP=/^(?:toggle|show|hide)$/,cQ=new RegExp("^(?:([-+])=|)("+q+")([a-z%]*)$","i"),cR=/queueHooks$/,cS=[cY],cT={"*":[function(a,b){var c,d,e=this.createTween(a,b),f=cQ.exec(b),g=e.cur(),h=+g||0,i=1,j=20;if(f){c=+f[2],d=f[3]||(p.cssNumber[a]?"":"px");if(d!=="px"&&h){h=p.css(e.elem,a,!0)||c||1;do i=i||".5",h=h/i,p.style(e.elem,a,h+d);while(i!==(i=e.cur()/g)&&i!==1&&--j)}e.unit=d,e.start=h,e.end=f[1]?h+(f[1]+1)*c:c}return e}]};p.Animation=p.extend(cW,{tweener:function(a,b){p.isFunction(a)?(b=a,a=["*"]):a=a.split(" ");var c,d=0,e=a.length;for(;d-1,j={},k={},l,m;i?(k=e.position(),l=k.top,m=k.left):(l=parseFloat(g)||0,m=parseFloat(h)||0),p.isFunction(b)&&(b=b.call(a,c,f)),b.top!=null&&(j.top=b.top-f.top+l),b.left!=null&&(j.left=b.left-f.left+m),"using"in b?b.using.call(a,j):e.css(j)}},p.fn.extend({position:function(){if(!this[0])return;var a=this[0],b=this.offsetParent(),c=this.offset(),d=c_.test(b[0].nodeName)?{top:0,left:0}:b.offset();return c.top-=parseFloat(p.css(a,"marginTop"))||0,c.left-=parseFloat(p.css(a,"marginLeft"))||0,d.top+=parseFloat(p.css(b[0],"borderTopWidth"))||0,d.left+=parseFloat(p.css(b[0],"borderLeftWidth"))||0,{top:c.top-d.top,left:c.left-d.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||e.body;while(a&&!c_.test(a.nodeName)&&p.css(a,"position")==="static")a=a.offsetParent;return a||e.body})}}),p.each({scrollLeft:"pageXOffset",scrollTop:"pageYOffset"},function(a,c){var d=/Y/.test(c);p.fn[a]=function(e){return p.access(this,function(a,e,f){var g=da(a);if(f===b)return g?c in g?g[c]:g.document.documentElement[e]:a[e];g?g.scrollTo(d?p(g).scrollLeft():f,d?f:p(g).scrollTop()):a[e]=f},a,e,arguments.length,null)}}),p.each({Height:"height",Width:"width"},function(a,c){p.each({padding:"inner"+a,content:c,"":"outer"+a},function(d,e){p.fn[e]=function(e,f){var g=arguments.length&&(d||typeof e!="boolean"),h=d||(e===!0||f===!0?"margin":"border");return p.access(this,function(c,d,e){var f;return p.isWindow(c)?c.document.documentElement["client"+a]:c.nodeType===9?(f=c.documentElement,Math.max(c.body["scroll"+a],f["scroll"+a],c.body["offset"+a],f["offset"+a],f["client"+a])):e===b?p.css(c,d,e,h):p.style(c,d,e,h)},c,g?e:b,g,null)}})}),a.jQuery=a.$=p,typeof define=="function"&&define.amd&&define.amd.jQuery&&define("jquery",[],function(){return p})})(window); \ No newline at end of file diff --git a/js/jquery.main.js b/js/jquery.main.js new file mode 100644 index 0000000..8fda42b --- /dev/null +++ b/js/jquery.main.js @@ -0,0 +1,767 @@ +// page init +jQuery(function() { + initLightbox(); +}); + +// fancybox modal popup init +function initLightbox() { + + jQuery('a.lightbox-link, a[rel*="lightbox"]').each(function() { + var link = jQuery(this); + fancy(link); + }); + + setTimeout(function() { + var hash = window.location.hash; + + if (hash.indexOf("#") === 0 && hash.indexOf("/") === hash.length - 1) { + hash = hash.substring(0, hash.length - 1); + var a = jQuery("a[href=" + hash + "]"); + if (a.length > 0) { + jQuery(a).eq('0').trigger('click'); + } + } + + }, 200); +} + +function fancy(link) { + link.fancybox({ + padding: 0, + cyclic: false, + overlayShow: true, + overlayOpacity: 0.8, + overlayColor: '#283843', + titlePosition: 'inside', + onComplete: function(box) { + if (link.attr('href').indexOf('#') === 0) { + window.location.hash = link.attr('href') + '/'; + jQuery('#fancybox-content').find('a.close').unbind('click.fb').bind('click.fb', function(e) { + window.location.hash = ""; + jQuery.fancybox.close(); + e.preventDefault(); + }); + } + } + }); +} + +/* Fancybox overlay fix */ +jQuery(function() { + // detect device type + var isTouchDevice = (function() { + try { + return ('ontouchstart' in window) || window.DocumentTouch && document instanceof DocumentTouch; + } catch (e) { + return false; + } + }()); + + // fix options + var supportPositionFixed = !((jQuery.browser.msie && jQuery.browser.version < 8) || isTouchDevice); + var overlaySelector = '#fancybox-overlay'; + + if (supportPositionFixed) { + // create