diff --git a/change_log.txt b/change_log.txt index 570938e..6f2ae50 100644 --- a/change_log.txt +++ b/change_log.txt @@ -1,3 +1,36 @@ +### 2.4.17 | 2020-02-05 +- Added security enhancements. Credit: Ryan Knell. +- Added the "Empty (no choices selected)" choice to the conditional logic rule value drop down for Multi Select fields. +- Added an error message to Form block when no forms exist. +- Added the *[gform_print_entry_notes](https://docs.gravityforms.com/gform_print_entry_notes/)* filter. +- Updated the Field Choices tooltip in the form editor. +- Updated file upload validation logging statements. +- Updated documentation links on the Forms > Help page. +- Updated the print entry stylesheet to remove the page break between the entry and its notes. +- Updated the *[gform_form_export_filename](https://docs.gravityforms.com/gform_form_export_filename/)* filter to include an additional parameter containing the IDs of the forms to be exported. +- Fixed an issue with the width of the Form Settings submenu links. Credit: The GravityView team. +- Fixed an issue with the text format {all_fields} output for Multi Select fields created with GF2.2+. +- Fixed an issue with the tabindex when the form contains a Captcha field which is not the last field. +- Fixed a PHP notice which occurs when a page containing multiple Ajax enabled Form blocks is displayed. +- Fixed an issue where an uploaded file could lose the original filename on entry save if it contains multibyte characters. +- Fixed an issue where the Checkboxes "select all" feature does not trigger calculations. +- Fixed an issue where the Checkboxes "select all" feature does not function for some form configurations using Poll, Quiz, or Survey fields. +- Fixed an issue where multiple "other" inputs can be displayed for the Radio Buttons field in some scenarios. +- Fixed an issue with the entry limit per day for timezones other than UTC. +- Removed the orphaned (empty) entry deletion task from the daily cron job. +- AF: Fixed PHP notices thrown on the feed edit page in PHP 7.4. +- AF: Fixed a PHP 7.4 warning which occurs when the update_plugins transient is cleared on installation of a new plugin. +- AF: Fixed an issue where an add-on is not deactivated on uninstall if it's path does not match the expected path. +- AF: Added GFPaymentAddOn::get_payment_field() to determine what should be used as the payment amount; the form total or a specific product field. +- AF: Fixed an issue on the results page where multiple filters are added after clearing the previous filters. +- AF: Fixed a PHP 7.4 notice which can occur when payment add-ons retrieve the submission data. +- AF: Updated the frontend feeds scripts loading priority to 20. +- AF: Fixed an issue where payment add-ons may process submissions marked as spam. +- API: Fixed an issue when providing an invalid date_created date while retrieving entries. +- API: Fixed a PHP notice which occurred in GFAPI::get_form() when the meta is cached and the form properties have been deleted from the database. +- API: Added support for the "notin" search operator. Credit: The GravityView team. + + ### 2.4.16 | 2019-12-18 - Added security enhancements. - Added the *[gform_form_summary](https://docs.gravityforms.com/gform_form_summary/)* filter. diff --git a/common.php b/common.php index 69e0ea1..c011de2 100644 --- a/common.php +++ b/common.php @@ -1187,14 +1187,8 @@ public static function replace_variables_prepopulate( $text, $url_encode = false $text = str_replace( '{ip}', $url_encode ? urlencode( $ip ) : $ip, $text ); //user agent - $user_agent = RGForms::get( 'HTTP_USER_AGENT', $_SERVER ); - if ( $esc_html ) { - $user_agent = esc_html( $user_agent ); - } - if ( $url_encode ) { - $user_agent = urlencode( $user_agent ); - } - $text = str_replace( '{user_agent}', $user_agent, $text ); + $user_agent = isset( $entry['user_agent'] ) ? $entry['user_agent'] : sanitize_text_field( rgar( $_SERVER, 'HTTP_USER_AGENT' ) ); + $text = str_replace( '{user_agent}', self::format_variable_value( $user_agent, $url_encode, $esc_html, $format, $nl2br ), $text ); //referrer $referer = RGForms::get( 'HTTP_REFERER', $_SERVER ); @@ -3923,6 +3917,62 @@ public static function gform_do_shortcode( $content ) { return do_shortcode( $content ); } + /** + * Determines if the supplied entry is spam. + * + * @since 2.4.17 + * + * @param array $entry The entry currently being processed. + * @param array $form The form currently being processed. + * + * @return bool + */ + public static function is_spam_entry( $entry, $form ) { + $form_id = absint( $form['id'] ); + $use_cache = class_exists( 'GFFormDisplay' ); + + if ( $use_cache ) { + $is_spam = rgars( GFFormDisplay::$submission, $form_id . '/is_spam' ); + + if ( is_bool( $is_spam ) ) { + return $is_spam; + } + } + + $is_spam = false; + + if ( self::akismet_enabled( $form_id ) ) { + $is_spam = self::is_akismet_spam( $form, $entry ); + self::log_debug( __METHOD__ . '(): Result from Akismet: ' . json_encode( $is_spam ) ); + } + + if ( has_filter( 'gform_entry_is_spam' ) || has_filter( "gform_entry_is_spam_{$form_id}" ) ) { + + /** + * Allows submissions to be flagged as spam by custom methods. + * + * @since 1.8.17 + * @since 2.4.17 Moved from GFFormDisplay::handle_submission(). + * + * @param bool $is_spam Indicates if the submission has been flagged as spam. + * @param array $form The form currently being processed. + * @param array $entry The entry currently being processed. + */ + $is_spam = gf_apply_filters( array( 'gform_entry_is_spam', $form_id ), $is_spam, $form, $entry ); + self::log_debug( __METHOD__ . '(): Result from gform_entry_is_spam filter: ' . json_encode( $is_spam ) ); + + } + + $log_is_spam = $is_spam ? 'Yes' : 'No'; + self::log_debug( __METHOD__ . "(): Is submission considered spam? {$log_is_spam}." ); + + if ( $use_cache ) { + GFFormDisplay::$submission[ $form_id ]['is_spam'] = $is_spam; + } + + return $is_spam; + } + public static function spam_enabled( $form_id ) { $spam_enabled = self::akismet_enabled( $form_id ) || has_filter( 'gform_entry_is_spam' ) || has_filter( "gform_entry_is_spam_{$form_id}" ); @@ -3930,7 +3980,7 @@ public static function spam_enabled( $form_id ) { } public static function has_akismet() { - $akismet_exists = function_exists( 'akismet_http_post' ) || function_exists( 'Akismet::http_post' ); + $akismet_exists = function_exists( 'akismet_http_post' ) || method_exists( 'Akismet', 'http_post' ); return $akismet_exists; } @@ -4676,6 +4726,7 @@ public static function gf_vars( $echo = true ) { $gf_vars['contains'] = esc_html__( 'contains', 'gravityforms' ); $gf_vars['startsWith'] = esc_html__( 'starts with', 'gravityforms' ); $gf_vars['endsWith'] = esc_html__( 'ends with', 'gravityforms' ); + $gf_vars['emptyChoice'] = wp_strip_all_tags( __( 'Empty (no choices selected)', 'gravityforms' ) ); $gf_vars['thisConfirmation'] = esc_html__( 'Use this confirmation if', 'gravityforms' ); $gf_vars['thisNotification'] = esc_html__( 'Send this notification if', 'gravityforms' ); diff --git a/css/admin.css b/css/admin.css index f9e15c8..6a761a7 100644 --- a/css/admin.css +++ b/css/admin.css @@ -3582,6 +3582,7 @@ ul#gf_form_toolbar_links .gf_submenu ul li a { background: transparent none; padding: 6px 10px; line-height: 24px; + display: block; } ul#gf_form_toolbar_links .gf_submenu ul li:hover { @@ -5291,4 +5292,4 @@ div .gfield_repeater_cell { /*Addded this temporarily to disable extra spacing*/ .gfield_repeater_cell .gfield_admin_icons { height: 0px; -} \ No newline at end of file +} diff --git a/css/admin.min.css b/css/admin.min.css index 1fe7501..6cd1ddf 100644 --- a/css/admin.min.css +++ b/css/admin.min.css @@ -1,4 +1,4 @@ .ui-datepicker{width:216px;height:auto;margin:5px auto 0;font:9pt Arial,sans-serif;-webkit-box-shadow:0 0 10px 0 rgba(0,0,0,.5);-moz-box-shadow:0 0 10px 0 rgba(0,0,0,.5);box-shadow:0 0 10px 0 rgba(0,0,0,.5)}.ui-datepicker a{text-decoration:none}.ui-datepicker table{width:100%;border-collapse:collapse}.ui-datepicker-header{background-color:#666;color:#e0e0e0;font-weight:700;-webkit-box-shadow:inset 0 1px 1px 0 rgba(250,250,250,.2);-moz-box-shadow:inset 0 1px 1px 0 rgba(250,250,250,.2);box-shadow:inset 0 1px 1px 0 rgba(250,250,250,.2);text-shadow:1px -1px 0 #000;filter:dropshadow(color=#000, offx=1, offy=-1);line-height:30px;min-height:30px!important;border-width:1px 0 0;border-style:solid;border-color:#666}.ui-datepicker tbody tr,.ui-datepicker thead{border-bottom:1px solid #bbb}.ui-datepicker-title{text-align:center}.ui-datepicker-title select{margin-top:2.5%}.ui-datepicker-next,.ui-datepicker-prev{display:inline-block;width:30px;height:30px;text-align:center;cursor:pointer;background-image:url(../images/datepicker/arrow.png);background-repeat:no-repeat;line-height:600%;overflow:hidden}.ui-datepicker-prev{float:left;background-position:center -30px}.ui-datepicker-next{float:right;background-position:center 0}.ui-datepicker thead{background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2Y3ZjdmNyIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMWYxZjEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background:-moz-linear-gradient(top,#f7f7f7 0,#f1f1f1 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#f7f7f7),color-stop(100%,#f1f1f1));background:-webkit-linear-gradient(top,#f7f7f7 0,#f1f1f1 100%);background:-o-linear-gradient(top,#f7f7f7 0,#f1f1f1 100%);background:-ms-linear-gradient(top,#f7f7f7 0,#f1f1f1 100%);background:linear-gradient(to bottom,#f7f7f7 0,#f1f1f1 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#f1f1f1', GradientType=0 )}.ui-datepicker th{text-transform:uppercase;text-align:center;font-size:6pt;padding:5px 0;color:#666;text-shadow:1px 0 0 #fff;filter:dropshadow(color=#fff, offx=1, offy=0)}.ui-datepicker tbody td{padding:0;border-top:1px solid #bbb;border-right:1px solid #bbb}.ui-datepicker tbody td:last-child{border-right:0}.ui-datepicker tbody tr:last-child{border-bottom:0}.ui-datepicker td a,.ui-datepicker td span{display:inline-block;font-weight:700;text-align:center;width:30px;height:30px;line-height:30px;color:#666;text-shadow:1px 1px 0 #fff;filter:dropshadow(color=#fff, offx=1, offy=1)}.ui-datepicker-calendar .ui-state-default{background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2VkZWRlZCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNkZWRlZGUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background:-moz-linear-gradient(top,#ededed 0,#dedede 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#ededed),color-stop(100%,#dedede));background:-webkit-linear-gradient(top,#ededed 0,#dedede 100%);background:-o-linear-gradient(top,#ededed 0,#dedede 100%);background:-ms-linear-gradient(top,#ededed 0,#dedede 100%);background:linear-gradient(to bottom,#ededed 0,#dedede 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ededed', endColorstr='#dedede', GradientType=0 );-webkit-box-shadow:inset 1px 1px 0 0 rgba(250,250,250,.5);-moz-box-shadow:inset 1px 1px 0 0 rgba(250,250,250,.5);box-shadow:inset 1px 1px 0 0 rgba(250,250,250,.5)}.ui-datepicker-calendar .ui-state-hover{background:#f7f7f7}.ui-datepicker-calendar .ui-state-active{background:#FFF2AA;border:1px solid #c19163;color:#666;-webkit-box-shadow:inset 0 0 10px 0 rgba(0,0,0,.1);-moz-box-shadow:inset 0 0 10px 0 rgba(0,0,0,.1);box-shadow:inset 0 0 10px 0 rgba(0,0,0,.1);text-shadow:0 1px 0 #FFF;filter:dropshadow(color=#FFF, offx=0, offy=1);position:relative;margin:-1px}.ui-datepicker-unselectable .ui-state-default{background:#f4f4f4;color:#b4b3b3}.ui-datepicker-calendar td:first-child .ui-state-active{width:29px;margin-left:0}.ui-datepicker-calendar td:last-child .ui-state-active{width:29px;margin-right:0}.ui-datepicker-calendar tr:last-child .ui-state-active{height:29px;margin-bottom:0}td.ui-datepicker-unselectable.ui-state-disabled{background-color:#d7d7d7}table.ui-datepicker-calendar{margin:0!important}body div#ui-datepicker-div[style]{z-index:9999!important}.ui-helper-hidden{display:none}.ui-helper-hidden-accessible{position:absolute;left:-99999999px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden}* html .ui-helper-clearfix{height:1%}.ui-helper-clearfix{display:block}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-tabs{padding:.2em;zoom:1}.ui-tabs[style]{border:1px solid #C2D7EF!important;margin:6px 0 0!important;swidth:438px!important}.ui-tabs .ui-tabs-nav{list-style:none;position:relative;padding:.2em .2em 0 0}.ui-tabs .ui-tabs-nav li{position:relative;float:left;border-bottom-width:0!important;margin:0 .2em -1px 0;padding:0;text-align:center}.fa.fa-pull-left,.fa.pull-left{margin-right:.3em}.ui-tabs .ui-tabs-nav li a{display:block;text-decoration:none;padding:.5em 1em;text-align:center;font-size:12px}.ui-tabs .ui-tabs-nav li.ui-tabs-selected{padding-bottom:1px;border-bottom-width:0}.ui-tabs .ui-tabs-nav li.ui-state-disabled a,.ui-tabs .ui-tabs-nav li.ui-state-processing a,.ui-tabs .ui-tabs-nav li.ui-tabs-selected a{cursor:text}.ui-tabs .ui-tabs-nav li a,.ui-tabs.ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-selected a,div#gform_heading.field_hover{cursor:pointer}.ui-tabs .ui-tabs-panel{padding:1em 1.4em;display:block;border-width:0;background:0 0}.ui-tabs .ui-tabs-hide{display:none!important}.fa,.fa-stack,.gficon-spin{display:inline-block}/*! * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) - */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right,.pull-right{float:right}.pull-left{float:left}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}body .gform_wrapper.gf_rtl_wrapper .recaptchatable #recaptcha_response_field,body.rtl .gform_wrapper.recaptchatable #recaptcha_response_field,html[dir=rtl] .gform_wrapper.recaptchatable #recaptcha_response_field{position:static!important}@font-face{font-family:gravityfont;src:url(fonts/gravityfont.eot)}@font-face{font-family:gravityfont;src:url(data:application/x-font-ttf;charset=utf-8;base64,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) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,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) format('woff');font-weight:400;font-style:normal}[class*=" gficon-"],[class^=gficon-]{font-family:gravityfont;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gficon-gravityforms-locked-icon:before{content:"\e627"}.gficon-gravityforms-logo-icon:before{content:"\e60c"}.gficon-gravitycharge-logo-icon:before{content:"\e600"}.gficon-gravityforms-rocket-icon:before{content:"\e614"}.gficon-gravityforms-form-icon:before{content:"\e60b"}.gficon-gravityforms-css-alt-con:before{content:"\e60e"}.gficon-gravityforms-markup-icon:before{content:"\e60d"}.gficon-gravityforms-key-icon:before{content:"\e610"}.gficon-gravityforms-upload-icon:before{content:"\e612"}.gficon-gravityforms-download-icon:before{content:"\e611"}.gficon-gravityforms-filter-icon:before{content:"\e61d"}.gficon-gravityforms-settings-icon:before{content:"\e615"}.gficon-gravityforms-eye-icon:before{content:"\e61c"}.gficon-gravityforms-star-icon:before{content:"\e61e"}.gficon-gravityforms-cross-icon:before{content:"\e61f"}.gficon-gravityforms-tick-icon:before{content:"\e620"}.gficon-gravityforms-credit-icon:before{content:"\e621"}.gficon-gravityforms-file-icon:before{content:"\e622"}.gficon-gravityforms-search-icon:before{content:"\e623"}.gficon-gravityforms-bullet-icon:before{content:"\e624"}.gficon-gravityforms-bug-icon:before{content:"\e619"}.gficon-gravityforms-docs-icon:before{content:"\e61a"}.gficon-gravityforms-vcard-icon:before{content:"\e61b"}.gficon-gravityforms-info-icon:before{content:"\e616"}.gficon-gravityforms-favorite-icon:before{content:"\e617"}.gficon-gravityforms-chat-icon:before{content:"\e618"}.gficon-gravityforms-zero-icon:before{content:"\e601"}.gficon-gravityforms-nine-icon:before{content:"\e602"}.gficon-gravityforms-eight-icon:before{content:"\e603"}.gficon-gravityforms-seven-icon:before{content:"\e604"}.gficon-gravityforms-six-icon:before{content:"\e605"}.gficon-gravityforms-five-icon:before{content:"\e606"}.gficon-gravityforms-four-icon:before{content:"\e607"}.gficon-gravityforms-three-con:before{content:"\e608"}.gficon-gravityforms-two-icon:before{content:"\e609"}.gficon-gravityforms-one-icon:before{content:"\e60a"}.gficon-gravityforms-css-icon:before{content:"\e60f"}.gficon-gravityforms-dollar-icon:before{content:"\e613"}.gficon-gravityforms-slideoff-icon:before{content:"\e625"}.gficon-gravityforms-slideon-icon:before{content:"\e626"}.gficon-settings-cog:before{content:"\e634"}.gficon-gravityforms-spinner-icon:before{content:"\e628"}.gficon-tick:before{content:"\e629"}.gficon-cross:before{content:"\e62a"}.gficon-search:before{content:"\e62b"}.gficon-pencil:before{content:"\e62c"}.gficon-exclamation:before{content:"\e635"}.gficon-forbid:before{content:"\e636"}.gficon-star:before{content:"\e639"}.gficon-star-hollow:before{content:"\e63a"}.gficon-trash:before{content:"\e62d"}.gficon-arrow-up:before{content:"\e62e"}.gficon-arrow-down:before{content:"\e62f"}.gficon-arrow-left:before{content:"\e630"}.gficon-arrow-right:before{content:"\e631"}.gficon-add:before{content:"\e632"}.gficon-subtract:before{content:"\e633"}.gficon-close:before{content:"\e63b"}.gficon-support:before{content:"\e63c"}.gficon-send:before{content:"\e63d"}.gficon-star1:before{content:"\e639";color:#FF9800;font-size:1.2em;margin-top:.188em}.gficon-star0:before{content:"\e63a";color:#CCC;font-size:1.2em;margin-top:.188em}.gfield_creditcard_warning_message .gficon-forbid{color:#9C0F17!important;margin-right:1em}.gficon-2x{font-size:2em}.gficon-3x{font-size:3em}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@-webkit-keyframes rotation{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes rotation{0%{-moz-transform:rotate(0)}100%{-moz-transform:rotate(360deg)}}.gficon-spin{animation:rotation 2s linear infinite;-webkit-animation:rotation 2s linear infinite;-moz-animation:rotation 2s linear infinite;text-shadow:0 0 2px rgba(255,255,255,.2);margin-left:2px}.gficon-gravityforms-spinner-icon.gficon-spin{color:#D54E21;font-size:1.5em}html[dir=rtl] .gform_wrapper *,html[dir=rtl] .gform_wrapper .gform_body,html[dir=rtl] .gform_wrapper .gform_footer,html[dir=rtl] .gform_wrapper button,html[dir=rtl] .gform_wrapper div.validation_error,html[dir=rtl] .gform_wrapper form,html[dir=rtl] .gform_wrapper h3.gform_title,html[dir=rtl] .gform_wrapper input[type=text],html[dir=rtl] .gform_wrapper input[type=email],html[dir=rtl] .gform_wrapper input[type=password],html[dir=rtl] .gform_wrapper input[type=url],html[dir=rtl] .gform_wrapper input[type=tel],html[dir=rtl] .gform_wrapper input[type=submit],html[dir=rtl] .gform_wrapper input[type=button],html[dir=rtl] .gform_wrapper select,html[dir=rtl] .gform_wrapper span.gform_description,html[dir=rtl] .gform_wrapper table tr td.gfield_list_icons,html[dir=rtl] .gform_wrapper textarea,html[dir=rtl] .gform_wrapper ul li,html[dir=rtl] .gform_wrapper ul li.gfield,html[dir=rtl] .gform_wrapper ul li.gfield input,html[dir=rtl] .gform_wrapper ul li.gfield select,html[dir=rtl] .gform_wrapper ul li.gfield textarea,html[dir=rtl] .gform_wrapper ul li.gfield.gfield_html{text-align:right;direction:rtl}html[dir=rtl] .gform_wrapper ul,html[dir=rtl] .gform_wrapper ul li{margin-right:0!important;padding-right:0!important}html[dir=rtl] .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,html[dir=rtl] .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,html[dir=rtl] .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,html[dir=rtl] .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li{margin:0!important;direction:rtl!important}html[dir=rtl] .gform_wrapper table.gfield_list td,html[dir=rtl] .gform_wrapper table.gfield_list th{padding-left:16px;padding-right:0}.gform_wrapper table.gfield_list tr td.gfield_list_icons,.gform_wrapper table.gfield_list tr td:last-child{padding:0 4px 0 0!important}html[dir=rtl] .gform_wrapper.gf_browser_gecko .left_label input[type=file],html[dir=rtl] .gform_wrapper.gf_browser_gecko .right_label input[type=file],html[dir=rtl] .gform_wrapper.gf_browser_gecko .top_label input[type=file]{width:55%!important;direction:rtl!important}html[dir=rtl] .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice{float:right!important;margin:3px 5px 3px 0!important}html[dir=rtl] .gform_wrapper .chosen-container ul.chosen-choices li.search-field{float:right!important}html[dir=rtl] .gform_wrapper .right_label .gfield_label{text-align:left!important}body .gform_wrapper.gf_rtl_wrapper .gform_footer,body .gform_wrapper.gf_rtl_wrapper .gform_heading,body .gform_wrapper.gf_rtl_wrapper button,body .gform_wrapper.gf_rtl_wrapper div.validation_error,body .gform_wrapper.gf_rtl_wrapper h3.gform_title,body .gform_wrapper.gf_rtl_wrapper input[type=text],body .gform_wrapper.gf_rtl_wrapper input[type=email],body .gform_wrapper.gf_rtl_wrapper input[type=password],body .gform_wrapper.gf_rtl_wrapper input[type=url],body .gform_wrapper.gf_rtl_wrapper input[type=tel],body .gform_wrapper.gf_rtl_wrapper input[type=submit],body .gform_wrapper.gf_rtl_wrapper input[type=button],body .gform_wrapper.gf_rtl_wrapper select,body .gform_wrapper.gf_rtl_wrapper span.gform_description,body .gform_wrapper.gf_rtl_wrapper table tr td.gfield_list_icons,body .gform_wrapper.gf_rtl_wrapper textarea,body .gform_wrapper.gf_rtl_wrapper ul li,body .gform_wrapper.gf_rtl_wrapper ul li.gfield,body .gform_wrapper.gf_rtl_wrapper ul li.gfield input,body .gform_wrapper.gf_rtl_wrapper ul li.gfield select,body .gform_wrapper.gf_rtl_wrapper ul li.gfield textarea,body .gform_wrapper.gf_rtl_wrapper ul li.gfield.gfield_html,body.rtl .gform_wrapper *,body.rtl .gform_wrapper .gform_body,body.rtl .gform_wrapper .gform_footer,body.rtl .gform_wrapper button,body.rtl .gform_wrapper div.validation_error,body.rtl .gform_wrapper form,body.rtl .gform_wrapper h3.gform_title,body.rtl .gform_wrapper input[type=text],body.rtl .gform_wrapper input[type=email],body.rtl .gform_wrapper input[type=password],body.rtl .gform_wrapper input[type=url],body.rtl .gform_wrapper input[type=tel],body.rtl .gform_wrapper input[type=submit],body.rtl .gform_wrapper input[type=button],body.rtl .gform_wrapper select,body.rtl .gform_wrapper span.gform_description,body.rtl .gform_wrapper table tr td.gfield_list_icons,body.rtl .gform_wrapper textarea,body.rtl .gform_wrapper ul li,body.rtl .gform_wrapper ul li.gfield,body.rtl .gform_wrapper ul li.gfield input,body.rtl .gform_wrapper ul li.gfield select,body.rtl .gform_wrapper ul li.gfield textarea,body.rtl .gform_wrapper ul li.gfield.gfield_html{text-align:right!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper ul,body .gform_wrapper.gf_rtl_wrapper ul li,body.rtl .gform_wrapper ul,body.rtl .gform_wrapper ul li{margin-right:0!important;padding-right:0!important}body .gform_wrapper.gf_rtl_wrapper .gfield_checkbox li input,body .gform_wrapper.gf_rtl_wrapper .gfield_checkbox li input[type=checkbox],body .gform_wrapper.gf_rtl_wrapper .gfield_radio li input[type=radio],body.rtl .gform_wrapper .gfield_checkbox li input,body.rtl .gform_wrapper .gfield_checkbox li input[type=checkbox],body.rtl .gform_wrapper .gfield_radio li input[type=radio]{float:right!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body .gform_wrapper.gf_rtl_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body .gform_wrapper.gf_rtl_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body.rtl .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body.rtl .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body.rtl .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body.rtl .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li{margin:0 24px 0 0!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table{direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html blockquote,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html p,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html span,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table td,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table th{text-align:right!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list td,body .gform_wrapper.gf_rtl_wrapper table.gfield_list th,body.rtl .gform_wrapper table.gfield_list td,body.rtl .gform_wrapper table.gfield_list th{padding:0!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list{direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list thead th{text-align:right!important}body .gform_wrapper.gf_rtl_wrapper table input,body.rtl .gform_wrapper table input{float:right!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container-multi ul.chosen-choices li.search-choice,body.rtl .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice{float:right!important;margin:3px 5px 3px 0!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container ul.chosen-choices li.search-field,body.rtl .gform_wrapper .chosen-container ul.chosen-choices li.search-field{float:right!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_label,body.rtl .gform_wrapper ul:not(.top_label) .gfield_label{float:right!important;margin:0 0 0 15px!important}body .gform_wrapper.gf_rtl_wrapper .right_label .gfield_label,body.rtl .gform_wrapper .right_label .gfield_label{text-align:left!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_description,body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .instruction,body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) div.ginput_complex,body.rtl .gform_wrapper ul:not(.top_label) .gfield_description,body.rtl .gform_wrapper ul:not(.top_label) .instruction,body.rtl .gform_wrapper ul:not(.top_label) div.ginput_complex{margin-right:31%!important;margin-left:0!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_description,body.rtl .gform_wrapper ul:not(.top_label) .gfield_description{padding:0}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) li.gfield_html_formatted,body.rtl .gform_wrapper ul:not(.top_label) li.gfield_html_formatted{margin-left:0!important;margin-right:32%!important}body .gform_wrapper.gf_rtl_wrapper .gform_footer.left_label,body .gform_wrapper.gf_rtl_wrapper .gform_footer.right_label,body.rtl .gform_wrapper .gform_footer.left_label,body.rtl .gform_wrapper .gform_footer.right_label{padding:16px 31% 10px 0!important}body .gform_wrapper.gf_rtl_wrapper .ginput_right select,body.rtl .gform_wrapper .ginput_right select,html[dir=rtl] .gform_wrapper .ginput_right select{margin-right:2px}body .gform_wrapper.gf_rtl_wrapper img.ui-datepicker-trigger,body.rtl .gform_wrapper img.ui-datepicker-trigger,html[dir=rtl] .gform_wrapper img.ui-datepicker-trigger{margin:4px 2px 0 0}body .gform_wrapper.gf_rtl_wrapper .gf_progressbar_percentage span,body.rtl .gform_wrapper .gf_progressbar_percentage span,html[dir=rtl] .gform_wrapper .gf_progressbar_percentage span{display:block;width:auto;float:left!important}body .gform_wrapper.gf_rtl_wrapper .gf_step span.gf_step_number,body.rtl .gform_wrapper .gf_step span.gf_step_number,html[dir=rtl] .gform_wrapper .gf_step span.gf_step_number{float:right!important}body .gform_wrapper.gf_rtl_wrapper .gform_wrapper .gf_step,body.rtl .gform_wrapper .gf_step,html[dir=rtl] .gform_wrapper .gf_step{margin:0 0 10px 10px!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container .chosen-results li.active-result,body.rtl .gform_wrapper .chosen-container .chosen-results li.active-result,html[dir=rtl] .gform_wrapper .chosen-container .chosen-results li.active-result{padding-right:24px!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close,body.rtl .gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close,html[dir=rtl] .gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close{right:5px!important}body .gform_wrapper.gf_rtl_wrapper .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span,body.rtl .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span,html[dir=rtl] .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span{display:block;margin-right:19px!important}html[dir=rtl] div#preview_hdr span.actionlinks{float:left!important;text-align:left!important}html[dir=rtl] div#preview_hdr div:first-child{background-position:right center!important;padding-left:10px!important;padding-right:10px!important}html[dir=rtl] .gform_wrapper .gf_invisible,html[dir=rtl] .gform_wrapper .gfield_visibility_hidden{left:auto;right:-9999px}html[dir=rtl] .gform_wrapper .gf_progressbar_percentage{border-radius:4px 20px 20px 4px}html[dir=rtl] body.wp-admin *{direction:rtl!important}html[dir=rtl] body.wp-admin li.gf_form_switcher{display:block;position:relative;right:0}html[dir=rtl] body.wp-admin div#add_fields{float:left}html[dir=rtl] body.wp-admin .button-title-link div.add-buttons-title{position:relative;background-image:url(../images/gf-expand-title-bg-rtl.png);background-position:left 0;text-align:right;padding:8px 14px 0 0!important}html[dir=rtl] body.wp-admin ul#gf_form_toolbar_links{padding:0 6px 0 0!important}html[dir=rtl] body.wp-admin .top_label .gfield_label{margin:8px 6px 4px 0}html[dir=rtl] body.wp-admin .gfield_checkbox li input,html[dir=rtl] body.wp-admin .gfield_checkbox li input[type=checkbox],html[dir=rtl] body.wp-admin .gfield_radio li input[type=radio]{float:right!important;margin-left:2px!important;margin-right:1px!important}html[dir=rtl] body.wp-admin .ginput_complex .ginput_left,html[dir=rtl] body.wp-admin .ginput_complex .ginput_right{float:right!important}html[dir=rtl] body.wp-admin .gfield_time_hour,html[dir=rtl] body.wp-admin .gfield_time_minute{float:right}html[dir=rtl] body.wp-admin #TB_ajaxWindowTitle,html[dir=rtl] body.wp-admin .gf_new_form_modal_container .setting-row label,html[dir=rtl] body.wp-admin .gf_new_form_modal_container div.submit-row input#save_new_form.button,html[dir=rtl] body.wp-admin .gfield_date_day,html[dir=rtl] body.wp-admin .gfield_date_month,html[dir=rtl] body.wp-admin .gfield_date_year{float:right!important}html[dir=rtl] body.wp-admin img#gfield_input_datepicker_icon{left:-4px}html[dir=rtl] body.wp-admin div#gf_nofield_1_instructions{background-position:0 -1995px}html[dir=rtl] body.wp-admin div#gf_nofield_1_instructions span{margin-left:300px}html[dir=rtl] body.wp-admin ul#gform_fields li#no-fields div.newform_notice span{position:absolute;right:340px;top:40px;background-position:0 -1880px}html[dir=rtl] body.wp-admin #TB_closeAjaxWindow{float:left!important}html[dir=rtl] body.wp-admin .gform_tabs li.active a{position:relative;right:-1px;padding:6px 10px!important}html[dir=rtl] body.wp-admin a.tooltip,html[dir=rtl] body.wp-admin a.tooltip_bottomleft,html[dir=rtl] body.wp-admin a.tooltip_left{overflow:hidden}html[dir=rtl] body.wp-admin h2.gf_admin_page_title span.gf_admin_page_subtitle span.gf_admin_page_formid{margin:0 0 0 8px!important}html[dir=rtl] body.wp-admin p.submit input.gf_settings_savebutton{float:right}html[dir=rtl] .gform_wrapper .gfield_time_hour i,html[dir=rtl] div#preview_hdr span.toggle_helpers{float:left}html[dir=rtl] body.wp-admin p[style]{text-align:right!important}html[dir=rtl] body.wp-admin div.delete-alert{padding:0 20px 20px}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left:nth-of-type(odd),html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_full+span.ginput_right{padding-right:0!important;padding-left:16px!important}html[dir=rtl] .gform_wrapper span.ginput_left,html[dir=rtl] .gform_wrapper ul.gform_fields li.gfield{padding-left:16px;padding-right:0}html[dir=rtl] .gform_wrapper ul.gform_fields li.gfield.gfield_error{padding-right:16px!important}html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_2 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_3 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_4 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_5 span:first-child{margin-right:0!important;padding-right:0;margin-left:-4px}html[dir=rtl] div.ginput_container_name span{padding-right:0;padding-left:16px;margin-right:0;margin-left:-4px}html[dir=rtl] div#preview_hdr span.toggle_helpers input,html[dir=rtl] div#preview_hdr span.toggle_helpers label{display:-moz-inline-stack;display:inline-block}html[dir=rtl] div#preview_note{border-right:4px solid #ffba00;border-left:none!important}html[dir=rtl] .gform_wrapper span.gfield_required{margin-left:0;margin-right:4px}html[dir=rtl] .gform_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message span{padding:0 24px 14px 0;background-position:100% top}html[dir=rtl] .gform_wrapper .gform_card_icon_container div,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_left,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_right,html[dir=rtl] .gform_wrapper span.ginput_price{float:right}.gform_wrapper .gfield_description,html[dir=rtl] .gform_wrapper .description,html[dir=rtl] .gform_wrapper .gsection_description{padding:10px 0 10px 16px}html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{right:6px;top:-1px;width:32px}html[dir=rtl] div.form_saved_message,html[dir=rtl] div.form_saved_message *{text-align:center!important}html[dir=rtl] .gform_wrapper .gform_fileupload_multifile .gform_drop_area,html[dir=rtl] .gform_wrapper div.validation_error,html[dir=rtl] .gform_wrapper span.gform_drop_instructions{text-align:center}html[dir=rtl] .gform_wrapper .gfield_checkbox li label,html[dir=rtl] .gform_wrapper .gfield_radio li label{margin:0 4px 0 0}html[dir=rtl] .gform_wrapper:not(.gf_browser_gecko):not(.gf_browser_ie) select{background-position:3.5% center}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_left,html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_right{padding-left:16px;padding-right:0}@media only screen and (max-width:761px),(min-device-width:768px) and (max-device-width:1024px){html[dir=rtl] .gform_wrapper table.gfield_list{border:0}html[dir=rtl] .gform_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td:before{margin:8px 1px 3px 0}html[dir=rtl] .gform_wrapper table.gfield_list td{clear:both}html[dir=rtl] .gform_wrapper table.gfield_list td:last-child(2){padding-bottom:4px!important}html[dir=rtl] .gform_wrapper table.gfield_list td.gfield_list_icons{vertical-align:middle;padding:0 4px 4px 0!important}}@media only screen and (min-width:641px){html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_label{float:right!important;margin:0 0 0 15px!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description,html[dir=rtl] .gform_wrapper ul:not(.top_label) .ginput_container:not(.ginput_container_time){width:70%;margin-right:29%;margin-left:0}html[dir=rtl] .gform_wrapper .ul:not(.top_label) .instruction,html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description{margin-right:29%!important;margin-left:0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) div.ginput_complex{margin-right:31%!important;margin-left:0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description{padding:10px 0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) li.gfield_html_formatted{margin-left:0!important;margin-right:32%!important}html[dir=rtl] .gform_wrapper .gform_footer.left_label,html[dir=rtl] .gform_wrapper .gform_footer.right_label{padding:16px 31% 10px 0!important}html[dir=rtl] .gform_wrapper .gform_footer a.gform_save_link,html[dir=rtl] .gform_wrapper .gform_page_footer a.gform_save_link{margin-right:16px}html[dir=rtl] .gform_wrapper table input{float:right!important}html[dir=rtl] .gform_wrapper .left_label li.gfield .gfield_password_strength,html[dir=rtl] .gform_wrapper .right_label li.gfield .gfield_password_strength{margin-left:0;margin-right:29%;width:70%;text-align:center!important}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left,html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right+span.ginput_left.address_zip{margin-right:0}.gform_wrapper .ginput_complex .ginput_right,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_left{margin:0 0 0 -4px}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right+span.ginput_left{padding-right:0!important;margin-right:0!important}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_right{margin-right:0}html[dir=rtl] .gform_wrapper ul li.gf_right_half{margin-left:0}html[dir=rtl] .gform_wrapper .gform_footer input.button,html[dir=rtl] .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .gform_wrapper .gform_page_footer input.button,html[dir=rtl] .gform_wrapper .gform_page_footer input[type=submit]{margin:0 0 0 16px}}@media only screen and (max-width:641px){html[dir=rtl] body .gform_wrapper .gform_footer .button.gform_button,html[dir=rtl] body .gform_wrapper .gform_footer a.gform_save_link,html[dir=rtl] body .gform_wrapper .gform_page_footer,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_button,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_next_button,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_previous_button,html[dir=rtl] body .gform_wrapper .gform_page_footer a.gform_save_link{text-align:center!important}html[dir=rtl] div.ginput_container_name span{padding-left:0}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left:nth-of-type(odd),html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_full+span.ginput_right{padding-right:0!important;padding-left:0!important}html[dir=rtl] .gform_footer,html[dir=rtl] .gform_page_footer{padding-left:16px}html[dir=rtl] .gform_wrapper{padding-right:16px}}body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .left_label input[type=file],body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .right_label input[type=file],body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .top_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .left_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .right_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .top_label input[type=file]{width:55%!important;direction:rtl}*{direction:ltr}#gform_fields *{box-sizing:border-box}.gf_admin_notice{background-color:#fff;border-left:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:inline-block;font-size:14px;line-height:19px;margin:25px 20px 24px 2px;padding:11px 15px;text-align:left}.gf_help_content,.gf_help_content p{line-height:1.6}input,textarea{outline-style:none;font-family:inherit;font-size:inherit}input,select,ul{margin:0}li{list-style:none}#wpbody-content{position:relative;width:99%}.wrap.gforms_edit_form{margin-bottom:20px!important;overflow:visible!important}.wrap.gforms_edit_form>#no-fields{display:none!important}ul#gform_fields{padding:0;margin:0}select{font-size:inherit;font-family:verdana,sans-serif;padding:2px 0}.ui-datepicker{display:none}.field_hover.gform_pending_delete,.gform_pending_delete{background-color:rgba(255,223,224,.5);color:#790000!important;background-image:none;border:1px solid rgba(121,0,0,1)!important;-webkit-box-shadow:0 1px 1px 0 transparent;-moz-box-shadow:0 1px 1px 0 transparent;box-shadow:0 1px 1px 0 transparent}table.xwidefat{width:99%!important}div.wrap{position:relative}.hr-divider{background-color:#FFF;height:1px;overflow:hidden;border-top:1px solid #E6E6E6;border-bottom:1px solid #FFF;margin:24px 0;clear:both}div.delete-alert{padding:20px 0 20px 20px;margin-bottom:30px}div.gf_delete_notice{margin-bottom:10px}div.gforms_green_alert,div.gforms_help_alert,div.gforms_red_alert{background-color:#fff;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:inline-block;font-family:"lucida sans","lucida grande",lucida,sans-serif;font-size:12px;line-height:1.6;margin:12px 24px -6px;padding:11px 15px;position:relative;text-align:left}div.gforms_help_alert{border-left:4px solid #FFBA00}html[dir=rtl] div.gforms_help_alert{border-right:4px solid #FFBA00;border-left:none!important}div.gforms_help_alert i.fa{color:#D4662C}div.gforms_red_alert{border-left:4px solid #DD3D36}html[dir=rtl] div.gforms_red_alert{border-right:4px solid #DD3D36;border-left:none!important}div.gforms_red_alert i.fa{color:#DD3D36}div.gforms_green_alert{border-left:4px solid #7AD03A}html[dir=rtl] div.gforms_green_alert{border-right:4px solid #7AD03A;border-left:none!important}div.gforms_green_alert i.fa{color:#7AD03A}div.gforms_helpbox{background-color:#fff;margin:10px 0;padding:15px 15px 11px;font-size:14px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}div.gforms_code,div.gforms_code pre{font-family:Consolas,"Bitstream Vera Sans Mono","Courier New",Courier,monospace!important;font-size:13px}div.gforms_helpbox select{width:460px}div.gforms_helpbox ul.resource_list{margin-top:4px}div.gforms_helpbox ul.resource_list li{margin:0 0 12px!important}div.gforms_helpbox ul.resource_list li a{text-decoration:none;margin-left:2px}div.gforms_helpbox ul.resource_list li a:active,div.gforms_helpbox ul.resource_list li a:hover{text-decoration:underline}div.gforms_code{border:1px solid #D2E0EB;background-color:#E2EDFF;margin:10px 0;padding:10px;width:700px}div.gforms_code pre{display:block;font-weight:400!important;line-height:18px;margin:0;overflow:hidden;z-index:100;position:relative;white-space:pre-wrap;word-wrap:break-word;padding:6px 10px 6px 0}div.delete-alert input.button{border:1px solid #9E0B0F;background:#9E0B0F;color:#FFF;-webkit-box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);text-shadow:none!important}div.delete-alert input.button:active,div.delete-alert input.button:hover{border:1px solid #DD3D36;background:#DD3D36;color:#FFF;-webkit-box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);text-shadow:none!important}#field_settings{margin:0 0 12px;padding-top:6px;clear:both}#field_settings ul li label{display:block;line-height:1.5;margin:0 8px 3px 0}.form_head .form_delete_iconx,.gform_heading .form_edit_iconx{display:block}.settings_control_container{height:18px}.ui-tabs-panel ul li label{margin-bottom:8px!important}div#field_settings.ui-tabs{margin-top:10px}li.field_setting input[type=text],li.field_setting input[type=email],li.field_setting input[type=password],li.field_setting input[type=number],li.field_setting select{margin-top:4px}.inline{display:-moz-inline-stack!important;display:inline-block!important}label.float_label{float:left;width:40px;padding:2px 0 0}#gform_heading,.gform_settings_container{border:1px solid transparent;width:480px!important}#gform_fields li{border:1px solid transparent;padding:0 8px 8px;overflow-y:visible}.field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],.field_sublabel_hidden_label .ginput_complex.ginput_container select{margin-bottom:.75rem}#gform_fields li ul li{padding:2px 0 4px}.gforms_form_settings li{border:1px solid transparent;padding:2px 0 4px;overflow:hidden}.gform_page_names li{padding:5px 0!important}#gform_heading{padding:8px 10px 10px;overflow:hidden;margin-bottom:10px;position:relative}.gform_settings_container{padding:10px}.field_hover:not(.gform_pending_delete),.field_selected{border:1px solid #D2E0EB!important;background-image:url(../images/gf-fieldsettings-header.jpg);background-position:0 0;background-repeat:repeat-x;background-color:#F6FBFD}#gform_fields{width:500px!important}.gfield_time_hour,.gfield_time_minute{width:70px;float:left;margin-bottom:4px}.gfield_time_hour i{font-style:normal!important;font-family:sans-serif!important}.selectable.gfield{margin-bottom:10px}.gfield_date_day,.gfield_date_month,.gfield_date_year{width:50px;float:left;margin-bottom:4px}.gfield_date_year{width:65px}.gfield_date_day input,.gfield_date_month input,.gfield_date_year input{width:80%!important}.gfield_date_year input{width:83%!important}.gfield_date_dropdown_day,.gfield_date_dropdown_month,.gfield_date_dropdown_year{margin-right:6px;vertical-align:top;display:-moz-inline-stack;display:inline-block}.gfield_time_ampm select{width:50px!important}.gfield_time_hour input,.gfield_time_minute input{width:80%!important}.field_hover:not(.gform_pending_delete){-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.field_selected{-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin-bottom:16px!important}div.pagination_container{margin:8px 0 12px!important}div#gform_pagination,div#gform_pagination.field_selected{margin-bottom:10px}div#gform_last_page_settings.gform_settings_container .settings_control_container a,div#gform_pagination.gform_settings_container .settings_control_container a{margin-top:-3px}.field_name_first,.field_name_last,.field_name_middle{width:33.3%;float:left}.field_name_first input,.ginput_complex .ginput_left input{width:98%!important}.field_name_last input{width:93%!important}.datepicker{width:100px!important}.wp-admin div#ui-datepicker-div div.ui-datepicker-title select{font-size:inherit!important;padding:0;height:auto!important;font-weight:400!important}img#gfield_input_datepicker_icon{position:relative;top:3px;left:4px}#date_picker_container{margin:8px 0}#gfield_icon_url_container{margin-top:5px}.ginput_complex .ginput_left{width:50%;display:-moz-inline-stack;display:inline-block;padding-right:16px}.ginput_complex .ginput_right{width:50%;display:-moz-inline-stack;display:inline-block}.ginput_complex.ginput_container.ginput_container_email.ginput_confirm_email .ginput_right{margin-left:-4px}.ginput_complex input,.ginput_complex select{width:100%}.gfield_time_ampm label,.gfield_time_ampm_shim,.gfield_time_hour label,.gfield_time_minute label,.ginput_complex label{display:block;margin:4px 0 8px 3px;font-size:90%}td.content_center,th.content_center{text-align:center!important}tr img[src$='/images/active0.png'],tr img[src$='/images/active1.png']{width:25px;height:auto;display:-moz-inline-stack;display:inline-block;margin:3px 0 0}div.ginput_container_name span{display:-moz-inline-stack;display:inline-block;vertical-align:top;padding-right:16px;margin-right:-4px}div.ginput_complex.ginput_container.has_last_name.no_suffix.gf_name_has_2.ginput_container_name span.name_last,div.ginput_complex.ginput_container.has_last_name.no_suffix.gf_name_has_3.ginput_container_name span.name_last,div.ginput_container_name span:last-child{padding-right:0!important}div.ginput_complex.ginput_container.gf_name_has_1 span{width:100%}div.ginput_complex.ginput_container.gf_name_has_2 span{width:50%}div.ginput_complex.ginput_container.gf_name_has_3 span{width:33.3%}div.ginput_complex.ginput_container.gf_name_has_4 span{width:25%}div.ginput_complex.ginput_container.has_last_name.no_suffix.gf_name_has_4.ginput_container_name span.name_last{padding-right:0}div.ginput_complex.ginput_container.gf_name_has_5 span{width:19.95%}div.ginput_complex.ginput_container.gf_name_has_2 span:first-child,div.ginput_complex.ginput_container.gf_name_has_3 span:first-child,div.ginput_complex.ginput_container.gf_name_has_4 span:first-child,div.ginput_complex.ginput_container.gf_name_has_5 span:first-child{margin-left:0!important}.gform_wrapper .ginput_complex span.ginput_left+input.gform_hidden+span.ginput_left{margin-left:1.6%;padding-right:0}.top_label .gfield_label{display:block;margin:16px 0 8px;font-weight:700}.left_label .gfield_label,.right_label .gfield_label{margin:2px 15px 0 0;width:29%;float:left;font-weight:700}.right_label .gfield_label{text-align:right}.left_label .gform_fileupload_multifile,.right_label .gform_fileupload_multifile{margin-left:31%}.gf_invisible{visibility:hidden}.hidden_label .gfield_label{visibility:hidden;line-height:0}.gfield.left_label .gfield_admin_icons,.gfield.right_label .gfield_admin_icons{padding-bottom:10px}.gfield label.hidden_sub_label{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.gfield .copy_values_option_container{padding-bottom:10px}.gfield .copy_values_option_container .copy_values_enabled{width:auto!important}.left_label ul.gfield_checkbox,.left_label ul.gfield_radio,.right_label ul.gfield_checkbox,.right_label ul.gfield_radio{margin-left:32%}.top_label input.small,.top_label select.small{width:25%}.top_label input.medium,.top_label select.medium{width:50%}.hidden_label input.large,.hidden_label select.large,.hidden_label textarea.textarea,.top_label input.large,.top_label select.large,.top_label textarea.textarea{width:100%}.left_label input.small,.left_label select.small,.right_label input.small,.right_label select.small{width:15%}.left_label input.medium,.left_label select.medium,.right_label input.medium,.right_label select.medium{width:35%}.left_label input.large,.left_label select.large,.right_label input.large,.right_label select.large,textarea.textarea{width:67%}.left_label div.ginput_complex,.right_label div.ginput_complex{width:67%;float:left}.left_label div.ginput_container,.left_label label.gfield_label,.right_label div.ginput_container,.right_label label.gfield_label{margin-top:12px}h2.gsection_title{margin:16px 0;padding:0 0 16px!important;letter-spacing:normal!important;font-style:normal!important;font-weight:700;font-size:20px;font-family:helvetica,arial,sans-serif;width:100%;border-bottom:1px solid #CCC!important}h3.gf_add_fields{margin:0 0 .5em!important}.gsection .gfield_label{font-weight:700;font-size:16px;font-family:helvetica,arial,sans-serif}.gsection_description{width:100%;font-size:13px;line-height:1.5;clear:both;padding-top:4px;font-family:sans-serif}.gfield_date_year+.gfield_description,.gsection_description{padding:0 0 8px}#notification_action_type{display:none}#notification_logic_type{margin-left:5px}.gfield_label{word-break:break-all}.top_label .gfield_list{width:96%}.top_label .gf_list_one_column{width:48%}table.gfield_list th{text-align:left;font-size:12px!important}.gfield_list input{width:98%}.gform_wrapper table.gfield_list{border-spacing:0}.gform_wrapper table.gfield_list thead,.gform_wrapper table.gfield_list tr{padding:0;margin:0}.gform_wrapper table.gfield_list td,.gform_wrapper table.gfield_list th{padding:0 0 .5em!important}.gform_wrapper table.gfield_list td+td,.gform_wrapper table.gfield_list th+th{padding:0 0 .5em .7em!important}.gform_wrapper .left_label .gfield_list,.gform_wrapper .right_label .gfield_list{width:64%}.gform_wrapper .top_label .gfield_list{width:96%}.gform_wrapper .left_label .gf_list_one_column,.gform_wrapper .right_label .gf_list_one_column{width:45%}.gform_wrapper .top_label .gf_list_one_column{width:46%}.gform_wrapper .gfield_list input{width:98%}.gfield_icon_disabled{cursor:default!important;filter:alpha(opacity=60);-moz-opacity:.6;-khtml-opacity:.6;opacity:.6}body .gform_wrapper table.gfield_list.gfield_list_container tbody tr.gfield_list_row_odd.gfield_list_group td.gfield_list_icons{min-width:45px!important;vertical-align:middle!important}ul.gfield_checkbox,ul.gfield_radio{margin:6px 0}.gfield_checkbox li,.gfield_radio li{position:relative;padding:0!important}.gfield_checkbox li label,.gfield_radio li label{display:block;margin:0 0 0 24px;padding:0!important;width:auto;line-height:1.5;vertical-align:top}.gchoice_select_all{font-weight:700}.gfield_checkbox li input,.gfield_checkbox li input[type=checkbox],.gfield_radio li input[type=radio]{float:left;margin-top:2px}.description,.gfield_description,.instruction{font-size:.8rem;line-height:1.5;clear:both;padding:10px 0 0;font-family:inherit}.gfield_consent_description{width:100%;max-height:320px;overflow-y:scroll;border:1px solid #ddd;margin-top:12px;padding:6px 8px}.description_above .gfield_description.gfield_consent_description,.description_below .gfield_description.gfield_consent_description{padding:6px 8px}.entry-view-field-value .gfield_consent_description{width:calc(100% - 40px)}.description_above .gfield_description{padding:0 0 10px}.field_description_below .gfield_description{padding:10px 0 0}.left_label .gfield_description,.left_label .instruction,.right_label .gfield_description,.right_label .instruction{margin-left:32.5%}.left_label .gsection .gsection_description,.right_label .gsection .gsection_description{margin-left:0;padding-left:0;padding-top:10px;line-height:1.5}.gfield_required{color:#9E0B0F;margin-left:4px}textarea.small{height:80px}textarea.medium{height:150px}textarea.large{height:250px}.gform_footer{padding:10px 0 10px 10px;margin:6px 0 0;border-top:1px dotted #CCC!important}.gform_wrapper .gform_footer+.left_label,.gform_wrapper .gform_footer+.right_label{padding:16px 0 10px 31%}div.gfield_admin_icons{height:24px;cursor:move;padding-top:6px}div.gform_admin_icons{height:20px}ul#gform_fields.left_label div.gfield_admin_icons,ul#gform_fields.right_label div.gfield_admin_icons{height:30px}div.gfield_admin_icons div.gfield_admin_header_title,div.gform_admin_icons div.gform_admin_header_title,div.settings_control_container div.gfield_admin_header_title{display:none}.field_hover div.gfield_admin_icons div.gfield_admin_header_title,.field_hover div.gform_admin_icons div.gform_admin_header_title,.field_hover div.settings_control_container div.gfield_admin_header_title,.field_selected div.gfield_admin_icons div.gfield_admin_header_title,.field_selected div.gform_admin_icons div.gform_admin_header_title,.field_selected div.settings_control_container div.gfield_admin_header_title{display:block;float:left;font-size:11px;font-weight:700;color:#47759B;letter-spacing:.025rem}div.settings_control_container div.gfield_admin_header_title{margin-top:-4px}.gfield{position:relative}.field_hover .field_delete_icon,.field_hover .field_duplicate_icon,.field_hover .field_edit_icon,.field_hover .form_delete_icon,.field_hover .form_edit_icon,.field_selected .field_delete_icon,.field_selected .field_duplicate_icon,.field_selected .field_edit_icon,.field_selected .form_delete_icon,.field_selected .form_edit_icon{display:block!important;cursor:pointer;color:#47759B;filter:alpha(opacity=50);opacity:.5}.field_hover .field_delete_icon:hover,.field_hover .field_duplicate_icon:hover,.field_hover .field_edit_icon:hover,.field_hover .form_delete_icon:hover,.field_hover .form_edit_icon:hover,.field_selected .field_delete_icon:hover,.field_selected .field_duplicate_icon:hover,.field_selected .field_edit_icon:hover,.field_selected .form_delete_icon:hover,.field_selected .form_edit_icon:hover{color:#47759B;filter:alpha(opacity=100);opacity:1}.field_edit_icon,.form_edit_icon{display:none;float:right;margin-left:6px}.edit_icon_expanded{margin-top:-1px}.form_edit_icon{margin-top:-4px!important}.form_edit_icon.edit_icon_expanded{margin-top:-6px!important}.entries_edit_icon{float:right;margin:2px 6px 0 0}.field_delete_icon,.form_delete_icon{display:none;float:right;margin:-1px 0 0 6px!important}.field_duplicate_icon{display:none;float:right;margin:0 0 0 8px}.field_duplicate_icon i{color:#185d7c!important}.entries_edit_icon,.field_delete_icon,.field_duplicate_icon,.field_edit_icon,.form_delete_icon,.form_edit_icon{text-decoration:none;padding:0;font-weight:400;letter-spacing:.3pt;text-shadow:0 1px 1px #FFF;text-align:center;vertical-align:middle}.entries_edit_icon{color:#AAA!important}.entries_edit_icon:active,.entries_edit_icon:hover{color:#707070!important}.option_header{margin:5px 0 2px;font-weight:700}img.gtitle_icon{float:left;margin:15px 7px 0 0}td.pad_top{padding-top:10px}#form_settings{padding-top:2px}#form_settings h3 span i[class*=" fa-"],#form_settings h3 span i[class^=fa-],.gform_tab_container h3 span i[class*=" fa-"],.gform_tab_container h3 span i[class^=fa-]{color:#0074A2}#tab_gravityformslogging .gforms_form_settings th{width:auto}.input_size_a,.textarea_size_a{width:375px}.form_button_options{margin:8px 0}#form_button_image_container,#form_button_text_container{margin-top:8px!important}.captcha_message{padding:5px}#after_insert_dialog div{padding-bottom:10px}#simplemodal-overlay{background-color:#000;cursor:default}#simplemodal-container{padding:20px 20px 0;height:355px;width:400px;background-color:#F9F9F9;border:6px solid #636363;-moz-border-radius:8px;-webkit-border-radius:8px;-khtml-border-radius:8px;border-radius:8px}div#after_insert_dialog h3,div.gold_notice{padding:10px 6px;background-color:#FFFBCC;margin:0 0 4px}#simplemodal-container a.modalCloseImg{background-image:url(../images/icon-close.png);background-repeat:no-repeat;width:25px;height:29px;display:inline;z-index:3200;position:absolute;top:-14px;right:-18px;cursor:pointer}div#after_insert_dialog h3{text-align:center;border:1px solid #E6DB55;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;border-radius:4px}div.gold_notice{border:1px solid #E6DB55;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;border-radius:4px}div#after_insert_dialog p{text-align:center}div.new-form-option a{font-size:18px;padding:16px;text-decoration:none;text-align:center;display:block;color:#535353;text-shadow:0 2px 1px #FFF;background-color:#F9F9F9;border:1px solid #d7d7d7;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;border-radius:4px;margin-bottom:4px;background-image:url(../images/gf-new-option-bg.png);background-repeat:repeat-x}div.new-form-option a:hover{color:#2B2B2B;border:1px solid #D2E0EB;box-shadow:0 0 5px #D2E0EB;-moz-box-shadow:0 0 5px #D2E0EB;-webkit-box-shadow:0 0 5px #D2E0EB}.add-buttons,.button-title-link div.add-buttons-title{border-color:#DFDFDF;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}div#wpbody{position:relative}#add_fields{width:278px;padding:0;text-align:left}#floatMenu{width:280px;z-index:99;padding-bottom:20px}.button-title-link div.add-buttons-title{min-height:24px;overflow:hidden;cursor:pointer;position:relative;font-size:14px;border-width:1px;border-style:solid;margin:0!important;padding:8px 12px 5px;white-space:nowrap;background:#FFF;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.button-title-link div.add-buttons-title span.add-buttons-caret-down,.button-title-link div.add-buttons-title span.add-buttons-caret-up{width:16px;position:absolute;right:4px;color:#CCC}.gf_input_error_icon,.ginput_container_password span,div.note-meta{position:relative}.button-title-link{color:#464646;text-shadow:none;font-weight:700;cursor:text!important;font-family:"Open Sans",sans-serif;line-height:1.4}.add-buttons{border-width:0 1px 1px;border-style:none solid solid;background-color:#FFF;padding:12px;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#edit-title-header,.updated_base{-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}ul.menu li{margin-bottom:10px}ol.field_type{display:block;visibility:visible!important;overflow:hidden;margin:0;padding:0}div.push-alert-blue,div.push-alert-gold,div.push-alert-green,div.push-alert-red{padding:10px 6px;margin:30px 0 10px;text-align:center;min-width:800px;visibility:visible!important;display:block!important;line-height:1.5;font-size:1.1rem}.note-email,td.entry-view-field-value p{text-align:left}div.push-alert-gold{background-color:#FFFBCC;border-top:1px solid #E6DB55;border-bottom:1px solid #E6DB55}div.push-alert-green{background-color:#ECFCDE;border-bottom:1px solid #A7C886;border-top:1px solid #A7C886}div.push-alert-blue{background-color:#E2EDFF;border-bottom:1px solid #D2E0EB;border-top:1px solid #D2E0EB}div.push-alert-red{background-color:#FFE1E1;border-bottom:1px solid #EAAEAD;border-top:1px solid #EAAEAD}#gfield_settings_category_container,#gfield_settings_choices_container,.gfield_settings_input_choices_container{border:1px solid #DFDFDF;overflow:auto;padding:2px 0 6px}.field-choice-handle{vertical-align:middle;cursor:move}#gfield_settings_category_container{margin:8px 0 0}table td.gfield_category_cell{padding-top:3px}#gfield_settings_choices_container,.gfield_settings_input_choices_container{margin:8px 0 14px}#field_choices li,.field_input_choices li{padding:0 10px!important;margin:0!important}#field_columns li{padding:0!important;margin:0!important}#field_columns{padding:10px 0!important;margin:0!important}.input_active_icon{cursor:pointer;margin:10px 5px 0 0}#field_choices li input.field-choice-text,.field_input_choices li input.field-choice-text{width:312px}#field_choices li input.field-choice-price,#field_choices li input.field-choice-value,.field_input_choices li input.field-choice-value{display:none}.gfield_choice_header_label{padding-left:51px;display:none!important}.gfield_choice_header_price,.gfield_choice_header_value{display:none!important}.choice_with_value li input.field-choice-value{width:155px!important;display:inline!important}.choice_with_value li input.field-choice-text{width:155px!important}.choice_with_value .gfield_choice_header_label{display:inline!important}.choice_with_value .gfield_choice_header_value{padding-left:120px;display:inline!important}.choice_with_value_and_price li input.field-choice-text{width:103px!important}.choice_with_value_and_price li input.field-choice-price,.choice_with_value_and_price li input.field-choice-value{width:103px!important;display:inline!important}.choice_with_value_and_price .gfield_choice_header_label{display:inline!important}.choice_with_value_and_price .gfield_choice_header_price,.choice_with_value_and_price .gfield_choice_header_value{padding-left:70px;display:inline!important}.choice_with_price li input.field-choice-text{width:155px!important}.choice_with_price li input.field-choice-price{width:155px!important;display:inline!important}.choice_with_price .gfield_choice_header_label{display:inline!important}.choice_with_price .gfield_choice_header_price{padding-left:120px;display:inline!important}#field_columns li input.field-choice-price,#field_columns li input.field-choice-value,#field_columns li input.gfield_choice_checkbox,#field_columns li input.gfield_choice_radio{display:none}#field_columns li input.field-choice-text{width:312px!important}div.gf_payment_detail{margin-bottom:15px}table.entry-detail-view{margin-bottom:16px}table.entry-detail-view td.lastrow{border-bottom:none!important}td.entry-view-section-break{font-size:14px;font-weight:700;background-color:#EEE;border-bottom:1px solid #DFDFDF;padding:7px}td.entry-view-field-name{font-weight:700;background-color:#EAF2FA;border-bottom:1px solid #FFF;line-height:1.5;padding:7px}td.entry-view-field-value{border-bottom:1px solid #DFDFDF;padding:7px 7px 7px 40px;line-height:1.8}td.entry-view-field-value ul.bulleted{margin-left:12px}td.entry-view-field-value ul.bulleted li{list-style-type:disc}div.note-meta-container{white-space:nowrap;font-size:0}div.note-avatar{width:48px;height:48px;display:inline-block;vertical-align:middle;margin-right:8px}.note-has-email div.note-avatar{vertical-align:top}div.note-meta{display:inline-block;vertical-align:middle;white-space:normal;margin-left:48px;left:-48px}span.note-divider{opacity:.25}.note-author{display:inline;font-weight:700;font-size:.9rem;line-height:1;margin:0 0 2px;padding:0}.note-email{font-size:.9rem;line-height:1.3;margin:0!important;padding:0!important}.note-email:before{color:#DADADA;content:'\2014';margin:0 5px}.detail-note-content{margin:1em 0;padding:1rem;position:relative;line-height:1.8rem;border-left:4px solid #DDD;background-color:#F7F7F7}.detail-note-content p{line-height:30px}.detail-note-content.gforms_note_success{background-color:#ECFCDE;border-left-color:#A7C886}.detail-note-content.gforms_note_warning{background-color:#FFFBCC;border-left-color:#E6DB55}.detail-note-content.gforms_note_error{background-color:#FFEBE8;border-left-color:#C00}div.gforms_note_content{margin:0}div.gforms_note_content p:last-child{margin-bottom:0}.note-meta-container .note-date{display:block;font-size:.8rem;line-height:1}.ginput_full_admin label,body.forms_page_gf_entries table.entry-details td.detail-view label.detail-label{display:block;font-weight:700;font-size:13px;margin-bottom:4px}body.forms_page_gf_entries div.ginput_complex_admin .ginput_full_admin label{font-weight:400;font-size:11px}body.forms_page_gf_entries table.entry-details .gfield_consent_description,body.forms_page_gf_entries table.entry-details input,body.forms_page_gf_entries table.entry-details input[type=text]{width:99%}body.forms_page_gf_entries table.entry-details .ginput_container_consent input{width:auto}body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left_admin,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_right,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_right_admin{width:49%;display:-moz-inline-stack;display:inline-block}body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left_admin{margin-right:1rem}body.forms_page_gf_entries .ginput_left_admin label,body.forms_page_gf_entries .ginput_right_admin label{display:block}body.forms_page_gf_entries .ginput_container ul.gfield_checkbox li input,body.forms_page_gf_entries .ginput_container ul.gfield_radio li input{width:auto!important}body.forms_page_gf_entries .ginput_left_admin input[type=text]{width:99%!important}body.forms_page_gf_entries select.medium_admin{max-width:400px}body.forms_page_gf_entries textarea.medium_admin{width:98%;min-width:475px;min-height:250px}body.forms_page_gf_entries h2.detail_gsection_title{font-family:helvetica,arial,sans-serif;font-size:16px;font-style:normal!important;font-weight:700;letter-spacing:normal!important;margin:0!important;padding:0!important}body.forms_page_gf_entries div.ginput_complex_admin span label{display:block;font-size:.8rem;margin:4px 0}ul#form_autoresponder_container,ul#form_notification_container{width:95%}ul#form_autoresponder_container li,ul#form_notification_container li{margin-bottom:15px!important}ul#form_autoresponder_container li label,ul#form_notification_container li label{margin-bottom:8px!important;display:block}#confirmation_list_form .check-column,#notification_list_form .check-column{width:50px}.gform-notification-service{display:inline-block;margin-bottom:5px;text-align:center}.gform-notification-service input:checked+label>span{-webkit-filter:none;-moz-filter:none;filter:none}t.gform-notification-service input:checked+label{background-color:#fff;border:1px solid #CCC}.gform-notification-service label>span{background-repeat:no-repeat;display:inline-block;-webkit-transition:all .1s ease-in;-moz-transition:all .1s ease-in;transition:all .1s ease-in;-webkit-filter:brightness(1.8) grayscale(1) opacity(.5);-moz-filter:brightness(1.8) grayscale(1) opacity(.5);filter:brightness(1.8) grayscale(1) opacity(.5);padding-top:5px;width:130px;height:65px}.gform-notification-service input{display:none}.gform-notification-service label>span>img{width:32px;height:32px;margin:5px;vertical-align:middle}.gform-notification-service label{border:1px solid #EEE;background-color:#F9F9F9}.gform-notification-service input:not([disabled]):not([checked])+label>span:hover{-webkit-filter:brightness(1.2) grayscale(.5) opacity(.9);-moz-filter:brightness(1.2) grayscale(.5) opacity(.9);filter:brightness(1.2) grayscale(.5) opacity(.9)}.fieldwidth-1,input.fieldwidth-1{width:100%}.fieldwidth-2,input.fieldwidth-2{width:350px}.fieldwidth-3,input.fieldwidth-3{width:375px}.fieldwidth-4,input.fieldwidth-4{width:250px}.fieldheight-1,input.fieldheight-1{height:160px}.fieldheight-2,input.fieldheight-2{height:80px}.gform_merge_tags{width:200px}.gform_editor_merge_tags{width:190px}.gform_content_template_merge_tags{width:165px}.panel-instructions{border-bottom:1px solid #DFDFDF;color:#555;font-size:11px;padding:4px 0;margin-bottom:6px}.bulk-left-panel{float:left;overflow-y:auto;width:220px;padding:0;height:300px}.bulk-left-panel ul li{padding:0;margin:0}.bulk-left-panel ul li a.bulk-choice,.bulk-left-panel ul li.choice_section_header{display:block;width:190px;border-top:1px solid #FFF;padding:5px;text-align:center;text-decoration:none}.bulk-left-panel ul li a.bulk-choice{background-color:#EAEAEA;color:#555;border-bottom:1px solid #D7D7D7}.bulk-left-panel ul li a.bulk-choice:hover{background-color:#DADADA}.bulk-left-panel ul li.choice_section_header{background-color:#F6FBFD;color:#21759B;border-bottom:1px solid #D2E0EB}a.bulk-choice:first-child{border-top:none}.bulk-arrow-mid{float:left;width:48px;background-image:url(../images/arrow-right.png);background-position:100% 50%;background-repeat:no-repeat}textarea#gfield_bulk_add_input{float:right;padding:6px}div.panel-buttons{margin-top:8px;display:-moz-inline-stack;display:inline-block}div.panel-custom{margin-left:65px;display:-moz-inline-stack;display:inline-block}div#bulk_custom_message{position:absolute}.updated_base{background-color:#FFF;border:1px solid #FFF;border-left:4px solid #FFBA00;padding:0 .6rem;margin:10px 15px 10px 0;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.updated_base p{margin:.5em 0;line-height:1;padding:2px}.wrap .updated_base{margin:10px 15px 24px 0}#gform_no_product_field_message,.error_base{background-color:#FFEBE8;border-color:#C00;border-width:1px;border-style:solid;margin:10px 15px 10px 0}table.form-table td .updated_base{font-size:13px}#gform_no_product_field_message{padding:.6em .6rem}.error_base{padding:0 .6rem;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.error_base p{margin:.5em 0;line-height:1;padding:2px}.wrap .error_base{margin:10px 15px 10px 0}.left_label .math_large,.left_label .math_medium,.left_label .math_small,.left_label .simple_captcha_large,.left_label .simple_captcha_medium,.left_label .simple_captcha_small,.right_label .math_large,.right_label .math_medium,.right_label .math_small,.right_label .simple_captcha_large,.right_label .simple_captcha_medium,.right_label .simple_captcha_small{margin-left:32%}table.form-table td .error_base{font-size:13px}.gf_input_error_icon{background-image:url(../images/exclamation.png);float:right;height:16px;right:-20px;top:18px;width:16px;margin-top:-16px;display:-moz-inline-stack;display:inline-block}li.gfield_html label.gfield_label{height:18px}.gfield_captcha_input_container{padding-top:3px}.simple_captcha_small input{width:100px}.simple_captcha_medium input{width:150px}.simple_captcha_large input{width:200px}.math_small input{width:69px}.math_medium input{width:90px}.math_large input{width:108px}table.entry-products{border:1px solid #DFDFDF;border-right:none;margin:10px 0}table.entry-products th[scope=col]{background-color:#F4F4F4;border-right:1px solid #DFDFDF!important}table.entry-products col.entry-products-col2{width:50px}table.entry-products col.entry-products-col3,table.entry-products col.entry-products-col4{width:155px}table.entry-products td{border-right:1px solid #DFDFDF!important;padding-top:7px;padding-bottom:8px}table.entry-products td.textcenter,table.entry-products th.textcenter{text-align:center}table.entry-products td.textright,table.entry-products th.textright{text-align:right}table.entry-products td.grandtotal,table.entry-products td.grandtotal_amount,table.entry-products td.shipping,table.entry-products td.shipping_amount{font-weight:700;font-size:13px;padding-top:7px;padding-bottom:8px}table.entry-products td.emptycell{background-color:#F4F4F4}table.entry-products td div.product_name{font-weight:700;color:#BF461E;font-size:13px;margin-bottom:5px}table.entry-products td ul.product_options li{background-image:url(../images/prodlist.png);background-position:0 0;background-repeat:no-repeat;overflow:visible;margin:0 0 0 2px!important;padding:4px 0 4px 16px}table.entry-products td ul.product_options li.lastitem{background-image:url(../images/prodlist-last.png)}a.button-primary.gfbutton,button.button-primary.gfbutton,input.button-primary.gfbutton{margin:10px 0 20px;letter-spacing:.3pt;font-size:12px!important;font-weight:400;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.menu.collapsible ol.field_type li input.button:hover{color:#D54E21;border-color:#8F8F8F;-webkit-border-radius:16px!important;-moz-border-radius:16px!important;border-radius:16px!important}.ginput_container_password span button{-webkit-appearance:none;appearance:none;background:0 0;border:none;padding:3px 0;pointer-events:none;position:absolute;right:1px;text-align:center;top:1px;width:30px}.ginput_container_password span button .dashicons{font-size:16px;height:16px;width:16px}.ginput_container_password span.ginput_left button{right:21px}.gfield_password_strength{border-style:solid;border-width:1px;float:left;margin:12px 5px 5px 1px;padding:3px 5px;text-align:center;width:96%;line-height:1.8;background-color:#EEE;border-color:#DDD!important}ul.left_label .gfield_password_strength,ul.right_label .gfield_password_strength{margin-left:32.5%}p.search-box{margin:12px 0 0}#gform-settings .column-is_active{width:19px;padding-top:9px;vertical-align:top}div#gform_heading.selectable.field_selected{background-image:url(../images/gf-fieldsettings-header.jpg);background-position:0 0;background-repeat:repeat-x;background-color:#F6FBFD;padding-top:8px}div.gf_renew_license{border:1px solid #CFADB3;color:#832525;background-color:#FAF2F5;padding:10px 0 20px 20px}p.gform_renew_expired strong{color:#9E0B0F}div.gf_upgrade_license h4{font-size:14px;margin:0;padding:0}div.gf_upgrade_business_license,div.gf_upgrade_developer_license{padding:14px 0 0 140px;min-height:175px;background-repeat:no-repeat;background-position:0 0}div.gf_upgrade_developer_license{background-image:url(../images/gravityforms-developer-upgrade.png);margin:30px 0 0;background-size:133px 169px}div.gf_upgrade_business_license{background-image:url(../images/gravityforms-business-upgrade.png);margin:0;background-size:133px 169px}p.gform_renew_expired,p.gform_renew_not_expired{background-position:0 0;background-repeat:no-repeat;font-size:1.4rem}a.gf_upgrade_link{-webkit-border-radius:4;-moz-border-radius:4;border-radius:4px;text-shadow:1px 1px 2px #c24319;font-family:Arial;color:#fff;font-size:16px;background:#D54E21;padding:10px 20px 11px;border:4px solid #c4461c;text-decoration:none;display:-moz-inline-stack;display:inline-block}a.gf_upgrade_link:hover{background:#db5428;text-decoration:none}.alert_blue,.alert_gray,.alert_green,.alert_red,.alert_yellow,ul#gform_fields li#no-fields div.newform_notice{border-top:none;border-right:none;border-bottom:none;color:#424242;background-color:#FFF}.gf_update_current,.gf_update_expired,.gf_update_outdated{padding:10px;margin-top:20px}.alert_blue,.alert_gray,.alert_green,.alert_red,.alert_yellow,ul#gform_fields li#no-fields div.newform_notice{position:relative;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.alert_green{border-left:4px solid #7AD03A}.alert_yellow{border-left:4px solid #FFBA00}.alert_gray{border-left:4px solid #CCC}.alert_blue{border-left:4px solid #2EA2CC}.alert_red,ul#gform_fields li#no-fields div.newform_notice{border-left:4px solid #dd3d36}span.gf_keystatus_invalid_text,span.gf_keystatus_valid_text{display:-moz-inline-stack;display:inline-block}li.gform_setting_left_half,li.gform_setting_right_half{width:44%;height:60px;margin-right:2%;display:-moz-inline-stack;vertical-align:top}i.gf_keystatus_valid,i.gf_valid,span.gf_keystatus_valid_text{color:green}i.gf_invalid,i.gf_keystatus_invalid,span.gf_invalid,span.gf_keystatus_invalid_text{color:#9E0B0F}ul.gfield_checkbox li.gchoice_total,ul.gfield_radio li.gchoice_total{font-size:11px;color:#878787;padding-top:14px!important}body #wpcontent #wpbody #wpbody-content{overflow:visible}div.ui-widget-content{background-color:#FAFAFA}div#gform_heading.selectable div#form_settings.ui-tabs,div#pagination_settings.ui-tabs,ul#gform_fields.ui-sortable li.selectable div#field_settings.ui-tabs{border:none!important}div.ui-tabs div.ui-tabs-panel{background-color:#FFF;border-right:1px solid #D2E0EB;border-bottom:1px solid #D2E0EB;border-left:1px solid #D2E0EB}div.ui-widget-content li.ui-state-active,div.ui-widget-content li.ui-state-default{border-left:1px solid #D2E0EB!important;border-top:1px solid #D2E0EB!important;border-right:1px solid #D2E0EB!important}ul.ui-widget-header{border-bottom:1px solid #D2E0EB!important}div.ui-widget-content li.ui-state-default{background-color:#D2E0EB!important;border-bottom:1px solid #D2E0EB;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;-moz-border-radius-topleft:4px;-moz-border-radius-topright:4px;border-top-left-radius:4px;border-top-right-radius:4px}div.ui-widget-content li.ui-state-default a{color:#21759B}div.ui-widget-content li.ui-state-default.ui-state-active{background-color:#FFF!important;border-bottom:1px solid #FFF!important;background-image:none!important}#form_switcher_arrow:hover,.gform_settings_page_title_editable:hover{background-color:#e5e5e5;webkit-border-radius:2px;border-radius:2px}div.ui-widget-content li.ui-state-default.ui-state-active a{color:#212121}li.gform_setting_left_half{display:inline-block}li.gform_setting_right_half{clear:right;display:inline-block}li.gform_setting_left_half input,li.gform_setting_left_half select,li.gform_setting_right_half input,li.gform_setting_right_half select{width:95%}#contextual-help-link-wrap{display:none}#gf_form_toolbar{display:inline-block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:12px 0 0;padding:4px 10px 0;width:100%;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);border:1px solid #e5e5e5;background:#fff;color:#555;font-size:13px}#gf_form_toolbar a{text-decoration:none}ul#gf_form_toolbar_links{position:relative;display:inline-block;margin:0}ul#gf_form_toolbar_links li{margin:0;padding:0;width:auto;display:-moz-inline-stack;display:inline-block}ul#gf_form_toolbar_links li.gf_form_toolbar_selectform{background-image:url(../images/gf-toolbar-divider.jpg);background-repeat:repeat-y;background-position:right}ul#gf_form_toolbar_links li.gf_form_toolbar_editor a,ul#gf_form_toolbar_links li.gf_form_toolbar_entries a,ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a,ul#gf_form_toolbar_links li.gf_form_toolbar_preview a,ul#gf_form_toolbar_links li.gf_form_toolbar_results a,ul#gf_form_toolbar_links li.gf_form_toolbar_settings a{text-decoration:none;text-shadow:0 1px 1px #FFF;line-height:16px;white-space:nowrap}ul#gf_form_toolbar_links li a{display:-moz-inline-stack;display:inline-block;margin:0 10px;padding:15px 0;font-size:13px;color:#23282d}ul#gf_form_toolbar_links li a.gf_toolbar_active:hover,ul#gf_form_toolbar_links li a:hover{color:#0074A2}ul#gf_form_toolbar_links>li>a.gf_toolbar_active{border-bottom:4px solid #666;box-shadow:none;color:#23282d}ul#gf_form_toolbar_links li a:hover i{color:#0074A2}ul#gf_form_toolbar_links li a.gf_toolbar_active{font-weight:700}ul#gf_form_toolbar_links li a.gf_toolbar_disabled{color:#333;filter:alpha(opacity=50);-moz-opacity:.5;-khtml-opacity:.5;opacity:.5;-ms-filter:"alpha(opacity=50)";cursor:default}ul#gf_form_toolbar_links li.gf_form_toolbar_settings a{background-position:0 0}ul#gf_form_toolbar_links li.gf_form_toolbar_settings a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_settings a:hover{background-position:0 -120px}ul#gf_form_toolbar_links li.gf_form_toolbar_settings a.gf_toolbar_disabled:hover{background-position:0 0}ul#gf_form_toolbar_links li.gf_form_toolbar_editor a{background-position:0 -20px}ul#gf_form_toolbar_links li.gf_form_toolbar_editor a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_editor a:hover{background-position:0 -140px}ul#gf_form_toolbar_links li.gf_form_toolbar_editor a.gf_toolbar_disabled:hover{background-position:0 -16px}ul#gf_form_toolbar_links li.gf_form_toolbar_notifications{padding:10px 6px 10px 4px}ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a{background-position:0 -40px}ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a:hover{background-position:0 -180px}ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a.gf_toolbar_disabled:hover{background-position:0 -40px}ul#gf_form_toolbar_links li.gf_form_toolbar_entries a{background-position:0 -60px}ul#gf_form_toolbar_links li.gf_form_toolbar_entries a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_entries a:hover{background-position:0 -160px}ul#gf_form_toolbar_links li.gf_form_toolbar_entries a.gf_toolbar_disabled:hover{background-position:0 -48px}ul#gf_form_toolbar_links li.gf_form_toolbar_preview a{background-position:0 -80px}ul#gf_form_toolbar_links li.gf_form_toolbar_preview a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_preview a.gf_toolbar_disabled:hover,ul#gf_form_toolbar_links li.gf_form_toolbar_preview a:hover{background-position:0 -200px}ul#gf_form_toolbar_links li.gf_form_toolbar_results a{background-position:0 -100px}ul#gf_form_toolbar_links li.gf_form_toolbar_results a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_results a.gf_toolbar_disabled:hover,ul#gf_form_toolbar_links li.gf_form_toolbar_results a:hover{background-position:0 -220px}#edit-title-close{width:16px;position:absolute;right:4px;color:#999;cursor:pointer}#gform_settings_page_title_error{margin-left:5px;color:red}#edit-title-header{min-height:24px;overflow:hidden;position:relative;font-size:14px;border-width:1px 1px 0;border-style:solid;border-color:#DFDFDF;margin:0!important;padding:8px 12px 5px;white-space:nowrap;background:#FFF;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#edit-title-container{width:350px;visibility:hidden;position:absolute;z-index:9999;top:50px}#edit-title-input{font-size:14px;width:100%;margin-bottom:20px}#edit-title-label{display:block;font-size:14px;margin-bottom:2px;font-weight:700}#gform_settings_page_title{padding:5px 10px;webkit-border-radius:2px;border-radius:2px}.gform_settings_page_title_editable{cursor:pointer}#form_switcher_arrow{padding:5px}#form_switcher{max-width:300px;min-width:130px}.form_switcher_arrow i{font-size:18pt;vertical-align:middle;color:#000}#form_switcher_container{display:none;position:absolute;z-index:9999;top:50px}#form_switcher_container .chosen-container-single .chosen-default{border-radius:0;height:39px;line-height:39px;font-weight:700;color:#464646;font-size:14px;border-color:#DFDFDF;background:#fff;padding:0 10px}#form_switcher_container .chosen-container-single .chosen-single span{margin:0}#form_switcher_container .chosen-container-single .chosen-drop{border-radius:0;border:1px solid #DFDFDF;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:10px}#form_switcher_container .chosen-container .chosen-results li.active-result{width:260px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#form_switcher_container .chosen-container .chosen-results li.highlighted{background:#eee;color:#444}#form_switcher_container .chosen-container-single .chosen-single div{width:10px;right:10px}#form_switcher_container .chosen-container-single .chosen-search{padding:0}#form_switcher_container .chosen-container .chosen-results{margin:10px -10px 0 0;max-height:250px}#form_switcher_container .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-42px 0!important}#form_switcher_container .chosen-container-single .chosen-single div b{height:10px!important;display:inline-block!important;background:url(chosen-sprite.png) -42px 0 no-repeat!important}div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button{border-color:#DFDFDF}div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button,div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:active,div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:hover{-webkit-border-radius:3px!important;-moz-border-radius:3px!important;border-radius:3px!important}div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:hover{border-color:#CCC}div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:active{border-color:#BBB}body.wp-admin div#add_fields div#floatMenu input.button.button-large.button-primary.update-form{margin-right:15px}div#wpbody-content div.wrap div#after_update_dialog.updated_base.gform_editor_status,div.gform_editor_status{max-width:480px!important;padding:10px}#floatMenu h3.gf_add_fields{display:none}#floatMenu br{height:1px;display:block}#floatMenu a.submitdelete{cursor:pointer;float:right;line-height:30px;padding:1px 2px;text-decoration:none;color:red;display:-moz-inline-stack;display:inline-block}#floatMenu a.submitdelete:hover{background-color:red;color:#FFF}#floatMenu input.button-primary.gfbutton{float:right;margin:6px 0 0!important}#floatMenu #after_update_dialog{margin:14px 0 0;text-align:center;padding:16px 10px}table.gfield_list td.gfield_list_cell,table.gfield_list td.gfield_list_cell+td.gfield_list_cell,table.gfield_list thead tr th+th{padding:6px 0}#floatMenu span#please_wait_container{width:16px;height:16px;float:right;margin:4px 4px 0 0}div#gravity-edit-icon,div#gravity-entry-icon,div#gravity-export-icon,div#gravity-help-icon,div#gravity-import-icon,div#gravity-notification-icon,div#gravity-settings-icon,div#gravity-title-icon,div#gravity-update-icon{background-image:url(../images/gf-32-iconsprite.png);background-repeat:no-repeat}div#gravity-edit-icon{background-position:0 0}div#gravity-entry-icon{background-position:0 -50px}div#gravity-export-icon{background-position:0 -100px}div#gravity-help-icon{background-position:0 -150px}div#gravity-import-icon{background-position:0 -200px}div#gravity-notification-icon{background-position:0 -250px}div#gravity-settings-icon{background-position:0 -300px}div#gravity-update-icon{background-position:0 -400px}div#gravity-title-icon{background-position:0 -350px}div#major-publishing-actions{clear:both}html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap table.widefat tfoot tr th.manage-column,html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap table.widefat thead tr th.manage-column{font-size:13px!important}th.manage-column.column-cb.check-column{vertical-align:top}table.gfield_list thead tr th{padding:6px 0;font-weight:700}table.widefat tbody tr td.entry-view-field-value table.gfield_list{border-top:1px solid #DFDFDF!important;border-left:1px solid #DFDFDF!important;border-spacing:0;padding:0;margin:2px 0 6px;width:100%}table.widefat tbody tr td.entry-view-field-value table.gfield_list td{border-right:1px solid #DFDFDF!important;padding:6px 10px}table.widefat tbody tr td.entry-view-field-value table.gfield_list thead tr th{background-image:none!important;border-right:1px solid #DFDFDF!important;padding:6px 10px;font-family:sans-serif!important}table.widefat tbody tr td.entry-view-field-value ul li{color:#555!important}input.headercb{margin-top:-3px}.gfield_routing_select,.gfield_rule_select{width:120px}.gfield_rule_input{vertical-align:bottom;height:28px}.gf_conditional_logic_rules_container{margin-top:4px}.gf_conditional_logic_rules_container input,.gf_conditional_logic_rules_container select{margin-top:0!important;margin-left:2px}.gform_routing_operator{width:60px}.validation_message{color:#9E0B0F!important;font-size:11px;font-family:sans-serif;letter-spacing:normal}.gfield_error{background-color:#FFDFDF!important;margin-top:4px!important;margin-bottom:6px;padding:6px 6px 4px!important;border:1px dotted #C89797}.grouting_rule_error input{border:1px solid red}.gfield_sub_setting{margin-top:20px}div#notifications_container .inside div.message.error{line-height:1.5!important}.gform_card_icon_container{margin:8px 0 6px;height:32px}div.gform_card_icon{margin-right:4px;text-indent:-9000px;background-image:url(../images/gf-creditcard-icons.png);background-repeat:no-repeat;width:36px;height:32px;float:left}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_visa{background-position:0 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa{background-position:0 -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa{background-position:0 -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_mastercard{background-position:-36px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard{background-position:-36px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard{background-position:-36px -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_amex{background-position:-72px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex{background-position:-72px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex{background-position:-72px -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_discover{background-position:-108px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover{background-position:-108px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover{background-position:-108px -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_maestro{background-position:-144px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro{background-position:-144px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro{background-position:-144px -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_jcb{background-position:-180px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb{background-position:-180px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb{background-position:-180px -64px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_visa{background-position:0 -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa{background-position:0 -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa{background-position:0 -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_mastercard{background-position:-36px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard{background-position:-36px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard{background-position:-36px -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_amex{background-position:-72px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex{background-position:-72px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex{background-position:-72px -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_discover{background-position:-108px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover{background-position:-108px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover{background-position:-108px -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_maestro{background-position:-144px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro{background-position:-144px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro{background-position:-144px -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_jcb{background-position:-180px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb{background-position:-180px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb{background-position:-180px -256px}.ginput_complex .ginput_cardinfo_left,.ginput_complex .ginput_cardinfo_right{min-height:43px;position:relative;float:left}.ginput_complex .ginput_cardinfo_left{width:50%;margin-right:1%}.ginput_complex .ginput_cardinfo_right{min-width:85px!important}.ginput_complex .ginput_cardinfo_right label{white-space:nowrap!important}.ginput_complex span.ginput_cardextras{display:block;overflow:hidden;margin-bottom:8px}.ginput_complex .ginput_cardinfo_right span.ginput_card_expiration_container{position:relative}.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month,.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year{width:47%!important;display:-moz-inline-stack;display:inline-block}.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month{margin-right:4px}.ginput_complex .ginput_cardinfo_right input.ginput_card_security_code{max-width:50%!important;position:relative}.ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{width:32px;height:23px;background-image:url(../images/gf-creditcard-icons.png);background-repeat:no-repeat;background-position:0 -128px;position:relative;top:-2px;left:6px;display:-moz-inline-stack;display:inline-block}div.gfield_creditcard_warning_message{display:none!important}#gform_fields li.credit_card_setting.field_setting ul li{padding:2px 0 4px}.wp-media-buttons{padding:0!important;line-height:3px!important}.wp-media-buttons select{padding:1px!important;font-size:10px!important;line-height:2.2rem}#notifications_advanced_settings label{line-height:18px}div.gf_toolset_dropdown_menu{position:absolute;top:10px;right:0}div.gf_toolset_dropdown_menu ul li.gf_toolset_dropdown_toplevel a.gf_toolset_dropdown_toplevel_link{display:block;width:40px;height:24px;overflow:hidden;padding:0;text-indent:-9000px;text-decoration:none;background-color:#EFEFEF;margin:0;border:1px solid #DFDFDF;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-image:url(../images/gf-entry-paging-sprite.jpg);background-repeat:no-repeat;background-position:-144px 0}div.gf_entry_detail_pagination{clear:both;float:right;font-size:13px}div.gf_entry_detail_pagination ul{height:15px}div.gf_entry_detail_pagination ul li div.gf_entry_detail_pagination ul li{padding:0!important;margin-bottom:0!important}div.gf_entry_detail_pagination ul li{display:-moz-inline-stack;display:inline-block}div.gf_entry_detail_pagination ul li.gf_entry_count span{display:block;width:auto!important;line-height:25px;padding:0 5px 0 0}div.gf_entry_detail_pagination ul li.gf_entry_count span strong{color:#D24E29}div.gf_entry_detail_pagination ul li.gf_entry_pagination a{display:block;padding:0;text-decoration:none;margin:0}div.gf_entry_wrap #poststuff .inside{margin-top:12px}div.gf_entry_wrap #poststuff .inside .message,div.gf_entry_wrap #poststuff .inside .updated{margin:-12px -12px 12px}#notifications_container .message{margin:-2px -15px 0}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_inactive,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_inactive{color:#424242;filter:alpha(opacity=20);opacity:.2}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_active,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_active{color:#424242;filter:alpha(opacity=50);opacity:.5}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_active:hover,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_active:hover{color:#0074A2;filter:alpha(opacity=100);opacity:1}li.gf_entry_next i,li.gf_entry_prev i{display:block}html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap div#tab_notification div.wp-editor-wrap{margin-top:20px!important}html body.wp-admin div#wpwrap #wp-form_notification_message-media-buttons.hide-if-no-js.wp-media-buttons{position:absolute;top:-2px;left:0;width:290px!important;padding:3px 4px 3px 6px!important;background-color:#E9E9E9;border-left:1px solid #CCC;border-top:1px solid #CCC;border-right:1px solid #CCC;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;-moz-border-radius-topleft:3px;-moz-border-radius-topright:3px;border-top-left-radius:3px;border-top-right-radius:3px}html body.rtl.wp-admin div#wpwrap #wp-form_notification_message-media-buttons.hide-if-no-js.wp-media-buttons{left:auto!important;right:0}html body.wp-admin div#wp-form_notification_message-editor-tools.wp-editor-tools{position:relative}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js a#form_notification_message-add_media{background-color:#FFF;background-image:url(../images/gf-media-button-bg.jpg);background-repeat:repeat-x;background-position:bottom;padding:3px 6px 2px 5px!important;border:1px solid #C3C3C3;border-bottom:2px solid #CCC;color:#464646;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;font-family:arial,sans-serif;font-weight:400;font-size:12px;line-height:18px;display:-moz-inline-stack;display:inline-block}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js a#form_notification_message-add_media img{display:none!important}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js select#form_notification_message_variable_select{position:relative;top:0;font-family:arial,sans-serif;font-weight:400;font-size:12px!important;line-height:18px}.gf_toggle_submenu{width:11px;height:11px;cursor:pointer;background-image:url(../images/icon-submenu-down.png);background-size:11px 11px;background-repeat:no-repeat;background-position:center center;display:-moz-inline-stack;display:inline-block}.gf_submenu{background-color:#FFF;box-shadow:0 1px 1px rgba(0,0,0,.1);display:none;float:none;margin:0 0 0 -1px;position:absolute;padding:0;z-index:99;border-top:1px solid #dfdfdf;border-bottom:4px solid #666}#gf_form_toolbar .gf_submenu{top:40px}.row-actions .gf_submenu,.row_actions .gf_submenu{margin-top:-2px}.row-actions span a i{display:none!important}.gf_submenu a,ul#gf_form_toolbar_links li:hover .gf_submenu{display:block}.gf_submenu li{margin:0}.gf_submenu a{padding:6px 10px}.gf_submenu a:hover{background-color:#eaf2fa;color:#333}ul#gf_form_toolbar_links .gf_submenu{margin-top:5px}ul#gf_form_toolbar_links .gf_submenu ul li{display:block;padding:0;margin:0;border-bottom:1px solid #eee}ul#gf_form_toolbar_links .gf_submenu ul li a{background:0 0;padding:6px 10px;line-height:24px}ul#gf_form_toolbar_links .gf_submenu ul li:hover{background-color:#F1F1F1}#gform_fields li #field_settings li{overflow:visible}.merge-tag-support{max-width:95%}.all-merge-tags{position:relative;display:-moz-inline-stack;display:inline-block}.all-merge-tags.textarea{position:absolute;margin-top:1px}.all-merge-tags a.open-list{text-indent:-999rem;width:16px;height:16px;background:url(../images/icon-drop-list.png) no-repeat;cursor:pointer;margin-left:5px;display:-moz-inline-stack;display:inline-block}ul#gf_merge_tag_list{max-height:200px;min-width:175px;overflow:auto;position:absolute;background-color:#F8F8F8;border:1px solid #CCC;z-index:999;text-indent:0;-moz-box-shadow:0 8px 6px -6px rgba(68,68,68,.4);-webkit-box-shadow:0 8px 6px -6px rgba(68,68,68,.4);box-shadow:0 8px 6px -6px rgba(68,68,68,.4)}ul#gf_merge_tag_list li:nth-child(even){background-color:#EEE}.right ul#gf_merge_tag_list{right:0}ul#gf_merge_tag_list li{margin:0;line-height:1.4rem;padding:0!important;border-bottom:1px dotted #ccc}ul#gf_merge_tag_list li:last-child{border-bottom:none}ul#gf_merge_tag_list li.group-header{font-weight:700;padding:5px!important}ul#gf_merge_tag_list li.group-header:hover{background-color:transparent}ul#gf_merge_tag_list a{display:block;padding:5px;cursor:pointer}ul#gf_merge_tag_list a:hover{background-color:#EEE}.mt-form_confirmation_message,.mt-gform_notification_message{float:right;position:relative;right:10px;top:90px}#wp-form_confirmation_message-wrap,#wp-gform_notification_message-wrap{margin-right:12px}#form_settings{margin-top:0}#gf_personal_data_field_settings .gf_personal_data_field_label_title{text-align:left;padding:0;font-weight:700}#gf_personal_data_field_settings .gf_personal_data_cb_title{text-align:center;padding:0;width:50px;font-weight:700}#gf_personal_data_field_settings .gf_personal_data_cb_cell{text-align:center;width:50px}.gform_tab_group{background-color:#FFF;border:1px solid #DEDEDE;margin-top:10px;border-radius:3px;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:flex}.gform_tabs{width:150px;flex-grow:0;flex-shrink:0;margin-top:10px}.gform_tab_container{flex-grow:1;padding:20px;min-height:370px;background-color:#F6FBFD;border-left:1px solid #E1E1E1}.gform_tabs a{padding:6px 10px;text-decoration:none;display:block;border:1px solid #FFF;font-size:14px}.gform_tabs li.active a{line-height:18px;z-index:50!important;background-color:#F6FBFD;border:1px solid #E1E1E1;border-right-color:#F6FBFD;border-left:2px solid #2EA2CC;margin:0 -1px 0 0;width:138px;padding:6px 0 6px 10px!important}.gform_tabs li:last-child{margin-bottom:16px}.gform_tab_content h3{font-size:1.6rem;margin-top:2px}ul#gform_fields li#no-fields{padding:0!important}ul#gform_fields li#no-fields div.newform_notice{padding:20px 20px 18px;font-weight:700;margin:2px 0 40px!important;position:relative}ul#gform_fields li#no-fields div.newform_notice span{position:absolute;right:35px;top:35px;width:116px;height:83px;background-image:url(../images/gf-nofields-steps.png);background-position:0 -1769px;background-repeat:no-repeat;display:block}h4.gf_nofield_header{font-size:1.6rem;font-weight:700}h4.gf_settings_subheader{font-size:1.4rem;border-bottom:1px solid #CCC;padding:0 0 10px;margin:2px 0 30px!important;font-weight:400!important}#export_filters{width:450px}.gf_tips{font-family:'Shadows Into Light Two',helvetica,arial,sans-serif;color:#F26522}div#gf_nofield_1_instructions,div#gf_nofield_2_instructions,div#gf_nofield_3_instructions,div#gf_nofield_4_instructions,div#gf_nofield_5_instructions{position:relative;width:498px;background-image:url(../images/gf-nofields-steps.png);background-repeat:no-repeat}span.gf_nofield_1_instructions_copy,span.gf_nofield_1_instructions_heading{width:200px;left:0;-webkit-transform:rotate(355deg);-moz-transform:rotate(355deg);-o-transform:rotate(355deg)}div#gf_nofield_1_instructions{height:352px;background-position:0 0}div#gf_nofield_2_instructions{height:192px;background-position:0 -382px}div#gf_nofield_3_instructions{height:572px;background-position:0 -605px}div#gf_nofield_4_instructions{height:220px;background-position:0 -1207px}div#gf_nofield_5_instructions{height:282px;background-position:0 -1457px}div#gf_nofield_1_instructions span,div#gf_nofield_2_instructions span,div#gf_nofield_3_instructions span,div#gf_nofield_4_instructions span,div#gf_nofield_5_instructions span{display:block;position:absolute;line-height:1.1;word-spacing:-.1rem;text-align:center}span.gf_nofield_1_instructions_heading{top:30px;font-size:40px}span.gf_nofield_1_instructions_copy{top:125px;font-size:20px}span.gf_nofield_2_instructions_copy{width:260px;top:25px;left:245px;font-size:20px;-webkit-transform:rotate(358deg);-moz-transform:rotate(358deg);-o-transform:rotate(358deg)}span.gf_nofield_3_instructions_copy_top{width:260px;top:10px;left:180px;font-size:20px}span.gf_nofield_3_instructions_copy_mid{width:240px;top:290px;left:140px;font-size:20px}span.gf_nofield_3_instructions_copy_bottom{width:260px;top:475px;left:180px;font-size:20px;-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg)}span.gf_nofield_4_instructions_copy_top{width:260px;top:13px;left:239px;font-size:20px}span.gf_nofield_4_instructions_copy_bottom{width:300px;top:185px;left:180px;font-size:20px}span.gf_nofield_5_instructions_heading{width:200px;top:30px;left:0;font-size:40px;line-height:1.1rem;word-spacing:-.2rem;text-align:center;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg)}span.gf_nofield_5_instructions_copy{width:200px;top:125px;left:0;font-size:20px;-webkit-transform:rotate(2deg);-moz-transform:rotate(2deg);-o-transform:rotate(2deg)}h3+h4.gf_settings_subheader,table+h4.gf_settings_subheader{margin:30px 0!important}#gform_fields .field-drop-zone{border:1px dashed #bbb;background-color:#FFF;margin:0 auto 10px;height:75px;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gform_fields_empty{height:600px}.ui-draggable-dragging{-webkit-transition:width .1s;transition:width .1s;width:120px;z-index:9999;color:#424242!important}ul.gforms_form_settings li{margin:0}h4.section-title{border-bottom:1px solid #EEE;font-size:14px;font-weight:400;margin:0 0 20px;padding:0 0 5px}.child-settings{padding:10px;border-left:2px solid #EEE;margin-left:5px}.editing td:first-child,tr#confirmation-editor-row td{border-left:3px solid #21759B}table.gforms_form_settings{margin:0 0 18px}table.gforms_form_settings td,table.gforms_form_settings th{padding:8px 0}.show_advanced_settings_container{border-top:1px solid #EEE;padding:5px}#show_advanced_settings{cursor:pointer}h4.gf_settings_subgroup_title{padding-bottom:6px;border-bottom:1px solid #DFDFDF}table.gforms_form_settings th{text-align:left;width:200px;font-weight:400;vertical-align:top;padding-left:10px}body.wp-admin .wrap .gform_tab_group .gform_tab_container .gform_tab_content input.button-primary{margin:10px 0 20px;letter-spacing:.3pt;font-weight:400}.setting-row{margin:0 0 10px}tr#confirmation-editor-row td{padding:0;border-top:0}div#confirmation-editor{padding:20px}.editing td{border-bottom:0}.editing .edit a{color:#999!important}.last-row td{background-color:red}.editor-actions a{line-height:24px}.editor-actions img.spinner{position:relative;top:4px;left:6px}.add_field_choice,.delete_field_choice{position:relative;margin-left:6px;color:#444;top:3px}#feed_condition_conditional_logic_container{margin-top:10px}.add_field_choice{margin-left:16px}#confirmation_action_type{display:none}#confirmation_logic_type{margin-left:5px}ol.field_type li{float:left;width:50%}ol.field_type input.button{width:120px}.description-list{margin:10px 0;padding:0 20px}.description-list li{padding:0;list-style:disc;overflow:visible}.custom_mask_instructions h5{margin:0 0 4px;font-size:11px}.custom_mask_instructions span.label{font-size:11px;width:80px;display:inline-block}.custom_mask_instructions li{margin:0 0 14px}.gf_calculation_buttons{float:right;margin-right:55px}.gf_calculation_buttons input[type=button]{width:22px;float:left}#field_calculation_formula_variable_select{width:150px}#calculation_options p{margin:0 0 14px;padding:0}a.limit-text{display:block;height:18px;line-height:18px;overflow:hidden;padding-right:5px;color:#555;text-overflow:ellipsis;white-space:nowrap}a.limit-text:hover{color:#555}th.column-name{width:30%}th.column-type{width:20%}div.gf_animate_sub_settings{border-left:1px dashed #DFDFDF;margin-left:10px}.gform_nofification_edit div.gf_animate_sub_settings{margin-left:0}table.gforms_form_settings td.gf_sub_settings_cell{padding:0}div#form_button_conditional_logic_container.gf_animate_sub_settings{padding-left:12px!important}span.gf_admin_page_formid{color:#FFF;background-color:#D4662C;line-height:2;white-space:nowrap;padding:0 8px;position:relative;top:-3px;text-decoration:none;border:none;-webkit-border-radius:2px;border-radius:2px;text-shadow:none;font-weight:600;font-size:13px;display:-moz-inline-stack;display:inline-block;margin:0 2px 0 12px}div#gform_last_page_settings div#last_page_settings.ui-tabs,div#gform_last_page_settings div#last_page_settings.ui-tabs ul.ui-tabs-nav,div#gform_pagination div#pagination_settings.ui-tabs ul.ui-tabs-nav,ul#gform_fields li div#field_settings.ui-tabs div#gform_pagination div#pagination_settings.ui-tabs,ul#gform_fields li div#field_settings.ui-tabs ul.ui-tabs-nav{padding:0!important}#gform_notification_to_routing_container table{width:100%}.ui-tabs>.ui-tabs-nav>.ui-state-disabled{display:none}div#gform_last_page_settings div#last_page_settings .ui-widget-header,div#gform_pagination div#pagination_settings .ui-widget-header,ul#gform_fields li .ui-widget-header{border-left:none!important;border-top:none!important;border-right:none!important;background:0 0!important;font-weight:400!important}div#gform_last_page_settings div#last_page_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default,div#gform_pagination div#pagination_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default,ul#gform_fields li div#field_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default{font-weight:400!important}div#gform_last_page_settings div#last_page_settings.ui-widget-content,div#gform_pagination div#pagination_settings.ui-widget-content,ul#gform_fields li div#field_settings.ui-widget-content{background:0 0!important;border:none!important}input:checked+label{font-weight:400}div.gf_clear{clear:both!important}div.gf_clear.gf_clear_complex{clear:both!important;margin-bottom:10px}.gf_button.slick_button{display:inline-block;text-decoration:none;padding:10px 25px;color:#FFF;font-weight:700;text-shadow:0 -1px 0 rgba(0,0,0,.2);border:1px solid rgba(0,0,0,.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-moz-box-shadow:0 0 1px 2px rgba(121,0,0,.2);-webkit-box-shadow:0 0 1px 2px rgba(121,0,0,.2);box-shadow:0 0 1px 2px rgba(121,0,0,.2);font-size:1.2rem}.slick_button.red_button{background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmMzAxOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZjA0MDQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background:-moz-linear-gradient(top,#ff3019 0,#cf0404 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#ff3019),color-stop(100%,#cf0404));background:-webkit-linear-gradient(top,#ff3019 0,#cf0404 100%);background:-o-linear-gradient(top,#ff3019 0,#cf0404 100%);background:-ms-linear-gradient(top,#ff3019 0,#cf0404 100%);background:linear-gradient(to bottom,#ff3019 0,#cf0404 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0 )}div.gf-pagebreak-end,div.gf-pagebreak-first,div.gf-pagebreak-inline{background-position:center center;background-repeat:no-repeat}.slick_button.red_button:active,.slick_button.red_button:hover{color:#FFF}.gform-add,.gform-remove{margin-top:2px;vertical-align:middle;cursor:pointer}.gform-add{margin-left:5px}#gform-no-filters{color:#CCC;cursor:pointer}.gform-filter-value{vertical-align:bottom;height:28px!important}.gform-filter-field,.gform-filter-operator,.gform-filter-value{height:2rem;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.gform-filter-field,.gform-filter-value{width:150px}#gform-field-filters{overflow-y:auto}.gform-field-filter{margin-top:4px}.gform-field-filter input,.gform-field-filter select{margin-right:2px}.gform-field-filter .gform-add{margin-right:4px}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}#namediv .gform_button_select_files{width:100px!important}.gform_fileupload_multifile .gform_drop_area{padding:25px;border:2px dashed #ddd;text-align:center;color:#aaa;margin-bottom:10px}.gform_delete{vertical-align:middle;cursor:pointer}tr.gf-locking.wp-locked .locked-info{height:auto}tr.gf-locking.wp-locked img.gform_active_icon{display:none}div.gf-pagebreak-container{display:block;position:relative;text-align:center;padding:20px 0}div.gf-pagebreak-first{background-image:url(../images/gf-pagebreak-first.png)}div.gf-pagebreak-inline{background-image:url(../images/gf-pagebreak-inline.png)}div.gf-pagebreak-end{background-image:url(../images/gf-pagebreak-end.png)}div.gf-pagebreak-text-main{font-weight:700;font-size:16px;text-transform:uppercase;margin:10px auto}div.gf-pagebreak-text-main span{background-color:#EEE;padding:0 10px;display:-moz-inline-stack;display:inline-block}.field_hover div.gf-pagebreak-container div.gf-pagebreak-text-main span,.field_selected div.gf-pagebreak-container div.gf-pagebreak-text-main span{background-color:#F6FBFD!important}.gf-pagebreak-text-after,.gf-pagebreak-text-before{font-family:'Shadows Into Light Two',"Brush Script MT",helvetica,arial,sans-serif;font-size:16px;color:#F26522}li.gfield.gpage label.gfield_label{display:none!important;margin:0!important}.entry_unread a,.entry_unread td{font-weight:700}.entry_spam_trash a,.entry_spam_trash td,.row-actions a{font-weight:400}.entry_nowrap{overflow:hidden;white-space:nowrap}.gform-filter-operator{width:100px}body.forms_page_gf_entries div#TB_title[style]{width:630px!important}table.form-table tr:last-child td,table.form-table tr:last-child th{border:none!important}span.gf_settings_description{display:block;margin-top:6px}div.gf-html-container{border:1px solid #E4E4E4;padding:20px;background-color:#F6F6F6}div.gf-html-container span.gf_blockheader{font-weight:700;display:block;text-transform:uppercase;margin-bottom:6px;font-size:16px;line-height:16px}ul.gform_fields.left_label li.gfield.gfield_html .gfield_label,ul.gform_fields.right_label li.gfield.gfield_html .gfield_label{float:none!important;display:inline-block;margin-top:12px;margin-bottom:8px;text-align:left;width:100%}.gf_delete_field_choice,.gf_insert_field_choice{color:#9B9B9B;text-decoration:none;margin-left:6px;font-size:14px;border:0;padding:0}.gf_delete_field_choice:active,.gf_delete_field_choice:hover,.gf_insert_field_choice:active,.gf_insert_field_choice:hover{color:#444}.ginput_container.ginput_single_email input.medium,span.ginput_left input.medium,span.ginput_right input.medium{width:95%!important}ul:not(.top_label) .ginput_container.ginput_single_email{margin-left:30%}.gforms_edit_form input.disabled,.gforms_edit_form input:disabled,.gforms_edit_form select.disabled,.gforms_edit_form select:disabled,.gforms_edit_form textarea.disabled,.gforms_edit_form textarea:disabled{pointer-events:none}.gaddon-section{padding:20px 0 0;margin:0 0 20px}.gaddon-section.gaddon-first-section{padding-top:0;border-top:0}.gaddon-setting.large{width:95%}.gaddon-select,.gaddon-setting.medium{width:50%}.gaddon-setting.gaddon-checkbox{margin-right:8px}table tbody tr#gform_notification_to_email_container.notification_to_container td.gf_sub_settings_cell div.gf_animate_sub_settings table th,table tbody tr#gform_notification_to_field_container.notification_to_container td.gf_sub_settings_cell div.gf_animate_sub_settings table tbody tr th{padding-left:10px;width:175px!important}table tbody tr#gform_notification_to_email_container.notification_to_container td.gf_sub_settings_cell div.gf_animate_sub_settings table{width:100%!important}div#gform_notification_to_routing_rules div{margin-top:4px}div#gform_notification_to_routing_rules div:first-child{margin-top:0!important}div#gform_notification_to_routing_rules div input:first-child{min-width:35%}div#gform_notification_to_routing_rules input{height:28px;vertical-align:middle}div.wrap.gf_browser_safari div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button,div.wrap.gf_browser_safari div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:active,div.wrap.gf_browser_safari div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:hover{padding-top:6px;padding-bottom:6px;line-height:10px}div.wrap.gf_browser_safari .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{top:-2px}div.wrap.gf_browser_safari .ui-tabs-panel ul li label.inline{margin-bottom:0!important}div.wrap.gf_browser_gecko div.new-form-option a{padding:16px 16px 14px}div.wrap.gf_browser_gecko .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{top:-4px}div.wrap.gf_browser_gecko .ui-tabs-panel ul li label.inline{margin-bottom:0!important;margin-top:1px!important}div.wrap.gf_browser_ie .menu.collapsible ol.field_type li input.button{width:96%!important}div.wrap.gf_browser_ie .menu.collapsible li{min-width:20%!important}div.wrap.gf_browser_ie .gfield_checkbox li input,div.wrap.gf_browser_ie .gfield_checkbox li input[type=checkbox],div.wrap.gf_browser_ie .gfield_radio li input[type=radio]{margin-top:0}.bulk-arrow-mid{height:300px}textarea#gfield_bulk_add_input{width:320px;height:290px}div.wrap.gf_browser_ie .ginput_complex .ginput_cardinfo_right input.ginput_card_security_code{top:0}div.wrap.gf_browser_ie .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{position:relative;top:-2px}div.wrap.gf_browser_ie .menu.collapsible ol.field_type li{width:50%;overflow:hidden}div.wrap.gf_browser_ie.gf_browser_ie8 .menu.collapsible ol.field_type li input.button,div.wrap.gf_browser_ie.gf_browser_ie9 .menu.collapsible ol.field_type li input.button{width:92%!important}div.wrap.gf_browser_ie input.button-primary,div.wrap.gf_browser_ie input.button-primary.gfbutton,div.wrap.gf_browser_ie input.gfbutton{padding:0 6px;line-height:1rem}div.wrap.gf_browser_ie ol.field_type{width:100%!important}div.wrap.gf_browser_ie ol.field_type li{padding:0!important}div.wrap.gf_browser_ie ol.field_type input.button[type=button]{width:140px!important}body .gf_browser_chrome a.button-primary.gfbutton,body .gf_browser_chrome button.button-primary.gfbutton,body .gf_browser_chrome input.button-primary.gfbutton{line-height:1em!important}body .gf_browser_chrome h2.gf_admin_page_title span.gf_admin_page_subtitle{margin-top:2px}body .gf_browser_chrome .ui-tabs-panel ul li label.inline{margin-bottom:0!important;margin-top:1px!important}div.wrap.gf_browser_chrome .gfield_checkbox li input,div.wrap.gf_browser_chrome .gfield_checkbox li input[type=checkbox],div.wrap.gf_browser_chrome .gfield_radio li input[type=radio]{margin-left:2px!important}#gfield_settings_category_container,#gfield_settings_choices_container,.gfield_settings_input_choices_container{max-height:222px}#gform_installation_progress li{display:inline-block;padding:10px 25px 10px 0}.gform_installation_progress_current_step,.gform_installation_progress_step_complete,.gform_installation_progress_step_wrap p{color:#000}.gform_installation_progress_step_pending{color:silver}.gform_system_report mark{background:0 0;color:#999}.gform_system_report mark.yes{color:#7ad03a}.gform_system_report .error_message,.gform_system_report mark.error{color:#a00}.gform_system_report_alert{border-left-color:#2EA2CC!important;box-sizing:border-box;display:block;width:100%;position:relative;padding-bottom:10px!important}.gf_copy_message{color:#080;display:none!important}#gf_system_report{position:absolute;height:10px;width:10px;top:65px;left:20px;z-index:-1}#gform_register_site{display:none}#gform_license_key{font-size:19px!important;width:90%!important}#entry_list_form .column-is_starred,#form_list_form .column-is_active{width:19px;vertical-align:top;padding:9px 31px 8px 10px}#form_list_form .column-conversion,#form_list_form .column-entry_count,#form_list_form .column-id,#form_list_form .column-view_count{width:10%}#entry_list_form .column-column_selector{width:20px}#entry_filters{display:inline-block;vertical-align:middle}#entry_search_button{float:right;margin-top:3px}#content-sortables.empty-container,#sidebar_middle-sortables.empty-container,#sidebar_top-sortables.empty-container{border:3px dashed #BBB!important;height:250px!important}#entry_search_container{margin-top:12px;float:right}.gform-rte-preview{width:459px;background-image:url(../images/rich-text-editor.png);position:relative;display:none;margin-bottom:21px}.gform-rte-preview.small{height:110px}.gform-rte-preview.medium{height:180px}.gform-rte-preview.large{height:280px}.gform-rte-preview:after{content:'';display:block;height:21px;width:459px;background:url(../images/rich-text-editor.png) bottom no-repeat;position:absolute;top:100%}.detail-view-print{margin-bottom:20px}.screen-meta-toggle{z-index:2}div.error{padding:20px}::-webkit-input-placeholder{color:#BDBDBD}::-moz-placeholder{color:#BDBDBD}:-ms-input-placeholder{color:#BDBDBD}:-moz-placeholder{color:#BDBDBD}.gf_browser_gecko input[type=checkbox],.gf_browser_gecko input[type=radio]{margin-bottom:-6px}.gf_browser_chrome input[type=checkbox],.gf_browser_chrome input[type=radio]{margin-bottom:-4px}.section_label{color:#21759b;font-weight:700;margin-bottom:12px;display:block}#gform_fields li ul.rules_container li{padding:0}.last_page_button_options{margin-top:8px}#last_page_button_button_container,#last_page_button_image_container,#last_page_button_text_container{margin-top:12px!important}div.range_max,div.range_min{width:98px;display:-moz-inline-stack;display:inline-block;vertical-align:top;padding-right:8px}div.range_max input,div.range_min input{width:90px}@media screen and (max-width:782px){.gforms_form_settings_wrap #gform_tab_container_1,.gforms_settings_wrap #gform_tab_container{margin-left:0}#entry_search_container{bottom:-100px;float:none;height:90px;position:absolute;vertical-align:middle}#entry_search_button{float:none}.gforms_form_settings_wrap #gform_tabs{display:none}#gform-settings .column-is_active{width:19px;padding-top:0;vertical-align:top}.gforms_settings_wrap .gform_tab_group{flex-flow:column}.gforms_settings_wrap #gform_tabs{float:none;width:100%;margin:10px 10px 0}.gforms_settings_wrap #gform_tabs li.active a{width:auto;border-left:0;border-right:0;border-top:0;border-bottom:4px solid #666;background-color:inherit;box-shadow:none;color:#23282d;padding:10px!important}.gforms_settings_wrap #gform_tabs li{display:inline-block;width:auto;margin-bottom:0;border-right:#e1e1e1}#gform_tab_container{border-top:1px solid #e1e1e1}.gform_panel h3{line-height:39px}.gform_panel h3 .add-new-h2{display:inline-block;margin-left:0;position:static;vertical-align:top}}.gfield_repeater_cell>.gfield_repeater_wrapper{background-color:rgba(1,1,1,.02);padding:10px 20px;border-radius:8px;border-bottom:1px solid rgba(238,238,238,1)}.gfield_repeater_wrapper input{border:1px solid rgba(197,198,197,1);border-radius:4px}.gfield_repeater_buttons .add_repeater_item_text,.gfield_repeater_buttons .remove_repeater_item_text{min-width:100px;height:30px;background:rgba(242,242,242,.5);transition:all .3s cubic-bezier(.67,.17,.4,.83);font-size:12px;color:rgba(117,117,117,1);border-radius:20px;margin-right:10px;margin-bottom:5px;border:1px solid rgba(117,117,117,.4);font-weight:400}.gfield_repeater_buttons .add_repeater_item_plus,.gfield_repeater_buttons .remove_repeater_item_minus{width:22px;height:22px;background:rgba(242,242,242,.5);transition:all .3s cubic-bezier(.67,.17,.4,.83);font-size:16px;color:rgba(117,117,117,1);border-radius:50%;margin:10px 5px 0;border:1px solid rgba(117,117,117,.4);font-weight:700;padding:0 0 5px}.gfield_repeater_buttons button.gfield_icon_disabled{cursor:default;filter:alpha(opacity=30);-moz-opacity:.3;-khtml-opacity:.3;opacity:.3}.gfield_repeater_buttons button.gfield_icon_disabled:hover{background:rgba(242,242,242,.5);color:rgba(117,117,117,1);border:1px solid rgba(117,117,117,.4)}.gfield_repeater_buttons button:hover{background:rgba(250,250,250,1);color:#374750;border:1px solid rgba(117,117,117,1)}.gfield_repeater_cell>.gfield_repeater_wrapper{border-left:8px solid rgba(241,241,241,1);box-shadow:0 1px 1px 0 rgba(0,0,0,.06),0 2px 1px -1px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.06)}.gfield_repeater_buttons .add_repeater_item_text:focus,.gfield_repeater_buttons .remove_repeater_item_text:focus{outline:0}.gfield_repeater_item .gfield_repeater_cell .gfield_required{color:#c32121}.gform_wrapper .gfield_repeater_cell label{color:#9b9a9a;font-weight:400;font-size:14px}.gfield_repeater_value .gfield_repeater_value .gfield_repeater_cell{padding-bottom:20px;padding-top:0}.gfield_repeater .gfield_repeater_items .gfield_repeater_item:not(:last-child){border-bottom:2px solid #e0e0e6;padding-bottom:20px;margin-bottom:20px;margin-right:10px}div .gfield_repeater_cell{margin-top:5px}.gfield_repeater_value>.gfield_repeater{border-left:8px solid rgba(54,86,102,.1);background-color:rgba(1,1,1,.02);padding:10px 20px;border-radius:8px;border-bottom:1px solid rgba(238,238,238,1);margin:10px}.gfield_repeater_cell .gfield_repeater_value:not(:first-child){color:rgba(117,117,117,.7);border:1px solid rgba(197,198,197,1);border-radius:4px;margin-right:10px;padding-left:10px;background-color:rgba(240,240,240,1)}.gfield_repeater .gfield_repeater_items,.gfield_repeater_items .gfield_repeater_cell:not(:first-child){padding-top:5px}.gfield_repeater .gfield_label{color:rgba(35,40,45,1);font-size:16px;font-weight:600}.gfield_repeater_cell div.ginput_complex_admin span label,.gfield_repeater_cell label.gfield_label{color:#9b9a9a;font-weight:400;font-size:14px}.gfield_repeater_value .gfield_label,.gfield_repeater_value .gfield_repeater_value .gfield_repeater_item:first-child{padding-bottom:0}.gfield_repeater_cell .gfield_admin_icons{height:0} \ No newline at end of file + */@font-face{font-family:FontAwesome;src:url(../fonts/fontawesome-webfont.eot?v=4.7.0);src:url(../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(../fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(../fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(../fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.fa{font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa.fa-pull-right,.fa.pull-right{margin-left:.3em}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:.08em solid #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right,.pull-right{float:right}.pull-left{float:left}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0);transform:rotate(0)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}:root .fa-flip-horizontal,:root .fa-flip-vertical,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-rotate-90{filter:none}.fa-stack{position:relative;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-close:before,.fa-remove:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-cog:before,.fa-gear:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-repeat:before,.fa-rotate-right:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-image:before,.fa-photo:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-exclamation-triangle:before,.fa-warning:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-cogs:before,.fa-gears:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-floppy-o:before,.fa-save:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-bars:before,.fa-navicon:before,.fa-reorder:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-sort:before,.fa-unsorted:before{content:"\f0dc"}.fa-sort-desc:before,.fa-sort-down:before{content:"\f0dd"}.fa-sort-asc:before,.fa-sort-up:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-gavel:before,.fa-legal:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-bolt:before,.fa-flash:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-clipboard:before,.fa-paste:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-chain-broken:before,.fa-unlink:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-caret-square-o-down:before,.fa-toggle-down:before{content:"\f150"}.fa-caret-square-o-up:before,.fa-toggle-up:before{content:"\f151"}.fa-caret-square-o-right:before,.fa-toggle-right:before{content:"\f152"}.fa-eur:before,.fa-euro:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-inr:before,.fa-rupee:before{content:"\f156"}.fa-cny:before,.fa-jpy:before,.fa-rmb:before,.fa-yen:before{content:"\f157"}.fa-rouble:before,.fa-rub:before,.fa-ruble:before{content:"\f158"}.fa-krw:before,.fa-won:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-caret-square-o-left:before,.fa-toggle-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-try:before,.fa-turkish-lira:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-bank:before,.fa-institution:before,.fa-university:before{content:"\f19c"}.fa-graduation-cap:before,.fa-mortar-board:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-image-o:before,.fa-file-photo-o:before,.fa-file-picture-o:before{content:"\f1c5"}.fa-file-archive-o:before,.fa-file-zip-o:before{content:"\f1c6"}.fa-file-audio-o:before,.fa-file-sound-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-ring:before,.fa-life-saver:before,.fa-support:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before,.fa-resistance:before{content:"\f1d0"}.fa-empire:before,.fa-ge:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before,.fa-y-combinator-square:before,.fa-yc-square:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-paper-plane:before,.fa-send:before{content:"\f1d8"}.fa-paper-plane-o:before,.fa-send-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-futbol-o:before,.fa-soccer-ball-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-ils:before,.fa-shekel:before,.fa-sheqel:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-bed:before,.fa-hotel:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-y-combinator:before,.fa-yc:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery-full:before,.fa-battery:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-paper-o:before,.fa-hand-stop-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-television:before,.fa-tv:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-american-sign-language-interpreting:before,.fa-asl-interpreting:before{content:"\f2a3"}.fa-deaf:before,.fa-deafness:before,.fa-hard-of-hearing:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-sign-language:before,.fa-signing:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-address-card:before,.fa-vcard:before{content:"\f2bb"}.fa-address-card-o:before,.fa-vcard-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer-full:before,.fa-thermometer:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bath:before,.fa-bathtub:before,.fa-s15:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}body .gform_wrapper.gf_rtl_wrapper .recaptchatable #recaptcha_response_field,body.rtl .gform_wrapper.recaptchatable #recaptcha_response_field,html[dir=rtl] .gform_wrapper.recaptchatable #recaptcha_response_field{position:static!important}@font-face{font-family:gravityfont;src:url(fonts/gravityfont.eot)}@font-face{font-family:gravityfont;src:url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMghi/PMAAAC8AAAAYGNtYXDmeObuAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZkL6K2kAAAF4AAA0HGhlYWQC4c4EAAA1lAAAADZoaGVhA+ECHwAANcwAAAAkaG10eHF7AO0AADXwAAABAGxvY2Gn7Zs2AAA28AAAAIJtYXhwAE8A1AAAN3QAAAAgbmFtZf6nqNIAADeUAAACZ3Bvc3QAAwAAAAA5/AAAACAAAwIAAZAABQAAAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADmPQHg/+AAIAHgACAAAAABAAAAAAAAAAAAAAAgAAAAAAACAAAAAwAAABQAAwABAAAAFAAEAEAAAAAMAAgAAgAEAAEAIOY25j3//f//AAAAAAAg5gDmOf/9//8AAf/jGgQaAgADAAEAAAAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAACAAD/6QHRAdcAGAA/AAABNCYvASYiDwEOAR0BFBYfARYyPwE+AT0BDwEOASsBIiY1NDY1Nz4BOwEyFg8BDgErASIGDwEGFBUUFjsBMhYHAdEWD58PKw+fDxYWD58PKw+fDxZmBAEGBtsXGQEMBB4f2wYFAQQBBgbNCgsCCQEJCM0GBQEBPBEmCVsJCVsJJhG4ESYJWwkJWwkmEbiaFQYGFxUDBgRMGx4GBhUGBgoKPAEDAQcIBgYAAwAA/+kB0QHXABYALwBGAAABPAE1NCYrASIGDwEcARUUFjsBMjY/ATc0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEHIyImNTQ2PwE+ATsBMhYVFAYVBw4BIwFNCQiWCgwBCwkIlgoMAQuEFg+fDysPnw8WFg+fDysPnw8Wn7EXGAEBDAUcHrEXGAENBB0eAQEBAgEICAsJQgEDAQcICwlCOxEmCVsJCVsJJhG4ESYJWwkJWwkmEbi7FhQDBgNSGR0WFAMGA1IZHQADAAD/6QHRAdcAEwAsAFAAADczNzY0NTQmKwEiBg8BHAEVFBYzJTQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQcjIiY/AT4BOwEyNj8BIyImNTQ2NTc+ATsBMhYVHAEPAQ4BI5utAQEJCJkICQEBBwcBNhYPnw8rD58PFhYPnw8rD58PFqrIBQUBAwEGBb4MDwIBsxgbAQQEHh6tFhgBCwUhIvUMAQMBBwgIBwIBAgEGBUcRJglbCQlbCSYRuBEmCVsJCVsJJhG4uwYFFQUFDQwHEBQDBQMWGhUWFAMGA0keIQAAAAAEAAD/6QHRAdcAFgAvAFoAcQAAJSMiBgcVFAYVFBY7ATI2NTc8ATU0JiM3NCYvASYiDwEOAR0BFBYfARYyPwE+AT0BDwEOASsBIiY1NDY/AT4BNy4BNTQ2NTc+ATsBMhYVFAYVBw4BBx4BFRwBByczMjY/ATwBNTQmKwEiBgcVHAEVFBYzATehBwoBAQgGoQgKAQcHmhYPnw8rD58PFhYPnw8rD58PFl4BBBwesRcbAQEBAg8OCAkBAQQdHqwXGgEBAg4NCQoB05sICQEBBwebCAoBBwfLBwcDAQIBBQYIBwIBAgEGBXERJglbCQlbCSYRuBEmCVsJCVsJJhG4hQcaFRAUAgYDBxEVBAQPCwIGAgcaFRAUAwUDBxAUBQQPDAMFAj4HBwICAgEFBggHAgECAQYFAAIAAP/pAdEB1wAYADIAAAE0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEFDgErASImPwEjIiY/AT4BMyEyFg8BDgEPAQHRFg+fDysPnw8WFg+fDysPnw8W/uUGCQYrBQEEsMQFBQEDAQYGAQoFBQECAQYDuAE8ESYJWwkJWwkmEbgRJglbCQlbCSYRuLIFBAoDhwUFFQUGBgUOBQcDjQAAAAADAAD/6QHRAdcAEwAsAFAAACUjBwYUFRQWOwEyNjU3PAE1NCYjNzQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQ8BDgErASImNTwBPwE+ATsBMhYPAQ4BKwEiBg8BMzIWFRQGFQE2rQEBCQiZCAoBBwebFg+fDysPnw8WFg+fDysPnw8WXAQEHh6tFhgBCwUhIsgFBQEDAQYFvgwPAgGzGBsBywwBAwEHCAgHAgECAQYFcREmCVsJCVsJJhG4ESYJWwkJWwkmEbh2FhoVFhQDBgNJHiEGBRUFBQ0MBxETAwUDAAIAAP/pAdEB1wAYAEkAAAE0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEPAQ4BKwEiJj8BPgE7ATI2NzU8ATU0JisBIiY/AT4BOwEyFhUHDgErAQczMhYVFAYVAdEWD58PKw+fDxYWD58PKw+fDxZaAwUdH9YGBAEDAQYF0AgKAQcHyQUFAQ8BBgXzBgQEAQYFzwWsFxsBATwRJglbCQlbCSYRuBEmCVsJCVsJJhG4dhYaFQYFFQUFCAcCAgEBBgUFBl4FBgYFFQUFIBETAwUDAAACAAD/6QHRAdcAGABGAAABNCYvASYiDwEOAR0BFBYfARYyPwE+AT0BDwEOASsBBw4BKwEiJj8BIyImPwE+AT8BPgE7ATIWDwEzNz4BOwEyFhUHMzIWBwHRFg+fDysPnw8WFg+fDysPnw8WUgMBBgUQBAEGBRoGBAED1QYEAQIBBQSJBgkHJgUBBIKUEAEGBRsFBBAPBgQBATwRJglbCQlbCSYRuBEmCVsJCVsJJhG4eBQGBRkFBgYFGQUGDgUHA2kFBAkDZGUFBgYFZQYFAAAAAgAA/+kB0QHXABgAXAAAJTU0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BNScjIiY/ATQ2OwEyNjc1MjQ1NCYrASImNTc+ATsBMjY1NzA0NTQmKwEiJj8BPgE7ATIWFRQGFQcOAQceARUcARUHDgEjAdEWD58PKw+fDxYWD58PKw+fDxakygUEAQMGBcIHCQEBBwapBQQDAQYFpgcKAQcGvwUFAQMBBgXHFRgBAQINDAkJAQQaHIS4ESYJWwkJWwkmEbgRJglbCQlbCSYRBQUFEwQGBgcDAgEFBQUFEwQGBgcDAgEFBQUFEwUFDxICBgIGEBIFAw4LAwQDBhgTAAAAAgAA/+kB0QHXABgATAAAATQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQcyFhUHDgEjISImPwE+ATsBMjY3NTQ2NTQmKwEiJj8BPgE7ATIWFRwBDwEOASsBIgYPATMB0RYPnw8rD58PFhYPnw8rD58PFm8GBAQBBgX+/wUFAQkEHh6gBwoBAQgGxwUFAQMBBgbNFxsBAwQeHqAHCgED3AE8ESYJWwkJWwkmEbgRJglbCQlbCSYRuJEFBRUFBgYFOhoVBwcDAQIBBQYFBRUFBhEUAgUDFhoVBwcSAAAAAAIAAP/pAdEB1wAYAC4AAAE0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEHIyImNTcjIiY/AT4BOwEyFg8BDgEjAdEWD58PKw+fDxYWD58PKw+fDxbgGwUEFiAFBQEDAQYFRQYEARoBBgUBPBEmCVsJCVsJJhG4ESYJWwkJWwkmEbi7BgWJBQUVBQYGBagFBgAAAAcAAP/pAdEB1wAYAB0AIgAnACwAMQA2AAABJyYiDwEOAR0BFBYfARYyPwE+AT0BNCYnASM1MxU1IzUzFTUjNTMVFyM1MxU1IzUzFTUjNTMVAayfDysPnw8WFg+fDysPnw8WFg/+5Dw8PDw8PO3a2tra2toBfFsJCVsJJhG4ESYJWwkJWwkmEbgRJgn+9Ds7VDo6UTs7pTs7VDo6UTs7AAACAAD/6QHRAdcAGAA7AAABNCYvASYiDwEOAR0BFBYfARYyPwE+AT0BByMHDgErASImNTc+ATsBMhYVBw4BKwEiBg8BMzIWDwEOASMB0RYPnw8rD58PFhYPnw8rD58PFoPHCQEHBRwGBBQEHSDcBgQEAQYGzgoMAQLHBgQBAwEGBgE8ESYJWwkJWwkmEbgRJglbCQlbCSYRuHY5BgYGBnkbHgYGFQYGCgoMBgUWBgUAAAQAAP/pAdEB1wAYACAAQQBJAAABJyYiDwEOAR0BFBYfARYyPwE+AT0BNCYnDwEXFSc1NxU3Bw4BBxQGBw4BIyImNTQ2PwE+ATc+ATMyFhceARUUBgcXBzU3JzUXFQGsnw8rD58PFhYPnw8rD58PFhYP71FRdHRHIAEBAQIBAgMDBgUBASABAwEBBAQDBAECAgIBhHRRUXQBfFsJCVsJJhG4ESYJWwkJWwkmEbgRJgl+Hx8hMhwyISKFAwUCAgMBAQEFBQEHBYUFBwICAgECAQQCAgcETzIgIB8hMhwAAAAAAwAA/+kB0QHXABgAVwCWAAABJyYiDwEOAR0BFBYfARYyPwE+AT0BNCYnBw4BBw4BHQEUBgcOAQceARceAR0BFBYXHgEXFSMiJicuAT0BNCYnLgEnNT4BNz4BPQE0Njc+ATc+ATc+ATMVFw4BBw4BHQEUBgcOASsBNT4BNz4BPQE0Njc+ATcuAScuAT0BNCYnLgEnNTIWFx4BFx4BFx4BHQEUFhceARcVAayfDysPnw8WFg+fDysPnw8WFg/3BgcCAwMCAgQNCgkMAwMEAwQCBwUKCREHBwcFBQMJBgcJAgUFAQECBwUECgYECge8BggDBgUHBwcRCgkFBwIDBAQDBAwICQwDBAMCAwIIBgcKAwYLBAUGAgECBAUCCgcBfFsJCVsJJhG4ESYJWwkJWwkmEbgRJgkyAQQCAwoIHwcMBAgMBAQIBQUOCCIHCwMCAwIVBgYFEAoqCA0EAwQCEAIFAwQPCSQDBwQGCwMEBAEBARVyAgQCBQ0IKgoQBQYGFQIDAgMLByIJDgUECAQECgUFDwgfBwoDAwQBFQEBAQQEAwkFBQkDJAoOBAMFAhAAAAAABAAA/+kB0QHXABgAOQBqAJsAAAEnJiIPAQ4BHQEUFh8BFjI/AT4BPQE0JicFFAYrASIGHQEUFjsBMhYdARQGKwEiJj0BNDY7ATIWHQEXFAYrASImPQE0NjsBMjY1MTQmKwEiJj0BNDY7ATIWHQEUBisBIgYVMRQWOwEyFh0BMxQGKwEiJj0BNDY7ATI2NTE0JisBIiY9ATQ2OwEyFh0BFAYrASIGFTEUFjsBMhYdAQGsnw8rD58PFhYPnw8rD58PFhYP/v0CAksEBAQESwICAgJQCgsLClACAnQLClICAgICTwMDAwM/CgwMClECAgICTwIDAwJACgt0DApRAgMDAk8DAwMDPwoMDApQAgICAk4DAwMDPwoMAXxbCQlbCSYRuBEmCVsJCVsJJhG4ESYJhQIDAwQWBAMDAggCAgsKHAoLAgIIKAoIAgIIAgMCAwMCCAoHCggCAggCAwIDAwIICgcKCAICCAIDAgMDAggKBwoIAgIIAgMCAwMCCAoHAAAAAwAA/+kB0QHXAA4AJwA/AAABMjY1NCYrASIGFRQWOwEXNCYvASYiDwEOAR0BFBYfARYyPwE+AT0BBxUjFTMVFAYjIiY9ASMnNzMXByMVIxUzAQgEBAQEPwQEBAQ/yRYPnw8rD58PFhYPnw8rD58PFtEQEA4JCg4QICBPICAQEBABPwUDBAQEBAMFAxEmCVsJCVsJJhG4ESYJWwkJWwkmEbicDxAICg4OCocvMDAvUBAAAAAAAwAA/+kB0QHXABgAIgBMAAABNCYvASYiDwEOAR0BFBYfARYyPwE+AT0BByc3FzUzFTcXBzcjNTQmKwEiBh0BIyImNTQ2NyY0NTQ2MzIWFz4BMzIWFRwBMR4BFRQGIwHRFg+fDysPnw8WFg+fDysPnw8W6TkTGB0XFDpTNgoHFwcKNhMaEg8BFA4IDgUHIBUaJhAWGhMBPBEmCVsJCVsJJhG4ESYJWwkJWwkmEbjdORQYRkYYFDllFAYKCgYUGxIQFwQCBAIOFAgGEhYlGgECAxkREhsAAAAAAwAA/+kB0QHXABgAIgBIAAABNCYvASYiDwEOAR0BFBYfARYyPwE+AT0BBycVIzUHJzcXBzcjJyYiDwEjIiY1NDY3JjQ1NDYzMhYXPgEzMhYVHAExHgEVFAYjAdEWD58PKw+fDxYWD58PKw+fDxbBGR0ZFDs8FC4cLgQMBC4fExsTDwEUDwgPBQchFRwnEBcbEwE8ESYJWwkJWwkmEbgRJglbCQlbCSYRuK8YSEkZFDs7FDAtBQUtGxMQGAQCBAIOFQgGEhcmGwECAxoRExsAAAQAAP/pAdEB1wANABsANABzAAA3MzcjIgYPARwBMRQWMxcjBzMyNjc1NjQxNCYjNzQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQ8BDgErAQcOASsBIiY/ASMiJj8BPgE7ATcjIiY1PAE1Nz4BOwE3PgE7ATIWDwEzMhYPAQ4BKwEHMzIWFRwBB587BDsGCQEBBwaUOwU8BwgBAQcGnhYPnw8rD58PFhYPnw8rD58PFmACBB4eQgMBBgUQBQQBAmkFBQEDAQYFagVAFxsDBB4eQAMBBgUQBQQBA2kFBQEDAQYFaQVCFxsB8xwGBwIBAgUFJhwGBwIBAgUFbxEmCVsJCVsJJhG4ESYJWwkJWwkmEbh4DxkVEwYFBQYTBQYUBQYcERMDBQMPGhQTBgUFBhMFBhQFBhwRFAIFAwAAAAAFAAD/6QHRAdcAEAAYADEATgCGAAATJgYHMQYWFxYyNz4BJy4BJwciJjU0NjcVNycmIg8BDgEdARQWHwEWMj8BPgE9ATQmJwMxMCIxOAE5AS4BNTQ2NzE4ATEwMjkBHgEVFAYHNw4BBw4BJy4BJw4BIwYmJw4BBw4BBwYmJy4BJyY2Nz4BNzI0NSY2NzE+ATceARceAQceARceAQfrBw8FBwIHCRoIBwQDAw4JBAYICAbFnw8rD58PFhYPnw8rD58PFhYPxQEJFRUJAQkUFAlrAgYCAg8FCRIJBxIKCxUIBg0GAwYDBgwBAwYDAgcJBQoFAQITEQgRCwwQCBEUAgUMBQgHAgFJAQYHCBcICQgGEgkICgEtCQYGCAEeYFsJCVsJJhG4ESYJWwkJWwkmEbgRJgn+qgEyExQGAQEGFBMyAZwOGw0HBQQIEAcGCQEICAUMBQIGAgIGBg0aDQsXBwQIBQMBHzwZCxUHBxQLGj4gBQkFBxYKAAAAAwAA/+kB0QHXABgAeQCGAAABJyYiDwEOAR0BFBYfARYyPwE+AT0BNCYnBxQGKwEOAQcXFhQPAQYiLwEOAQcVFAYrASImPQEuAScHBiIvASY0PwEuAScjIiY9ATQ2OwE+ATcnJjQ/ATYyHwE+ATc1NDY7ATIWHQEeARc3NjIfARYUDwEeARczMhYdASciBhUUFjMyNjU0JiMBrJ8PKw+fDxYWD58PKw+fDxYWDykLCBcCBwQRBQUOBhAFEQcPCAsIEwgLCA8HEQUQBg4FBREEBwIXCAsLCBcCBwQRBQUOBhAFEQcPCAsIEwgLCA8HEQUQBg4FBREEBwIXCAuaIC4uICAtLSABfFsJCVsJJhG4ESYJWwkJWwkmEbgRJgmmCAsIDwcQBhAFDgYGEAQGAhcIDAwIFwIGBBAGBg4FEAYQBw8ICwgUCAsIDwcQBhAFDgYGEAQGAhcIDAwIFwIGBBAGBg4FEAYQBw8ICwgUVy0gIC0tICAtAAAAAAMAAP/pAdEB1wAYACkASAAAATQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQc3NDY7ATIWDwEOASsBIiY3FwcOASsBIiY1PAE/AT4BOwEyFg8BFAYVFBY7ATIWBwHRFg+fDysPnw8WFg+fDysPnw8W+wQHBx8HBQEEAQcGIAYGAkAEAQcGHhUWARIBBwYgBgUBEAEEBA8GBQEBPBEmCVsJCVsJJhG4ESYJWwkJWwkmEbgDGAYGBgYYBgcHBrEZBgYUEwIGA3IGBgYGaQEBAQMDBwYAAAAAAgAA/+kB0QHXABgAJQAAATQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQcuAScmNhc2FgcOAQcB0RYPnw8rD58PFhYPnw8rD58PFugSeQUEdR8hcQMEehEBPBEmCVsJCVsJJhG4ESYJWwkJWwkmEbjbLz4/OyhCQig7PUEuAAIAAP/pAdEB1wAYACoAAAE0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEHIiYnBzcuATU0NjMyFhUUBiMB0RYPnw8rD58PFhYPnw8rD58PFugLFAlHGRIWSjQzSkozATwRJglbCQlbCSYRuBEmCVsJCVsJJhG4sQMDK0EOJxYrPT0rKj0AAAQAAP/pAdEB1wAMABkAMgCtAAATMjY1NCYjIgYVFBYzMzI2NTQmIyIGFRQWMzc0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEHFAYrAQ4BBxcWFAcxBiIvAQ4BBw4BBzUiBiMqAScVLgEnLgEnBwYiJzEmND8BLgEnIyImPQE0NjsBNDY3JyY0NzE2Mh8BPgE3LgE1NDY3NTQ2OwEVOgEzOgEXNTMyFh0BHgEVFAYHHgEXNzYyFzEWFA8BHgEVMzIWHQHXBAcHBAUHBwUlBAcHBAUHBwXVFg+fDysPnw8WFg+fDysPnw8WYQYFMwEGAyoDAwMJAykCBQIEEQoDBAICBAEKEQQDBgMpAwkDAwMqAwYBMwQHBwQyBAIlAwMDCQMiAgMCAQIRDQYFBAIEAgIEAQUEBg4QAgECBAEiAwkDAwMlAgQyBQYBLgcFBAcHBAUHBwUEBwcEBQcOESYJWwkJWwkmEbgRJglbCQlbCSYRuGEEBwcMBioDCQMDAykCAwISGAQjAQEjBBcSAQQDKQMDAwkDKgYMBwcEAQUGBgwFJQMJAwMDIQIDAgQKBBAaBhEEBxcBGAcEEQcZEAQKBAIDAiEDAwMJAyUFDAYGBQEAAAAADgAA/+kB0QHXAAgAEQAaACMALAA1AD4ARwBQAFkAYgBrAIQAlwAAASYGBxU2Mhc1Bz4BFxUmBgc1FT4BFxUmBgc1FT4BFxUmBgc1FyYGBzU+ARcVNSYGBzU+ARcVJy4BBxU2Mhc1BzYWFxUuAQc1FTYWFxUuAQc1Fy4BBzU2FhcVNS4BBzU2FhcVJzU2FhcVLgEHJTQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQcmIgc8ATU2Mhc2MhccARUmIgcBUBoyFhc2FVMRIhESIhARIhESIhARIhESIhBEEiIQESIREiIQESIRYhYyGhU3FlMRIxAQIhIRIxAQIhJEECISESMQECISESMQRBEjEBAiEgFFFg+fDysPnw8WFg+fDysPnw8W6h1HHBxHHRxHHR1HHAEnEAkPiQ4GiQ8IAgUMBwUIDRgIAgUMBwQJDRgIAgUMBwQJDTcHBAkOBwIEDRgHBAkNCAIEDVYPCRCJBg6JAQQDBw0IBQcNGAQDBw0IBQcNWwkEBgwEAggNGAkEBgwEAggNHg0EAggNCAUHWxEmCVsJCVsJJhG4ESYJWwkJWwkmEbjFFhY0UzUWFhYWNVM0FhYAAAAJAAD/6QHRAdcAJQAqAC8ANABPAGgAeQB+AIMAADc5AjI2Nz4BNTkCNCYnMS4BIzkCIgYHDgEVOQIUFhceATM3MxUjNRUzFSM1NTMVIzUHJw4BIzkCIiYnBw4BHQEUFjsBMjY9ATQmJzc0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEHIyImPQE0NjsBMhYdARQGIyczFSM1FTMVIzWzBgoEAwUFAwQKBgYKBAMFBQMECgZLVlZWVlZWGyAECAQECAQgAwMGBVYFBgMD7hYPnw8rD58PFhYPnw8rD58PFnjhBwkJB+EHCQkHW1ZWVlbXBQQFCwcGDAQEBQUEBAwGBwsFBAUtDw9WDg5yDg5gEQICAgIRAgQDBgQGBgQGAwQCfBEmCVsJCVsJJhG4ESYJWwkJWwkmEbi5CQeaBwkJB5oHCWQODhwPDwAABAAA/+kB0QHXABgAQwBtAH8AAAE0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEHFAYHDgEHKgEjOQEiJicuATUjMTM0Njc5AT4BMzkBOgEzHgEXHgEdATkBJy4BJyoBIzkBIgYHMQ4BFTkCFBYXHgEzOQE6ATM+ATc+ATUwNDE0JicHIiY1NDY3Fyc+ATMyFhUUBiMB0RYPnw8rD58PFhYPnw8rD58PFjMcFxc9IwMGAiZBGBkdAQEdGRhBJgMGAyM8FxccUBIwGwIEAhw0ExMWFhMTMx0CBAIbMBIRFRURZR8rAwRDGgYNBx4rKx4BPBEmCVsJCVsJJhG4ESYJWwkJWwkmEbhdCy0WFSIDIhYXMAkKMBcWIwQiFhYtCgEwER0CHBIRHQQEHBESGwIcERAaBQEEGxB5Kx8IEAcfRQMCKx8fKwAAAwAA/+kB0QHXABgAJQA+AAABNCYvASYiDwEOAR0BFBYfARYyPwE+AT0BAyImNTQ2Nx4BFRQGIzcUBg8BBiY9ATQmLwEmNjsBMhYPAQ4BHQEB0RYPnw8rD58PFhYPnw8rD58PFugIChACARELByEHBSsFBwUEUwMCBfMFAgNTBAUBPBEmCVsJCVsJJhG4ESYJWwkJWwkmEbj+/wsHCxMMDBMLBwtiBQkCCgIGBUwFDARTAwYGA1MEDAU7AAACAAD/6QHRAdcAGAAyAAABNCYvASYiDwEOAR0BFBYfARYyPwE+AT0BBycHBiY/AScmNjM/ATYWHwIeAQ8BFxYGJwHRFg+fDysPnw8WFg+fDysPnw8Wrzs6CxIEETQKCQtFGQUXBBlFDAYJNRADFAgBPBEmCVsJCVsJJhG4ESYJWwkJWwkmEbjSJSQGDgtDLAgWBD8MAQtABQEXBixDDA0HAAAAAAIAAP/pAdEB1wAYAD0AAAE0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEPAQYiLwEHBiIvASY0PwEnJjQ/ATYyHwE3NjIfARYUDwEXFhQHAdEWD58PKw+fDxYWD58PKw+fDxZxDwcWCENECBYHDwcHREQHBw8HFghEQwgWBw8HB0REBwcBPBEmCVsJCVsJJhG4ESYJWwkJWwkmEbjFDggIQ0MICA4IFghDQwgWCA4ICENDCAgOCBYIQ0MIFggAAgAA/+kB0QHXABgAKwAAATQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQUnJjQ/ATYyHwE3NjIfARYUDwEB0RYPnw8rD58PFhYPnw8rD58PFv8AYQgICgcWBzNiCBUHCggIkAE8ESYJWwkJWwkmEbgRJglbCQlbCSYRuL9iBxUICggIM2EICAoHFQiQAAAHAAD/6QHRAdcACgAVABoAHwAkAD0ATgAAATU0JisBIgYdATMHFRQWOwEyNj0BIxcjNTMVMyM1MxUzIzUzFTc0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEHIyImPQE0NjsBMhYdARQGIwFZBQPRAwXh4QUD0QMF4SAQECAQECEREfgWD58PKw+fDxYWD58PKw+fDxaA0QkPDwnRCg4OCgEQGAMFBQMYMEgDBQUDSEAgICAgICCcESYJWwkJWwkmEbgRJglbCQlbCSYRuLwOCpAKDg4KkAoOAAAHAAD/6QHRAdcAGAApAC4AMwA4AD0AQgAAATQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQcjIiY9ATQ2OwEyFh0BFAYjJyMVMzUHMxUjNRcjNTMVNSM1MxUnNTMVIwHRFg+fDysPnw8WFg+fDysPnw8WiMEKDg4KwQoODgoIsbGRcXFxcXFxcXFxcQE8ESYJWwkJWwkmEbgRJglbCQlbCSYRuN0OCtIKDg4K0goO4sLCMRAQcBAQIBAQIBAQAAMAAP/pAdEB1wAMACUAPgAAJTQmIyIGFRQWMzI2NTc0Ji8BJiIPAQ4BHQEUFh8BFjI/AT4BPQEPAQYiLwEOASMiJjU0NjMyFhUUBgcXFhQHARUqHh0qKh0eKrwWD58PKw+fDxYWD58PKw+fDxZtAgQNBEUMHhEpOzspKjsKCUUEBPseKSkeHioqHkERJglbCQlbCSYRuBEmCVsJCVsJJhG41QIEBEUJCzsqKjo6KhAeDEUEDQQAAAABAAD/6QHRAdcAGAAAAScmIg8BDgEdARQWHwEWMj8BPgE9ATQmJwGsnw8rD58PFhYPnw8rD58PFhYPAXxbCQlbCSYRuBEmCVsJCVsJJhG4ESYJAAAC//4AawHTAVUAEAAhAAAlISImPQE0NjMhMhYdARQGIyc0JisBIgYdARQWOwEyNj0BAbb+ZQwREQwBmwwREQz0CAWDBQgIBYMFCGsRC7ILERELsgsRtgUICAWCBgcHBoIAAAAAAv/+AGsB0wFVABAAIQAAJzU0NjMhMhYdARQGIyEiJjUlFBY7ATI2PQE0JisBIgYdAQIRDAGbDBERDP5lDBEBEQgFgwUICAWDBQiHsgsREQuyCxERCxgGBwcGggUICAWCAAAAAAQAAP/pAdEB1wAPABsANABIAAA3NCYjIgYVFBYXBzMnPgE1NzU0JiMiBh0BNjIXNzQmLwEmIg8BDgEdARQWHwEWMj8BPgE9AQcGIic1PgE3NTQ2MzIWHQEeARcV+wsHCAsEAwclBwMEJCAWFyAbNxuyFg+fDysPnw8WFg+fDysPnw8WjSxfLAQKBCsfHisECgS7CAsLCAQHAykpAwcEMSsXICAXKwYGUBEmCVsJCVsJJhG4ESYJWwkJWwkmEbjKEhJuAgMCMB4rKx4wAgMCbgAMABMACwG/Ab8ADgAdAC8AQQBTAGUAdACJAJsArQC/ANEAABMiJj0BNDYzMhYdARQGIxEiJj0BNDYzMhYdARQGIwMiJi8BJjY3NhYfARYGBw4BIxMiJi8BJjY3NhYfARYGBw4BIyciJi8BLgE3PgEfAR4BBw4BIwUqAS8BLgE3PgEfAR4BBw4BIyUjIiY1NDY7ATIWFRQGIyU4ATEjIiY1NDYzOAExMzIWFRQGIwUiJicmNj8BNhYXFgYPAQ4BIyUiJicmNj8BNhYXFgYPAQ4BIwciJicuAT8BPgEXHgEPAQ4BIxMiJicuAT8BPgEXHgEPAQ4BI+0LDw8LCw8PCwcJCQcHCgoHOwYMAygFBggJFAUnBgYJAgcDngQHAigDBAUFDAMnAwMFAgQByQMGA0QIBQUFEghECQUFAwsGARECAwJEBQMDAwoFRAUDAwIGA/7fTwgNDQhPCQwMCQE7TwUICAVPBQgIBf6RBQoCBAQHRAcQBAQEB0QDBQIBEAMGAgMDBUQFCgMDAwVEAgMCyAMEAgcEBCgDDwYHAwMoAgkEnQIDAQUDAycDCgUFAwMnAgYEATwPC08LDw8LTwsP/s8JB08HCQkHTwcJASMGBkQJFAUFBghECRQFAgH++QQDRAYMAwMEBUQFDAMBAd0CAScFEwgIBQUnBRIIBgaTASgCCwUEAwMnAwoFAwNaDAkJDAwJCQwICAUFCAgFBQhpBQUHEAQnBAQHBxAEJwIBpAMDBQsCKAICBQUKAycBAeoBAQQOB0QGBAQDDwZEBQQBFQEBAwoFRAUCAgMKBUQDBAAAAAEAAAAQAgABoAAFAAABBycHFwEBsPBwUMABQAGg8HBQwAFAAAEAAf/hAf8B3wBUAAAlOAExJzc4ATE+ATc2Ji8BLgEHDgEHOAExByc4ATEuAScmBg8BDgEXHgEXOAExFwc4ATEOAQcGFh8BHgE3PgE3OAExNxc4ATEeARcWNj8BPgEnLgEnAfubmwIBAQICBEkDCgQCAgKbmwICAgQKA0kEAgIBAQKbmwIBAQICBEkDCgQCAgKbmwICAgQKA0kEAgIBAQJFm5sCAgIECgNJBAICAQECm5sCAQECAgRJAwoEAgICm5sCAgIECgNJBAICAQECm5sCAQECAgRJAwoEAgICAAAAAgAA/+wB9AHgACYAMwAAJScuAQc+ATU0JicuASMiBgcOARUUFhceATMyNjcGFh8BHgE3NiYnJSImNTQ2MzIWFRQGIwHweQoTCBYYHhoaRigoRhoaHh4aGkYoJD8aAQgJZw0mDQ0CD/7QNUtLNTVLSzUsZwkIARo/JChGGhoeHhoaRigoRhoaHhgWCBMKeQ8CDQ0mDXRLNTVLSzU1SwAAAAMAAP/gAgAB4AAMABIAFwAAATIWFRQGDwEnNz4BMwEHNwEnASUHJzcXAbAhLwgIIHAgChgO/nAgkAEocP7YAUbgHOAcAeAvIQ4YCiBwIAgI/pCQIAEocP7YuuAc4BwAAAcAQP/gAcAB4AAKAA8AIQAyADcAPABBAAABISIGHQEhNTQmIycXIzczNyMiBg8BBhY7ATI2LwEuASMxFyEiBhcTHgE7ATI2NxM2JiMDIyczFTMjNTMVMyM1MwcBkP7gFBwBgBwUVAeGB3gEgAoQAQoBDAqgCgwBCgEQClj+0A0RARoBFQ3wDRUBGgERDdgwEEBgQEBQMEAQAaAcFBAQFBwgMjIgDgpDCg0NCkMKDqATDf7gDRMTDQEgDRP+4ODg4ODg4AADAAD/4AIAAeAAGAAxAFAAACUUBgcOASMiJicuATU0Njc+ATMyFhceARUhFBYXHgEzMjY3PgE1NCYnLgEjIgYHDgEVNxcWFAcGIi8BFRQGIyImPQEHBiInLgE1NDY/ATYyFwIAKCMjXTU1XSMjKCgjI101NV0jIyj+MCEcHEwrK0wcHCEhHBxMKytMHBwh54AJCQoaCkkTDQ0TSQoaCgQFBQSAChoK4DVdIyMoKCMjXTU1XSMjKCgjI101K0wcHCEhHBxMKytMHBwhIRwcTCuXgAoaCgkJSrMNExMNs0oJCQUMBgYMBYAJCQAAAAMAAP/gAgAB4AAYADEAUAAAJTQmJy4BIyIGBw4BFRQWFx4BMzI2Nz4BNSE0Njc+ATMyFhceARUUBgcOASMiJicuATUXNzY0JyYiDwE1NCYjIgYdAScmIgcOARUUFh8BFjI3AgAoIyNdNTVdIyMoKCMjXTU1XSMjKP4wIRwcTCsrTBwcISEcHEwrK0wcHCHngAkJChoKSRMNDRNJChoKBAUFBIAKGgrgNV0jIygoIyNdNTVdIyMoKCMjXTUrTBwcISEcHEwrK0wcHCEhHBxMK5eAChoKCQlKsw0TEw2zSgkJBQwGBgwFgAkJAAAAAwAA/+ACAAHgABgAMQBQAAABMhYXHgEVFAYHDgEjIiYnLgE1NDY3PgEzETI2Nz4BNTQmJy4BIyIGBw4BFRQWFx4BMyc3NjIXFhQPATMyFhUUBisBFxYUBw4BIyImLwEmNDcBADVdIyMoKCMjXTU1XSMjKCgjI101K0wcHCEhHBxMKytMHBwhIRwcTCuXgAoaCgkJSrMNExMNs0oJCQUMBgYMBYAJCQHgKCMjXTU1XSMjKCgjI101NV0jIyj+MCEcHEwrK0wcHCEhHBxMKytMHBwh54AJCQoaCkkTDQ0TSQoaCgQFBQSAChoKAAADAAD/4AIAAeAAGAAxAFAAAAEiBgcOARUUFhceATMyNjc+ATU0JicuASMRIiYnLgE1NDY3PgEzMhYXHgEVFAYHDgEjNycmIgcGFB8BIyIGFRQWOwEHBhQXHgEzMjY/ATY0JwEANV0jIygoIyNdNTVdIyMoKCMjXTUrTBwcISEcHEwrK0wcHCEhHBxMK5eAChoKCQlKsw0TEw2zSgkJBQwGBgwFgAkJAeAoIyNdNTVdIyMoKCMjXTU1XSMjKP4wIRwcTCsrTBwcISEcHEwrK0wcHCHngAkJChoKSRMNDRNJChoKBAUFBIAKGgoAAAMAAP/gAgAB4AAYADEAPgAABSImJy4BNTQ2Nz4BMzIWFx4BFRQGBw4BIxEiBgcOARUUFhceATMyNjc+ATU0JicuASMTIzUjNTM1MxUzFSMVAQA1XSMjKCgjI101NV0jIygoIyNdNShGGhoeHhoaRigoRhoaHh4aGkYoIEBgYEBgYCAoIyNdNTVdIyMoKCMjXTU1XSMjKAHAHhoaRigoRhoaHh4aGkYoKEYaGh7+wGBAYGBAYAAAAAADAAD/4AIAAeAAGAAxADYAAAEiBgcOARUUFhceATMyNjc+ATU0JicuASMRIiYnLgE1NDY3PgEzMhYXHgEVFAYHDgEjJyE1IRUBADVdIyMoKCMjXTU1XSMjKCgjI101KEYaGh4eGhpGKChGGhoeHhoaRiiAAQD/AAHgKCMjXTU1XSMjKCgjI101NV0jIyj+QB4aGkYoKEYaGh4eGhpGKChGGhoeoEBAAAADADAAEAHAAaAAYABtAHoAACUjDgEHFxYUDwEGIi8BDgEHFRQGKwEiJj0BLgEnBwYiLwEmND8BLgEnIyImPQE0NjsBPgE3JyY0PwE2Mh8BPgE3NTQ2OwEyFh0BHgEXNzYyHwEWFA8BHgEXMzIWHQEUBiMnIgYVFBYzMjY1NCYjFSImNTQ2MzIWFRQGIwGgFQMHBRQJCQwJGwkUCBIJEw0QDRMJEggUCRsJDAkJFAUHAxUNExMNFQIIBBMJCQwJGwkTCBIKEw0QDRMKEggTCRsJDAkJEwQIAhUNExMNqCUzMyUlMzMlERcXEREXFxGvCRIIFAkbCQwJCRQFBwIVDRMTDRUCBwUUCQkMCRsJFAgSCRMNEA0TCRIIEwkbCQwJCRMFCAIWDRMTDRYCCAUTCQkMCRsJEwgSCRMNEA0TgDQlJDQ0JCU0gBgREBgYEBEYAAAEAAD/4AIAAeAAGAAxADYAOwAABSImJy4BNTQ2Nz4BMzIWFx4BFRQGBw4BIxEiBgcOARUUFhceATMyNjc+ATU0JicuASMDMxUjNTUzFSM1AQA1XSMjKCgjI101NV0jIygoIyNdNShGGhoeHhoaRigoRhoaHh4aGkYoIEBAQEAgKCMjXTU1XSMjKCgjI101NV0jIygBwB4aGkYoKEYaGh4eGhpGKChGGhoe/wBAQMCgoAAAAAADAAD/4AIAAeAAGAAmADQAAAUiJicuATU0Njc+ATMyFhceARUUBgcOASMDFBYXAS4BIyIGBw4BFSUBHgEzMjY3PgE1NCYnAQA1XSMjKCgjI101NV0jIygoIyNdNcATEQELGDgfKEYaGh4BXP71GDgfKEYaGh4TESAoIyNdNTVdIyMoKCMjXTU1XSMjKAEAHzgYAQsREx4aGkYob/71ERMeGhpGKB84GAABAB///wHhAcEACQAAARczBxcnBzcnMwEAPaSGMIuLMIakAcGsZbFqarFlAAIAH///AeEBwQAKABUAAAEjJwcjFwc3Fyc3DwE3Jxc3FzcHFycB4aQ9PaSGMIuLMIbhTSBJWhwcWkkgTQEVrKxlsWpqsWV6QFs7AmdnAjtbQAAAAAMAAP/gAgAB4AAYADEAPgAANy4BNTQ2Nz4BMzIWFx4BFRQGBw4BIyImJwEuASMiBgcOARUUFhceATMyNjc+ATU0JicHJzcnNxc3FwcXBycHSyYlJSYlXzExXyUmJSUmJV8xMV8lAT0cRyUlRxwcHBwcHEclJUccHBwcHMwtREQtREQtREQtREQrJV8xMV8lJiUlJiVfMTFfJSYlJSYBPRwcHBwcRyUlRxwcHBwcHEclJUcc+S1ERC1ERC1ERC1ERAAAAAAGABX/9AHrAcsAGAAnADYARQBSAGEAABMiBgcOARcUFhceATM+ATc+ASc0JicuAQcVMhYXBy4BIyIGByc+ATcDBy4BJzQ2NxcOARUUFhcXIiYnNx4BMzI2NxcOAQcnIiY1NDYzMhYVFAYjNz4BNTQmJzceARcUBgcn/TFVIB8kASYhIFYxMVUgHyQBJiEgVjEbMRYgDiARESAOIBUuGX41CgwBDAs1BwcHB4QbMRYgDiARESAOIBUuGQMvQkIvL0JCL4EHBwcHNQoMAQwLNQHLJiEgVjExVSAfJAEmISBWMTFVIB8kAR4MCzUHBwcHNQoMAf70HxQuGRsxFiAOIBERIA6ODAs1BwcHBzUKDAFcQi8vQkIvL0IyDiARESAOIBUuGRsxFiAAAAIAGgAlAesBnQAxADoAAAEOAQcOAQcOARceATEjFzA2Nz4BNzYWBw4BBw4BMTgBMQcXMBYXFjY3PgE3PgE1NiYHARQWNz4BMScVAd8Ei1RTiwMGAQYIWgE6VzQ1WAEDBQIBQCUmPgsPeQYGDAIBFw0OFwIIBv7WBAQFRFEBnQIxHR0yAQIHAwMkF0AmJ0ABAwYCAUQpKUMNCEEEAwUHBGM7OmIDBgcC/owFAgMEPipoAAAAAAEAAAABMzOcPi/AXw889QALAgAAAAAA0OItCgAAAADQ4i0K//7/4AIAAeAAAAAIAAIAAAAAAAAAAQAAAeD/4AAAAgD//v/+AgAAAQAAAAAAAAAAAAAAAAAAAEAAAAAAAAAAAAAAAAABAAAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHRAAAB0QAAAdEAAAHR//4B0f/+AdEAAAHRABMCAAAAAgAAAQIAAAACAAAAAgAAQAIAAAACAAAAAgAAAAIAAAACAAAAAgAAAAIAADACAAAAAgAAAAIAAB8CAAAfAgAAAAIAABUCAAAaAAAAAAAKABQAHgB6AN4BUAHqAjoCqgMSA3oD+ARmBK4E/gVWBcYGngdeB7gIJAiMCSoJ5gqiCwwLSguMDHQNVg36DpwO+g9MD6oP8BBcELoRFhFAEXIRpBIMEzwTThO+FA4UPhSgFRYVjBYCFngW1BcoF9AYKhh+GJQYvhkgGbQaDgAAAAEAAABAANIADgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAUAPYAAQAAAAAAAABKABYAAQAAAAAAAQAWAAAAAQAAAAAAAgAOARkAAQAAAAAAAwAWAOIAAQAAAAAABAAWAScAAQAAAAAABQAWAMwAAQAAAAAABgALAPgAAQAAAAAACgA0AT0AAQAAAAAACwA2AJYAAQAAAAAADAA2AGAAAwABBAkAAABKABYAAwABBAkAAQAWAAAAAwABBAkAAgAOARkAAwABBAkAAwAWAOIAAwABBAkABAAWAScAAwABBAkABQAWAMwAAwABBAkABgAWAQMAAwABBAkACgA0AT0AAwABBAkACwA2AJYAAwABBAkADAA2AGAAZwByAGEAdgBpAHQAeQBmAG8AbgB0AEMAbwBwAHkAcgBpAGcAaAB0ACAAMgAwADEANAAtADIAMAAxADUAIABSAG8AYwBrAGUAdABnAGUAbgBpAHUAcwAgAEkAbgBjAC4AaAB0AHQAcAA6AC8ALwB3AHcAdwAuAHIAbwBjAGsAZQB0AGcAZQBuAGkAdQBzAC4AYwBvAG0AaAB0AHQAcAA6AC8ALwB3AHcAdwAuAGcAcgBhAHYAaQB0AHkAZgBvAHIAbQBzAC4AYwBvAG0AVgBlAHIAcwBpAG8AbgAgADEALgAyAGcAcgBhAHYAaQB0AHkAZgBvAG4AdGdyYXZpdHlmb250AGcAcgBhAHYAaQB0AHkAZgBvAG4AdABSAGUAZwB1AGwAYQByAGcAcgBhAHYAaQB0AHkAZgBvAG4AdABGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=) format('truetype'),url(data:application/font-woff;charset=utf-8;base64,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) format('woff');font-weight:400;font-style:normal}[class*=" gficon-"],[class^=gficon-]{font-family:gravityfont;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.gficon-gravityforms-locked-icon:before{content:"\e627"}.gficon-gravityforms-logo-icon:before{content:"\e60c"}.gficon-gravitycharge-logo-icon:before{content:"\e600"}.gficon-gravityforms-rocket-icon:before{content:"\e614"}.gficon-gravityforms-form-icon:before{content:"\e60b"}.gficon-gravityforms-css-alt-con:before{content:"\e60e"}.gficon-gravityforms-markup-icon:before{content:"\e60d"}.gficon-gravityforms-key-icon:before{content:"\e610"}.gficon-gravityforms-upload-icon:before{content:"\e612"}.gficon-gravityforms-download-icon:before{content:"\e611"}.gficon-gravityforms-filter-icon:before{content:"\e61d"}.gficon-gravityforms-settings-icon:before{content:"\e615"}.gficon-gravityforms-eye-icon:before{content:"\e61c"}.gficon-gravityforms-star-icon:before{content:"\e61e"}.gficon-gravityforms-cross-icon:before{content:"\e61f"}.gficon-gravityforms-tick-icon:before{content:"\e620"}.gficon-gravityforms-credit-icon:before{content:"\e621"}.gficon-gravityforms-file-icon:before{content:"\e622"}.gficon-gravityforms-search-icon:before{content:"\e623"}.gficon-gravityforms-bullet-icon:before{content:"\e624"}.gficon-gravityforms-bug-icon:before{content:"\e619"}.gficon-gravityforms-docs-icon:before{content:"\e61a"}.gficon-gravityforms-vcard-icon:before{content:"\e61b"}.gficon-gravityforms-info-icon:before{content:"\e616"}.gficon-gravityforms-favorite-icon:before{content:"\e617"}.gficon-gravityforms-chat-icon:before{content:"\e618"}.gficon-gravityforms-zero-icon:before{content:"\e601"}.gficon-gravityforms-nine-icon:before{content:"\e602"}.gficon-gravityforms-eight-icon:before{content:"\e603"}.gficon-gravityforms-seven-icon:before{content:"\e604"}.gficon-gravityforms-six-icon:before{content:"\e605"}.gficon-gravityforms-five-icon:before{content:"\e606"}.gficon-gravityforms-four-icon:before{content:"\e607"}.gficon-gravityforms-three-con:before{content:"\e608"}.gficon-gravityforms-two-icon:before{content:"\e609"}.gficon-gravityforms-one-icon:before{content:"\e60a"}.gficon-gravityforms-css-icon:before{content:"\e60f"}.gficon-gravityforms-dollar-icon:before{content:"\e613"}.gficon-gravityforms-slideoff-icon:before{content:"\e625"}.gficon-gravityforms-slideon-icon:before{content:"\e626"}.gficon-settings-cog:before{content:"\e634"}.gficon-gravityforms-spinner-icon:before{content:"\e628"}.gficon-tick:before{content:"\e629"}.gficon-cross:before{content:"\e62a"}.gficon-search:before{content:"\e62b"}.gficon-pencil:before{content:"\e62c"}.gficon-exclamation:before{content:"\e635"}.gficon-forbid:before{content:"\e636"}.gficon-star:before{content:"\e639"}.gficon-star-hollow:before{content:"\e63a"}.gficon-trash:before{content:"\e62d"}.gficon-arrow-up:before{content:"\e62e"}.gficon-arrow-down:before{content:"\e62f"}.gficon-arrow-left:before{content:"\e630"}.gficon-arrow-right:before{content:"\e631"}.gficon-add:before{content:"\e632"}.gficon-subtract:before{content:"\e633"}.gficon-close:before{content:"\e63b"}.gficon-support:before{content:"\e63c"}.gficon-send:before{content:"\e63d"}.gficon-star1:before{content:"\e639";color:#FF9800;font-size:1.2em;margin-top:.188em}.gficon-star0:before{content:"\e63a";color:#CCC;font-size:1.2em;margin-top:.188em}.gfield_creditcard_warning_message .gficon-forbid{color:#9C0F17!important;margin-right:1em}.gficon-2x{font-size:2em}.gficon-3x{font-size:3em}@keyframes rotation{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}@-webkit-keyframes rotation{0%{-webkit-transform:rotate(0)}100%{-webkit-transform:rotate(360deg)}}@-moz-keyframes rotation{0%{-moz-transform:rotate(0)}100%{-moz-transform:rotate(360deg)}}.gficon-spin{animation:rotation 2s linear infinite;-webkit-animation:rotation 2s linear infinite;-moz-animation:rotation 2s linear infinite;text-shadow:0 0 2px rgba(255,255,255,.2);margin-left:2px}.gficon-gravityforms-spinner-icon.gficon-spin{color:#D54E21;font-size:1.5em}html[dir=rtl] .gform_wrapper *,html[dir=rtl] .gform_wrapper .gform_body,html[dir=rtl] .gform_wrapper .gform_footer,html[dir=rtl] .gform_wrapper button,html[dir=rtl] .gform_wrapper div.validation_error,html[dir=rtl] .gform_wrapper form,html[dir=rtl] .gform_wrapper h3.gform_title,html[dir=rtl] .gform_wrapper input[type=text],html[dir=rtl] .gform_wrapper input[type=email],html[dir=rtl] .gform_wrapper input[type=password],html[dir=rtl] .gform_wrapper input[type=url],html[dir=rtl] .gform_wrapper input[type=tel],html[dir=rtl] .gform_wrapper input[type=submit],html[dir=rtl] .gform_wrapper input[type=button],html[dir=rtl] .gform_wrapper select,html[dir=rtl] .gform_wrapper span.gform_description,html[dir=rtl] .gform_wrapper table tr td.gfield_list_icons,html[dir=rtl] .gform_wrapper textarea,html[dir=rtl] .gform_wrapper ul li,html[dir=rtl] .gform_wrapper ul li.gfield,html[dir=rtl] .gform_wrapper ul li.gfield input,html[dir=rtl] .gform_wrapper ul li.gfield select,html[dir=rtl] .gform_wrapper ul li.gfield textarea,html[dir=rtl] .gform_wrapper ul li.gfield.gfield_html{text-align:right;direction:rtl}html[dir=rtl] .gform_wrapper ul,html[dir=rtl] .gform_wrapper ul li{margin-right:0!important;padding-right:0!important}html[dir=rtl] .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,html[dir=rtl] .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,html[dir=rtl] .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,html[dir=rtl] .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li{margin:0!important;direction:rtl!important}html[dir=rtl] .gform_wrapper table.gfield_list td,html[dir=rtl] .gform_wrapper table.gfield_list th{padding-left:16px;padding-right:0}.gform_wrapper table.gfield_list tr td.gfield_list_icons,.gform_wrapper table.gfield_list tr td:last-child{padding:0 4px 0 0!important}html[dir=rtl] .gform_wrapper.gf_browser_gecko .left_label input[type=file],html[dir=rtl] .gform_wrapper.gf_browser_gecko .right_label input[type=file],html[dir=rtl] .gform_wrapper.gf_browser_gecko .top_label input[type=file]{width:55%!important;direction:rtl!important}html[dir=rtl] .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice{float:right!important;margin:3px 5px 3px 0!important}html[dir=rtl] .gform_wrapper .chosen-container ul.chosen-choices li.search-field{float:right!important}html[dir=rtl] .gform_wrapper .right_label .gfield_label{text-align:left!important}body .gform_wrapper.gf_rtl_wrapper .gform_footer,body .gform_wrapper.gf_rtl_wrapper .gform_heading,body .gform_wrapper.gf_rtl_wrapper button,body .gform_wrapper.gf_rtl_wrapper div.validation_error,body .gform_wrapper.gf_rtl_wrapper h3.gform_title,body .gform_wrapper.gf_rtl_wrapper input[type=text],body .gform_wrapper.gf_rtl_wrapper input[type=email],body .gform_wrapper.gf_rtl_wrapper input[type=password],body .gform_wrapper.gf_rtl_wrapper input[type=url],body .gform_wrapper.gf_rtl_wrapper input[type=tel],body .gform_wrapper.gf_rtl_wrapper input[type=submit],body .gform_wrapper.gf_rtl_wrapper input[type=button],body .gform_wrapper.gf_rtl_wrapper select,body .gform_wrapper.gf_rtl_wrapper span.gform_description,body .gform_wrapper.gf_rtl_wrapper table tr td.gfield_list_icons,body .gform_wrapper.gf_rtl_wrapper textarea,body .gform_wrapper.gf_rtl_wrapper ul li,body .gform_wrapper.gf_rtl_wrapper ul li.gfield,body .gform_wrapper.gf_rtl_wrapper ul li.gfield input,body .gform_wrapper.gf_rtl_wrapper ul li.gfield select,body .gform_wrapper.gf_rtl_wrapper ul li.gfield textarea,body .gform_wrapper.gf_rtl_wrapper ul li.gfield.gfield_html,body.rtl .gform_wrapper *,body.rtl .gform_wrapper .gform_body,body.rtl .gform_wrapper .gform_footer,body.rtl .gform_wrapper button,body.rtl .gform_wrapper div.validation_error,body.rtl .gform_wrapper form,body.rtl .gform_wrapper h3.gform_title,body.rtl .gform_wrapper input[type=text],body.rtl .gform_wrapper input[type=email],body.rtl .gform_wrapper input[type=password],body.rtl .gform_wrapper input[type=url],body.rtl .gform_wrapper input[type=tel],body.rtl .gform_wrapper input[type=submit],body.rtl .gform_wrapper input[type=button],body.rtl .gform_wrapper select,body.rtl .gform_wrapper span.gform_description,body.rtl .gform_wrapper table tr td.gfield_list_icons,body.rtl .gform_wrapper textarea,body.rtl .gform_wrapper ul li,body.rtl .gform_wrapper ul li.gfield,body.rtl .gform_wrapper ul li.gfield input,body.rtl .gform_wrapper ul li.gfield select,body.rtl .gform_wrapper ul li.gfield textarea,body.rtl .gform_wrapper ul li.gfield.gfield_html{text-align:right!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper ul,body .gform_wrapper.gf_rtl_wrapper ul li,body.rtl .gform_wrapper ul,body.rtl .gform_wrapper ul li{margin-right:0!important;padding-right:0!important}body .gform_wrapper.gf_rtl_wrapper .gfield_checkbox li input,body .gform_wrapper.gf_rtl_wrapper .gfield_checkbox li input[type=checkbox],body .gform_wrapper.gf_rtl_wrapper .gfield_radio li input[type=radio],body.rtl .gform_wrapper .gfield_checkbox li input,body.rtl .gform_wrapper .gfield_checkbox li input[type=checkbox],body.rtl .gform_wrapper .gfield_radio li input[type=radio]{float:right!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body .gform_wrapper.gf_rtl_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body .gform_wrapper.gf_rtl_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body.rtl .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body.rtl .gform_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html ul li,body.rtl .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ol li,body.rtl .gform_wrapper form div.gform_body ul.gform_fields li.gfield.gfield_html ul li{margin:0 24px 0 0!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table{direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html blockquote,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html p,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html span,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table td,body .gform_wrapper.gf_rtl_wrapper div.gform_body ul.gform_fields li.gfield.gfield_html table th{text-align:right!important;direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list td,body .gform_wrapper.gf_rtl_wrapper table.gfield_list th,body.rtl .gform_wrapper table.gfield_list td,body.rtl .gform_wrapper table.gfield_list th{padding:0!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list{direction:rtl!important}body .gform_wrapper.gf_rtl_wrapper table.gfield_list thead th{text-align:right!important}body .gform_wrapper.gf_rtl_wrapper table input,body.rtl .gform_wrapper table input{float:right!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container-multi ul.chosen-choices li.search-choice,body.rtl .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice{float:right!important;margin:3px 5px 3px 0!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container ul.chosen-choices li.search-field,body.rtl .gform_wrapper .chosen-container ul.chosen-choices li.search-field{float:right!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_label,body.rtl .gform_wrapper ul:not(.top_label) .gfield_label{float:right!important;margin:0 0 0 15px!important}body .gform_wrapper.gf_rtl_wrapper .right_label .gfield_label,body.rtl .gform_wrapper .right_label .gfield_label{text-align:left!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_description,body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .instruction,body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) div.ginput_complex,body.rtl .gform_wrapper ul:not(.top_label) .gfield_description,body.rtl .gform_wrapper ul:not(.top_label) .instruction,body.rtl .gform_wrapper ul:not(.top_label) div.ginput_complex{margin-right:31%!important;margin-left:0!important}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) .gfield_description,body.rtl .gform_wrapper ul:not(.top_label) .gfield_description{padding:0}body .gform_wrapper.gf_rtl_wrapper ul:not(.top_label) li.gfield_html_formatted,body.rtl .gform_wrapper ul:not(.top_label) li.gfield_html_formatted{margin-left:0!important;margin-right:32%!important}body .gform_wrapper.gf_rtl_wrapper .gform_footer.left_label,body .gform_wrapper.gf_rtl_wrapper .gform_footer.right_label,body.rtl .gform_wrapper .gform_footer.left_label,body.rtl .gform_wrapper .gform_footer.right_label{padding:16px 31% 10px 0!important}body .gform_wrapper.gf_rtl_wrapper .ginput_right select,body.rtl .gform_wrapper .ginput_right select,html[dir=rtl] .gform_wrapper .ginput_right select{margin-right:2px}body .gform_wrapper.gf_rtl_wrapper img.ui-datepicker-trigger,body.rtl .gform_wrapper img.ui-datepicker-trigger,html[dir=rtl] .gform_wrapper img.ui-datepicker-trigger{margin:4px 2px 0 0}body .gform_wrapper.gf_rtl_wrapper .gf_progressbar_percentage span,body.rtl .gform_wrapper .gf_progressbar_percentage span,html[dir=rtl] .gform_wrapper .gf_progressbar_percentage span{display:block;width:auto;float:left!important}body .gform_wrapper.gf_rtl_wrapper .gf_step span.gf_step_number,body.rtl .gform_wrapper .gf_step span.gf_step_number,html[dir=rtl] .gform_wrapper .gf_step span.gf_step_number{float:right!important}body .gform_wrapper.gf_rtl_wrapper .gform_wrapper .gf_step,body.rtl .gform_wrapper .gf_step,html[dir=rtl] .gform_wrapper .gf_step{margin:0 0 10px 10px!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container .chosen-results li.active-result,body.rtl .gform_wrapper .chosen-container .chosen-results li.active-result,html[dir=rtl] .gform_wrapper .chosen-container .chosen-results li.active-result{padding-right:24px!important}body .gform_wrapper.gf_rtl_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close,body.rtl .gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close,html[dir=rtl] .gform_wrapper .chosen-container-multi .chosen-choices .search-choice .search-choice-close{right:5px!important}body .gform_wrapper.gf_rtl_wrapper .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span,body.rtl .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span,html[dir=rtl] .gform_wrapper .chosen-container-multi ul.chosen-choices li.search-choice span{display:block;margin-right:19px!important}html[dir=rtl] div#preview_hdr span.actionlinks{float:left!important;text-align:left!important}html[dir=rtl] div#preview_hdr div:first-child{background-position:right center!important;padding-left:10px!important;padding-right:10px!important}html[dir=rtl] .gform_wrapper .gf_invisible,html[dir=rtl] .gform_wrapper .gfield_visibility_hidden{left:auto;right:-9999px}html[dir=rtl] .gform_wrapper .gf_progressbar_percentage{border-radius:4px 20px 20px 4px}html[dir=rtl] body.wp-admin *{direction:rtl!important}html[dir=rtl] body.wp-admin li.gf_form_switcher{display:block;position:relative;right:0}html[dir=rtl] body.wp-admin div#add_fields{float:left}html[dir=rtl] body.wp-admin .button-title-link div.add-buttons-title{position:relative;background-image:url(../images/gf-expand-title-bg-rtl.png);background-position:left 0;text-align:right;padding:8px 14px 0 0!important}html[dir=rtl] body.wp-admin ul#gf_form_toolbar_links{padding:0 6px 0 0!important}html[dir=rtl] body.wp-admin .top_label .gfield_label{margin:8px 6px 4px 0}html[dir=rtl] body.wp-admin .gfield_checkbox li input,html[dir=rtl] body.wp-admin .gfield_checkbox li input[type=checkbox],html[dir=rtl] body.wp-admin .gfield_radio li input[type=radio]{float:right!important;margin-left:2px!important;margin-right:1px!important}html[dir=rtl] body.wp-admin .ginput_complex .ginput_left,html[dir=rtl] body.wp-admin .ginput_complex .ginput_right{float:right!important}html[dir=rtl] body.wp-admin .gfield_time_hour,html[dir=rtl] body.wp-admin .gfield_time_minute{float:right}html[dir=rtl] body.wp-admin #TB_ajaxWindowTitle,html[dir=rtl] body.wp-admin .gf_new_form_modal_container .setting-row label,html[dir=rtl] body.wp-admin .gf_new_form_modal_container div.submit-row input#save_new_form.button,html[dir=rtl] body.wp-admin .gfield_date_day,html[dir=rtl] body.wp-admin .gfield_date_month,html[dir=rtl] body.wp-admin .gfield_date_year{float:right!important}html[dir=rtl] body.wp-admin img#gfield_input_datepicker_icon{left:-4px}html[dir=rtl] body.wp-admin div#gf_nofield_1_instructions{background-position:0 -1995px}html[dir=rtl] body.wp-admin div#gf_nofield_1_instructions span{margin-left:300px}html[dir=rtl] body.wp-admin ul#gform_fields li#no-fields div.newform_notice span{position:absolute;right:340px;top:40px;background-position:0 -1880px}html[dir=rtl] body.wp-admin #TB_closeAjaxWindow{float:left!important}html[dir=rtl] body.wp-admin .gform_tabs li.active a{position:relative;right:-1px;padding:6px 10px!important}html[dir=rtl] body.wp-admin a.tooltip,html[dir=rtl] body.wp-admin a.tooltip_bottomleft,html[dir=rtl] body.wp-admin a.tooltip_left{overflow:hidden}html[dir=rtl] body.wp-admin h2.gf_admin_page_title span.gf_admin_page_subtitle span.gf_admin_page_formid{margin:0 0 0 8px!important}html[dir=rtl] body.wp-admin p.submit input.gf_settings_savebutton{float:right}html[dir=rtl] .gform_wrapper .gfield_time_hour i,html[dir=rtl] div#preview_hdr span.toggle_helpers{float:left}html[dir=rtl] body.wp-admin p[style]{text-align:right!important}html[dir=rtl] body.wp-admin div.delete-alert{padding:0 20px 20px}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left:nth-of-type(odd),html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_full+span.ginput_right{padding-right:0!important;padding-left:16px!important}html[dir=rtl] .gform_wrapper span.ginput_left,html[dir=rtl] .gform_wrapper ul.gform_fields li.gfield{padding-left:16px;padding-right:0}html[dir=rtl] .gform_wrapper ul.gform_fields li.gfield.gfield_error{padding-right:16px!important}html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_2 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_3 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_4 span:first-child,html[dir=rtl] div.ginput_complex.ginput_container.gf_name_has_5 span:first-child{margin-right:0!important;padding-right:0;margin-left:-4px}html[dir=rtl] div.ginput_container_name span{padding-right:0;padding-left:16px;margin-right:0;margin-left:-4px}html[dir=rtl] div#preview_hdr span.toggle_helpers input,html[dir=rtl] div#preview_hdr span.toggle_helpers label{display:-moz-inline-stack;display:inline-block}html[dir=rtl] div#preview_note{border-right:4px solid #ffba00;border-left:none!important}html[dir=rtl] .gform_wrapper span.gfield_required{margin-left:0;margin-right:4px}html[dir=rtl] .gform_wrapper li.gfield.gfield_creditcard_warning div.gfield_creditcard_warning_message span{padding:0 24px 14px 0;background-position:100% top}html[dir=rtl] .gform_wrapper .gform_card_icon_container div,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_left,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_right,html[dir=rtl] .gform_wrapper span.ginput_price{float:right}.gform_wrapper .gfield_description,html[dir=rtl] .gform_wrapper .description,html[dir=rtl] .gform_wrapper .gsection_description{padding:10px 0 10px 16px}html[dir=rtl] .gform_wrapper .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{right:6px;top:-1px;width:32px}html[dir=rtl] div.form_saved_message,html[dir=rtl] div.form_saved_message *{text-align:center!important}html[dir=rtl] .gform_wrapper .gform_fileupload_multifile .gform_drop_area,html[dir=rtl] .gform_wrapper div.validation_error,html[dir=rtl] .gform_wrapper span.gform_drop_instructions{text-align:center}html[dir=rtl] .gform_wrapper .gfield_checkbox li label,html[dir=rtl] .gform_wrapper .gfield_radio li label{margin:0 4px 0 0}html[dir=rtl] .gform_wrapper:not(.gf_browser_gecko):not(.gf_browser_ie) select{background-position:3.5% center}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_left,html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container.ginput_container_email .ginput_right{padding-left:16px;padding-right:0}@media only screen and (max-width:761px),(min-device-width:768px) and (max-device-width:1024px){html[dir=rtl] .gform_wrapper table.gfield_list{border:0}html[dir=rtl] .gform_wrapper ul.gform_fields.form_sublabel_above table.gfield_list td:before{margin:8px 1px 3px 0}html[dir=rtl] .gform_wrapper table.gfield_list td{clear:both}html[dir=rtl] .gform_wrapper table.gfield_list td:last-child(2){padding-bottom:4px!important}html[dir=rtl] .gform_wrapper table.gfield_list td.gfield_list_icons{vertical-align:middle;padding:0 4px 4px 0!important}}@media only screen and (min-width:641px){html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_label{float:right!important;margin:0 0 0 15px!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description,html[dir=rtl] .gform_wrapper ul:not(.top_label) .ginput_container:not(.ginput_container_time){width:70%;margin-right:29%;margin-left:0}html[dir=rtl] .gform_wrapper .ul:not(.top_label) .instruction,html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description{margin-right:29%!important;margin-left:0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) div.ginput_complex{margin-right:31%!important;margin-left:0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) .gfield_description{padding:10px 0!important}html[dir=rtl] .gform_wrapper ul:not(.top_label) li.gfield_html_formatted{margin-left:0!important;margin-right:32%!important}html[dir=rtl] .gform_wrapper .gform_footer.left_label,html[dir=rtl] .gform_wrapper .gform_footer.right_label{padding:16px 31% 10px 0!important}html[dir=rtl] .gform_wrapper .gform_footer a.gform_save_link,html[dir=rtl] .gform_wrapper .gform_page_footer a.gform_save_link{margin-right:16px}html[dir=rtl] .gform_wrapper table input{float:right!important}html[dir=rtl] .gform_wrapper .left_label li.gfield .gfield_password_strength,html[dir=rtl] .gform_wrapper .right_label li.gfield .gfield_password_strength{margin-left:0;margin-right:29%;width:70%;text-align:center!important}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left,html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right+span.ginput_left.address_zip{margin-right:0}.gform_wrapper .ginput_complex .ginput_right,html[dir=rtl] .gform_wrapper .ginput_complex .ginput_left{margin:0 0 0 -4px}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_right+span.ginput_left{padding-right:0!important;margin-right:0!important}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_right{margin-right:0}html[dir=rtl] .gform_wrapper ul li.gf_right_half{margin-left:0}html[dir=rtl] .gform_wrapper .gform_footer input.button,html[dir=rtl] .gform_wrapper .gform_footer input[type=submit],html[dir=rtl] .gform_wrapper .gform_page_footer input.button,html[dir=rtl] .gform_wrapper .gform_page_footer input[type=submit]{margin:0 0 0 16px}}@media only screen and (max-width:641px){html[dir=rtl] body .gform_wrapper .gform_footer .button.gform_button,html[dir=rtl] body .gform_wrapper .gform_footer a.gform_save_link,html[dir=rtl] body .gform_wrapper .gform_page_footer,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_button,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_next_button,html[dir=rtl] body .gform_wrapper .gform_page_footer .button.gform_previous_button,html[dir=rtl] body .gform_wrapper .gform_page_footer a.gform_save_link{text-align:center!important}html[dir=rtl] div.ginput_container_name span{padding-left:0}html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address .ginput_left:nth-of-type(odd),html[dir=rtl] .gform_wrapper .ginput_complex.ginput_container_address span.ginput_full+span.ginput_right{padding-right:0!important;padding-left:0!important}html[dir=rtl] .gform_footer,html[dir=rtl] .gform_page_footer{padding-left:16px}html[dir=rtl] .gform_wrapper{padding-right:16px}}body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .left_label input[type=file],body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .right_label input[type=file],body .gform_wrapper.gf_rtl_wrapper.gf_browser_gecko .top_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .left_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .right_label input[type=file],body.rtl .gform_wrapper.gf_browser_gecko .top_label input[type=file]{width:55%!important;direction:rtl}*{direction:ltr}#gform_fields *{box-sizing:border-box}.gf_admin_notice{background-color:#fff;border-left:4px solid #ffba00;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:inline-block;font-size:14px;line-height:19px;margin:25px 20px 24px 2px;padding:11px 15px;text-align:left}.gf_help_content,.gf_help_content p{line-height:1.6}input,textarea{outline-style:none;font-family:inherit;font-size:inherit}input,select,ul{margin:0}li{list-style:none}#wpbody-content{position:relative;width:99%}.wrap.gforms_edit_form{margin-bottom:20px!important;overflow:visible!important}.wrap.gforms_edit_form>#no-fields{display:none!important}ul#gform_fields{padding:0;margin:0}select{font-size:inherit;font-family:verdana,sans-serif;padding:2px 0}.ui-datepicker{display:none}.field_hover.gform_pending_delete,.gform_pending_delete{background-color:rgba(255,223,224,.5);color:#790000!important;background-image:none;border:1px solid rgba(121,0,0,1)!important;-webkit-box-shadow:0 1px 1px 0 transparent;-moz-box-shadow:0 1px 1px 0 transparent;box-shadow:0 1px 1px 0 transparent}table.xwidefat{width:99%!important}div.wrap{position:relative}.hr-divider{background-color:#FFF;height:1px;overflow:hidden;border-top:1px solid #E6E6E6;border-bottom:1px solid #FFF;margin:24px 0;clear:both}div.delete-alert{padding:20px 0 20px 20px;margin-bottom:30px}div.gf_delete_notice{margin-bottom:10px}div.gforms_green_alert,div.gforms_help_alert,div.gforms_red_alert{background-color:#fff;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:inline-block;font-family:"lucida sans","lucida grande",lucida,sans-serif;font-size:12px;line-height:1.6;margin:12px 24px -6px;padding:11px 15px;position:relative;text-align:left}div.gforms_help_alert{border-left:4px solid #FFBA00}html[dir=rtl] div.gforms_help_alert{border-right:4px solid #FFBA00;border-left:none!important}div.gforms_help_alert i.fa{color:#D4662C}div.gforms_red_alert{border-left:4px solid #DD3D36}html[dir=rtl] div.gforms_red_alert{border-right:4px solid #DD3D36;border-left:none!important}div.gforms_red_alert i.fa{color:#DD3D36}div.gforms_green_alert{border-left:4px solid #7AD03A}html[dir=rtl] div.gforms_green_alert{border-right:4px solid #7AD03A;border-left:none!important}div.gforms_green_alert i.fa{color:#7AD03A}div.gforms_helpbox{background-color:#fff;margin:10px 0;padding:15px 15px 11px;font-size:14px;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}div.gforms_code,div.gforms_code pre{font-family:Consolas,"Bitstream Vera Sans Mono","Courier New",Courier,monospace!important;font-size:13px}div.gforms_helpbox select{width:460px}div.gforms_helpbox ul.resource_list{margin-top:4px}div.gforms_helpbox ul.resource_list li{margin:0 0 12px!important}div.gforms_helpbox ul.resource_list li a{text-decoration:none;margin-left:2px}div.gforms_helpbox ul.resource_list li a:active,div.gforms_helpbox ul.resource_list li a:hover{text-decoration:underline}div.gforms_code{border:1px solid #D2E0EB;background-color:#E2EDFF;margin:10px 0;padding:10px;width:700px}div.gforms_code pre{display:block;font-weight:400!important;line-height:18px;margin:0;overflow:hidden;z-index:100;position:relative;white-space:pre-wrap;word-wrap:break-word;padding:6px 10px 6px 0}div.delete-alert input.button{border:1px solid #9E0B0F;background:#9E0B0F;color:#FFF;-webkit-box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);text-shadow:none!important}div.delete-alert input.button:active,div.delete-alert input.button:hover{border:1px solid #DD3D36;background:#DD3D36;color:#FFF;-webkit-box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);box-shadow:inset 0 2px 5px -3px rgba(173,12,17,.5);text-shadow:none!important}#field_settings{margin:0 0 12px;padding-top:6px;clear:both}#field_settings ul li label{display:block;line-height:1.5;margin:0 8px 3px 0}.form_head .form_delete_iconx,.gform_heading .form_edit_iconx{display:block}.settings_control_container{height:18px}.ui-tabs-panel ul li label{margin-bottom:8px!important}div#field_settings.ui-tabs{margin-top:10px}li.field_setting input[type=text],li.field_setting input[type=email],li.field_setting input[type=password],li.field_setting input[type=number],li.field_setting select{margin-top:4px}.inline{display:-moz-inline-stack!important;display:inline-block!important}label.float_label{float:left;width:40px;padding:2px 0 0}#gform_heading,.gform_settings_container{border:1px solid transparent;width:480px!important}#gform_fields li{border:1px solid transparent;padding:0 8px 8px;overflow-y:visible}.field_sublabel_hidden_label .ginput_complex.ginput_container input[type=text],.field_sublabel_hidden_label .ginput_complex.ginput_container select{margin-bottom:.75rem}#gform_fields li ul li{padding:2px 0 4px}.gforms_form_settings li{border:1px solid transparent;padding:2px 0 4px;overflow:hidden}.gform_page_names li{padding:5px 0!important}#gform_heading{padding:8px 10px 10px;overflow:hidden;margin-bottom:10px;position:relative}.gform_settings_container{padding:10px}.field_hover:not(.gform_pending_delete),.field_selected{border:1px solid #D2E0EB!important;background-image:url(../images/gf-fieldsettings-header.jpg);background-position:0 0;background-repeat:repeat-x;background-color:#F6FBFD}#gform_fields{width:500px!important}.gfield_time_hour,.gfield_time_minute{width:70px;float:left;margin-bottom:4px}.gfield_time_hour i{font-style:normal!important;font-family:sans-serif!important}.selectable.gfield{margin-bottom:10px}.gfield_date_day,.gfield_date_month,.gfield_date_year{width:50px;float:left;margin-bottom:4px}.gfield_date_year{width:65px}.gfield_date_day input,.gfield_date_month input,.gfield_date_year input{width:80%!important}.gfield_date_year input{width:83%!important}.gfield_date_dropdown_day,.gfield_date_dropdown_month,.gfield_date_dropdown_year{margin-right:6px;vertical-align:top;display:-moz-inline-stack;display:inline-block}.gfield_time_ampm select{width:50px!important}.gfield_time_hour input,.gfield_time_minute input{width:80%!important}.field_hover:not(.gform_pending_delete){-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.field_selected{-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);margin-bottom:16px!important}div.pagination_container{margin:8px 0 12px!important}div#gform_pagination,div#gform_pagination.field_selected{margin-bottom:10px}div#gform_last_page_settings.gform_settings_container .settings_control_container a,div#gform_pagination.gform_settings_container .settings_control_container a{margin-top:-3px}.field_name_first,.field_name_last,.field_name_middle{width:33.3%;float:left}.field_name_first input,.ginput_complex .ginput_left input{width:98%!important}.field_name_last input{width:93%!important}.datepicker{width:100px!important}.wp-admin div#ui-datepicker-div div.ui-datepicker-title select{font-size:inherit!important;padding:0;height:auto!important;font-weight:400!important}img#gfield_input_datepicker_icon{position:relative;top:3px;left:4px}#date_picker_container{margin:8px 0}#gfield_icon_url_container{margin-top:5px}.ginput_complex .ginput_left{width:50%;display:-moz-inline-stack;display:inline-block;padding-right:16px}.ginput_complex .ginput_right{width:50%;display:-moz-inline-stack;display:inline-block}.ginput_complex.ginput_container.ginput_container_email.ginput_confirm_email .ginput_right{margin-left:-4px}.ginput_complex input,.ginput_complex select{width:100%}.gfield_time_ampm label,.gfield_time_ampm_shim,.gfield_time_hour label,.gfield_time_minute label,.ginput_complex label{display:block;margin:4px 0 8px 3px;font-size:90%}td.content_center,th.content_center{text-align:center!important}tr img[src$='/images/active0.png'],tr img[src$='/images/active1.png']{width:25px;height:auto;display:-moz-inline-stack;display:inline-block;margin:3px 0 0}div.ginput_container_name span{display:-moz-inline-stack;display:inline-block;vertical-align:top;padding-right:16px;margin-right:-4px}div.ginput_complex.ginput_container.has_last_name.no_suffix.gf_name_has_2.ginput_container_name span.name_last,div.ginput_complex.ginput_container.has_last_name.no_suffix.gf_name_has_3.ginput_container_name span.name_last,div.ginput_container_name span:last-child{padding-right:0!important}div.ginput_complex.ginput_container.gf_name_has_1 span{width:100%}div.ginput_complex.ginput_container.gf_name_has_2 span{width:50%}div.ginput_complex.ginput_container.gf_name_has_3 span{width:33.3%}div.ginput_complex.ginput_container.gf_name_has_4 span{width:25%}div.ginput_complex.ginput_container.has_last_name.no_suffix.gf_name_has_4.ginput_container_name span.name_last{padding-right:0}div.ginput_complex.ginput_container.gf_name_has_5 span{width:19.95%}div.ginput_complex.ginput_container.gf_name_has_2 span:first-child,div.ginput_complex.ginput_container.gf_name_has_3 span:first-child,div.ginput_complex.ginput_container.gf_name_has_4 span:first-child,div.ginput_complex.ginput_container.gf_name_has_5 span:first-child{margin-left:0!important}.gform_wrapper .ginput_complex span.ginput_left+input.gform_hidden+span.ginput_left{margin-left:1.6%;padding-right:0}.top_label .gfield_label{display:block;margin:16px 0 8px;font-weight:700}.left_label .gfield_label,.right_label .gfield_label{margin:2px 15px 0 0;width:29%;float:left;font-weight:700}.right_label .gfield_label{text-align:right}.left_label .gform_fileupload_multifile,.right_label .gform_fileupload_multifile{margin-left:31%}.gf_invisible{visibility:hidden}.hidden_label .gfield_label{visibility:hidden;line-height:0}.gfield.left_label .gfield_admin_icons,.gfield.right_label .gfield_admin_icons{padding-bottom:10px}.gfield label.hidden_sub_label{border:0;clip:rect(1px,1px,1px,1px);clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;word-wrap:normal!important}.gfield .copy_values_option_container{padding-bottom:10px}.gfield .copy_values_option_container .copy_values_enabled{width:auto!important}.left_label ul.gfield_checkbox,.left_label ul.gfield_radio,.right_label ul.gfield_checkbox,.right_label ul.gfield_radio{margin-left:32%}.top_label input.small,.top_label select.small{width:25%}.top_label input.medium,.top_label select.medium{width:50%}.hidden_label input.large,.hidden_label select.large,.hidden_label textarea.textarea,.top_label input.large,.top_label select.large,.top_label textarea.textarea{width:100%}.left_label input.small,.left_label select.small,.right_label input.small,.right_label select.small{width:15%}.left_label input.medium,.left_label select.medium,.right_label input.medium,.right_label select.medium{width:35%}.left_label input.large,.left_label select.large,.right_label input.large,.right_label select.large,textarea.textarea{width:67%}.left_label div.ginput_complex,.right_label div.ginput_complex{width:67%;float:left}.left_label div.ginput_container,.left_label label.gfield_label,.right_label div.ginput_container,.right_label label.gfield_label{margin-top:12px}h2.gsection_title{margin:16px 0;padding:0 0 16px!important;letter-spacing:normal!important;font-style:normal!important;font-weight:700;font-size:20px;font-family:helvetica,arial,sans-serif;width:100%;border-bottom:1px solid #CCC!important}h3.gf_add_fields{margin:0 0 .5em!important}.gsection .gfield_label{font-weight:700;font-size:16px;font-family:helvetica,arial,sans-serif}.gsection_description{width:100%;font-size:13px;line-height:1.5;clear:both;padding-top:4px;font-family:sans-serif}.gfield_date_year+.gfield_description,.gsection_description{padding:0 0 8px}#notification_action_type{display:none}#notification_logic_type{margin-left:5px}.gfield_label{word-break:break-all}.top_label .gfield_list{width:96%}.top_label .gf_list_one_column{width:48%}table.gfield_list th{text-align:left;font-size:12px!important}.gfield_list input{width:98%}.gform_wrapper table.gfield_list{border-spacing:0}.gform_wrapper table.gfield_list thead,.gform_wrapper table.gfield_list tr{padding:0;margin:0}.gform_wrapper table.gfield_list td,.gform_wrapper table.gfield_list th{padding:0 0 .5em!important}.gform_wrapper table.gfield_list td+td,.gform_wrapper table.gfield_list th+th{padding:0 0 .5em .7em!important}.gform_wrapper .left_label .gfield_list,.gform_wrapper .right_label .gfield_list{width:64%}.gform_wrapper .top_label .gfield_list{width:96%}.gform_wrapper .left_label .gf_list_one_column,.gform_wrapper .right_label .gf_list_one_column{width:45%}.gform_wrapper .top_label .gf_list_one_column{width:46%}.gform_wrapper .gfield_list input{width:98%}.gfield_icon_disabled{cursor:default!important;filter:alpha(opacity=60);-moz-opacity:.6;-khtml-opacity:.6;opacity:.6}body .gform_wrapper table.gfield_list.gfield_list_container tbody tr.gfield_list_row_odd.gfield_list_group td.gfield_list_icons{min-width:45px!important;vertical-align:middle!important}ul.gfield_checkbox,ul.gfield_radio{margin:6px 0}.gfield_checkbox li,.gfield_radio li{position:relative;padding:0!important}.gfield_checkbox li label,.gfield_radio li label{display:block;margin:0 0 0 24px;padding:0!important;width:auto;line-height:1.5;vertical-align:top}.gchoice_select_all{font-weight:700}.gfield_checkbox li input,.gfield_checkbox li input[type=checkbox],.gfield_radio li input[type=radio]{float:left;margin-top:2px}.description,.gfield_description,.instruction{font-size:.8rem;line-height:1.5;clear:both;padding:10px 0 0;font-family:inherit}.gfield_consent_description{width:100%;max-height:320px;overflow-y:scroll;border:1px solid #ddd;margin-top:12px;padding:6px 8px}.description_above .gfield_description.gfield_consent_description,.description_below .gfield_description.gfield_consent_description{padding:6px 8px}.entry-view-field-value .gfield_consent_description{width:calc(100% - 40px)}.description_above .gfield_description{padding:0 0 10px}.field_description_below .gfield_description{padding:10px 0 0}.left_label .gfield_description,.left_label .instruction,.right_label .gfield_description,.right_label .instruction{margin-left:32.5%}.left_label .gsection .gsection_description,.right_label .gsection .gsection_description{margin-left:0;padding-left:0;padding-top:10px;line-height:1.5}.gfield_required{color:#9E0B0F;margin-left:4px}textarea.small{height:80px}textarea.medium{height:150px}textarea.large{height:250px}.gform_footer{padding:10px 0 10px 10px;margin:6px 0 0;border-top:1px dotted #CCC!important}.gform_wrapper .gform_footer+.left_label,.gform_wrapper .gform_footer+.right_label{padding:16px 0 10px 31%}div.gfield_admin_icons{height:24px;cursor:move;padding-top:6px}div.gform_admin_icons{height:20px}ul#gform_fields.left_label div.gfield_admin_icons,ul#gform_fields.right_label div.gfield_admin_icons{height:30px}div.gfield_admin_icons div.gfield_admin_header_title,div.gform_admin_icons div.gform_admin_header_title,div.settings_control_container div.gfield_admin_header_title{display:none}.field_hover div.gfield_admin_icons div.gfield_admin_header_title,.field_hover div.gform_admin_icons div.gform_admin_header_title,.field_hover div.settings_control_container div.gfield_admin_header_title,.field_selected div.gfield_admin_icons div.gfield_admin_header_title,.field_selected div.gform_admin_icons div.gform_admin_header_title,.field_selected div.settings_control_container div.gfield_admin_header_title{display:block;float:left;font-size:11px;font-weight:700;color:#47759B;letter-spacing:.025rem}div.settings_control_container div.gfield_admin_header_title{margin-top:-4px}.gfield{position:relative}.field_hover .field_delete_icon,.field_hover .field_duplicate_icon,.field_hover .field_edit_icon,.field_hover .form_delete_icon,.field_hover .form_edit_icon,.field_selected .field_delete_icon,.field_selected .field_duplicate_icon,.field_selected .field_edit_icon,.field_selected .form_delete_icon,.field_selected .form_edit_icon{display:block!important;cursor:pointer;color:#47759B;filter:alpha(opacity=50);opacity:.5}.field_hover .field_delete_icon:hover,.field_hover .field_duplicate_icon:hover,.field_hover .field_edit_icon:hover,.field_hover .form_delete_icon:hover,.field_hover .form_edit_icon:hover,.field_selected .field_delete_icon:hover,.field_selected .field_duplicate_icon:hover,.field_selected .field_edit_icon:hover,.field_selected .form_delete_icon:hover,.field_selected .form_edit_icon:hover{color:#47759B;filter:alpha(opacity=100);opacity:1}.field_edit_icon,.form_edit_icon{display:none;float:right;margin-left:6px}.edit_icon_expanded{margin-top:-1px}.form_edit_icon{margin-top:-4px!important}.form_edit_icon.edit_icon_expanded{margin-top:-6px!important}.entries_edit_icon{float:right;margin:2px 6px 0 0}.field_delete_icon,.form_delete_icon{display:none;float:right;margin:-1px 0 0 6px!important}.field_duplicate_icon{display:none;float:right;margin:0 0 0 8px}.field_duplicate_icon i{color:#185d7c!important}.entries_edit_icon,.field_delete_icon,.field_duplicate_icon,.field_edit_icon,.form_delete_icon,.form_edit_icon{text-decoration:none;padding:0;font-weight:400;letter-spacing:.3pt;text-shadow:0 1px 1px #FFF;text-align:center;vertical-align:middle}.entries_edit_icon{color:#AAA!important}.entries_edit_icon:active,.entries_edit_icon:hover{color:#707070!important}.option_header{margin:5px 0 2px;font-weight:700}img.gtitle_icon{float:left;margin:15px 7px 0 0}td.pad_top{padding-top:10px}#form_settings{padding-top:2px}#form_settings h3 span i[class*=" fa-"],#form_settings h3 span i[class^=fa-],.gform_tab_container h3 span i[class*=" fa-"],.gform_tab_container h3 span i[class^=fa-]{color:#0074A2}#tab_gravityformslogging .gforms_form_settings th{width:auto}.input_size_a,.textarea_size_a{width:375px}.form_button_options{margin:8px 0}#form_button_image_container,#form_button_text_container{margin-top:8px!important}.captcha_message{padding:5px}#after_insert_dialog div{padding-bottom:10px}#simplemodal-overlay{background-color:#000;cursor:default}#simplemodal-container{padding:20px 20px 0;height:355px;width:400px;background-color:#F9F9F9;border:6px solid #636363;-moz-border-radius:8px;-webkit-border-radius:8px;-khtml-border-radius:8px;border-radius:8px}div#after_insert_dialog h3,div.gold_notice{padding:10px 6px;background-color:#FFFBCC;margin:0 0 4px}#simplemodal-container a.modalCloseImg{background-image:url(../images/icon-close.png);background-repeat:no-repeat;width:25px;height:29px;display:inline;z-index:3200;position:absolute;top:-14px;right:-18px;cursor:pointer}div#after_insert_dialog h3{text-align:center;border:1px solid #E6DB55;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;border-radius:4px}div.gold_notice{border:1px solid #E6DB55;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;border-radius:4px}div#after_insert_dialog p{text-align:center}div.new-form-option a{font-size:18px;padding:16px;text-decoration:none;text-align:center;display:block;color:#535353;text-shadow:0 2px 1px #FFF;background-color:#F9F9F9;border:1px solid #d7d7d7;-moz-border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;border-radius:4px;margin-bottom:4px;background-image:url(../images/gf-new-option-bg.png);background-repeat:repeat-x}div.new-form-option a:hover{color:#2B2B2B;border:1px solid #D2E0EB;box-shadow:0 0 5px #D2E0EB;-moz-box-shadow:0 0 5px #D2E0EB;-webkit-box-shadow:0 0 5px #D2E0EB}.add-buttons,.button-title-link div.add-buttons-title{border-color:#DFDFDF;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}div#wpbody{position:relative}#add_fields{width:278px;padding:0;text-align:left}#floatMenu{width:280px;z-index:99;padding-bottom:20px}.button-title-link div.add-buttons-title{min-height:24px;overflow:hidden;cursor:pointer;position:relative;font-size:14px;border-width:1px;border-style:solid;margin:0!important;padding:8px 12px 5px;white-space:nowrap;background:#FFF;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.button-title-link div.add-buttons-title span.add-buttons-caret-down,.button-title-link div.add-buttons-title span.add-buttons-caret-up{width:16px;position:absolute;right:4px;color:#CCC}.gf_input_error_icon,.ginput_container_password span,div.note-meta{position:relative}.button-title-link{color:#464646;text-shadow:none;font-weight:700;cursor:text!important;font-family:"Open Sans",sans-serif;line-height:1.4}.add-buttons{border-width:0 1px 1px;border-style:none solid solid;background-color:#FFF;padding:12px;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#edit-title-header,.updated_base{-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}ul.menu li{margin-bottom:10px}ol.field_type{display:block;visibility:visible!important;overflow:hidden;margin:0;padding:0}div.push-alert-blue,div.push-alert-gold,div.push-alert-green,div.push-alert-red{padding:10px 6px;margin:30px 0 10px;text-align:center;min-width:800px;visibility:visible!important;display:block!important;line-height:1.5;font-size:1.1rem}.note-email,td.entry-view-field-value p{text-align:left}div.push-alert-gold{background-color:#FFFBCC;border-top:1px solid #E6DB55;border-bottom:1px solid #E6DB55}div.push-alert-green{background-color:#ECFCDE;border-bottom:1px solid #A7C886;border-top:1px solid #A7C886}div.push-alert-blue{background-color:#E2EDFF;border-bottom:1px solid #D2E0EB;border-top:1px solid #D2E0EB}div.push-alert-red{background-color:#FFE1E1;border-bottom:1px solid #EAAEAD;border-top:1px solid #EAAEAD}#gfield_settings_category_container,#gfield_settings_choices_container,.gfield_settings_input_choices_container{border:1px solid #DFDFDF;overflow:auto;padding:2px 0 6px}.field-choice-handle{vertical-align:middle;cursor:move}#gfield_settings_category_container{margin:8px 0 0}table td.gfield_category_cell{padding-top:3px}#gfield_settings_choices_container,.gfield_settings_input_choices_container{margin:8px 0 14px}#field_choices li,.field_input_choices li{padding:0 10px!important;margin:0!important}#field_columns li{padding:0!important;margin:0!important}#field_columns{padding:10px 0!important;margin:0!important}.input_active_icon{cursor:pointer;margin:10px 5px 0 0}#field_choices li input.field-choice-text,.field_input_choices li input.field-choice-text{width:312px}#field_choices li input.field-choice-price,#field_choices li input.field-choice-value,.field_input_choices li input.field-choice-value{display:none}.gfield_choice_header_label{padding-left:51px;display:none!important}.gfield_choice_header_price,.gfield_choice_header_value{display:none!important}.choice_with_value li input.field-choice-value{width:155px!important;display:inline!important}.choice_with_value li input.field-choice-text{width:155px!important}.choice_with_value .gfield_choice_header_label{display:inline!important}.choice_with_value .gfield_choice_header_value{padding-left:120px;display:inline!important}.choice_with_value_and_price li input.field-choice-text{width:103px!important}.choice_with_value_and_price li input.field-choice-price,.choice_with_value_and_price li input.field-choice-value{width:103px!important;display:inline!important}.choice_with_value_and_price .gfield_choice_header_label{display:inline!important}.choice_with_value_and_price .gfield_choice_header_price,.choice_with_value_and_price .gfield_choice_header_value{padding-left:70px;display:inline!important}.choice_with_price li input.field-choice-text{width:155px!important}.choice_with_price li input.field-choice-price{width:155px!important;display:inline!important}.choice_with_price .gfield_choice_header_label{display:inline!important}.choice_with_price .gfield_choice_header_price{padding-left:120px;display:inline!important}#field_columns li input.field-choice-price,#field_columns li input.field-choice-value,#field_columns li input.gfield_choice_checkbox,#field_columns li input.gfield_choice_radio{display:none}#field_columns li input.field-choice-text{width:312px!important}div.gf_payment_detail{margin-bottom:15px}table.entry-detail-view{margin-bottom:16px}table.entry-detail-view td.lastrow{border-bottom:none!important}td.entry-view-section-break{font-size:14px;font-weight:700;background-color:#EEE;border-bottom:1px solid #DFDFDF;padding:7px}td.entry-view-field-name{font-weight:700;background-color:#EAF2FA;border-bottom:1px solid #FFF;line-height:1.5;padding:7px}td.entry-view-field-value{border-bottom:1px solid #DFDFDF;padding:7px 7px 7px 40px;line-height:1.8}td.entry-view-field-value ul.bulleted{margin-left:12px}td.entry-view-field-value ul.bulleted li{list-style-type:disc}div.note-meta-container{white-space:nowrap;font-size:0}div.note-avatar{width:48px;height:48px;display:inline-block;vertical-align:middle;margin-right:8px}.note-has-email div.note-avatar{vertical-align:top}div.note-meta{display:inline-block;vertical-align:middle;white-space:normal;margin-left:48px;left:-48px}span.note-divider{opacity:.25}.note-author{display:inline;font-weight:700;font-size:.9rem;line-height:1;margin:0 0 2px;padding:0}.note-email{font-size:.9rem;line-height:1.3;margin:0!important;padding:0!important}.note-email:before{color:#DADADA;content:'\2014';margin:0 5px}.detail-note-content{margin:1em 0;padding:1rem;position:relative;line-height:1.8rem;border-left:4px solid #DDD;background-color:#F7F7F7}.detail-note-content p{line-height:30px}.detail-note-content.gforms_note_success{background-color:#ECFCDE;border-left-color:#A7C886}.detail-note-content.gforms_note_warning{background-color:#FFFBCC;border-left-color:#E6DB55}.detail-note-content.gforms_note_error{background-color:#FFEBE8;border-left-color:#C00}div.gforms_note_content{margin:0}div.gforms_note_content p:last-child{margin-bottom:0}.note-meta-container .note-date{display:block;font-size:.8rem;line-height:1}.ginput_full_admin label,body.forms_page_gf_entries table.entry-details td.detail-view label.detail-label{display:block;font-weight:700;font-size:13px;margin-bottom:4px}body.forms_page_gf_entries div.ginput_complex_admin .ginput_full_admin label{font-weight:400;font-size:11px}body.forms_page_gf_entries table.entry-details .gfield_consent_description,body.forms_page_gf_entries table.entry-details input,body.forms_page_gf_entries table.entry-details input[type=text]{width:99%}body.forms_page_gf_entries table.entry-details .ginput_container_consent input{width:auto}body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left_admin,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_right,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_right_admin{width:49%;display:-moz-inline-stack;display:inline-block}body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left,body.forms_page_gf_entries .ginput_complex_admin.ginput_container span.ginput_left_admin{margin-right:1rem}body.forms_page_gf_entries .ginput_left_admin label,body.forms_page_gf_entries .ginput_right_admin label{display:block}body.forms_page_gf_entries .ginput_container ul.gfield_checkbox li input,body.forms_page_gf_entries .ginput_container ul.gfield_radio li input{width:auto!important}body.forms_page_gf_entries .ginput_left_admin input[type=text]{width:99%!important}body.forms_page_gf_entries select.medium_admin{max-width:400px}body.forms_page_gf_entries textarea.medium_admin{width:98%;min-width:475px;min-height:250px}body.forms_page_gf_entries h2.detail_gsection_title{font-family:helvetica,arial,sans-serif;font-size:16px;font-style:normal!important;font-weight:700;letter-spacing:normal!important;margin:0!important;padding:0!important}body.forms_page_gf_entries div.ginput_complex_admin span label{display:block;font-size:.8rem;margin:4px 0}ul#form_autoresponder_container,ul#form_notification_container{width:95%}ul#form_autoresponder_container li,ul#form_notification_container li{margin-bottom:15px!important}ul#form_autoresponder_container li label,ul#form_notification_container li label{margin-bottom:8px!important;display:block}#confirmation_list_form .check-column,#notification_list_form .check-column{width:50px}.gform-notification-service{display:inline-block;margin-bottom:5px;text-align:center}.gform-notification-service input:checked+label>span{-webkit-filter:none;-moz-filter:none;filter:none}t.gform-notification-service input:checked+label{background-color:#fff;border:1px solid #CCC}.gform-notification-service label>span{background-repeat:no-repeat;display:inline-block;-webkit-transition:all .1s ease-in;-moz-transition:all .1s ease-in;transition:all .1s ease-in;-webkit-filter:brightness(1.8) grayscale(1) opacity(.5);-moz-filter:brightness(1.8) grayscale(1) opacity(.5);filter:brightness(1.8) grayscale(1) opacity(.5);padding-top:5px;width:130px;height:65px}.gform-notification-service input{display:none}.gform-notification-service label>span>img{width:32px;height:32px;margin:5px;vertical-align:middle}.gform-notification-service label{border:1px solid #EEE;background-color:#F9F9F9}.gform-notification-service input:not([disabled]):not([checked])+label>span:hover{-webkit-filter:brightness(1.2) grayscale(.5) opacity(.9);-moz-filter:brightness(1.2) grayscale(.5) opacity(.9);filter:brightness(1.2) grayscale(.5) opacity(.9)}.fieldwidth-1,input.fieldwidth-1{width:100%}.fieldwidth-2,input.fieldwidth-2{width:350px}.fieldwidth-3,input.fieldwidth-3{width:375px}.fieldwidth-4,input.fieldwidth-4{width:250px}.fieldheight-1,input.fieldheight-1{height:160px}.fieldheight-2,input.fieldheight-2{height:80px}.gform_merge_tags{width:200px}.gform_editor_merge_tags{width:190px}.gform_content_template_merge_tags{width:165px}.panel-instructions{border-bottom:1px solid #DFDFDF;color:#555;font-size:11px;padding:4px 0;margin-bottom:6px}.bulk-left-panel{float:left;overflow-y:auto;width:220px;padding:0;height:300px}.bulk-left-panel ul li{padding:0;margin:0}.bulk-left-panel ul li a.bulk-choice,.bulk-left-panel ul li.choice_section_header{display:block;width:190px;border-top:1px solid #FFF;padding:5px;text-align:center;text-decoration:none}.bulk-left-panel ul li a.bulk-choice{background-color:#EAEAEA;color:#555;border-bottom:1px solid #D7D7D7}.bulk-left-panel ul li a.bulk-choice:hover{background-color:#DADADA}.bulk-left-panel ul li.choice_section_header{background-color:#F6FBFD;color:#21759B;border-bottom:1px solid #D2E0EB}a.bulk-choice:first-child{border-top:none}.bulk-arrow-mid{float:left;width:48px;background-image:url(../images/arrow-right.png);background-position:100% 50%;background-repeat:no-repeat}textarea#gfield_bulk_add_input{float:right;padding:6px}div.panel-buttons{margin-top:8px;display:-moz-inline-stack;display:inline-block}div.panel-custom{margin-left:65px;display:-moz-inline-stack;display:inline-block}div#bulk_custom_message{position:absolute}.updated_base{background-color:#FFF;border:1px solid #FFF;border-left:4px solid #FFBA00;padding:0 .6rem;margin:10px 15px 10px 0;box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.updated_base p{margin:.5em 0;line-height:1;padding:2px}.wrap .updated_base{margin:10px 15px 24px 0}#gform_no_product_field_message,.error_base{background-color:#FFEBE8;border-color:#C00;border-width:1px;border-style:solid;margin:10px 15px 10px 0}table.form-table td .updated_base{font-size:13px}#gform_no_product_field_message{padding:.6em .6rem}.error_base{padding:0 .6rem;-moz-border-radius:3px;-khtml-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.error_base p{margin:.5em 0;line-height:1;padding:2px}.wrap .error_base{margin:10px 15px 10px 0}.left_label .math_large,.left_label .math_medium,.left_label .math_small,.left_label .simple_captcha_large,.left_label .simple_captcha_medium,.left_label .simple_captcha_small,.right_label .math_large,.right_label .math_medium,.right_label .math_small,.right_label .simple_captcha_large,.right_label .simple_captcha_medium,.right_label .simple_captcha_small{margin-left:32%}table.form-table td .error_base{font-size:13px}.gf_input_error_icon{background-image:url(../images/exclamation.png);float:right;height:16px;right:-20px;top:18px;width:16px;margin-top:-16px;display:-moz-inline-stack;display:inline-block}li.gfield_html label.gfield_label{height:18px}.gfield_captcha_input_container{padding-top:3px}.simple_captcha_small input{width:100px}.simple_captcha_medium input{width:150px}.simple_captcha_large input{width:200px}.math_small input{width:69px}.math_medium input{width:90px}.math_large input{width:108px}table.entry-products{border:1px solid #DFDFDF;border-right:none;margin:10px 0}table.entry-products th[scope=col]{background-color:#F4F4F4;border-right:1px solid #DFDFDF!important}table.entry-products col.entry-products-col2{width:50px}table.entry-products col.entry-products-col3,table.entry-products col.entry-products-col4{width:155px}table.entry-products td{border-right:1px solid #DFDFDF!important;padding-top:7px;padding-bottom:8px}table.entry-products td.textcenter,table.entry-products th.textcenter{text-align:center}table.entry-products td.textright,table.entry-products th.textright{text-align:right}table.entry-products td.grandtotal,table.entry-products td.grandtotal_amount,table.entry-products td.shipping,table.entry-products td.shipping_amount{font-weight:700;font-size:13px;padding-top:7px;padding-bottom:8px}table.entry-products td.emptycell{background-color:#F4F4F4}table.entry-products td div.product_name{font-weight:700;color:#BF461E;font-size:13px;margin-bottom:5px}table.entry-products td ul.product_options li{background-image:url(../images/prodlist.png);background-position:0 0;background-repeat:no-repeat;overflow:visible;margin:0 0 0 2px!important;padding:4px 0 4px 16px}table.entry-products td ul.product_options li.lastitem{background-image:url(../images/prodlist-last.png)}a.button-primary.gfbutton,button.button-primary.gfbutton,input.button-primary.gfbutton{margin:10px 0 20px;letter-spacing:.3pt;font-size:12px!important;font-weight:400;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.menu.collapsible ol.field_type li input.button:hover{color:#D54E21;border-color:#8F8F8F;-webkit-border-radius:16px!important;-moz-border-radius:16px!important;border-radius:16px!important}.ginput_container_password span button{-webkit-appearance:none;appearance:none;background:0 0;border:none;padding:3px 0;pointer-events:none;position:absolute;right:1px;text-align:center;top:1px;width:30px}.ginput_container_password span button .dashicons{font-size:16px;height:16px;width:16px}.ginput_container_password span.ginput_left button{right:21px}.gfield_password_strength{border-style:solid;border-width:1px;float:left;margin:12px 5px 5px 1px;padding:3px 5px;text-align:center;width:96%;line-height:1.8;background-color:#EEE;border-color:#DDD!important}ul.left_label .gfield_password_strength,ul.right_label .gfield_password_strength{margin-left:32.5%}p.search-box{margin:12px 0 0}#gform-settings .column-is_active{width:19px;padding-top:9px;vertical-align:top}div#gform_heading.selectable.field_selected{background-image:url(../images/gf-fieldsettings-header.jpg);background-position:0 0;background-repeat:repeat-x;background-color:#F6FBFD;padding-top:8px}div.gf_renew_license{border:1px solid #CFADB3;color:#832525;background-color:#FAF2F5;padding:10px 0 20px 20px}p.gform_renew_expired strong{color:#9E0B0F}div.gf_upgrade_license h4{font-size:14px;margin:0;padding:0}div.gf_upgrade_business_license,div.gf_upgrade_developer_license{padding:14px 0 0 140px;min-height:175px;background-repeat:no-repeat;background-position:0 0}div.gf_upgrade_developer_license{background-image:url(../images/gravityforms-developer-upgrade.png);margin:30px 0 0;background-size:133px 169px}div.gf_upgrade_business_license{background-image:url(../images/gravityforms-business-upgrade.png);margin:0;background-size:133px 169px}p.gform_renew_expired,p.gform_renew_not_expired{background-position:0 0;background-repeat:no-repeat;font-size:1.4rem}a.gf_upgrade_link{-webkit-border-radius:4;-moz-border-radius:4;border-radius:4px;text-shadow:1px 1px 2px #c24319;font-family:Arial;color:#fff;font-size:16px;background:#D54E21;padding:10px 20px 11px;border:4px solid #c4461c;text-decoration:none;display:-moz-inline-stack;display:inline-block}a.gf_upgrade_link:hover{background:#db5428;text-decoration:none}.alert_blue,.alert_gray,.alert_green,.alert_red,.alert_yellow,ul#gform_fields li#no-fields div.newform_notice{border-top:none;border-right:none;border-bottom:none;color:#424242;background-color:#FFF}.gf_update_current,.gf_update_expired,.gf_update_outdated{padding:10px;margin-top:20px}.alert_blue,.alert_gray,.alert_green,.alert_red,.alert_yellow,ul#gform_fields li#no-fields div.newform_notice{position:relative;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}.alert_green{border-left:4px solid #7AD03A}.alert_yellow{border-left:4px solid #FFBA00}.alert_gray{border-left:4px solid #CCC}.alert_blue{border-left:4px solid #2EA2CC}.alert_red,ul#gform_fields li#no-fields div.newform_notice{border-left:4px solid #dd3d36}span.gf_keystatus_invalid_text,span.gf_keystatus_valid_text{display:-moz-inline-stack;display:inline-block}li.gform_setting_left_half,li.gform_setting_right_half{width:44%;height:60px;margin-right:2%;display:-moz-inline-stack;vertical-align:top}i.gf_keystatus_valid,i.gf_valid,span.gf_keystatus_valid_text{color:green}i.gf_invalid,i.gf_keystatus_invalid,span.gf_invalid,span.gf_keystatus_invalid_text{color:#9E0B0F}ul.gfield_checkbox li.gchoice_total,ul.gfield_radio li.gchoice_total{font-size:11px;color:#878787;padding-top:14px!important}body #wpcontent #wpbody #wpbody-content{overflow:visible}div.ui-widget-content{background-color:#FAFAFA}div#gform_heading.selectable div#form_settings.ui-tabs,div#pagination_settings.ui-tabs,ul#gform_fields.ui-sortable li.selectable div#field_settings.ui-tabs{border:none!important}div.ui-tabs div.ui-tabs-panel{background-color:#FFF;border-right:1px solid #D2E0EB;border-bottom:1px solid #D2E0EB;border-left:1px solid #D2E0EB}div.ui-widget-content li.ui-state-active,div.ui-widget-content li.ui-state-default{border-left:1px solid #D2E0EB!important;border-top:1px solid #D2E0EB!important;border-right:1px solid #D2E0EB!important}ul.ui-widget-header{border-bottom:1px solid #D2E0EB!important}div.ui-widget-content li.ui-state-default{background-color:#D2E0EB!important;border-bottom:1px solid #D2E0EB;-webkit-border-top-left-radius:4px;-webkit-border-top-right-radius:4px;-moz-border-radius-topleft:4px;-moz-border-radius-topright:4px;border-top-left-radius:4px;border-top-right-radius:4px}div.ui-widget-content li.ui-state-default a{color:#21759B}div.ui-widget-content li.ui-state-default.ui-state-active{background-color:#FFF!important;border-bottom:1px solid #FFF!important;background-image:none!important}#form_switcher_arrow:hover,.gform_settings_page_title_editable:hover{background-color:#e5e5e5;webkit-border-radius:2px;border-radius:2px}div.ui-widget-content li.ui-state-default.ui-state-active a{color:#212121}li.gform_setting_left_half{display:inline-block}li.gform_setting_right_half{clear:right;display:inline-block}li.gform_setting_left_half input,li.gform_setting_left_half select,li.gform_setting_right_half input,li.gform_setting_right_half select{width:95%}#contextual-help-link-wrap{display:none}#gf_form_toolbar{display:inline-block;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:12px 0 0;padding:4px 10px 0;width:100%;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.04);box-shadow:0 1px 1px rgba(0,0,0,.04);border:1px solid #e5e5e5;background:#fff;color:#555;font-size:13px}#gf_form_toolbar a{text-decoration:none}ul#gf_form_toolbar_links{position:relative;display:inline-block;margin:0}ul#gf_form_toolbar_links li{margin:0;padding:0;width:auto;display:-moz-inline-stack;display:inline-block}ul#gf_form_toolbar_links li.gf_form_toolbar_selectform{background-image:url(../images/gf-toolbar-divider.jpg);background-repeat:repeat-y;background-position:right}ul#gf_form_toolbar_links li.gf_form_toolbar_editor a,ul#gf_form_toolbar_links li.gf_form_toolbar_entries a,ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a,ul#gf_form_toolbar_links li.gf_form_toolbar_preview a,ul#gf_form_toolbar_links li.gf_form_toolbar_results a,ul#gf_form_toolbar_links li.gf_form_toolbar_settings a{text-decoration:none;text-shadow:0 1px 1px #FFF;line-height:16px;white-space:nowrap}ul#gf_form_toolbar_links li a{display:-moz-inline-stack;display:inline-block;margin:0 10px;padding:15px 0;font-size:13px;color:#23282d}ul#gf_form_toolbar_links li a.gf_toolbar_active:hover,ul#gf_form_toolbar_links li a:hover{color:#0074A2}ul#gf_form_toolbar_links>li>a.gf_toolbar_active{border-bottom:4px solid #666;box-shadow:none;color:#23282d}ul#gf_form_toolbar_links li a:hover i{color:#0074A2}ul#gf_form_toolbar_links li a.gf_toolbar_active{font-weight:700}ul#gf_form_toolbar_links li a.gf_toolbar_disabled{color:#333;filter:alpha(opacity=50);-moz-opacity:.5;-khtml-opacity:.5;opacity:.5;-ms-filter:"alpha(opacity=50)";cursor:default}ul#gf_form_toolbar_links li.gf_form_toolbar_settings a{background-position:0 0}ul#gf_form_toolbar_links li.gf_form_toolbar_settings a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_settings a:hover{background-position:0 -120px}ul#gf_form_toolbar_links li.gf_form_toolbar_settings a.gf_toolbar_disabled:hover{background-position:0 0}ul#gf_form_toolbar_links li.gf_form_toolbar_editor a{background-position:0 -20px}ul#gf_form_toolbar_links li.gf_form_toolbar_editor a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_editor a:hover{background-position:0 -140px}ul#gf_form_toolbar_links li.gf_form_toolbar_editor a.gf_toolbar_disabled:hover{background-position:0 -16px}ul#gf_form_toolbar_links li.gf_form_toolbar_notifications{padding:10px 6px 10px 4px}ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a{background-position:0 -40px}ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a:hover{background-position:0 -180px}ul#gf_form_toolbar_links li.gf_form_toolbar_notifications a.gf_toolbar_disabled:hover{background-position:0 -40px}ul#gf_form_toolbar_links li.gf_form_toolbar_entries a{background-position:0 -60px}ul#gf_form_toolbar_links li.gf_form_toolbar_entries a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_entries a:hover{background-position:0 -160px}ul#gf_form_toolbar_links li.gf_form_toolbar_entries a.gf_toolbar_disabled:hover{background-position:0 -48px}ul#gf_form_toolbar_links li.gf_form_toolbar_preview a{background-position:0 -80px}ul#gf_form_toolbar_links li.gf_form_toolbar_preview a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_preview a.gf_toolbar_disabled:hover,ul#gf_form_toolbar_links li.gf_form_toolbar_preview a:hover{background-position:0 -200px}ul#gf_form_toolbar_links li.gf_form_toolbar_results a{background-position:0 -100px}ul#gf_form_toolbar_links li.gf_form_toolbar_results a.gf_toolbar_active,ul#gf_form_toolbar_links li.gf_form_toolbar_results a.gf_toolbar_disabled:hover,ul#gf_form_toolbar_links li.gf_form_toolbar_results a:hover{background-position:0 -220px}#edit-title-close{width:16px;position:absolute;right:4px;color:#999;cursor:pointer}#gform_settings_page_title_error{margin-left:5px;color:red}#edit-title-header{min-height:24px;overflow:hidden;position:relative;font-size:14px;border-width:1px 1px 0;border-style:solid;border-color:#DFDFDF;margin:0!important;padding:8px 12px 5px;white-space:nowrap;background:#FFF;-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1)}#edit-title-container{width:350px;visibility:hidden;position:absolute;z-index:9999;top:50px}#edit-title-input{font-size:14px;width:100%;margin-bottom:20px}#edit-title-label{display:block;font-size:14px;margin-bottom:2px;font-weight:700}#gform_settings_page_title{padding:5px 10px;webkit-border-radius:2px;border-radius:2px}.gform_settings_page_title_editable{cursor:pointer}#form_switcher_arrow{padding:5px}#form_switcher{max-width:300px;min-width:130px}.form_switcher_arrow i{font-size:18pt;vertical-align:middle;color:#000}#form_switcher_container{display:none;position:absolute;z-index:9999;top:50px}#form_switcher_container .chosen-container-single .chosen-default{border-radius:0;height:39px;line-height:39px;font-weight:700;color:#464646;font-size:14px;border-color:#DFDFDF;background:#fff;padding:0 10px}#form_switcher_container .chosen-container-single .chosen-single span{margin:0}#form_switcher_container .chosen-container-single .chosen-drop{border-radius:0;border:1px solid #DFDFDF;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:10px}#form_switcher_container .chosen-container .chosen-results li.active-result{width:260px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#form_switcher_container .chosen-container .chosen-results li.highlighted{background:#eee;color:#444}#form_switcher_container .chosen-container-single .chosen-single div{width:10px;right:10px}#form_switcher_container .chosen-container-single .chosen-search{padding:0}#form_switcher_container .chosen-container .chosen-results{margin:10px -10px 0 0;max-height:250px}#form_switcher_container .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-42px 0!important}#form_switcher_container .chosen-container-single .chosen-single div b{height:10px!important;display:inline-block!important;background:url(chosen-sprite.png) -42px 0 no-repeat!important}div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button{border-color:#DFDFDF}div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button,div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:active,div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:hover{-webkit-border-radius:3px!important;-moz-border-radius:3px!important;border-radius:3px!important}div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:hover{border-color:#CCC}div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:active{border-color:#BBB}body.wp-admin div#add_fields div#floatMenu input.button.button-large.button-primary.update-form{margin-right:15px}div#wpbody-content div.wrap div#after_update_dialog.updated_base.gform_editor_status,div.gform_editor_status{max-width:480px!important;padding:10px}#floatMenu h3.gf_add_fields{display:none}#floatMenu br{height:1px;display:block}#floatMenu a.submitdelete{cursor:pointer;float:right;line-height:30px;padding:1px 2px;text-decoration:none;color:red;display:-moz-inline-stack;display:inline-block}#floatMenu a.submitdelete:hover{background-color:red;color:#FFF}#floatMenu input.button-primary.gfbutton{float:right;margin:6px 0 0!important}#floatMenu #after_update_dialog{margin:14px 0 0;text-align:center;padding:16px 10px}table.gfield_list td.gfield_list_cell,table.gfield_list td.gfield_list_cell+td.gfield_list_cell,table.gfield_list thead tr th+th{padding:6px 0}#floatMenu span#please_wait_container{width:16px;height:16px;float:right;margin:4px 4px 0 0}div#gravity-edit-icon,div#gravity-entry-icon,div#gravity-export-icon,div#gravity-help-icon,div#gravity-import-icon,div#gravity-notification-icon,div#gravity-settings-icon,div#gravity-title-icon,div#gravity-update-icon{background-image:url(../images/gf-32-iconsprite.png);background-repeat:no-repeat}div#gravity-edit-icon{background-position:0 0}div#gravity-entry-icon{background-position:0 -50px}div#gravity-export-icon{background-position:0 -100px}div#gravity-help-icon{background-position:0 -150px}div#gravity-import-icon{background-position:0 -200px}div#gravity-notification-icon{background-position:0 -250px}div#gravity-settings-icon{background-position:0 -300px}div#gravity-update-icon{background-position:0 -400px}div#gravity-title-icon{background-position:0 -350px}div#major-publishing-actions{clear:both}html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap table.widefat tfoot tr th.manage-column,html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap table.widefat thead tr th.manage-column{font-size:13px!important}th.manage-column.column-cb.check-column{vertical-align:top}table.gfield_list thead tr th{padding:6px 0;font-weight:700}table.widefat tbody tr td.entry-view-field-value table.gfield_list{border-top:1px solid #DFDFDF!important;border-left:1px solid #DFDFDF!important;border-spacing:0;padding:0;margin:2px 0 6px;width:100%}table.widefat tbody tr td.entry-view-field-value table.gfield_list td{border-right:1px solid #DFDFDF!important;padding:6px 10px}table.widefat tbody tr td.entry-view-field-value table.gfield_list thead tr th{background-image:none!important;border-right:1px solid #DFDFDF!important;padding:6px 10px;font-family:sans-serif!important}table.widefat tbody tr td.entry-view-field-value ul li{color:#555!important}input.headercb{margin-top:-3px}.gfield_routing_select,.gfield_rule_select{width:120px}.gfield_rule_input{vertical-align:bottom;height:28px}.gf_conditional_logic_rules_container{margin-top:4px}.gf_conditional_logic_rules_container input,.gf_conditional_logic_rules_container select{margin-top:0!important;margin-left:2px}.gform_routing_operator{width:60px}.validation_message{color:#9E0B0F!important;font-size:11px;font-family:sans-serif;letter-spacing:normal}.gfield_error{background-color:#FFDFDF!important;margin-top:4px!important;margin-bottom:6px;padding:6px 6px 4px!important;border:1px dotted #C89797}.grouting_rule_error input{border:1px solid red}.gfield_sub_setting{margin-top:20px}div#notifications_container .inside div.message.error{line-height:1.5!important}.gform_card_icon_container{margin:8px 0 6px;height:32px}div.gform_card_icon{margin-right:4px;text-indent:-9000px;background-image:url(../images/gf-creditcard-icons.png);background-repeat:no-repeat;width:36px;height:32px;float:left}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_visa{background-position:0 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa{background-position:0 -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa{background-position:0 -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_mastercard{background-position:-36px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard{background-position:-36px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard{background-position:-36px -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_amex{background-position:-72px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex{background-position:-72px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex{background-position:-72px -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_discover{background-position:-108px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover{background-position:-108px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover{background-position:-108px -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_maestro{background-position:-144px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro{background-position:-144px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro{background-position:-144px -64px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_jcb{background-position:-180px 0}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb{background-position:-180px -32px}.gform_card_icon_container.gform_card_icon_style1 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb{background-position:-180px -64px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_visa{background-position:0 -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_visa{background-position:0 -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_visa{background-position:0 -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_mastercard{background-position:-36px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_mastercard{background-position:-36px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_mastercard{background-position:-36px -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_amex{background-position:-72px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_amex{background-position:-72px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_amex{background-position:-72px -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_discover{background-position:-108px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_discover{background-position:-108px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_discover{background-position:-108px -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_maestro{background-position:-144px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_maestro{background-position:-144px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_maestro{background-position:-144px -256px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_jcb{background-position:-180px -192px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_selected.gform_card_icon_jcb{background-position:-180px -224px}.gform_card_icon_container.gform_card_icon_style2 div.gform_card_icon.gform_card_icon_inactive.gform_card_icon_jcb{background-position:-180px -256px}.ginput_complex .ginput_cardinfo_left,.ginput_complex .ginput_cardinfo_right{min-height:43px;position:relative;float:left}.ginput_complex .ginput_cardinfo_left{width:50%;margin-right:1%}.ginput_complex .ginput_cardinfo_right{min-width:85px!important}.ginput_complex .ginput_cardinfo_right label{white-space:nowrap!important}.ginput_complex span.ginput_cardextras{display:block;overflow:hidden;margin-bottom:8px}.ginput_complex .ginput_cardinfo_right span.ginput_card_expiration_container{position:relative}.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month,.ginput_complex select.ginput_card_expiration.ginput_card_expiration_year{width:47%!important;display:-moz-inline-stack;display:inline-block}.ginput_complex select.ginput_card_expiration.ginput_card_expiration_month{margin-right:4px}.ginput_complex .ginput_cardinfo_right input.ginput_card_security_code{max-width:50%!important;position:relative}.ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{width:32px;height:23px;background-image:url(../images/gf-creditcard-icons.png);background-repeat:no-repeat;background-position:0 -128px;position:relative;top:-2px;left:6px;display:-moz-inline-stack;display:inline-block}div.gfield_creditcard_warning_message{display:none!important}#gform_fields li.credit_card_setting.field_setting ul li{padding:2px 0 4px}.wp-media-buttons{padding:0!important;line-height:3px!important}.wp-media-buttons select{padding:1px!important;font-size:10px!important;line-height:2.2rem}#notifications_advanced_settings label{line-height:18px}div.gf_toolset_dropdown_menu{position:absolute;top:10px;right:0}div.gf_toolset_dropdown_menu ul li.gf_toolset_dropdown_toplevel a.gf_toolset_dropdown_toplevel_link{display:block;width:40px;height:24px;overflow:hidden;padding:0;text-indent:-9000px;text-decoration:none;background-color:#EFEFEF;margin:0;border:1px solid #DFDFDF;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;background-image:url(../images/gf-entry-paging-sprite.jpg);background-repeat:no-repeat;background-position:-144px 0}div.gf_entry_detail_pagination{clear:both;float:right;font-size:13px}div.gf_entry_detail_pagination ul{height:15px}div.gf_entry_detail_pagination ul li div.gf_entry_detail_pagination ul li{padding:0!important;margin-bottom:0!important}div.gf_entry_detail_pagination ul li{display:-moz-inline-stack;display:inline-block}div.gf_entry_detail_pagination ul li.gf_entry_count span{display:block;width:auto!important;line-height:25px;padding:0 5px 0 0}div.gf_entry_detail_pagination ul li.gf_entry_count span strong{color:#D24E29}div.gf_entry_detail_pagination ul li.gf_entry_pagination a{display:block;padding:0;text-decoration:none;margin:0}div.gf_entry_wrap #poststuff .inside{margin-top:12px}div.gf_entry_wrap #poststuff .inside .message,div.gf_entry_wrap #poststuff .inside .updated{margin:-12px -12px 12px}#notifications_container .message{margin:-2px -15px 0}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_inactive,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_inactive{color:#424242;filter:alpha(opacity=20);opacity:.2}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_active,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_active{color:#424242;filter:alpha(opacity=50);opacity:.5}a.gf_entry_next_link.gf_entry_pagination_link.gf_entry_pagination_link_active:hover,a.gf_entry_prev_link.gf_entry_pagination_link.gf_entry_pagination_link_active:hover{color:#0074A2;filter:alpha(opacity=100);opacity:1}li.gf_entry_next i,li.gf_entry_prev i{display:block}html body.wp-admin div#wpwrap div#wpcontent div#wpbody div#wpbody-content div.wrap div#tab_notification div.wp-editor-wrap{margin-top:20px!important}html body.wp-admin div#wpwrap #wp-form_notification_message-media-buttons.hide-if-no-js.wp-media-buttons{position:absolute;top:-2px;left:0;width:290px!important;padding:3px 4px 3px 6px!important;background-color:#E9E9E9;border-left:1px solid #CCC;border-top:1px solid #CCC;border-right:1px solid #CCC;-webkit-border-top-left-radius:3px;-webkit-border-top-right-radius:3px;-moz-border-radius-topleft:3px;-moz-border-radius-topright:3px;border-top-left-radius:3px;border-top-right-radius:3px}html body.rtl.wp-admin div#wpwrap #wp-form_notification_message-media-buttons.hide-if-no-js.wp-media-buttons{left:auto!important;right:0}html body.wp-admin div#wp-form_notification_message-editor-tools.wp-editor-tools{position:relative}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js a#form_notification_message-add_media{background-color:#FFF;background-image:url(../images/gf-media-button-bg.jpg);background-repeat:repeat-x;background-position:bottom;padding:3px 6px 2px 5px!important;border:1px solid #C3C3C3;border-bottom:2px solid #CCC;color:#464646;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;font-family:arial,sans-serif;font-weight:400;font-size:12px;line-height:18px;display:-moz-inline-stack;display:inline-block}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js a#form_notification_message-add_media img{display:none!important}html body.wp-admin div#wpwrap div#tab_notification div#wp-form_notification_message-wrap.wp-editor-wrap div#wp-form_notification_message-editor-tools.wp-editor-tools div#wp-form_notification_message-media-buttons.hide-if-no-js select#form_notification_message_variable_select{position:relative;top:0;font-family:arial,sans-serif;font-weight:400;font-size:12px!important;line-height:18px}.gf_toggle_submenu{width:11px;height:11px;cursor:pointer;background-image:url(../images/icon-submenu-down.png);background-size:11px 11px;background-repeat:no-repeat;background-position:center center;display:-moz-inline-stack;display:inline-block}.gf_submenu{background-color:#FFF;box-shadow:0 1px 1px rgba(0,0,0,.1);display:none;float:none;margin:0 0 0 -1px;position:absolute;padding:0;z-index:99;border-top:1px solid #dfdfdf;border-bottom:4px solid #666}#gf_form_toolbar .gf_submenu{top:40px}.row-actions .gf_submenu,.row_actions .gf_submenu{margin-top:-2px}.row-actions span a i{display:none!important}.gf_submenu li{margin:0}.gf_submenu a{display:block;padding:6px 10px}.gf_submenu a:hover{background-color:#eaf2fa;color:#333}ul#gf_form_toolbar_links li:hover .gf_submenu{display:block}ul#gf_form_toolbar_links .gf_submenu{margin-top:5px}ul#gf_form_toolbar_links .gf_submenu ul li{display:block;padding:0;margin:0;border-bottom:1px solid #eee}ul#gf_form_toolbar_links .gf_submenu ul li a{background:0 0;padding:6px 10px;line-height:24px;display:block}ul#gf_form_toolbar_links .gf_submenu ul li:hover{background-color:#F1F1F1}#gform_fields li #field_settings li{overflow:visible}.merge-tag-support{max-width:95%}.all-merge-tags{position:relative;display:-moz-inline-stack;display:inline-block}.all-merge-tags.textarea{position:absolute;margin-top:1px}.all-merge-tags a.open-list{text-indent:-999rem;width:16px;height:16px;background:url(../images/icon-drop-list.png) no-repeat;cursor:pointer;margin-left:5px;display:-moz-inline-stack;display:inline-block}ul#gf_merge_tag_list{max-height:200px;min-width:175px;overflow:auto;position:absolute;background-color:#F8F8F8;border:1px solid #CCC;z-index:999;text-indent:0;-moz-box-shadow:0 8px 6px -6px rgba(68,68,68,.4);-webkit-box-shadow:0 8px 6px -6px rgba(68,68,68,.4);box-shadow:0 8px 6px -6px rgba(68,68,68,.4)}ul#gf_merge_tag_list li:nth-child(even){background-color:#EEE}.right ul#gf_merge_tag_list{right:0}ul#gf_merge_tag_list li{margin:0;line-height:1.4rem;padding:0!important;border-bottom:1px dotted #ccc}ul#gf_merge_tag_list li:last-child{border-bottom:none}ul#gf_merge_tag_list li.group-header{font-weight:700;padding:5px!important}ul#gf_merge_tag_list li.group-header:hover{background-color:transparent}ul#gf_merge_tag_list a{display:block;padding:5px;cursor:pointer}ul#gf_merge_tag_list a:hover{background-color:#EEE}.mt-form_confirmation_message,.mt-gform_notification_message{float:right;position:relative;right:10px;top:90px}#wp-form_confirmation_message-wrap,#wp-gform_notification_message-wrap{margin-right:12px}#form_settings{margin-top:0}#gf_personal_data_field_settings .gf_personal_data_field_label_title{text-align:left;padding:0;font-weight:700}#gf_personal_data_field_settings .gf_personal_data_cb_title{text-align:center;padding:0;width:50px;font-weight:700}#gf_personal_data_field_settings .gf_personal_data_cb_cell{text-align:center;width:50px}.gform_tab_group{background-color:#FFF;border:1px solid #DEDEDE;margin-top:10px;border-radius:3px;-webkit-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);-moz-box-shadow:0 1px 1px 0 rgba(0,0,0,.1);box-shadow:0 1px 1px 0 rgba(0,0,0,.1);display:flex}.gform_tabs{width:150px;flex-grow:0;flex-shrink:0;margin-top:10px}.gform_tab_container{flex-grow:1;padding:20px;min-height:370px;background-color:#F6FBFD;border-left:1px solid #E1E1E1}.gform_tabs a{padding:6px 10px;text-decoration:none;display:block;border:1px solid #FFF;font-size:14px}.gform_tabs li.active a{line-height:18px;z-index:50!important;background-color:#F6FBFD;border:1px solid #E1E1E1;border-right-color:#F6FBFD;border-left:2px solid #2EA2CC;margin:0 -1px 0 0;width:138px;padding:6px 0 6px 10px!important}.gform_tabs li:last-child{margin-bottom:16px}.gform_tab_content h3{font-size:1.6rem;margin-top:2px}ul#gform_fields li#no-fields{padding:0!important}ul#gform_fields li#no-fields div.newform_notice{padding:20px 20px 18px;font-weight:700;margin:2px 0 40px!important;position:relative}ul#gform_fields li#no-fields div.newform_notice span{position:absolute;right:35px;top:35px;width:116px;height:83px;background-image:url(../images/gf-nofields-steps.png);background-position:0 -1769px;background-repeat:no-repeat;display:block}h4.gf_nofield_header{font-size:1.6rem;font-weight:700}h4.gf_settings_subheader{font-size:1.4rem;border-bottom:1px solid #CCC;padding:0 0 10px;margin:2px 0 30px!important;font-weight:400!important}#export_filters{width:450px}.gf_tips{font-family:'Shadows Into Light Two',helvetica,arial,sans-serif;color:#F26522}div#gf_nofield_1_instructions,div#gf_nofield_2_instructions,div#gf_nofield_3_instructions,div#gf_nofield_4_instructions,div#gf_nofield_5_instructions{position:relative;width:498px;background-image:url(../images/gf-nofields-steps.png);background-repeat:no-repeat}span.gf_nofield_1_instructions_copy,span.gf_nofield_1_instructions_heading{width:200px;left:0;-webkit-transform:rotate(355deg);-moz-transform:rotate(355deg);-o-transform:rotate(355deg)}div#gf_nofield_1_instructions{height:352px;background-position:0 0}div#gf_nofield_2_instructions{height:192px;background-position:0 -382px}div#gf_nofield_3_instructions{height:572px;background-position:0 -605px}div#gf_nofield_4_instructions{height:220px;background-position:0 -1207px}div#gf_nofield_5_instructions{height:282px;background-position:0 -1457px}div#gf_nofield_1_instructions span,div#gf_nofield_2_instructions span,div#gf_nofield_3_instructions span,div#gf_nofield_4_instructions span,div#gf_nofield_5_instructions span{display:block;position:absolute;line-height:1.1;word-spacing:-.1rem;text-align:center}span.gf_nofield_1_instructions_heading{top:30px;font-size:40px}span.gf_nofield_1_instructions_copy{top:125px;font-size:20px}span.gf_nofield_2_instructions_copy{width:260px;top:25px;left:245px;font-size:20px;-webkit-transform:rotate(358deg);-moz-transform:rotate(358deg);-o-transform:rotate(358deg)}span.gf_nofield_3_instructions_copy_top{width:260px;top:10px;left:180px;font-size:20px}span.gf_nofield_3_instructions_copy_mid{width:240px;top:290px;left:140px;font-size:20px}span.gf_nofield_3_instructions_copy_bottom{width:260px;top:475px;left:180px;font-size:20px;-webkit-transform:rotate(359deg);-moz-transform:rotate(359deg);-o-transform:rotate(359deg)}span.gf_nofield_4_instructions_copy_top{width:260px;top:13px;left:239px;font-size:20px}span.gf_nofield_4_instructions_copy_bottom{width:300px;top:185px;left:180px;font-size:20px}span.gf_nofield_5_instructions_heading{width:200px;top:30px;left:0;font-size:40px;line-height:1.1rem;word-spacing:-.2rem;text-align:center;-webkit-transform:rotate(3deg);-moz-transform:rotate(3deg);-o-transform:rotate(3deg)}span.gf_nofield_5_instructions_copy{width:200px;top:125px;left:0;font-size:20px;-webkit-transform:rotate(2deg);-moz-transform:rotate(2deg);-o-transform:rotate(2deg)}h3+h4.gf_settings_subheader,table+h4.gf_settings_subheader{margin:30px 0!important}#gform_fields .field-drop-zone{border:1px dashed #bbb;background-color:#FFF;margin:0 auto 10px;height:75px;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.gform_fields_empty{height:600px}.ui-draggable-dragging{-webkit-transition:width .1s;transition:width .1s;width:120px;z-index:9999;color:#424242!important}ul.gforms_form_settings li{margin:0}h4.section-title{border-bottom:1px solid #EEE;font-size:14px;font-weight:400;margin:0 0 20px;padding:0 0 5px}.child-settings{padding:10px;border-left:2px solid #EEE;margin-left:5px}.editing td:first-child,tr#confirmation-editor-row td{border-left:3px solid #21759B}table.gforms_form_settings{margin:0 0 18px}table.gforms_form_settings td,table.gforms_form_settings th{padding:8px 0}.show_advanced_settings_container{border-top:1px solid #EEE;padding:5px}#show_advanced_settings{cursor:pointer}h4.gf_settings_subgroup_title{padding-bottom:6px;border-bottom:1px solid #DFDFDF}table.gforms_form_settings th{text-align:left;width:200px;font-weight:400;vertical-align:top;padding-left:10px}body.wp-admin .wrap .gform_tab_group .gform_tab_container .gform_tab_content input.button-primary{margin:10px 0 20px;letter-spacing:.3pt;font-weight:400}.setting-row{margin:0 0 10px}tr#confirmation-editor-row td{padding:0;border-top:0}div#confirmation-editor{padding:20px}.editing td{border-bottom:0}.editing .edit a{color:#999!important}.last-row td{background-color:red}.editor-actions a{line-height:24px}.editor-actions img.spinner{position:relative;top:4px;left:6px}.add_field_choice,.delete_field_choice{position:relative;margin-left:6px;color:#444;top:3px}#feed_condition_conditional_logic_container{margin-top:10px}.add_field_choice{margin-left:16px}#confirmation_action_type{display:none}#confirmation_logic_type{margin-left:5px}ol.field_type li{float:left;width:50%}ol.field_type input.button{width:120px}.description-list{margin:10px 0;padding:0 20px}.description-list li{padding:0;list-style:disc;overflow:visible}.custom_mask_instructions h5{margin:0 0 4px;font-size:11px}.custom_mask_instructions span.label{font-size:11px;width:80px;display:inline-block}.custom_mask_instructions li{margin:0 0 14px}.gf_calculation_buttons{float:right;margin-right:55px}.gf_calculation_buttons input[type=button]{width:22px;float:left}#field_calculation_formula_variable_select{width:150px}#calculation_options p{margin:0 0 14px;padding:0}a.limit-text{display:block;height:18px;line-height:18px;overflow:hidden;padding-right:5px;color:#555;text-overflow:ellipsis;white-space:nowrap}a.limit-text:hover{color:#555}th.column-name{width:30%}th.column-type{width:20%}div.gf_animate_sub_settings{border-left:1px dashed #DFDFDF;margin-left:10px}.gform_nofification_edit div.gf_animate_sub_settings{margin-left:0}table.gforms_form_settings td.gf_sub_settings_cell{padding:0}div#form_button_conditional_logic_container.gf_animate_sub_settings{padding-left:12px!important}span.gf_admin_page_formid{color:#FFF;background-color:#D4662C;line-height:2;white-space:nowrap;padding:0 8px;position:relative;top:-3px;text-decoration:none;border:none;-webkit-border-radius:2px;border-radius:2px;text-shadow:none;font-weight:600;font-size:13px;display:-moz-inline-stack;display:inline-block;margin:0 2px 0 12px}div#gform_last_page_settings div#last_page_settings.ui-tabs,div#gform_last_page_settings div#last_page_settings.ui-tabs ul.ui-tabs-nav,div#gform_pagination div#pagination_settings.ui-tabs ul.ui-tabs-nav,ul#gform_fields li div#field_settings.ui-tabs div#gform_pagination div#pagination_settings.ui-tabs,ul#gform_fields li div#field_settings.ui-tabs ul.ui-tabs-nav{padding:0!important}#gform_notification_to_routing_container table{width:100%}.ui-tabs>.ui-tabs-nav>.ui-state-disabled{display:none}div#gform_last_page_settings div#last_page_settings .ui-widget-header,div#gform_pagination div#pagination_settings .ui-widget-header,ul#gform_fields li .ui-widget-header{border-left:none!important;border-top:none!important;border-right:none!important;background:0 0!important;font-weight:400!important}div#gform_last_page_settings div#last_page_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default,div#gform_pagination div#pagination_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default,ul#gform_fields li div#field_settings.ui-tabs ul.ui-tabs-nav li.ui-state-default{font-weight:400!important}div#gform_last_page_settings div#last_page_settings.ui-widget-content,div#gform_pagination div#pagination_settings.ui-widget-content,ul#gform_fields li div#field_settings.ui-widget-content{background:0 0!important;border:none!important}input:checked+label{font-weight:400}div.gf_clear{clear:both!important}div.gf_clear.gf_clear_complex{clear:both!important;margin-bottom:10px}.gf_button.slick_button{display:inline-block;text-decoration:none;padding:10px 25px;color:#FFF;font-weight:700;text-shadow:0 -1px 0 rgba(0,0,0,.2);border:1px solid rgba(0,0,0,.15);-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-moz-box-shadow:0 0 1px 2px rgba(121,0,0,.2);-webkit-box-shadow:0 0 1px 2px rgba(121,0,0,.2);box-shadow:0 0 1px 2px rgba(121,0,0,.2);font-size:1.2rem}.slick_button.red_button{background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmMzAxOSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjZjA0MDQiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background:-moz-linear-gradient(top,#ff3019 0,#cf0404 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#ff3019),color-stop(100%,#cf0404));background:-webkit-linear-gradient(top,#ff3019 0,#cf0404 100%);background:-o-linear-gradient(top,#ff3019 0,#cf0404 100%);background:-ms-linear-gradient(top,#ff3019 0,#cf0404 100%);background:linear-gradient(to bottom,#ff3019 0,#cf0404 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff3019', endColorstr='#cf0404', GradientType=0 )}div.gf-pagebreak-end,div.gf-pagebreak-first,div.gf-pagebreak-inline{background-position:center center;background-repeat:no-repeat}.slick_button.red_button:active,.slick_button.red_button:hover{color:#FFF}.gform-add,.gform-remove{margin-top:2px;vertical-align:middle;cursor:pointer}.gform-add{margin-left:5px}#gform-no-filters{color:#CCC;cursor:pointer}.gform-filter-value{vertical-align:bottom;height:28px!important}.gform-filter-field,.gform-filter-operator,.gform-filter-value{height:2rem;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.gform-filter-field,.gform-filter-value{width:150px}#gform-field-filters{overflow-y:auto}.gform-field-filter{margin-top:4px}.gform-field-filter input,.gform-field-filter select{margin-right:2px}.gform-field-filter .gform-add{margin-right:4px}.ui-resizable-handle{position:absolute;font-size:.1px;z-index:99999;display:block}.ui-resizable-s{cursor:s-resize;height:7px;width:100%;bottom:-5px;left:0}#namediv .gform_button_select_files{width:100px!important}.gform_fileupload_multifile .gform_drop_area{padding:25px;border:2px dashed #ddd;text-align:center;color:#aaa;margin-bottom:10px}.gform_delete{vertical-align:middle;cursor:pointer}tr.gf-locking.wp-locked .locked-info{height:auto}tr.gf-locking.wp-locked img.gform_active_icon{display:none}div.gf-pagebreak-container{display:block;position:relative;text-align:center;padding:20px 0}div.gf-pagebreak-first{background-image:url(../images/gf-pagebreak-first.png)}div.gf-pagebreak-inline{background-image:url(../images/gf-pagebreak-inline.png)}div.gf-pagebreak-end{background-image:url(../images/gf-pagebreak-end.png)}div.gf-pagebreak-text-main{font-weight:700;font-size:16px;text-transform:uppercase;margin:10px auto}div.gf-pagebreak-text-main span{background-color:#EEE;padding:0 10px;display:-moz-inline-stack;display:inline-block}.field_hover div.gf-pagebreak-container div.gf-pagebreak-text-main span,.field_selected div.gf-pagebreak-container div.gf-pagebreak-text-main span{background-color:#F6FBFD!important}.gf-pagebreak-text-after,.gf-pagebreak-text-before{font-family:'Shadows Into Light Two',"Brush Script MT",helvetica,arial,sans-serif;font-size:16px;color:#F26522}li.gfield.gpage label.gfield_label{display:none!important;margin:0!important}.entry_unread a,.entry_unread td{font-weight:700}.entry_spam_trash a,.entry_spam_trash td,.row-actions a{font-weight:400}.entry_nowrap{overflow:hidden;white-space:nowrap}.gform-filter-operator{width:100px}body.forms_page_gf_entries div#TB_title[style]{width:630px!important}table.form-table tr:last-child td,table.form-table tr:last-child th{border:none!important}span.gf_settings_description{display:block;margin-top:6px}div.gf-html-container{border:1px solid #E4E4E4;padding:20px;background-color:#F6F6F6}div.gf-html-container span.gf_blockheader{font-weight:700;display:block;text-transform:uppercase;margin-bottom:6px;font-size:16px;line-height:16px}ul.gform_fields.left_label li.gfield.gfield_html .gfield_label,ul.gform_fields.right_label li.gfield.gfield_html .gfield_label{float:none!important;display:inline-block;margin-top:12px;margin-bottom:8px;text-align:left;width:100%}.gf_delete_field_choice,.gf_insert_field_choice{color:#9B9B9B;text-decoration:none;margin-left:6px;font-size:14px;border:0;padding:0}.gf_delete_field_choice:active,.gf_delete_field_choice:hover,.gf_insert_field_choice:active,.gf_insert_field_choice:hover{color:#444}.ginput_container.ginput_single_email input.medium,span.ginput_left input.medium,span.ginput_right input.medium{width:95%!important}ul:not(.top_label) .ginput_container.ginput_single_email{margin-left:30%}.gforms_edit_form input.disabled,.gforms_edit_form input:disabled,.gforms_edit_form select.disabled,.gforms_edit_form select:disabled,.gforms_edit_form textarea.disabled,.gforms_edit_form textarea:disabled{pointer-events:none}.gaddon-section{padding:20px 0 0;margin:0 0 20px}.gaddon-section.gaddon-first-section{padding-top:0;border-top:0}.gaddon-setting.large{width:95%}.gaddon-select,.gaddon-setting.medium{width:50%}.gaddon-setting.gaddon-checkbox{margin-right:8px}table tbody tr#gform_notification_to_email_container.notification_to_container td.gf_sub_settings_cell div.gf_animate_sub_settings table th,table tbody tr#gform_notification_to_field_container.notification_to_container td.gf_sub_settings_cell div.gf_animate_sub_settings table tbody tr th{padding-left:10px;width:175px!important}table tbody tr#gform_notification_to_email_container.notification_to_container td.gf_sub_settings_cell div.gf_animate_sub_settings table{width:100%!important}div#gform_notification_to_routing_rules div{margin-top:4px}div#gform_notification_to_routing_rules div:first-child{margin-top:0!important}div#gform_notification_to_routing_rules div input:first-child{min-width:35%}div#gform_notification_to_routing_rules input{height:28px;vertical-align:middle}div.wrap.gf_browser_safari div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button,div.wrap.gf_browser_safari div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:active,div.wrap.gf_browser_safari div#add_fields div#floatMenu ul#sidebarmenu1.menu li.add_field_button_container ul li.add-buttons ol.field_type li input.button:hover{padding-top:6px;padding-bottom:6px;line-height:10px}div.wrap.gf_browser_safari .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{top:-2px}div.wrap.gf_browser_safari .ui-tabs-panel ul li label.inline{margin-bottom:0!important}div.wrap.gf_browser_gecko div.new-form-option a{padding:16px 16px 14px}div.wrap.gf_browser_gecko .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{top:-4px}div.wrap.gf_browser_gecko .ui-tabs-panel ul li label.inline{margin-bottom:0!important;margin-top:1px!important}div.wrap.gf_browser_ie .menu.collapsible ol.field_type li input.button{width:96%!important}div.wrap.gf_browser_ie .menu.collapsible li{min-width:20%!important}div.wrap.gf_browser_ie .gfield_checkbox li input,div.wrap.gf_browser_ie .gfield_checkbox li input[type=checkbox],div.wrap.gf_browser_ie .gfield_radio li input[type=radio]{margin-top:0}.bulk-arrow-mid{height:300px}textarea#gfield_bulk_add_input{width:320px;height:290px}div.wrap.gf_browser_ie .ginput_complex .ginput_cardinfo_right input.ginput_card_security_code{top:0}div.wrap.gf_browser_ie .ginput_complex .ginput_cardinfo_right span.ginput_card_security_code_icon{position:relative;top:-2px}div.wrap.gf_browser_ie .menu.collapsible ol.field_type li{width:50%;overflow:hidden}div.wrap.gf_browser_ie.gf_browser_ie8 .menu.collapsible ol.field_type li input.button,div.wrap.gf_browser_ie.gf_browser_ie9 .menu.collapsible ol.field_type li input.button{width:92%!important}div.wrap.gf_browser_ie input.button-primary,div.wrap.gf_browser_ie input.button-primary.gfbutton,div.wrap.gf_browser_ie input.gfbutton{padding:0 6px;line-height:1rem}div.wrap.gf_browser_ie ol.field_type{width:100%!important}div.wrap.gf_browser_ie ol.field_type li{padding:0!important}div.wrap.gf_browser_ie ol.field_type input.button[type=button]{width:140px!important}body .gf_browser_chrome a.button-primary.gfbutton,body .gf_browser_chrome button.button-primary.gfbutton,body .gf_browser_chrome input.button-primary.gfbutton{line-height:1em!important}body .gf_browser_chrome h2.gf_admin_page_title span.gf_admin_page_subtitle{margin-top:2px}body .gf_browser_chrome .ui-tabs-panel ul li label.inline{margin-bottom:0!important;margin-top:1px!important}div.wrap.gf_browser_chrome .gfield_checkbox li input,div.wrap.gf_browser_chrome .gfield_checkbox li input[type=checkbox],div.wrap.gf_browser_chrome .gfield_radio li input[type=radio]{margin-left:2px!important}#gfield_settings_category_container,#gfield_settings_choices_container,.gfield_settings_input_choices_container{max-height:222px}#gform_installation_progress li{display:inline-block;padding:10px 25px 10px 0}.gform_installation_progress_current_step,.gform_installation_progress_step_complete,.gform_installation_progress_step_wrap p{color:#000}.gform_installation_progress_step_pending{color:silver}.gform_system_report mark{background:0 0;color:#999}.gform_system_report mark.yes{color:#7ad03a}.gform_system_report .error_message,.gform_system_report mark.error{color:#a00}.gform_system_report_alert{border-left-color:#2EA2CC!important;box-sizing:border-box;display:block;width:100%;position:relative;padding-bottom:10px!important}.gf_copy_message{color:#080;display:none!important}#gf_system_report{position:absolute;height:10px;width:10px;top:65px;left:20px;z-index:-1}#gform_register_site{display:none}#gform_license_key{font-size:19px!important;width:90%!important}#entry_list_form .column-is_starred,#form_list_form .column-is_active{width:19px;vertical-align:top;padding:9px 31px 8px 10px}#form_list_form .column-conversion,#form_list_form .column-entry_count,#form_list_form .column-id,#form_list_form .column-view_count{width:10%}#entry_list_form .column-column_selector{width:20px}#entry_filters{display:inline-block;vertical-align:middle}#entry_search_button{float:right;margin-top:3px}#content-sortables.empty-container,#sidebar_middle-sortables.empty-container,#sidebar_top-sortables.empty-container{border:3px dashed #BBB!important;height:250px!important}#entry_search_container{margin-top:12px;float:right}.gform-rte-preview{width:459px;background-image:url(../images/rich-text-editor.png);position:relative;display:none;margin-bottom:21px}.gform-rte-preview.small{height:110px}.gform-rte-preview.medium{height:180px}.gform-rte-preview.large{height:280px}.gform-rte-preview:after{content:'';display:block;height:21px;width:459px;background:url(../images/rich-text-editor.png) bottom no-repeat;position:absolute;top:100%}.detail-view-print{margin-bottom:20px}.screen-meta-toggle{z-index:2}div.error{padding:20px}::-webkit-input-placeholder{color:#BDBDBD}::-moz-placeholder{color:#BDBDBD}:-ms-input-placeholder{color:#BDBDBD}:-moz-placeholder{color:#BDBDBD}.gf_browser_gecko input[type=checkbox],.gf_browser_gecko input[type=radio]{margin-bottom:-6px}.gf_browser_chrome input[type=checkbox],.gf_browser_chrome input[type=radio]{margin-bottom:-4px}.section_label{color:#21759b;font-weight:700;margin-bottom:12px;display:block}#gform_fields li ul.rules_container li{padding:0}.last_page_button_options{margin-top:8px}#last_page_button_button_container,#last_page_button_image_container,#last_page_button_text_container{margin-top:12px!important}div.range_max,div.range_min{width:98px;display:-moz-inline-stack;display:inline-block;vertical-align:top;padding-right:8px}div.range_max input,div.range_min input{width:90px}@media screen and (max-width:782px){.gforms_form_settings_wrap #gform_tab_container_1,.gforms_settings_wrap #gform_tab_container{margin-left:0}#entry_search_container{bottom:-100px;float:none;height:90px;position:absolute;vertical-align:middle}#entry_search_button{float:none}.gforms_form_settings_wrap #gform_tabs{display:none}#gform-settings .column-is_active{width:19px;padding-top:0;vertical-align:top}.gforms_settings_wrap .gform_tab_group{flex-flow:column}.gforms_settings_wrap #gform_tabs{float:none;width:100%;margin:10px 10px 0}.gforms_settings_wrap #gform_tabs li.active a{width:auto;border-left:0;border-right:0;border-top:0;border-bottom:4px solid #666;background-color:inherit;box-shadow:none;color:#23282d;padding:10px!important}.gforms_settings_wrap #gform_tabs li{display:inline-block;width:auto;margin-bottom:0;border-right:#e1e1e1}#gform_tab_container{border-top:1px solid #e1e1e1}.gform_panel h3{line-height:39px}.gform_panel h3 .add-new-h2{display:inline-block;margin-left:0;position:static;vertical-align:top}}.gfield_repeater_cell>.gfield_repeater_wrapper{background-color:rgba(1,1,1,.02);padding:10px 20px;border-radius:8px;border-bottom:1px solid rgba(238,238,238,1)}.gfield_repeater_wrapper input{border:1px solid rgba(197,198,197,1);border-radius:4px}.gfield_repeater_buttons .add_repeater_item_text,.gfield_repeater_buttons .remove_repeater_item_text{min-width:100px;height:30px;background:rgba(242,242,242,.5);transition:all .3s cubic-bezier(.67,.17,.4,.83);font-size:12px;color:rgba(117,117,117,1);border-radius:20px;margin-right:10px;margin-bottom:5px;border:1px solid rgba(117,117,117,.4);font-weight:400}.gfield_repeater_buttons .add_repeater_item_plus,.gfield_repeater_buttons .remove_repeater_item_minus{width:22px;height:22px;background:rgba(242,242,242,.5);transition:all .3s cubic-bezier(.67,.17,.4,.83);font-size:16px;color:rgba(117,117,117,1);border-radius:50%;margin:10px 5px 0;border:1px solid rgba(117,117,117,.4);font-weight:700;padding:0 0 5px}.gfield_repeater_buttons button.gfield_icon_disabled{cursor:default;filter:alpha(opacity=30);-moz-opacity:.3;-khtml-opacity:.3;opacity:.3}.gfield_repeater_buttons button.gfield_icon_disabled:hover{background:rgba(242,242,242,.5);color:rgba(117,117,117,1);border:1px solid rgba(117,117,117,.4)}.gfield_repeater_buttons button:hover{background:rgba(250,250,250,1);color:#374750;border:1px solid rgba(117,117,117,1)}.gfield_repeater_cell>.gfield_repeater_wrapper{border-left:8px solid rgba(241,241,241,1);box-shadow:0 1px 1px 0 rgba(0,0,0,.06),0 2px 1px -1px rgba(0,0,0,.06),0 1px 5px 0 rgba(0,0,0,.06)}.gfield_repeater_buttons .add_repeater_item_text:focus,.gfield_repeater_buttons .remove_repeater_item_text:focus{outline:0}.gfield_repeater_item .gfield_repeater_cell .gfield_required{color:#c32121}.gform_wrapper .gfield_repeater_cell label{color:#9b9a9a;font-weight:400;font-size:14px}.gfield_repeater_value .gfield_repeater_value .gfield_repeater_cell{padding-bottom:20px;padding-top:0}.gfield_repeater .gfield_repeater_items .gfield_repeater_item:not(:last-child){border-bottom:2px solid #e0e0e6;padding-bottom:20px;margin-bottom:20px;margin-right:10px}div .gfield_repeater_cell{margin-top:5px}.gfield_repeater_value>.gfield_repeater{border-left:8px solid rgba(54,86,102,.1);background-color:rgba(1,1,1,.02);padding:10px 20px;border-radius:8px;border-bottom:1px solid rgba(238,238,238,1);margin:10px}.gfield_repeater_cell .gfield_repeater_value:not(:first-child){color:rgba(117,117,117,.7);border:1px solid rgba(197,198,197,1);border-radius:4px;margin-right:10px;padding-left:10px;background-color:rgba(240,240,240,1)}.gfield_repeater .gfield_repeater_items,.gfield_repeater_items .gfield_repeater_cell:not(:first-child){padding-top:5px}.gfield_repeater .gfield_label{color:rgba(35,40,45,1);font-size:16px;font-weight:600}.gfield_repeater_cell div.ginput_complex_admin span label,.gfield_repeater_cell label.gfield_label{color:#9b9a9a;font-weight:400;font-size:14px}.gfield_repeater_value .gfield_label,.gfield_repeater_value .gfield_repeater_value .gfield_repeater_item:first-child{padding-bottom:0}.gfield_repeater_cell .gfield_admin_icons{height:0} \ No newline at end of file diff --git a/css/print.css b/css/print.css index 8ac574f..86cac60 100644 --- a/css/print.css +++ b/css/print.css @@ -135,9 +135,6 @@ AND ANY CHANGES MADE HERE WILL BE OVERWRITTEN. table.entry-detail-view, table.entry-detail-notes { margin: 0 0 16px 0 } - table.entry-detail-notes { - page-break-before: always - } table.entry-detail-view th, table.entry-detail-notes th { font-size: 14px; text-shadow: 0 1px 0 #FFF; diff --git a/css/print.min.css b/css/print.min.css index 34e73da..242496a 100644 --- a/css/print.min.css +++ b/css/print.min.css @@ -1 +1 @@ -@media screen{body{color:#333}:focus{outline:0}div#print_preview_hdr{margin:0 0 16px;color:#18749D;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;padding:12px 20px 12px 0;font-size:16px;border-bottom:2px solid #C5D7F1;background-color:#DFEFFF;display:block!important}div#print_preview_hdr div:first-child{background-position:16px center;background-repeat:no-repeat;padding-left:36px}div#print_preview_hdr span.actionlinks{width:200px;display:block;float:right;text-align:right;margin-top:5px;font-family:"lucida sans","lucida grande",lucida,sans-serif;font-size:12px;color:#CCC}div#print_preview_hdr a{color:#21759B;text-decoration:none;display:inline;font-weight:400;letter-spacing:normal}div#print_preview_hdr a:hover{color:#21759B;text-decoration:underline}div#view-container{margin:0 20px 20px}div.print-hr{border-top:1px dotted #ccc;margin:15px 0 30px}}@media print{body{color:#000}div#print-preview-header,div#print-preview-header span.actionlinks,div#print-preview-header span.actionlinks a{display:none!important}div#print-preview-header{margin-left:-9000px}div.print-page-break{page-break-after:always;border-top:0;margin:0}}@media screen,print{body,html{height:100%}body,ul{padding:0}body{font-family:sans-serif;font-size:12px;margin:0}ul{margin:10px 0}img{border:0}.widefat{background-color:#FFF;border-color:#DFDFDF;-moz-border-radius:4px;-khtml-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border-spacing:0;border-style:solid;border-width:1px;clear:both;margin:0;width:100%}table.fixed{table-layout:fixed}table.entry-detail-notes,table.entry-detail-view{margin:0 0 16px}table.entry-detail-notes{page-break-before:always}table.entry-detail-notes th,table.entry-detail-view th{font-size:14px;text-shadow:0 1px 0 #FFF;text-align:left;padding:7px;background-color:#E3E3E3}table.entry-detail-notes td.lastrow,table.entry-detail-view td.lastrow{border-bottom:none!important}td.entry-view-section-break{font-size:14px;font-weight:700;background-color:#EEE;border-bottom:1px solid #DFDFDF;padding:7px}td.entry-view-field-name{font-weight:700;background-color:#EAF2FA;border-bottom:1px solid #FFF;line-height:150%;padding:7px}td.entry-detail-note,td.entry-view-field-value{border-bottom:1px solid #DFDFDF;line-height:150%}td.entry-view-field-value{padding:7px 7px 7px 40px}td.entry-view-field-value p{text-align:left;line-height:150%}td.entry-view-field-value ul.bulleted{margin-left:12px}td.entry-view-field-value ul.bulleted li{list-style-type:disc}td.entry-detail-note{padding:7px}div.note-avatar{width:48px;height:48px;float:left;margin-right:6px}h6.note-author{font-weight:700;font-size:13px;margin:0;padding:0;line-height:100%}div.detail-note-content{margin:10px 0 10px 54px;line-height:150%}div.detail-note-content p{line-height:150%}table.entry-products{border:1px solid #DFDFDF;border-right:none;border-bottom:none;margin:10px 0}table.entry-products th[scope=col]{background-color:#F4F4F4;border-right:1px solid #DFDFDF!important;border-bottom:1px solid #DFDFDF}table.entry-products col.entry-products-col2{width:50px}table.entry-products col.entry-products-col3,table.entry-products col.entry-products-col4{width:155px}table.entry-products td{border-right:1px solid #DFDFDF!important;border-bottom:1px solid #DFDFDF;padding:7px 7px 8px;vertical-align:top}table.entry-products td.textcenter,table.entry-products th.textcenter{text-align:center}table.entry-products td.textright,table.entry-products th.textright{text-align:right}table.entry-products td.grandtotal,table.entry-products td.grandtotal_amount,table.entry-products td.shipping,table.entry-products td.shipping_amount{font-weight:700;font-size:13px;padding-top:7px;padding-bottom:8px}table.entry-products td.emptycell{background-color:#F4F4F4}table.entry-products td div.product_name{font-weight:700;color:#BF461E;font-size:13px;margin-bottom:5px}table.entry-products td ul.product_options li{background-image:url(../images/prodlist.png);background-repeat:no-repeat;background-position:left top;overflow:visible;margin:0 0 0 2px!important;padding:4px 0 4px 16px;list-style-type:none}table.entry-products td ul.product_options li.lastitem{background-image:url(../images/prodlist_last.png)}table.gfield_list td.gfield_list_cell{padding:8px 0}table.gfield_list td.gfield_list_cell+td.gfield_list_cell{padding:8px 10px}table.gfield_list thead tr th{padding:8px 0;font-weight:700}table.gfield_list thead tr th+th{padding:8px 10px}table.widefat tbody tr td.entry-view-field-value table.gfield_list{border-top:1px solid #DFDFDF!important;border-left:1px solid #DFDFDF!important;border-spacing:0;padding:0;margin:2px 0 6px;width:100%}table.widefat tbody tr td.entry-view-field-value table.gfield_list td{border-right:1px solid #DFDFDF!important;font-family:sans-serif!important}table.widefat tbody tr td.entry-view-field-value table.gfield_list thead tr th{background-image:none!important;border-right:1px solid #DFDFDF!important;padding:6px 10px;font-family:sans-serif!important}table.widefat tbody tr td.entry-view-field-value ul li{color:#555!important}table.widefat tbody tr td.entry-view-field-value table.gfield_list td,table.widefat tbody tr td.entry-view-field-value table.gfield_list th{border-bottom:1px solid #DFDFDF;padding:6px 10px}table.widefat tbody tr td.entry-view-field-value table.gfield_list th{color:#333;background-color:#F1F1F1;font-size:12px}table.widefat tbody tr td.entry-view-field-value table.gfield_list td{border-top:1px solid #FFF;font-size:12px;padding:4px 7px 3px 10px;vertical-align:top;color:#555;word-wrap:break-word}} \ No newline at end of file +@media screen{body{color:#333}:focus{outline:0}div#print_preview_hdr{margin:0 0 16px;color:#18749D;font-family:Georgia,"Times New Roman","Bitstream Charter",Times,serif;padding:12px 20px 12px 0;font-size:16px;border-bottom:2px solid #C5D7F1;background-color:#DFEFFF;display:block!important}div#print_preview_hdr div:first-child{background-position:16px center;background-repeat:no-repeat;padding-left:36px}div#print_preview_hdr span.actionlinks{width:200px;display:block;float:right;text-align:right;margin-top:5px;font-family:"lucida sans","lucida grande",lucida,sans-serif;font-size:12px;color:#CCC}div#print_preview_hdr a{color:#21759B;text-decoration:none;display:inline;font-weight:400;letter-spacing:normal}div#print_preview_hdr a:hover{color:#21759B;text-decoration:underline}div#view-container{margin:0 20px 20px}div.print-hr{border-top:1px dotted #ccc;margin:15px 0 30px}}@media print{body{color:#000}div#print-preview-header,div#print-preview-header span.actionlinks,div#print-preview-header span.actionlinks a{display:none!important}div#print-preview-header{margin-left:-9000px}div.print-page-break{page-break-after:always;border-top:0;margin:0}}@media screen,print{body,html{height:100%}body,ul{padding:0}body{font-family:sans-serif;font-size:12px;margin:0}ul{margin:10px 0}img{border:0}.widefat{background-color:#FFF;border-color:#DFDFDF;-moz-border-radius:4px;-khtml-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border-spacing:0;border-style:solid;border-width:1px;clear:both;margin:0;width:100%}table.fixed{table-layout:fixed}table.entry-detail-notes,table.entry-detail-view{margin:0 0 16px}table.entry-detail-notes th,table.entry-detail-view th{font-size:14px;text-shadow:0 1px 0 #FFF;text-align:left;padding:7px;background-color:#E3E3E3}table.entry-detail-notes td.lastrow,table.entry-detail-view td.lastrow{border-bottom:none!important}td.entry-view-section-break{font-size:14px;font-weight:700;background-color:#EEE;border-bottom:1px solid #DFDFDF;padding:7px}td.entry-view-field-name{font-weight:700;background-color:#EAF2FA;border-bottom:1px solid #FFF;line-height:150%;padding:7px}td.entry-detail-note,td.entry-view-field-value{border-bottom:1px solid #DFDFDF;line-height:150%}td.entry-view-field-value{padding:7px 7px 7px 40px}td.entry-view-field-value p{text-align:left;line-height:150%}td.entry-view-field-value ul.bulleted{margin-left:12px}td.entry-view-field-value ul.bulleted li{list-style-type:disc}td.entry-detail-note{padding:7px}div.note-avatar{width:48px;height:48px;float:left;margin-right:6px}h6.note-author{font-weight:700;font-size:13px;margin:0;padding:0;line-height:100%}div.detail-note-content{margin:10px 0 10px 54px;line-height:150%}div.detail-note-content p{line-height:150%}table.entry-products{border:1px solid #DFDFDF;border-right:none;border-bottom:none;margin:10px 0}table.entry-products th[scope=col]{background-color:#F4F4F4;border-right:1px solid #DFDFDF!important;border-bottom:1px solid #DFDFDF}table.entry-products col.entry-products-col2{width:50px}table.entry-products col.entry-products-col3,table.entry-products col.entry-products-col4{width:155px}table.entry-products td{border-right:1px solid #DFDFDF!important;border-bottom:1px solid #DFDFDF;padding:7px 7px 8px;vertical-align:top}table.entry-products td.textcenter,table.entry-products th.textcenter{text-align:center}table.entry-products td.textright,table.entry-products th.textright{text-align:right}table.entry-products td.grandtotal,table.entry-products td.grandtotal_amount,table.entry-products td.shipping,table.entry-products td.shipping_amount{font-weight:700;font-size:13px;padding-top:7px;padding-bottom:8px}table.entry-products td.emptycell{background-color:#F4F4F4}table.entry-products td div.product_name{font-weight:700;color:#BF461E;font-size:13px;margin-bottom:5px}table.entry-products td ul.product_options li{background-image:url(../images/prodlist.png);background-repeat:no-repeat;background-position:left top;overflow:visible;margin:0 0 0 2px!important;padding:4px 0 4px 16px;list-style-type:none}table.entry-products td ul.product_options li.lastitem{background-image:url(../images/prodlist_last.png)}table.gfield_list td.gfield_list_cell{padding:8px 0}table.gfield_list td.gfield_list_cell+td.gfield_list_cell{padding:8px 10px}table.gfield_list thead tr th{padding:8px 0;font-weight:700}table.gfield_list thead tr th+th{padding:8px 10px}table.widefat tbody tr td.entry-view-field-value table.gfield_list{border-top:1px solid #DFDFDF!important;border-left:1px solid #DFDFDF!important;border-spacing:0;padding:0;margin:2px 0 6px;width:100%}table.widefat tbody tr td.entry-view-field-value table.gfield_list td{border-right:1px solid #DFDFDF!important;font-family:sans-serif!important}table.widefat tbody tr td.entry-view-field-value table.gfield_list thead tr th{background-image:none!important;border-right:1px solid #DFDFDF!important;padding:6px 10px;font-family:sans-serif!important}table.widefat tbody tr td.entry-view-field-value ul li{color:#555!important}table.widefat tbody tr td.entry-view-field-value table.gfield_list td,table.widefat tbody tr td.entry-view-field-value table.gfield_list th{border-bottom:1px solid #DFDFDF;padding:6px 10px}table.widefat tbody tr td.entry-view-field-value table.gfield_list th{color:#333;background-color:#F1F1F1;font-size:12px}table.widefat tbody tr td.entry-view-field-value table.gfield_list td{border-top:1px solid #FFF;font-size:12px;padding:4px 7px 3px 10px;vertical-align:top;color:#555;word-wrap:break-word}} \ No newline at end of file diff --git a/entry_list.php b/entry_list.php index 89f08bf..92125a8 100644 --- a/entry_list.php +++ b/entry_list.php @@ -2125,7 +2125,7 @@ public function modals() {

- +

diff --git a/export.php b/export.php index fffabd8..efa7fe6 100644 --- a/export.php +++ b/export.php @@ -33,7 +33,15 @@ public static function export_forms( $form_ids ) { $forms['version'] = GFForms::$version; $forms_json = json_encode( $forms ); - $filename = apply_filters( 'gform_form_export_filename', 'gravityforms-export-' . date( 'Y-m-d' ) ) . '.json'; + /** + * Allows the form export filename to be changed. + * + * @since 2.3.4 + * + * @param string $filename The new filename to use for the export file. + * @param array $form_ids Array containing the IDs of forms selected for export. + */ + $filename = apply_filters( 'gform_form_export_filename', 'gravityforms-export-' . date( 'Y-m-d' ), $form_ids ) . '.json'; $filename = sanitize_file_name( $filename ); header( 'Content-Description: File Transfer' ); header( "Content-Disposition: attachment; filename=$filename" ); diff --git a/form_display.php b/form_display.php index 795b14c..233f1e6 100644 --- a/form_display.php +++ b/form_display.php @@ -683,39 +683,48 @@ public static function is_last_page( $form, $mode = 'submit' ) { return $is_last_page; } + /** + * Returns the entry limit date range for the given period. + * + * @since unknown + * @since 2.4.15 Updated the day period to use the local time. + * + * @param string $period The eriod for the entry limit. + * + * @return array + */ private static function get_limit_period_dates( $period ) { if ( empty( $period ) ) { return array( 'start_date' => null, 'end_date' => null ); } switch ( $period ) { - case 'day' : + case 'day': return array( - 'start_date' => gmdate( 'Y-m-d' ), - 'end_date' => gmdate( 'Y-m-d 23:59:59' ) + 'start_date' => current_time( 'Y-m-d' ), + 'end_date' => current_time( 'Y-m-d 23:59:59' ), ); break; - case 'week' : + case 'week': return array( 'start_date' => gmdate( 'Y-m-d', strtotime( 'Monday this week' ) ), - 'end_date' => gmdate( 'Y-m-d 23:59:59', strtotime( 'next Sunday' ) ) + 'end_date' => gmdate( 'Y-m-d 23:59:59', strtotime( 'next Sunday' ) ), ); break; - case 'month' : - $month_start = gmdate( 'Y-m-1' ); - + case 'month': + $month_start = gmdate( 'Y-m-1'); return array( 'start_date' => $month_start, - 'end_date' => gmdate( 'Y-m-d H:i:s', strtotime( "{$month_start} +1 month -1 second" ) ) + 'end_date' => gmdate( 'Y-m-d H:i:s', strtotime( "{$month_start} +1 month -1 second" ) ), ); break; - case 'year' : + case 'year': return array( 'start_date' => gmdate( 'Y-1-1' ), - 'end_date' => gmdate( 'Y-12-31 23:59:59' ) + 'end_date' => gmdate( 'Y-12-31 23:59:59' ), ); break; } @@ -1468,28 +1477,11 @@ public static function handle_submission( $form, &$lead, $ajax = false ){ $lead = GFFormsModel::set_entry_meta( $lead, $form ); - //if Akismet plugin is installed, run lead through Akismet and mark it as Spam when appropriate - $is_spam = GFCommon::akismet_enabled( $form['id'] ) && GFCommon::is_akismet_spam( $form, $lead ); - - /** - * A filter to set if an entry is spam - * - * @param int $form['id'] The Form ID to filter through (take directly from the form object) - * @param bool $is_spam True or false to filter if the entry is spam - * @param array $form The Form object to filer through - * @param array $lead The Lead object to filter through - */ - $is_spam = gf_apply_filters( array( 'gform_entry_is_spam', $form['id'] ), $is_spam, $form, $lead ); - - if ( GFCommon::spam_enabled( $form['id'] ) ) { - GFCommon::log_debug( 'GFFormDisplay::handle_submission(): Akismet integration enabled OR gform_entry_is_spam hook in use.' ); - $log_is_spam = $is_spam ? 'Yes' : 'No'; - GFCommon::log_debug( "GFFormDisplay::handle_submission(): Is entry considered spam? {$log_is_spam}." ); - } + $is_spam = GFCommon::is_spam_entry( $lead, $form ); if ( $is_spam ) { - //marking entry as spam + // Marking entry as spam. GFFormsModel::update_entry_property( $lead['id'], 'status', 'spam', false, true ); $lead['status'] = 'spam'; @@ -2771,7 +2763,7 @@ private static function has_checkbox_field( $form, $select_all_enabled = false ) if ( is_array( $form['fields'] ) ) { foreach ( $form['fields'] as $field ) { - if ( $field->type == 'checkbox' && ( ! $select_all_enabled || ( $select_all_enabled && $field->enableSelectAll ) ) ) { + if ( $field->get_input_type() == 'checkbox' && ( ! $select_all_enabled || ( $select_all_enabled && $field->enableSelectAll ) ) ) { return true; } } diff --git a/forms_model.php b/forms_model.php index 0263fe6..e89cabb 100644 --- a/forms_model.php +++ b/forms_model.php @@ -4844,7 +4844,7 @@ private static function copy_post_image( $url, $post_id ) { } } - $name = basename( $url ); + $name = wp_basename( $url ); $filename = wp_unique_filename( $upload_dir['path'], $name ); // the destination path @@ -4888,7 +4888,7 @@ public static function media_handle_upload( $url, $post_id, $post_data = array() require_once( ABSPATH . 'wp-admin/includes/image.php' ); require_once( ABSPATH . 'wp-admin/includes/media.php' ); - $name = basename( $url ); + $name = wp_basename( $url ); $file = self::copy_post_image( $url, $post_id ); @@ -5228,6 +5228,17 @@ public static function queue_batch_field_operation( $form, &$entry, $field, $ent return true; } + /** + * Checks if any field updates, inserts, or deletions have been registered for batch processing. + * + * @since 2.4.17 + * + * @return bool + */ + public static function has_batch_field_operations() { + return ! empty( self::$_batch_field_updates ) || ! empty( self::$_batch_field_inserts ) || ! empty( self::$_batch_field_deletes ); + } + public static function flush_batch_field_operations() { self::$_batch_field_updates = array(); self::$_batch_field_inserts = array(); @@ -5428,13 +5439,12 @@ public static function get_file_upload_path( $form_id, $file_name ) { //Add the original filename to our target path. //Result is "uploads/filename.extension" - $file_info = pathinfo( $file_name ); - $extension = rgar( $file_info, 'extension' ); + $extension = pathinfo( $file_name, PATHINFO_EXTENSION ); if ( ! empty( $extension ) ) { $extension = '.' . $extension; } - $file_name = basename( $file_info['basename'], $extension ); + $file_name = wp_basename( $file_name, $extension ); $file_name = sanitize_file_name( $file_name ); $counter = 1; @@ -7399,15 +7409,15 @@ public static function set_uploaded_files( $form_id ) { if ( isset( $upload_field[0] ) && is_array( $upload_field[0] ) ) { foreach ( $upload_field as &$upload ) { if ( isset( $upload['temp_filename'] ) ) { - $upload['temp_filename'] = sanitize_file_name( basename( $upload['temp_filename'] ) ); + $upload['temp_filename'] = sanitize_file_name( wp_basename( $upload['temp_filename'] ) ); } if ( isset( $upload['uploaded_filename'] ) ) { - $upload['uploaded_filename'] = sanitize_file_name( basename( $upload['uploaded_filename'] ) ); + $upload['uploaded_filename'] = sanitize_file_name( wp_basename( $upload['uploaded_filename'] ) ); } } } } else { - $upload_field = basename( $upload_field ); + $upload_field = wp_basename( $upload_field ); } } diff --git a/gravityforms.php b/gravityforms.php index ef04b96..f08e079 100644 --- a/gravityforms.php +++ b/gravityforms.php @@ -3,7 +3,7 @@ Plugin Name: Gravity Forms Plugin URI: https://www.gravityforms.com Description: Easily create web forms and manage form entries within the WordPress admin. -Version: 2.4.16 +Version: 2.4.17 Author: rocketgenius Author URI: https://www.rocketgenius.com License: GPL-2.0+ @@ -11,7 +11,7 @@ Domain Path: /languages ------------------------------------------------------------------------ -Copyright 2009-2019 Rocketgenius, Inc. +Copyright 2009-2020 Rocketgenius, Inc. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -215,7 +215,7 @@ class GFForms { * * @var string $version The version number. */ - public static $version = '2.4.16'; + public static $version = '2.4.17'; /** * Handles background upgrade tasks. @@ -5267,8 +5267,6 @@ public static function cron() { self::do_self_healing(); - self::delete_orphaned_entries(); - if ( ! get_option( 'gform_enable_logging' ) ) { gf_logging()->delete_log_files(); } @@ -5346,22 +5344,25 @@ public static function delete_old_log_files() { /** * Deletes all rows in the lead table that don't have corresponding rows in the details table. * + * @deprecated * @since 2.0.0 * @access public * @global $wpdb */ public static function delete_orphaned_entries() { + _deprecated_function( __METHOD__, '2.4.17' ); + global $wpdb; - if ( version_compare( GFFormsModel::get_database_version(), '2.3-beta-1', '<' ) ) { + if ( version_compare( GFFormsModel::get_database_version(), '2.3-beta-1', '<' ) || GFFormsModel::has_batch_field_operations() ) { return; } GFCommon::log_debug( __METHOD__ . '(): Starting to delete orphaned entries' ); - $entry_table = GFFormsModel::get_entry_table_name(); + $entry_table = GFFormsModel::get_entry_table_name(); $entry_meta_table = GFFormsModel::get_entry_meta_table_name(); - $sql = "DELETE FROM {$entry_table} WHERE id NOT IN( SELECT entry_id FROM {$entry_meta_table} )"; - $result = $wpdb->query( $sql ); + $sql = "DELETE FROM {$entry_table} WHERE id NOT IN( SELECT entry_id FROM {$entry_meta_table} )"; + $result = $wpdb->query( $sql ); GFCommon::log_debug( __METHOD__ . '(): Delete result: ' . print_r( $result, true ) ); } diff --git a/help.php b/help.php index a9c45d9..1356bef 100644 --- a/help.php +++ b/help.php @@ -36,7 +36,7 @@ public static function help_page() {
', '', '', '' ) ?>
-

', '', '', '', '', '', '', '' ); ?>

+

', '', '', '', '', '', '', '', '', '' ); ?>

@@ -46,12 +46,12 @@ public static function help_page() {
'),_.mergeTagListHover=!1,_.bindKeyDown(),_.initAutocomplete(),_.addMergeTagIcon(),_.mergeTagIcon.find("a.open-list").on("click.gravityforms",function(){var e=jQuery(this),t=_.getTargetElement(e);_.mergeTagList.html(""),_.mergeTagList.append(_.getMergeTagListItems(t)),_.mergeTagList.insertAfter(e).show()}),_.mergeTagList.hover(function(){_.mergeTagListHover=!0},function(){_.mergeTagListHover=!1}),jQuery("body").mouseup(function(){_.mergeTagListHover||_.mergeTagList.hide()}),_.elem.data("mergeTags",_))},_.destroy=function(e){(e=_.elem?_.elem:e).next(".all-merge-tags").remove(),e.off("keydown.gravityforms"),e.autocomplete("destroy"),e.data("mergeTags",null)},_.bindKeyDown=function(){_.elem.on("keydown.gravityforms",function(e){var t=!(!_.elem.data("autocomplete")||!_.elem.data("autocomplete").menu)&&_.elem.data("autocomplete").menu.active;e.keyCode===jQuery.ui.keyCode.TAB&&t&&e.preventDefault()})},_.initAutocomplete=function(){_.elem.autocomplete({minLength:1,focus:function(){return!1},source:function(e,t){var i=_.extractLast(e.term);i.length<_.elem.autocomplete("option","minLength")?t([]):t(jQuery.map(_.getAutoCompleteMergeTags(_.elem),function(e){return _.startsWith(e,i)?e:null}))},select:function(e,t){var i=this.value.split(" ");return i.pop(),i.push(t.item.value),this.value=i.join(" "),_.elem.trigger("input").trigger("propertychange"),!1}})},_.addMergeTagIcon=function(){var e=_.elem.is("input")?"input":"textarea",t=_.getClassProperty(_.elem,"position");if(_.mergeTagIcon=jQuery(''),_.mergeTagIcon.data("targetElement",_.elem.attr("id")),_.getClassProperty(_.elem,"manual_position")){var i=".mt-"+_.elem.attr("id");jQuery(i).append(_.mergeTagIcon)}else _.elem.after(_.mergeTagIcon);_.mergeTagIcon.find(".tooltip-merge-tag").tooltip({show:{delay:1250},content:function(){return jQuery(this).prop("title")}})},_.bindMergeTagListClick=function(e){_.mergeTagList.hide();var t=jQuery(e.target).data("value"),i=_.getTargetElement(e.target);_.isWpEditor(i)?InsertEditorVariable(i.attr("id"),t):InsertVariable(i.attr("id"),null,t),i.trigger("input").trigger("propertychange"),_.mergeTagList.hide()},this.getMergeTags=function(e,t,i,r,n,o){void 0===e&&(e=[]),void 0===r&&(r=[]);var a=[],l=[],s=[],u=[],c=[],g=[],d=[],f=[],p=[];if(i||u.push({tag:"{all_fields}",label:this.getMergeTagLabel("{all_fields}")}),!n){for(T in e)if(e.hasOwnProperty(T)){var _=e[T];if(!_.displayOnly){var y=GetInputType(_);if(-1==jQuery.inArray(y,r)){if(_.isRequired)switch(y){case"name":var m,v,h,j,Q=Copy(_);"extended"==_.nameFormat?(m=GetInput(_,_.id+".2"),h=GetInput(_,_.id+".8"),(j=Copy(_)).inputs=[m,h],l.push(j),delete Q.inputs[0],delete Q.inputs[3]):"advanced"==_.nameFormat&&(m=GetInput(_,_.id+".2"),v=GetInput(_,_.id+".4"),h=GetInput(_,_.id+".8"),(j=Copy(_)).inputs=[m,v,h],l.push(j),delete Q.inputs[0],delete Q.inputs[2],delete Q.inputs[4]),a.push(Q);break;default:a.push(_)}else l.push(_);IsPricingField(_.type)&&s.push(_)}}}if(0'+g+"")),d)if(d.hasOwnProperty(i)){var f=d[i],p=jQuery(''+escapeHtml(f.label)+"");p.on("click.gravityforms",_.bindMergeTagListClick),c.push(jQuery("
  • ").html(p))}}return c},this.hasMultipleGroups=function(e){var t=0;for(group in e)e.hasOwnProperty(group)&&0?@[\\\]^`{|}~]/g,"\\$&"))},_.isWpEditor=function(e){e=jQuery(e);return 1==this.getClassProperty(e,"wp_editor")},_.split=function(e){return e.split(" ")},_.extractLast=function(e){return this.split(e).pop()},_.startsWith=function(e,t){return 0===e.indexOf(t)},_.elem&&_.init()},FeedConditionObj=function(e){this.strings=isSet(e.strings)?e.strings:{},this.logicObject=e.logicObject,this.init=function(){var e=this;gform.addFilter("gform_conditional_object","FeedConditionConditionalObject"),gform.addFilter("gform_conditional_logic_description","FeedConditionConditionalDescription"),jQuery(document).ready(function(){ToggleConditionalLogic(!0,"feed_condition")}),jQuery("input#feed_condition_conditional_logic").parents("form").on("submit",function(){jQuery("input#feed_condition_conditional_logic_object").val(JSON.stringify(e.logicObject))})},this.init()};function SimpleConditionObject(e,t){if(t.indexOf("simple_condition")<0)return e;var i=t.substring(17)+"_object";return window[i]}function FeedConditionConditionalObject(e,t){return"feed_condition"!=t?e:feedCondition.logicObject}function FeedConditionConditionalDescription(e,t,i,r){return"feed_condition"!=i?e:(t.actionType=t.actionType.replace("":">",'"':""","'":"'","/":"/","`":"`","=":"="};function escapeAttr(e){return String(e).replace(/["']/g,function(e){return entityMap[e]})}function escapeHtml(e){return String(e).replace(/[&<>"'`=\/]/g,function(e){return entityMap[e]})} \ No newline at end of file +function FormatCurrency(e){if(gf_vars.gf_currency_config){var t=new Currency(gf_vars.gf_currency_config).toMoney(jQuery(e).val());jQuery(e).val(t)}}function ToggleConditionalLogic(e,t){var i=e?"":"slow";jQuery("#"+t+"_conditional_logic").is(":checked")?(CreateConditionalLogic(t,GetConditionalObject(t)),SetConditionalProperty(t,"actionType",jQuery("#"+t+"_action_type").val()),SetConditionalProperty(t,"logicType",jQuery("#"+t+"_logic_type").val()),SetRule(t,0),jQuery("#"+t+"_conditional_logic_container").show(i)):jQuery("#"+t+"_conditional_logic_container").hide(i)}function GetConditionalObject(e){var t=!1;switch(e){case"page":case"field":t=GetSelectedField();break;case"next_button":t=GetSelectedField().nextButton;break;case"confirmation":t=confirmation;break;case"notification":t=current_notification;break;default:t="undefined"!=typeof form&&form.button}return t=gform.applyFilters("gform_conditional_object",t,e)}function CreateConditionalLogic(e,t){t.conditionalLogic||(t.conditionalLogic=new ConditionalLogic);var i,r="hide"==t.conditionalLogic.actionType?"selected='selected'":"",n="show"==t.conditionalLogic.actionType?"selected='selected'":"",o="all"==t.conditionalLogic.logicType?"selected='selected'":"",a="any"==t.conditionalLogic.logicType?"selected='selected'":"";i="section"==t.type?gf_vars.thisSectionIf:"field"==e?gf_vars.thisFieldIf:"page"==e?gf_vars.thisPage:"confirmation"==e?gf_vars.thisConfirmation:"notification"==e?gf_vars.thisNotification:gf_vars.thisFormButton;var l={};l.actionType="",l.objectDescription=i,l.logicType="",l.ofTheFollowingMatch=gf_vars.ofTheFollowingMatch;var s,u,c=makeArray(l).join(" ");for(c=gform.applyFilters("gform_conditional_logic_description",c,l,e,t),s=0;s",c+=GetRuleFields(e,s,(u=t.conditionalLogic.rules[s]).fieldId),c+=GetRuleOperators(e,s,u.fieldId,u.operator),c+=GetRuleValues(e,s,u.fieldId,u.value),c+="",1"),c+="
    ";jQuery("#"+e+"_conditional_logic_container").html(c),Placeholders.enable()}function GetRuleOperators(e,t,i,r){var n,o,a;return o={is:"is",isnot:"isNot",">":"greaterThan","<":"lessThan",contains:"contains",starts_with:"startsWith",ends_with:"endsWith"},n=""}function GetOperatorsForMeta(e,i){var r={};return entry_meta[i]&&entry_meta[i].filter&&entry_meta[i].filter.operators?jQuery.each(e,function(e,t){0<=jQuery.inArray(e,entry_meta[i].filter.operators)&&(r[e]=t)}):r=e,r}function GetRuleFields(e,t,i){for(var r=""}else{var d=0==n?"gfield_ajax_placeholder_"+i:n+"_placeholder";jQuery.post(ajaxurl,{action:"gf_get_post_categories",objectType:t,ruleIndex:i,inputName:n,selectedValue:r},function(e){e&&(jQuery("#"+d).replaceWith(e.trim()),SetRuleProperty(t,i,"value",jQuery("#"+o).val()))}),u=""}}else if(a&&a.choices&&-1"):l&&entry_meta&&entry_meta[e]&&entry_meta[e].filter&&void 0!==entry_meta[e].filter.choices?GetRuleValuesDropDown(entry_meta[e].filter.choices,t,i,r,n):(r=r?r.replace(/'/g,"'"):"","');return u=gform.applyFilters("gform_conditional_logic_values_input",u,t,i,e,r)}function IsAddressSelect(e,t){if(!t||"address"!=GetInputType(t))return!1;var i=t.addressType?t.addressType:gf_vars.defaultAddressType;if(!gf_vars.addressTypes[i])return!1;var r=gf_vars.addressTypes[i],n=e==t.id+".6",o=e==t.id+".4";return n&&"international"==i||o&&"object"==typeof r.states}function GetFirstRuleField(){for(var e=0;e",l=!1,s=0;s"+e[s].text+"").text())?u:e[s].text;a+=""}return!l&&r&&""!=r&&(a+=""),a+=""}function isEmpty(e){}function SetRuleProperty(e,t,i,r){GetConditionalObject(e).conditionalLogic.rules[t][i]=r}function GetFieldById(e){e=parseInt(e);for(var t=0;t',this.init=function(){return this.spinner=jQuery(this.image),jQuery(this.elem).after(this.spinner),this},this.destroy=function(){jQuery(this.spinner).remove()},this.init()}function InsertVariable(e,t,i){i||(i=jQuery("#"+e+"_variable_select").val());var r=document.getElementById(e),n=jQuery(r);if(document.selection)n[0].focus(),document.selection.createRange().text=i;else if("selectionStart"in r){var o=r.selectionStart;r.value=r.value.substr(0,o)+i+r.value.substr(r.selectionEnd,r.value.length),r.selectionStart=o+r.value.length,r.selectionEnd=o+r.value.length}else n.val(i+messageElement.val());var a=jQuery("#"+e+"_variable_select");0'),_.mergeTagListHover=!1,_.bindKeyDown(),_.initAutocomplete(),_.addMergeTagIcon(),_.mergeTagIcon.find("a.open-list").on("click.gravityforms",function(){var e=jQuery(this),t=_.getTargetElement(e);_.mergeTagList.html(""),_.mergeTagList.append(_.getMergeTagListItems(t)),_.mergeTagList.insertAfter(e).show()}),_.mergeTagList.hover(function(){_.mergeTagListHover=!0},function(){_.mergeTagListHover=!1}),jQuery("body").mouseup(function(){_.mergeTagListHover||_.mergeTagList.hide()}),_.elem.data("mergeTags",_))},_.destroy=function(e){(e=_.elem?_.elem:e).next(".all-merge-tags").remove(),e.off("keydown.gravityforms"),e.autocomplete("destroy"),e.data("mergeTags",null)},_.bindKeyDown=function(){_.elem.on("keydown.gravityforms",function(e){var t=!(!_.elem.data("autocomplete")||!_.elem.data("autocomplete").menu)&&_.elem.data("autocomplete").menu.active;e.keyCode===jQuery.ui.keyCode.TAB&&t&&e.preventDefault()})},_.initAutocomplete=function(){_.elem.autocomplete({minLength:1,focus:function(){return!1},source:function(e,t){var i=_.extractLast(e.term);i.length<_.elem.autocomplete("option","minLength")?t([]):t(jQuery.map(_.getAutoCompleteMergeTags(_.elem),function(e){return _.startsWith(e,i)?e:null}))},select:function(e,t){var i=this.value.split(" ");return i.pop(),i.push(t.item.value),this.value=i.join(" "),_.elem.trigger("input").trigger("propertychange"),!1}})},_.addMergeTagIcon=function(){var e=_.elem.is("input")?"input":"textarea",t=_.getClassProperty(_.elem,"position");if(_.mergeTagIcon=jQuery(''),_.mergeTagIcon.data("targetElement",_.elem.attr("id")),_.getClassProperty(_.elem,"manual_position")){var i=".mt-"+_.elem.attr("id");jQuery(i).append(_.mergeTagIcon)}else _.elem.after(_.mergeTagIcon);_.mergeTagIcon.find(".tooltip-merge-tag").tooltip({show:{delay:1250},content:function(){return jQuery(this).prop("title")}})},_.bindMergeTagListClick=function(e){_.mergeTagList.hide();var t=jQuery(e.target).data("value"),i=_.getTargetElement(e.target);_.isWpEditor(i)?InsertEditorVariable(i.attr("id"),t):InsertVariable(i.attr("id"),null,t),i.trigger("input").trigger("propertychange"),_.mergeTagList.hide()},this.getMergeTags=function(e,t,i,r,n,o){void 0===e&&(e=[]),void 0===r&&(r=[]);var a=[],l=[],s=[],u=[],c=[],g=[],d=[],f=[],p=[];if(i||u.push({tag:"{all_fields}",label:this.getMergeTagLabel("{all_fields}")}),!n){for(T in e)if(e.hasOwnProperty(T)){var _=e[T];if(!_.displayOnly){var y=GetInputType(_);if(-1==jQuery.inArray(y,r)){if(_.isRequired)switch(y){case"name":var m,v,h,j,Q=Copy(_);"extended"==_.nameFormat?(m=GetInput(_,_.id+".2"),h=GetInput(_,_.id+".8"),(j=Copy(_)).inputs=[m,h],l.push(j),delete Q.inputs[0],delete Q.inputs[3]):"advanced"==_.nameFormat&&(m=GetInput(_,_.id+".2"),v=GetInput(_,_.id+".4"),h=GetInput(_,_.id+".8"),(j=Copy(_)).inputs=[m,v,h],l.push(j),delete Q.inputs[0],delete Q.inputs[2],delete Q.inputs[4]),a.push(Q);break;default:a.push(_)}else l.push(_);IsPricingField(_.type)&&s.push(_)}}}if(0'+g+"")),d)if(d.hasOwnProperty(i)){var f=d[i],p=jQuery(''+escapeHtml(f.label)+"");p.on("click.gravityforms",_.bindMergeTagListClick),c.push(jQuery("
  • ").html(p))}}return c},this.hasMultipleGroups=function(e){var t=0;for(group in e)e.hasOwnProperty(group)&&0?@[\\\]^`{|}~]/g,"\\$&"))},_.isWpEditor=function(e){e=jQuery(e);return 1==this.getClassProperty(e,"wp_editor")},_.split=function(e){return e.split(" ")},_.extractLast=function(e){return this.split(e).pop()},_.startsWith=function(e,t){return 0===e.indexOf(t)},_.elem&&_.init()},FeedConditionObj=function(e){this.strings=isSet(e.strings)?e.strings:{},this.logicObject=e.logicObject,this.init=function(){var e=this;gform.addFilter("gform_conditional_object","FeedConditionConditionalObject"),gform.addFilter("gform_conditional_logic_description","FeedConditionConditionalDescription"),jQuery(document).ready(function(){ToggleConditionalLogic(!0,"feed_condition")}),jQuery("input#feed_condition_conditional_logic").parents("form").on("submit",function(){jQuery("input#feed_condition_conditional_logic_object").val(JSON.stringify(e.logicObject))})},this.init()};function SimpleConditionObject(e,t){if(t.indexOf("simple_condition")<0)return e;var i=t.substring(17)+"_object";return window[i]}function FeedConditionConditionalObject(e,t){return"feed_condition"!=t?e:feedCondition.logicObject}function FeedConditionConditionalDescription(e,t,i,r){return"feed_condition"!=i?e:(t.actionType=t.actionType.replace("":">",'"':""","'":"'","/":"/","`":"`","=":"="};function escapeAttr(e){return String(e).replace(/["']/g,function(e){return entityMap[e]})}function escapeHtml(e){return String(e).replace(/[&<>"'`=\/]/g,function(e){return entityMap[e]})} \ No newline at end of file diff --git a/js/gravityforms.js b/js/gravityforms.js index 7477784..5cfc7e5 100644 --- a/js/gravityforms.js +++ b/js/gravityforms.js @@ -769,8 +769,10 @@ function gformToggleShowPassword( fieldId ) { function gformToggleCheckboxes( toggleCheckbox ) { var $toggle = jQuery( toggleCheckbox ).parent(), - $toggleLabel = $toggle.find( 'label' ); - $checkboxes = $toggle.parent().find( 'li:not( .gchoice_select_all )' ); + $toggleLabel = $toggle.find( 'label' ), + $checkboxes = $toggle.parent().find( 'li:not( .gchoice_select_all )' ), + formId = gf_get_form_id_by_html_id( $toggle.parents( '.gfield' ).attr( 'id' ) ), + calcObj = rgars( window, 'gf_global/gfcalc/' + formId ); // Set checkboxes state. $checkboxes.each( function() { @@ -792,6 +794,10 @@ function gformToggleCheckboxes( toggleCheckbox ) { $toggleLabel.html( $toggleLabel.data( 'label-select' ) ); } + if ( calcObj ) { + calcObj.runCalcs( formId, calcObj.formulaFields ); + } + } diff --git a/js/gravityforms.min.js b/js/gravityforms.min.js index 9eb2f1e..bf2f8e3 100644 --- a/js/gravityforms.min.js +++ b/js/gravityforms.min.js @@ -1 +1 @@ -function gformBindFormatPricingFields(){jQuery(".ginput_amount, .ginput_donation_amount").off("change.gform").on("change.gform",function(){gformFormatPricingField(this)}),jQuery(".ginput_amount, .ginput_donation_amount").each(function(){gformFormatPricingField(this)})}function Currency(e){this.currency=e,this.toNumber=function(e){return this.isNumeric(e)?parseFloat(e):gformCleanNumber(e,this.currency.symbol_right,this.currency.symbol_left,this.currency.decimal_separator)},this.toMoney=function(e,r){if((r=r||!1)||(e=gformCleanNumber(e,this.currency.symbol_right,this.currency.symbol_left,this.currency.decimal_separator)),!1===e)return"";e+="",negative="","-"==e[0]&&(e=parseFloat(e.substr(1)),negative="-"),money=this.numberFormat(e,this.currency.decimals,this.currency.decimal_separator,this.currency.thousand_separator),"0.00"==money&&(negative="");var t=this.currency.symbol_left?this.currency.symbol_left+this.currency.symbol_padding:"",i=this.currency.symbol_right?this.currency.symbol_padding+this.currency.symbol_right:"";return money=negative+this.htmlDecode(t)+money+this.htmlDecode(i),money},this.numberFormat=function(e,r,t,i,n){n=void 0===n;e=(e+"").replace(",","").replace(" ","");var o,a,l,f=isFinite(+e)?+e:0,s=isFinite(+r)?Math.abs(r):0,d=void 0===i?",":i,c=void 0===t?".":t,u="";return 3<(u="0"==r?(f+=1e-10,(""+Math.round(f)).split(".")):-1==r?(""+f).split("."):(o=f+=1e-10,a=s,l=Math.pow(10,a),""+Math.round(o*l)/l).split("."))[0].length&&(u[0]=u[0].replace(/\B(?=(?:\d{3})+(?!\d))/g,d)),n&&(u[1]||"").length/i,"").replace(a,""),f=gformGetPriceDifference(t,o);f=0==gformToNumber(f)?"":" "+f,e.attr("price",f);var s="option"==e[0].tagName.toLowerCase()?" "+f:""+f+"",d=l+s;return window.gform_format_option_label&&(d=gform_format_option_label(d,l,s,t,o,i,n)),d}function gformGetProductIds(e,r){for(var t=jQuery(r).hasClass(e)?jQuery(r).attr("class").split(" "):jQuery(r).parents("."+e).attr("class").split(" "),i=0;ir?t.text(i.name+" - "+gform_gravityforms.strings.file_exceeds_limit):t.text("")}}function gformInitSpinner(e,r){jQuery("#gform_"+e).submit(function(){gformAddSpinner(e,r)})}function gformAddSpinner(e,r){(void 0!==r&&r||(r=gform.applyFilters("gform_spinner_url",gf_global.spinnerUrl,e)),0==jQuery("#gform_ajax_spinner_"+e).length)&&gform.applyFilters("gform_spinner_target_elem",jQuery("#gform_submit_button_"+e+", #gform_wrapper_"+e+" .gform_next_button, #gform_send_resume_link_button_"+e),e).after('')}function gf_raw_input_change(e,r){clearTimeout(__gf_keyup_timeout);var t=jQuery(r),i=t.attr("id"),n=gf_get_input_id_by_html_id(i),o=gf_get_form_id_by_html_id(i),a=gform.applyFilters("gform_field_meta_raw_input_change",{fieldId:n,formId:o},t,e);if(n=a.fieldId,o=a.formId,n){var l=t.is(":checkbox")||t.is(":radio")||t.is("select"),f=!l||t.is("textarea");("keyup"!=e.type||f)&&("change"!=e.type||l||f)&&("keyup"==e.type?__gf_keyup_timeout=setTimeout(function(){gf_input_change(r,o,n)},300):gf_input_change(r,o,n))}}function gf_get_input_id_by_html_id(e){var r=gf_get_ids_by_html_id(e),t=r[r.length-1];return 3==r.length&&(r.shift(),t=r.join(".")),t}function gf_get_form_id_by_html_id(e){return gf_get_ids_by_html_id(e)[0]}function gf_get_ids_by_html_id(e){for(var r=e?e.split("_"):[],t=r.length-1;0<=t;t--)gformIsNumber(r[t])||r.splice(t,1);return r}function gf_input_change(e,r,t){gform.doAction("gform_input_change",e,r,t)}function gformExtractFieldId(e){var r=parseInt(e.toString().split(".")[0],10);return r||e}function gformExtractInputIndex(e){var r=parseInt(e.toString().split(".")[1],10);return r||!1}if(function(c,b){c.uploaders={};var j="undefined"!=typeof gform_gravityforms?gform_gravityforms.strings:{},F="undefined"!=typeof gform_gravityforms?gform_gravityforms.vars.images_url:"";function i(e){var m,i,r=b(e).data("settings"),t=new plupload.Uploader(r);function p(e,r){b("#"+e).prepend("
  • "+w(r)+"
  • ")}function h(){var e;return e=void 0===(e=b("#gform_uploaded_files_"+m).val())||""===e?{}:b.parseJSON(e)}function y(e){var r=h(),t=v(e);return void 0===r[t]&&(r[t]=[]),r[t]}function d(e){return y(e).length}function v(e){return"input_"+e}function n(e){e.preventDefault()}m=t.settings.multipart_params.form_id,(c.uploaders[r.container]=t).bind("Init",function(e,r){e.features.dragdrop||b(".gform_drop_instructions").hide();var t=e.settings.multipart_params.field_id,i=parseInt(e.settings.gf_vars.max_files,10),n=d(t);0",g=e.settings.multipart_params.form_id,_=e.settings.multipart_params.field_id;u=""+j.delete_file+" "+u,u=gform.applyFilters("gform_file_upload_markup",u,r,e,j,F),b("#"+r.id).html(u),100==r.percent&&(i.status&&"ok"==i.status?(n=_,o=i.data,(a=y(n)).unshift(o),l=n,f=a,s=h(),d=b("#gform_uploaded_files_"+m),c=v(l),s[c]=f,d.val(b.toJSON(s))):p(e.settings.gf_vars.message_id,j.unknown_error+": "+r.name))}}),b("#"+r.drop_element).on({dragenter:n,dragover:n})}function w(e){return b("
    ").text(e).html()}b(document).bind("gform_post_render",function(e,r){b("form#gform_"+r+" .gform_fileupload_multifile").each(function(){i(this)});var t=b("form#gform_"+r);0/i,"").replace(a,""),f=gformGetPriceDifference(t,o);f=0==gformToNumber(f)?"":" "+f,e.attr("price",f);var s="option"==e[0].tagName.toLowerCase()?" "+f:""+f+"",d=l+s;return window.gform_format_option_label&&(d=gform_format_option_label(d,l,s,t,o,i,n)),d}function gformGetProductIds(e,r){for(var t=jQuery(r).hasClass(e)?jQuery(r).attr("class").split(" "):jQuery(r).parents("."+e).attr("class").split(" "),i=0;ir?t.text(i.name+" - "+gform_gravityforms.strings.file_exceeds_limit):t.text("")}}function gformInitSpinner(e,r){jQuery("#gform_"+e).submit(function(){gformAddSpinner(e,r)})}function gformAddSpinner(e,r){(void 0!==r&&r||(r=gform.applyFilters("gform_spinner_url",gf_global.spinnerUrl,e)),0==jQuery("#gform_ajax_spinner_"+e).length)&&gform.applyFilters("gform_spinner_target_elem",jQuery("#gform_submit_button_"+e+", #gform_wrapper_"+e+" .gform_next_button, #gform_send_resume_link_button_"+e),e).after('')}function gf_raw_input_change(e,r){clearTimeout(__gf_keyup_timeout);var t=jQuery(r),i=t.attr("id"),n=gf_get_input_id_by_html_id(i),o=gf_get_form_id_by_html_id(i),a=gform.applyFilters("gform_field_meta_raw_input_change",{fieldId:n,formId:o},t,e);if(n=a.fieldId,o=a.formId,n){var l=t.is(":checkbox")||t.is(":radio")||t.is("select"),f=!l||t.is("textarea");("keyup"!=e.type||f)&&("change"!=e.type||l||f)&&("keyup"==e.type?__gf_keyup_timeout=setTimeout(function(){gf_input_change(r,o,n)},300):gf_input_change(r,o,n))}}function gf_get_input_id_by_html_id(e){var r=gf_get_ids_by_html_id(e),t=r[r.length-1];return 3==r.length&&(r.shift(),t=r.join(".")),t}function gf_get_form_id_by_html_id(e){return gf_get_ids_by_html_id(e)[0]}function gf_get_ids_by_html_id(e){for(var r=e?e.split("_"):[],t=r.length-1;0<=t;t--)gformIsNumber(r[t])||r.splice(t,1);return r}function gf_input_change(e,r,t){gform.doAction("gform_input_change",e,r,t)}function gformExtractFieldId(e){var r=parseInt(e.toString().split(".")[0],10);return r||e}function gformExtractInputIndex(e){var r=parseInt(e.toString().split(".")[1],10);return r||!1}if(function(c,b){c.uploaders={};var F="undefined"!=typeof gform_gravityforms?gform_gravityforms.strings:{},j="undefined"!=typeof gform_gravityforms?gform_gravityforms.vars.images_url:"";function i(e){var m,i,r=b(e).data("settings"),t=new plupload.Uploader(r);function p(e,r){b("#"+e).prepend("
  • "+w(r)+"
  • ")}function h(){var e;return e=void 0===(e=b("#gform_uploaded_files_"+m).val())||""===e?{}:b.parseJSON(e)}function y(e){var r=h(),t=v(e);return void 0===r[t]&&(r[t]=[]),r[t]}function d(e){return y(e).length}function v(e){return"input_"+e}function n(e){e.preventDefault()}m=t.settings.multipart_params.form_id,(c.uploaders[r.container]=t).bind("Init",function(e,r){e.features.dragdrop||b(".gform_drop_instructions").hide();var t=e.settings.multipart_params.field_id,i=parseInt(e.settings.gf_vars.max_files,10),n=d(t);0",g=e.settings.multipart_params.form_id,_=e.settings.multipart_params.field_id;u=""+F.delete_file+" "+u,u=gform.applyFilters("gform_file_upload_markup",u,r,e,F,j),b("#"+r.id).html(u),100==r.percent&&(i.status&&"ok"==i.status?(n=_,o=i.data,(a=y(n)).unshift(o),l=n,f=a,s=h(),d=b("#gform_uploaded_files_"+m),c=v(l),s[c]=f,d.val(b.toJSON(s))):p(e.settings.gf_vars.message_id,F.unknown_error+": "+r.name))}}),b("#"+r.drop_element).on({dragenter:n,dragover:n})}function w(e){return b("
    ").text(e).html()}b(document).bind("gform_post_render",function(e,r){b("form#gform_"+r+" .gform_fileupload_multifile").each(function(){i(this)});var t=b("form#gform_"+r);0=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"},"Form Title":["\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0646\u0645\u0648\u0630\u062c"],"Form Description":["\u0648\u0635\u0641 \u0627\u0644\u0646\u0645\u0648\u0630\u062c"],"Form":["\u0646\u0645\u0648\u0630\u062c"],"Select a Form":["\u0627\u062e\u062a\u0627\u0631 \u0646\u0645\u0648\u0630\u062c"],"Form Settings":["\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0646\u0645\u0648\u0630\u062c"],"Preview":["\u0645\u0634\u0627\u0647\u062f\u0629"],"Advanced":["\u0627\u0644\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0645\u062a\u0642\u062f\u0645\u0629"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-05-21 08:46+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ar","plural-forms":"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"},"Form Title":["\u0639\u0646\u0648\u0627\u0646 \u0627\u0644\u0646\u0645\u0648\u0630\u062c"],"Form Description":["\u0648\u0635\u0641 \u0627\u0644\u0646\u0645\u0648\u0630\u062c"],"Form":["\u0646\u0645\u0648\u0630\u062c"],"Select a Form":["\u0627\u062e\u062a\u0627\u0631 \u0646\u0645\u0648\u0630\u062c"],"Form Settings":["\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0646\u0645\u0648\u0630\u062c"],"Preview":["\u0645\u0634\u0627\u0647\u062f\u0629"],"Advanced":["\u0627\u0644\u062e\u0635\u0627\u0626\u0635 \u0627\u0644\u0645\u062a\u0642\u062f\u0645\u0629"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-ar.mo b/languages/gravityforms-ar.mo index 334653d..a08fa4b 100644 Binary files a/languages/gravityforms-ar.mo and b/languages/gravityforms-ar.mo differ diff --git a/languages/gravityforms-ca-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-ca-4431109f2b52f456221198b68f96424a.json index 9a11d14..2aec412 100644 --- a/languages/gravityforms-ca-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-ca-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-02-22 08:25+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ca","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["T\u00edtol del formulari"],"Form Description":["Descripci\u00f3 del formulari"],"Form":["Formulari"],"Select a Form":["Selecciona un formulari"],"Form Settings":["Configuraci\u00f3 del formulari"],"Preview":["Visualitzaci\u00f3 pr\u00e8via"],"Advanced":["Avan\u00e7at"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2019-02-22 08:25+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ca","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["T\u00edtol del formulari"],"Form Description":["Descripci\u00f3 del formulari"],"Form":["Formulari"],"Select a Form":["Selecciona un formulari"],"Form Settings":["Configuraci\u00f3 del formulari"],"Preview":["Visualitzaci\u00f3 pr\u00e8via"],"Advanced":["Avan\u00e7at"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-ca.mo b/languages/gravityforms-ca.mo index cbd19dd..acf5058 100644 Binary files a/languages/gravityforms-ca.mo and b/languages/gravityforms-ca.mo differ diff --git a/languages/gravityforms-da_DK-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-da_DK-4431109f2b52f456221198b68f96424a.json index e76df70..3907dd6 100644 --- a/languages/gravityforms-da_DK-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-da_DK-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-05-26 02:33+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"da_DK","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Formulartitel"],"Form Description":["Formularbeskrivelse"],"Form":["Formular"],"Select a Form":["V\u00e6lg en formular"],"Form Settings":["Formularindstillinger"],"Preview":["Forh\u00e5ndsvis"],"Advanced":["Avanceret"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-05-26 02:33+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"da_DK","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Formulartitel"],"Form Description":["Formularbeskrivelse"],"Form":["Formular"],"Select a Form":["V\u00e6lg en formular"],"Form Settings":["Formularindstillinger"],"Preview":["Forh\u00e5ndsvis"],"Advanced":["Avanceret"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-da_DK.mo b/languages/gravityforms-da_DK.mo index 3b80b5c..ef0a9fb 100644 Binary files a/languages/gravityforms-da_DK.mo and b/languages/gravityforms-da_DK.mo differ diff --git a/languages/gravityforms-de_DE-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-de_DE-4431109f2b52f456221198b68f96424a.json index c0a9eda..95b9a75 100644 --- a/languages/gravityforms-de_DE-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-de_DE-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-10-30 07:33+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de_DE","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Formulartitel"],"Form Description":["Formularbeschreibung"],"Form":["Formular"],"Select a Form":["Ein Formular ausw\u00e4hlen"],"Form Settings":["Formulareinstellungen"],"Preview":["Vorschau"],"Advanced":["Erweitert"],"AJAX":["AJAX"],"Field Values":["Feld-Werte"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["Das ausgew\u00e4hlte Formular wurde gel\u00f6scht oder in den Papierkorb gelegt. Bitte ein neues Formular ausw\u00e4hlen."],"Select a form below to add it to your page.":["W\u00e4hle unten ein Formular aus, um es deiner Seite hinzuzuf\u00fcgen."]}}} \ No newline at end of file +{"translation-revision-date":"2019-10-30 07:33+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de_DE","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Formulartitel"],"Form Description":["Formularbeschreibung"],"Form":["Formular"],"Select a Form":["Ein Formular ausw\u00e4hlen"],"Form Settings":["Formulareinstellungen"],"Preview":["Vorschau"],"Advanced":["Erweitert"],"AJAX":["AJAX"],"Field Values":["Feld-Werte"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["Das ausgew\u00e4hlte Formular wurde gel\u00f6scht oder in den Papierkorb gelegt. Bitte ein neues Formular ausw\u00e4hlen."],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["W\u00e4hle unten ein Formular aus, um es deiner Seite hinzuzuf\u00fcgen."]}}} \ No newline at end of file diff --git a/languages/gravityforms-de_DE.mo b/languages/gravityforms-de_DE.mo index 7fc9614..d1c3f2c 100644 Binary files a/languages/gravityforms-de_DE.mo and b/languages/gravityforms-de_DE.mo differ diff --git a/languages/gravityforms-de_DE_formal-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-de_DE_formal-4431109f2b52f456221198b68f96424a.json index 352a468..0b31993 100644 --- a/languages/gravityforms-de_DE_formal-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-de_DE_formal-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-06-13 07:57+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Formulartitel"],"Form Description":["Formularbeschreibung"],"Form":["Formular"],"Select a Form":["Ein Formular ausw\u00e4hlen"],"Form Settings":["Form.-Einstlgn."],"Preview":["Vorschau"],"Advanced":["Erweitert"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-06-13 07:57+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Formulartitel"],"Form Description":["Formularbeschreibung"],"Form":["Formular"],"Select a Form":["Ein Formular ausw\u00e4hlen"],"Form Settings":["Form.-Einstlgn."],"Preview":["Vorschau"],"Advanced":["Erweitert"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-de_DE_formal.mo b/languages/gravityforms-de_DE_formal.mo index c3c412e..18204d5 100644 Binary files a/languages/gravityforms-de_DE_formal.mo and b/languages/gravityforms-de_DE_formal.mo differ diff --git a/languages/gravityforms-en_AU-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-en_AU-4431109f2b52f456221198b68f96424a.json index 443816a..9a766de 100644 --- a/languages/gravityforms-en_AU-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-en_AU-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-10-28 09:58+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en_AU","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Form Title"],"Form Description":["Form Description"],"Form":["Form"],"Select a Form":["Select a Form"],"Form Settings":["Form Settings"],"Preview":["Preview"],"Advanced":["Advanced"],"AJAX":["AJAX"],"Field Values":["Field Values"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["The selected form has been deleted or trashed. Please select a new form."],"Select a form below to add it to your page.":["Select a form below to add it to your page."]}}} \ No newline at end of file +{"translation-revision-date":"2019-10-28 09:58+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en_AU","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Form Title"],"Form Description":["Form Description"],"Form":["Form"],"Select a Form":["Select a Form"],"Form Settings":["Form Settings"],"Preview":["Preview"],"Advanced":["Advanced"],"AJAX":["AJAX"],"Field Values":["Field Values"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["The selected form has been deleted or trashed. Please select a new form."],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["Select a form below to add it to your page."]}}} \ No newline at end of file diff --git a/languages/gravityforms-en_AU.mo b/languages/gravityforms-en_AU.mo index be213d6..655b117 100644 Binary files a/languages/gravityforms-en_AU.mo and b/languages/gravityforms-en_AU.mo differ diff --git a/languages/gravityforms-en_GB-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-en_GB-4431109f2b52f456221198b68f96424a.json index 854aa6d..04bc45a 100644 --- a/languages/gravityforms-en_GB-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-en_GB-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-05-21 08:47+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en_GB","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Form Title"],"Form Description":["Form Description"],"Form":["Form"],"Select a Form":["Select a Form"],"Form Settings":["Form Settings"],"Preview":["Preview"],"Advanced":["Advanced"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-05-21 08:47+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en_GB","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Form Title"],"Form Description":["Form Description"],"Form":["Form"],"Select a Form":["Select a Form"],"Form Settings":["Form Settings"],"Preview":["Preview"],"Advanced":["Advanced"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-en_GB.mo b/languages/gravityforms-en_GB.mo index 83f0456..4994d9c 100644 Binary files a/languages/gravityforms-en_GB.mo and b/languages/gravityforms-en_GB.mo differ diff --git a/languages/gravityforms-es_ES-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-es_ES-4431109f2b52f456221198b68f96424a.json index d0e4641..57cc3be 100644 --- a/languages/gravityforms-es_ES-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-es_ES-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-10-30 07:34+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"es_ES","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["T\u00edtulo del formulario"],"Form Description":["Descripci\u00f3n del formulario"],"Form":["Formulario"],"Select a Form":["Selecciona un formulario"],"Form Settings":["Ajustes del formulario"],"Preview":["Previsualizar"],"Advanced":["Avanzado"],"AJAX":["AJAX"],"Field Values":["Valores de campo"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["El formulario seleccionado ha sido borrado o enviado a la papelera. Por favor, elige un nuevo formulario "],"Select a form below to add it to your page.":["Elige un formulario de abajo para a\u00f1adirlo a tu p\u00e1gina."]}}} \ No newline at end of file +{"translation-revision-date":"2019-10-30 07:34+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"es_ES","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["T\u00edtulo del formulario"],"Form Description":["Descripci\u00f3n del formulario"],"Form":["Formulario"],"Select a Form":["Selecciona un formulario"],"Form Settings":["Ajustes del formulario"],"Preview":["Previsualizar"],"Advanced":["Avanzado"],"AJAX":["AJAX"],"Field Values":["Valores de campo"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["El formulario seleccionado ha sido borrado o enviado a la papelera. Por favor, elige un nuevo formulario "],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["Elige un formulario de abajo para a\u00f1adirlo a tu p\u00e1gina."]}}} \ No newline at end of file diff --git a/languages/gravityforms-es_ES.mo b/languages/gravityforms-es_ES.mo index c296bec..c0147fa 100644 Binary files a/languages/gravityforms-es_ES.mo and b/languages/gravityforms-es_ES.mo differ diff --git a/languages/gravityforms-fi-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-fi-4431109f2b52f456221198b68f96424a.json index d092cd7..8b1338c 100644 --- a/languages/gravityforms-fi-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-fi-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-05-21 08:45+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fi","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Lomakkeen otsikko"],"Form Description":["Lomakkeen kuvaus"],"Form":["Lomake"],"Select a Form":["Valitse lomake"],"Form Settings":["Lomakeasetukset"],"Preview":["Esikatsele"],"Advanced":["Lis\u00e4asetukset"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-05-21 08:45+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fi","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Lomakkeen otsikko"],"Form Description":["Lomakkeen kuvaus"],"Form":["Lomake"],"Select a Form":["Valitse lomake"],"Form Settings":["Lomakeasetukset"],"Preview":["Esikatsele"],"Advanced":["Lis\u00e4asetukset"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-fi.mo b/languages/gravityforms-fi.mo index 7be5bc7..e4f25ed 100644 Binary files a/languages/gravityforms-fi.mo and b/languages/gravityforms-fi.mo differ diff --git a/languages/gravityforms-fr_CA-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-fr_CA-4431109f2b52f456221198b68f96424a.json index b2b7fc5..e0c97f0 100644 --- a/languages/gravityforms-fr_CA-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-fr_CA-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-05-21 08:44+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fr_CA","plural-forms":"nplurals=2; plural=(n > 1);"},"Form Title":["Titre du formulaire"],"Form Description":["Description du formulaire"],"Form":["Formulaire"],"Select a Form":["S\u00e9lectionnez un formulaire"],"Form Settings":["R\u00e9glages du formulaire"],"Preview":["Pr\u00e9visualisation"],"Advanced":["Avanc\u00e9"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-05-21 08:44+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fr_CA","plural-forms":"nplurals=2; plural=(n > 1);"},"Form Title":["Titre du formulaire"],"Form Description":["Description du formulaire"],"Form":["Formulaire"],"Select a Form":["S\u00e9lectionnez un formulaire"],"Form Settings":["R\u00e9glages du formulaire"],"Preview":["Pr\u00e9visualisation"],"Advanced":["Avanc\u00e9"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-fr_CA.mo b/languages/gravityforms-fr_CA.mo index 622bfa9..c524309 100644 Binary files a/languages/gravityforms-fr_CA.mo and b/languages/gravityforms-fr_CA.mo differ diff --git a/languages/gravityforms-fr_FR-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-fr_FR-4431109f2b52f456221198b68f96424a.json index 74c8d43..e29aeb0 100644 --- a/languages/gravityforms-fr_FR-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-fr_FR-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-10-29 05:09+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fr_FR","plural-forms":"nplurals=2; plural=(n > 1);"},"Form Title":["Titre du formulaire"],"Form Description":["Description du formulaire"],"Form":["Formulaire"],"Select a Form":["S\u00e9lectionnez un formulaire"],"Form Settings":["R\u00e9glages du formulaire"],"Preview":["Pr\u00e9visualisation"],"Advanced":["Avanc\u00e9"],"AJAX":["AJAX"],"Field Values":["Valeurs du champ"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["Le formulaire s\u00e9lectionn\u00e9 a \u00e9t\u00e9 supprim\u00e9 ou mis \u00e0 la corbeille. Veuillez s\u00e9lectionner un nouveau formulaire."],"Select a form below to add it to your page.":["S\u00e9lectionnez un formulaire ci-dessous pour l\u2019ajouter dans votre page."]}}} \ No newline at end of file +{"translation-revision-date":"2019-10-29 05:09+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fr_FR","plural-forms":"nplurals=2; plural=(n > 1);"},"Form Title":["Titre du formulaire"],"Form Description":["Description du formulaire"],"Form":["Formulaire"],"Select a Form":["S\u00e9lectionnez un formulaire"],"Form Settings":["R\u00e9glages du formulaire"],"Preview":["Pr\u00e9visualisation"],"Advanced":["Avanc\u00e9"],"AJAX":["AJAX"],"Field Values":["Valeurs du champ"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["Le formulaire s\u00e9lectionn\u00e9 a \u00e9t\u00e9 supprim\u00e9 ou mis \u00e0 la corbeille. Veuillez s\u00e9lectionner un nouveau formulaire."],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["S\u00e9lectionnez un formulaire ci-dessous pour l\u2019ajouter dans votre page."]}}} \ No newline at end of file diff --git a/languages/gravityforms-fr_FR.mo b/languages/gravityforms-fr_FR.mo index 4ebb3c4..829a312 100644 Binary files a/languages/gravityforms-fr_FR.mo and b/languages/gravityforms-fr_FR.mo differ diff --git a/languages/gravityforms-hu_HU-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-hu_HU-4431109f2b52f456221198b68f96424a.json index 7eec263..d8ecf78 100644 --- a/languages/gravityforms-hu_HU-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-hu_HU-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-05-21 08:46+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"hu_HU","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["\u0170rlap neve"],"Form Description":["\u0170rlap le\u00edr\u00e1sa"],"Form":["\u0170rlap"],"Select a Form":["\u0170rlap v\u00e1laszt\u00e1sa"],"Form Settings":["Be\u00e1ll\u00edt\u00e1sok"],"Preview":["El\u0151n\u00e9zet"],"Advanced":["Speci\u00e1lis"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-05-21 08:46+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"hu_HU","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["\u0170rlap neve"],"Form Description":["\u0170rlap le\u00edr\u00e1sa"],"Form":["\u0170rlap"],"Select a Form":["\u0170rlap v\u00e1laszt\u00e1sa"],"Form Settings":["Be\u00e1ll\u00edt\u00e1sok"],"Preview":["El\u0151n\u00e9zet"],"Advanced":["Speci\u00e1lis"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-hu_HU.mo b/languages/gravityforms-hu_HU.mo index a58d28c..933a069 100644 Binary files a/languages/gravityforms-hu_HU.mo and b/languages/gravityforms-hu_HU.mo differ diff --git a/languages/gravityforms-it_IT-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-it_IT-4431109f2b52f456221198b68f96424a.json index 6cf959c..8cb6258 100644 --- a/languages/gravityforms-it_IT-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-it_IT-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-11-10 07:30+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"it_IT","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Titolo del modulo"],"Form Description":["Descrizione modulo"],"Form":["Modulo"],"Select a Form":["Seleziona un Modulo"],"Form Settings":["Impostazioni modulo"],"Preview":["Anteprima"],"Advanced":["Avanzato"],"AJAX":["AJAX"],"Field Values":["Valori dei campi"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["Il modulo selezionato \u00e8 stato eliminato o si trova nel cestino. Scegli un nuovo modulo."],"Select a form below to add it to your page.":["Seleziona un modulo sotto da aggiungere alla tua pagina."]}}} \ No newline at end of file +{"translation-revision-date":"2019-11-10 07:30+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"it_IT","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Titolo del modulo"],"Form Description":["Descrizione modulo"],"Form":["Modulo"],"Select a Form":["Seleziona un Modulo"],"Form Settings":["Impostazioni modulo"],"Preview":["Anteprima"],"Advanced":["Avanzato"],"AJAX":["AJAX"],"Field Values":["Valori dei campi"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["Il modulo selezionato \u00e8 stato eliminato o si trova nel cestino. Scegli un nuovo modulo."],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["Seleziona un modulo sotto da aggiungere alla tua pagina."]}}} \ No newline at end of file diff --git a/languages/gravityforms-it_IT.mo b/languages/gravityforms-it_IT.mo index fee406a..5607638 100644 Binary files a/languages/gravityforms-it_IT.mo and b/languages/gravityforms-it_IT.mo differ diff --git a/languages/gravityforms-ja-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-ja-4431109f2b52f456221198b68f96424a.json index 51d1ad9..60d211d 100644 --- a/languages/gravityforms-ja-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-ja-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-11-15 01:44+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Form Title":["\u30d5\u30a9\u30fc\u30e0\u540d"],"Form Description":["\u30d5\u30a9\u30fc\u30e0\u306e\u8aac\u660e"],"Form":["\u30d5\u30a9\u30fc\u30e0"],"Select a Form":["\u30d5\u30a9\u30fc\u30e0\u3092\u9078\u629e"],"Form Settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a"],"Preview":["\u30d7\u30ec\u30d3\u30e5\u30fc"],"Advanced":["\u9ad8\u5ea6"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-11-15 01:44+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ja","plural-forms":"nplurals=1; plural=0;"},"Form Title":["\u30d5\u30a9\u30fc\u30e0\u540d"],"Form Description":["\u30d5\u30a9\u30fc\u30e0\u306e\u8aac\u660e"],"Form":["\u30d5\u30a9\u30fc\u30e0"],"Select a Form":["\u30d5\u30a9\u30fc\u30e0\u3092\u9078\u629e"],"Form Settings":["\u30d5\u30a9\u30fc\u30e0\u8a2d\u5b9a"],"Preview":["\u30d7\u30ec\u30d3\u30e5\u30fc"],"Advanced":["\u9ad8\u5ea6"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-ja.mo b/languages/gravityforms-ja.mo index cc27282..87a784c 100644 Binary files a/languages/gravityforms-ja.mo and b/languages/gravityforms-ja.mo differ diff --git a/languages/gravityforms-nb_NO-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-nb_NO-4431109f2b52f456221198b68f96424a.json index 1cb3336..6411562 100644 --- a/languages/gravityforms-nb_NO-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-nb_NO-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-05-21 08:46+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nb_NO","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Navn p\u00e5 skjema"],"Form Description":["Skjemabeskrivelse"],"Form":["Skjema"],"Select a Form":["Velg et skjema"],"Form Settings":["Skjemavalg"],"Preview":["Forh\u00e5ndsvisning"],"Advanced":["Avansert"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-05-21 08:46+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nb_NO","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Navn p\u00e5 skjema"],"Form Description":["Skjemabeskrivelse"],"Form":["Skjema"],"Select a Form":["Velg et skjema"],"Form Settings":["Skjemavalg"],"Preview":["Forh\u00e5ndsvisning"],"Advanced":["Avansert"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-nb_NO.mo b/languages/gravityforms-nb_NO.mo index e8fea74..bff89de 100644 Binary files a/languages/gravityforms-nb_NO.mo and b/languages/gravityforms-nb_NO.mo differ diff --git a/languages/gravityforms-nl_BE-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-nl_BE-4431109f2b52f456221198b68f96424a.json index aba9909..ac37ea7 100644 --- a/languages/gravityforms-nl_BE-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-nl_BE-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-05-21 08:46+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nl_BE","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Titel formulier"],"Form Description":[""],"Form":[""],"Select a Form":[""],"Form Settings":[""],"Preview":[""],"Advanced":["Geavanceerd"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-05-21 08:46+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nl_BE","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Titel formulier"],"Form Description":[""],"Form":[""],"Select a Form":[""],"Form Settings":[""],"Preview":[""],"Advanced":["Geavanceerd"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-nl_NL-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-nl_NL-4431109f2b52f456221198b68f96424a.json index 27b469d..74411aa 100644 --- a/languages/gravityforms-nl_NL-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-nl_NL-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-11-04 03:49+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nl_NL","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Titel formulier"],"Form Description":["Beschrijving formulier"],"Form":["Formulier"],"Select a Form":["Selecteer een formulier"],"Form Settings":["Formulierinstellingen"],"Preview":["Voorbeeld"],"Advanced":["Geavanceerd"],"AJAX":["AJAX"],"Field Values":["Veldwaarden"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["Het geselecteerde formulier is verwijderd of in de prullenmand geplaatst. Selecteer een nieuw formulier."],"Select a form below to add it to your page.":["Selecteer een formulier hieronder om het toe te voegen aan je pagina."]}}} \ No newline at end of file +{"translation-revision-date":"2019-11-04 03:49+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nl_NL","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Titel formulier"],"Form Description":["Beschrijving formulier"],"Form":["Formulier"],"Select a Form":["Selecteer een formulier"],"Form Settings":["Formulierinstellingen"],"Preview":["Voorbeeld"],"Advanced":["Geavanceerd"],"AJAX":["AJAX"],"Field Values":["Veldwaarden"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["Het geselecteerde formulier is verwijderd of in de prullenmand geplaatst. Selecteer een nieuw formulier."],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["Selecteer een formulier hieronder om het toe te voegen aan je pagina."]}}} \ No newline at end of file diff --git a/languages/gravityforms-nl_NL.mo b/languages/gravityforms-nl_NL.mo index 5c2adf3..dade19c 100644 Binary files a/languages/gravityforms-nl_NL.mo and b/languages/gravityforms-nl_NL.mo differ diff --git a/languages/gravityforms-nl_be.mo b/languages/gravityforms-nl_be.mo index a036c48..7ba61ec 100644 Binary files a/languages/gravityforms-nl_be.mo and b/languages/gravityforms-nl_be.mo differ diff --git a/languages/gravityforms-pt_BR-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-pt_BR-4431109f2b52f456221198b68f96424a.json index ab732ec..11a11c1 100644 --- a/languages/gravityforms-pt_BR-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-pt_BR-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-11-06 12:32+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pt_BR","plural-forms":"nplurals=2; plural=(n > 1);"},"Form Title":["T\u00edtulo do Formul\u00e1rio"],"Form Description":["Descri\u00e7\u00e3o do formul\u00e1rio"],"Form":["Formul\u00e1rio"],"Select a Form":["Selecione um formul\u00e1rio"],"Form Settings":["Configura\u00e7\u00f5es do formul\u00e1rio"],"Preview":["Visualizar"],"Advanced":["Avan\u00e7ado"],"AJAX":["AJAX"],"Field Values":["Valores de campo"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["O formul\u00e1rio selecionado foi exclu\u00eddo ou est\u00e1 na lixeira. Selecione um novo formul\u00e1rio."],"Select a form below to add it to your page.":["Selecione um formul\u00e1rio abaixo para adicion\u00e1-lo \u00e0 sua p\u00e1gina."]}}} \ No newline at end of file +{"translation-revision-date":"2019-11-06 12:32+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pt_BR","plural-forms":"nplurals=2; plural=(n > 1);"},"Form Title":["T\u00edtulo do Formul\u00e1rio"],"Form Description":["Descri\u00e7\u00e3o do formul\u00e1rio"],"Form":["Formul\u00e1rio"],"Select a Form":["Selecione um formul\u00e1rio"],"Form Settings":["Configura\u00e7\u00f5es do formul\u00e1rio"],"Preview":["Visualizar"],"Advanced":["Avan\u00e7ado"],"AJAX":["AJAX"],"Field Values":["Valores de campo"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["O formul\u00e1rio selecionado foi exclu\u00eddo ou est\u00e1 na lixeira. Selecione um novo formul\u00e1rio."],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["Selecione um formul\u00e1rio abaixo para adicion\u00e1-lo \u00e0 sua p\u00e1gina."]}}} \ No newline at end of file diff --git a/languages/gravityforms-pt_BR.mo b/languages/gravityforms-pt_BR.mo index c15dac7..311076c 100644 Binary files a/languages/gravityforms-pt_BR.mo and b/languages/gravityforms-pt_BR.mo differ diff --git a/languages/gravityforms-pt_PT-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-pt_PT-4431109f2b52f456221198b68f96424a.json index 31ca4f4..4b3f02b 100644 --- a/languages/gravityforms-pt_PT-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-pt_PT-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-10-29 12:32+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pt_PT","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["T\u00edtulo do formul\u00e1rio"],"Form Description":["Descri\u00e7\u00e3o do formul\u00e1rio"],"Form":["Formul\u00e1rio"],"Select a Form":["Seleccione um formul\u00e1rio"],"Form Settings":["Defini\u00e7\u00f5es do formul\u00e1rio"],"Preview":["Pr\u00e9-visualizar"],"Advanced":["Avan\u00e7ado"],"AJAX":["AJAX"],"Field Values":["Valores do campo"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["O formul\u00e1rio seleccionado foi eliminado ou movido para o lixo. Por favor seleccione outro formul\u00e1rio."],"Select a form below to add it to your page.":["Seleccione um formul\u00e1rio abaixo para adicionar \u00e0 sua p\u00e1gina."]}}} \ No newline at end of file +{"translation-revision-date":"2019-12-29 08:54+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pt_PT","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["T\u00edtulo do formul\u00e1rio"],"Form Description":["Descri\u00e7\u00e3o do formul\u00e1rio"],"Form":["Formul\u00e1rio"],"Select a Form":["Seleccione um formul\u00e1rio"],"Form Settings":["Defini\u00e7\u00f5es do formul\u00e1rio"],"Preview":["Pr\u00e9-visualizar"],"Advanced":["Avan\u00e7ado"],"AJAX":["AJAX"],"Field Values":["Valores do campo"],"Tabindex":["Tabindex"],"The selected form has been deleted or trashed. Please select a new form.":["O formul\u00e1rio seleccionado foi eliminado ou movido para o lixo. Por favor seleccione outro formul\u00e1rio."],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["Seleccione um formul\u00e1rio abaixo para adicionar \u00e0 sua p\u00e1gina."]}}} \ No newline at end of file diff --git a/languages/gravityforms-pt_PT.mo b/languages/gravityforms-pt_PT.mo index bd048a1..8fa3c73 100644 Binary files a/languages/gravityforms-pt_PT.mo and b/languages/gravityforms-pt_PT.mo differ diff --git a/languages/gravityforms-ru_RU-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-ru_RU-4431109f2b52f456221198b68f96424a.json index 87c1abc..062ba86 100644 --- a/languages/gravityforms-ru_RU-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-ru_RU-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-10-29 12:28+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ru_RU","plural-forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},"Form Title":["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0444\u043e\u0440\u043c\u044b"],"Form Description":["\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0444\u043e\u0440\u043c\u044b"],"Form":["\u0424\u043e\u0440\u043c\u0430"],"Select a Form":["\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0443"],"Form Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0444\u043e\u0440\u043c\u044b"],"Preview":["\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440"],"Advanced":["\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435"],"AJAX":["AJAX"],"Field Values":["\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044f"],"Tabindex":["\u0418\u043d\u0434\u0435\u043a\u0441 \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0438"],"The selected form has been deleted or trashed. Please select a new form.":["\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u0430\u044f \u0444\u043e\u0440\u043c\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0430 \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0430 \u0432 \u041a\u043e\u0440\u0437\u0438\u043d\u0443. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u0443\u044e \u0444\u043e\u0440\u043c\u0443."],"Select a form below to add it to your page.":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0443 \u043d\u0438\u0436\u0435 \u0434\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443."]}}} \ No newline at end of file +{"translation-revision-date":"2019-10-29 12:28+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ru_RU","plural-forms":"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"},"Form Title":["\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0444\u043e\u0440\u043c\u044b"],"Form Description":["\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0444\u043e\u0440\u043c\u044b"],"Form":["\u0424\u043e\u0440\u043c\u0430"],"Select a Form":["\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0444\u043e\u0440\u043c\u0443"],"Form Settings":["\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0444\u043e\u0440\u043c\u044b"],"Preview":["\u041f\u0440\u0435\u0434\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440"],"Advanced":["\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u044b\u0435"],"AJAX":["AJAX"],"Field Values":["\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043f\u043e\u043b\u044f"],"Tabindex":["\u0418\u043d\u0434\u0435\u043a\u0441 \u0437\u0430\u043a\u043b\u0430\u0434\u043a\u0438"],"The selected form has been deleted or trashed. Please select a new form.":["\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u0430\u044f \u0444\u043e\u0440\u043c\u0430 \u0443\u0434\u0430\u043b\u0435\u043d\u0430 \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0430 \u0432 \u041a\u043e\u0440\u0437\u0438\u043d\u0443. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u0443\u044e \u0444\u043e\u0440\u043c\u0443."],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0443 \u043d\u0438\u0436\u0435 \u0434\u043b\u044f \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443."]}}} \ No newline at end of file diff --git a/languages/gravityforms-ru_RU.mo b/languages/gravityforms-ru_RU.mo index 55a2af7..212b7a7 100644 Binary files a/languages/gravityforms-ru_RU.mo and b/languages/gravityforms-ru_RU.mo differ diff --git a/languages/gravityforms-sv_SE-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-sv_SE-4431109f2b52f456221198b68f96424a.json index e74c7d5..1fcb805 100644 --- a/languages/gravityforms-sv_SE-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-sv_SE-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2019-10-29 06:31+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"sv_SE","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Formul\u00e4rrubrik"],"Form Description":["Formul\u00e4rbeskrivning"],"Form":["Formul\u00e4r"],"Select a Form":["V\u00e4lj ett Formul\u00e4r"],"Form Settings":["Formul\u00e4rinst\u00e4llningar"],"Preview":["F\u00f6rhandsgranska"],"Advanced":["Avancerat"],"AJAX":["AJAX"],"Field Values":["F\u00e4ltv\u00e4rden"],"Tabindex":["Tabellindex"],"The selected form has been deleted or trashed. Please select a new form.":["Det markerade formul\u00e4ret har tagits bort eller ligger i papperskorgen. V\u00e4lj ett annat formul\u00e4r."],"Select a form below to add it to your page.":["V\u00e4lj ett formul\u00e4r nedan f\u00f6r att l\u00e4gga till det i din sida."]}}} \ No newline at end of file +{"translation-revision-date":"2019-10-29 06:31+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"sv_SE","plural-forms":"nplurals=2; plural=(n != 1);"},"Form Title":["Formul\u00e4rrubrik"],"Form Description":["Formul\u00e4rbeskrivning"],"Form":["Formul\u00e4r"],"Select a Form":["V\u00e4lj ett Formul\u00e4r"],"Form Settings":["Formul\u00e4rinst\u00e4llningar"],"Preview":["F\u00f6rhandsgranska"],"Advanced":["Avancerat"],"AJAX":["AJAX"],"Field Values":["F\u00e4ltv\u00e4rden"],"Tabindex":["Tabellindex"],"The selected form has been deleted or trashed. Please select a new form.":["Det markerade formul\u00e4ret har tagits bort eller ligger i papperskorgen. V\u00e4lj ett annat formul\u00e4r."],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":["V\u00e4lj ett formul\u00e4r nedan f\u00f6r att l\u00e4gga till det i din sida."]}}} \ No newline at end of file diff --git a/languages/gravityforms-sv_SE.mo b/languages/gravityforms-sv_SE.mo index 9941069..bd1a95d 100644 Binary files a/languages/gravityforms-sv_SE.mo and b/languages/gravityforms-sv_SE.mo differ diff --git a/languages/gravityforms-zh_CN-4431109f2b52f456221198b68f96424a.json b/languages/gravityforms-zh_CN-4431109f2b52f456221198b68f96424a.json index 20ccd01..64a02f6 100644 --- a/languages/gravityforms-zh_CN-4431109f2b52f456221198b68f96424a.json +++ b/languages/gravityforms-zh_CN-4431109f2b52f456221198b68f96424a.json @@ -1 +1 @@ -{"translation-revision-date":"2018-05-26 08:31+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"zh_Hans_CN","plural-forms":"nplurals=1; plural=0;"},"Form Title":["\u8868\u5355\u6807\u9898"],"Form Description":["\u8868\u5355\u63cf\u8ff0"],"Form":["\u5f62\u5f0f"],"Select a Form":["\u9009\u62e9\u4e00\u4e2a\u8868\u5355"],"Form Settings":["\u8868\u5355\u8bbe\u7f6e"],"Preview":["\u9884\u89c8"],"Advanced":["\u9ad8\u7ea7"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file +{"translation-revision-date":"2018-05-26 08:31+0000","generator":"WP-CLI\/2.2.0","source":"js\/blocks.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"zh_Hans_CN","plural-forms":"nplurals=1; plural=0;"},"Form Title":["\u8868\u5355\u6807\u9898"],"Form Description":["\u8868\u5355\u63cf\u8ff0"],"Form":["\u5f62\u5f0f"],"Select a Form":["\u9009\u62e9\u4e00\u4e2a\u8868\u5355"],"Form Settings":["\u8868\u5355\u8bbe\u7f6e"],"Preview":["\u9884\u89c8"],"Advanced":["\u9ad8\u7ea7"],"AJAX":[""],"Field Values":[""],"Tabindex":[""],"The selected form has been deleted or trashed. Please select a new form.":[""],"You must have at least one form to use the block.":[""],"Select a form below to add it to your page.":[""]}}} \ No newline at end of file diff --git a/languages/gravityforms-zh_CN.mo b/languages/gravityforms-zh_CN.mo index 12e1296..8dc439f 100644 Binary files a/languages/gravityforms-zh_CN.mo and b/languages/gravityforms-zh_CN.mo differ diff --git a/languages/gravityforms.pot b/languages/gravityforms.pot index 6a96fa9..b1d8c32 100644 --- a/languages/gravityforms.pot +++ b/languages/gravityforms.pot @@ -1,15 +1,15 @@ -# Copyright (C) 2019 rocketgenius +# Copyright (C) 2020 rocketgenius # This file is distributed under the same license as the Gravity Forms plugin. msgid "" msgstr "" -"Project-Id-Version: Gravity Forms 2.4.16\n" +"Project-Id-Version: Gravity Forms 2.4.17\n" "Report-Msgid-Bugs-To: https://gravityforms.com/support\n" "Last-Translator: Gravity Forms \n" "Language-Team: Gravity Forms \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2019-12-18T14:49:47+00:00\n" +"POT-Creation-Date: 2020-02-05T14:12:01+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.2.0\n" "X-Domain: gravityforms\n" @@ -257,7 +257,7 @@ msgstr "" #: tooltips.php:36 #: form_list.php:94 #: js.php:1247 -#: includes/addon/class-gf-addon.php:2854 +#: includes/addon/class-gf-addon.php:2855 #: gravityforms.php:3870 #: common.php:623 #: js/blocks.js:235 @@ -883,7 +883,7 @@ msgid "Field Choices" msgstr "" #: tooltips.php:112 -msgid "Add Choices to this field. You can mark each choice as checked by default by using the radio/checkbox fields on the left." +msgid "Define the choices for this field. If the field type supports it you will also be able to select the default choice(s) using a radio or checkbox located to the left of the choice." msgstr "" #: tooltips.php:113 @@ -897,9 +897,9 @@ msgstr "" #: tooltips.php:114 #: tooltips.php:131 #: tooltips.php:154 -#: includes/addon/class-gf-payment-addon.php:2456 -#: includes/addon/class-gf-payment-addon.php:2458 -#: export.php:584 +#: includes/addon/class-gf-payment-addon.php:2482 +#: includes/addon/class-gf-payment-addon.php:2484 +#: export.php:592 #: form_settings.php:1507 #: notification.php:1227 msgid "Conditional Logic" @@ -1249,7 +1249,7 @@ msgid "Select a date range. Setting a range will limit the export to entries sub msgstr "" #: tooltips.php:157 -#: export.php:317 +#: export.php:325 msgid "Select Files" msgstr "" @@ -1419,7 +1419,7 @@ msgstr "" #: tooltips.php:176 #: includes/class-personal-data.php:622 -#: common.php:5137 +#: common.php:5188 msgid "IP Address" msgstr "" @@ -1449,58 +1449,58 @@ msgid "Review Form" msgstr "" #: form_display.php:281 -#: form_display.php:1075 -#: form_display.php:2999 +#: form_display.php:1084 +#: form_display.php:2991 #: js.php:533 -#: common.php:4654 +#: common.php:4704 msgid "Previous" msgstr "" -#: form_display.php:869 +#: form_display.php:878 msgid "Oops! We could not locate your form." msgstr "" -#: form_display.php:888 +#: form_display.php:897 msgid "Sorry. You must be logged in to view this form." msgstr "" -#: form_display.php:995 +#: form_display.php:1004 msgid "Save and Continue link used is expired or invalid." msgstr "" -#: form_display.php:1025 +#: form_display.php:1034 msgid "Your form was not submitted. Please try again in a few minutes." msgstr "" -#: form_display.php:1027 +#: form_display.php:1036 msgid "There was a problem with your submission." msgstr "" -#: form_display.php:1027 +#: form_display.php:1036 msgid "Errors have been highlighted below." msgstr "" -#: form_display.php:1074 -#: form_display.php:2998 +#: form_display.php:1083 +#: form_display.php:2990 msgid "Previous Page" msgstr "" -#: form_display.php:1126 +#: form_display.php:1135 msgid "This iframe contains the logic required to handle Ajax powered Gravity Forms." msgstr "" -#: form_display.php:1300 +#: form_display.php:1309 #: form_list.php:364 -#: common.php:4661 +#: common.php:4711 msgid "Submit" msgstr "" -#: form_display.php:1389 +#: form_display.php:1398 msgid "This field is for validation purposes and should be left unchanged." msgstr "" -#: form_display.php:1807 -#: includes/addon/class-gf-addon.php:3907 +#: form_display.php:1799 +#: includes/addon/class-gf-addon.php:3908 #: includes/fields/class-gf-field-calculation.php:32 #: includes/fields/class-gf-field-repeater.php:579 #: includes/fields/class-gf-field-consent.php:245 @@ -1511,65 +1511,65 @@ msgstr "" msgid "This field is required." msgstr "" -#: form_display.php:1816 +#: form_display.php:1808 msgid "This date has already been taken. Please select a new date." msgstr "" -#: form_display.php:1820 +#: form_display.php:1812 msgid "This field requires a unique entry and the values you entered have already been used." msgstr "" -#: form_display.php:1821 +#: form_display.php:1813 msgid "This field requires a unique entry and '%s' has already been used" msgstr "" -#: form_display.php:1830 +#: form_display.php:1822 msgid "Please enter a valid value." msgstr "" -#: form_display.php:1830 +#: form_display.php:1822 msgid "Invalid selection. Please select one of the available choices." msgstr "" -#: form_display.php:1852 +#: form_display.php:1844 msgid "At least one field must be filled out" msgstr "" -#: form_display.php:2565 +#: form_display.php:2557 msgid "No results matched" msgstr "" -#: form_display.php:2618 -#: form_display.php:3203 +#: form_display.php:2610 +#: form_display.php:3195 msgid "of" msgstr "" -#: form_display.php:2618 +#: form_display.php:2610 msgid "max characters" msgstr "" -#: form_display.php:2635 +#: form_display.php:2627 #: includes/fields/class-gf-field-password.php:149 msgid "Strength indicator" msgstr "" -#: form_display.php:2635 +#: form_display.php:2627 msgid "Mismatch" msgstr "" -#: form_display.php:2635 +#: form_display.php:2627 msgid "Password strength unknown" msgstr "" -#: form_display.php:2635 +#: form_display.php:2627 msgid "Weak" msgstr "" -#: form_display.php:2635 +#: form_display.php:2627 msgid "Very weak" msgstr "" -#: form_display.php:2635 +#: form_display.php:2627 #: form_detail.php:807 #: form_detail.php:1473 #: form_detail.php:2070 @@ -1577,51 +1577,51 @@ msgstr "" msgid "Medium" msgstr "" -#: form_display.php:2635 +#: form_display.php:2627 #: form_detail.php:1614 msgid "Strong" msgstr "" -#: form_display.php:3004 +#: form_display.php:2996 msgid "Next Page" msgstr "" -#: form_display.php:3005 +#: form_display.php:2997 #: js.php:531 #: includes/wizard/steps/class-gf-installation-wizard-step.php:102 msgid "Next" msgstr "" -#: form_display.php:3155 +#: form_display.php:3147 msgid "This page is unsecured. Do not enter a real credit card number! Use this field only for testing purposes. " msgstr "" -#: form_display.php:3203 +#: form_display.php:3195 msgid "Step" msgstr "" -#: form_display.php:3293 +#: form_display.php:3285 msgid "Sorry. This form is no longer accepting new submissions." msgstr "" -#: form_display.php:3310 +#: form_display.php:3302 msgid "This form is not yet available." msgstr "" -#: form_display.php:3312 +#: form_display.php:3304 msgid "Sorry. This form is no longer available." msgstr "" -#: form_display.php:3446 +#: form_display.php:3438 msgid "Send Link" msgstr "" -#: form_display.php:3447 +#: form_display.php:3439 #: includes/fields/class-gf-field-email.php:61 msgid "Please enter a valid email address." msgstr "" -#: form_display.php:3448 +#: form_display.php:3440 msgid "email address" msgstr "" @@ -1644,23 +1644,23 @@ msgstr "" #: forms_model.php:1727 #: forms_model.php:1761 #: forms_model.php:1799 -#: includes/api.php:121 -#: includes/api.php:148 -#: includes/api.php:170 -#: includes/api.php:202 -#: includes/api.php:314 -#: includes/api.php:360 -#: includes/api.php:381 -#: includes/api.php:419 -#: includes/api.php:704 -#: includes/api.php:738 -#: includes/api.php:788 -#: includes/api.php:1178 -#: includes/api.php:1301 -#: includes/api.php:1471 -#: includes/api.php:1658 -#: includes/api.php:1690 -#: includes/api.php:1733 +#: includes/api.php:125 +#: includes/api.php:152 +#: includes/api.php:174 +#: includes/api.php:206 +#: includes/api.php:318 +#: includes/api.php:364 +#: includes/api.php:385 +#: includes/api.php:423 +#: includes/api.php:708 +#: includes/api.php:742 +#: includes/api.php:792 +#: includes/api.php:1180 +#: includes/api.php:1303 +#: includes/api.php:1473 +#: includes/api.php:1660 +#: includes/api.php:1692 +#: includes/api.php:1735 msgid "Submissions are currently blocked due to an upgrade in progress" msgstr "" @@ -1687,101 +1687,101 @@ msgstr "" msgid "An error prevented the entry for this form submission being saved. Please contact support." msgstr "" -#: forms_model.php:6105 +#: forms_model.php:6115 #: entry_list.php:828 #: entry_detail.php:1374 -#: export.php:996 +#: export.php:1004 #: common.php:620 #: select_columns.php:184 msgid "Entry Id" msgstr "" -#: forms_model.php:6108 +#: forms_model.php:6118 #: entry_detail.php:1384 -#: includes/addon/class-gf-addon.php:2852 -#: export.php:1006 +#: includes/addon/class-gf-addon.php:2853 +#: export.php:1014 #: select_columns.php:186 msgid "User IP" msgstr "" -#: forms_model.php:6111 -#: includes/addon/class-gf-addon.php:2851 -#: export.php:997 -#: common.php:5117 +#: forms_model.php:6121 +#: includes/addon/class-gf-addon.php:2852 +#: export.php:1005 +#: common.php:5168 #: select_columns.php:185 msgid "Entry Date" msgstr "" -#: forms_model.php:6114 -#: includes/addon/class-gf-addon.php:2853 -#: export.php:998 +#: forms_model.php:6124 +#: includes/addon/class-gf-addon.php:2854 +#: export.php:1006 #: select_columns.php:187 msgid "Source Url" msgstr "" -#: forms_model.php:6117 -#: export.php:1002 -#: common.php:5145 +#: forms_model.php:6127 +#: export.php:1010 +#: common.php:5196 #: select_columns.php:188 msgid "Payment Status" msgstr "" -#: forms_model.php:6120 +#: forms_model.php:6130 #: entry_detail.php:1299 -#: export.php:999 +#: export.php:1007 #: select_columns.php:189 msgid "Transaction Id" msgstr "" -#: forms_model.php:6123 -#: export.php:1001 -#: common.php:5150 +#: forms_model.php:6133 +#: export.php:1009 +#: common.php:5201 #: select_columns.php:191 msgid "Payment Date" msgstr "" -#: forms_model.php:6126 -#: includes/addon/class-gf-payment-addon.php:2412 -#: includes/addon/class-gf-payment-addon.php:2417 -#: export.php:1000 -#: common.php:5156 +#: forms_model.php:6136 +#: includes/addon/class-gf-payment-addon.php:2438 +#: includes/addon/class-gf-payment-addon.php:2443 +#: export.php:1008 +#: common.php:5207 #: select_columns.php:190 msgid "Payment Amount" msgstr "" -#: forms_model.php:6129 +#: forms_model.php:6139 #: entry_detail.php:1390 #: includes/webapi/includes/class-gf-api-keys-table.php:21 #: includes/webapi/webapi.php:350 -#: common.php:5164 +#: common.php:5215 #: select_columns.php:192 msgid "User" msgstr "" -#: forms_model.php:6393 -#: forms_model.php:6447 +#: forms_model.php:6403 +#: forms_model.php:6457 msgid "Default Confirmation" msgstr "" -#: forms_model.php:6422 +#: forms_model.php:6432 msgid "Save and Continue Confirmation" msgstr "" -#: forms_model.php:6425 +#: forms_model.php:6435 msgid "

    Please use the following link to return and complete this form from any computer.

    Note: This link will expire after 30 days.
    Enter your email address if you would like to receive the link via email.

    {save_email_input}

    " msgstr "" -#: forms_model.php:6435 +#: forms_model.php:6445 msgid "Save and Continue Email Sent Confirmation" msgstr "" -#: forms_model.php:6438 +#: forms_model.php:6448 msgid "Success!The link was sent to the following email address: {save_email}" msgstr "" -#: forms_model.php:6450 -#: common.php:4660 -#: common.php:4690 +#: forms_model.php:6460 +#: common.php:4710 +#: common.php:4741 msgid "Thanks for contacting us! We will get in touch with you shortly." msgstr "" @@ -1805,10 +1805,10 @@ msgstr "" #: form_list.php:639 #: js.php:268 #: js.php:332 -#: includes/addon/class-gf-feed-addon.php:2219 +#: includes/addon/class-gf-feed-addon.php:2220 #: form_settings.php:1119 #: form_settings.php:2480 -#: common.php:4651 +#: common.php:4701 #: notification.php:619 #: notification.php:1994 msgid "Inactive" @@ -1818,11 +1818,11 @@ msgstr "" #: form_list.php:639 #: js.php:268 #: js.php:328 -#: includes/addon/class-gf-feed-addon.php:2219 +#: includes/addon/class-gf-feed-addon.php:2220 #: form_settings.php:1123 #: form_settings.php:2480 -#: common.php:4650 -#: common.php:5184 +#: common.php:4700 +#: common.php:5235 #: notification.php:623 #: notification.php:1994 msgid "Active" @@ -1834,7 +1834,7 @@ msgstr "" #: form_list.php:216 #: form_list.php:220 -#: includes/addon/class-gf-feed-addon.php:1441 +#: includes/addon/class-gf-feed-addon.php:1442 #: notification.php:2021 msgid "'Cancel' to stop, 'OK' to delete." msgstr "" @@ -1863,8 +1863,8 @@ msgid "Forms" msgstr "" #: form_list.php:232 -#: includes/addon/class-gf-feed-addon.php:1102 -#: includes/addon/class-gf-feed-addon.php:1236 +#: includes/addon/class-gf-feed-addon.php:1103 +#: includes/addon/class-gf-feed-addon.php:1237 #: form_settings.php:1107 #: notification.php:611 msgid "Add New" @@ -1984,7 +1984,7 @@ msgid "Conversion" msgstr "" #: form_list.php:716 -#: includes/addon/class-gf-feed-addon.php:1440 +#: includes/addon/class-gf-feed-addon.php:1441 #: form_settings.php:2500 #: notification.php:2020 msgid "Duplicate" @@ -2222,8 +2222,8 @@ msgstr "" #: entry_list.php:1122 #: entry_list.php:1153 #: entry_list.php:1185 -#: includes/addon/class-gf-payment-addon.php:3214 -#: includes/addon/class-gf-payment-addon.php:3215 +#: includes/addon/class-gf-payment-addon.php:3240 +#: includes/addon/class-gf-payment-addon.php:3241 msgid "View" msgstr "" @@ -2542,8 +2542,8 @@ msgid " Bulk action " msgstr "" #: entry_detail.php:833 -#: includes/addon/class-gf-feed-addon.php:1394 -#: includes/addon/class-gf-feed-addon.php:1441 +#: includes/addon/class-gf-feed-addon.php:1395 +#: includes/addon/class-gf-feed-addon.php:1442 #: form_settings.php:2501 #: form_detail.php:1515 #: notification.php:2021 @@ -2567,7 +2567,7 @@ msgid "Subject:" msgstr "" #: entry_detail.php:993 -#: print-entry.php:182 +#: print-entry.php:199 msgid "Entry # " msgstr "" @@ -2576,23 +2576,23 @@ msgid "show empty fields" msgstr "" #: entry_detail.php:1116 -#: common.php:1440 +#: common.php:1434 msgid "Order" msgstr "" #: entry_detail.php:1128 #: includes/fields/class-gf-field-product.php:13 -#: common.php:1490 +#: common.php:1484 msgid "Product" msgstr "" #: entry_detail.php:1129 -#: common.php:1500 +#: common.php:1494 msgid "Qty" msgstr "" #: entry_detail.php:1130 -#: common.php:1510 +#: common.php:1504 msgid "Unit Price" msgstr "" @@ -2603,16 +2603,16 @@ msgstr "" #: includes/fields/class-gf-field-singleproduct.php:106 #: form_detail.php:579 #: form_detail.php:1441 -#: common.php:1520 +#: common.php:1514 msgid "Price" msgstr "" #: entry_detail.php:1193 #: js.php:756 -#: includes/addon/class-gf-payment-addon.php:2723 +#: includes/addon/class-gf-payment-addon.php:2749 #: includes/fields/class-gf-field-total.php:24 #: gravityforms.php:2155 -#: common.php:1473 +#: common.php:1467 msgid "Total" msgstr "" @@ -2627,7 +2627,7 @@ msgstr "" #: entry_detail.php:1282 #: js.php:652 #: js.php:1247 -#: includes/addon/class-gf-payment-addon.php:2938 +#: includes/addon/class-gf-payment-addon.php:2964 #: includes/fields/class-gf-field-date.php:13 #: form_detail.php:755 #: form_detail.php:1736 @@ -2643,13 +2643,13 @@ msgid "Subscription Id" msgstr "" #: entry_detail.php:1317 -#: includes/addon/class-gf-payment-addon.php:2365 -#: includes/addon/class-gf-payment-addon.php:2369 +#: includes/addon/class-gf-payment-addon.php:2391 +#: includes/addon/class-gf-payment-addon.php:2395 msgid "Recurring Amount" msgstr "" #: entry_detail.php:1317 -#: includes/addon/class-gf-payment-addon.php:2256 +#: includes/addon/class-gf-payment-addon.php:2282 msgid "Amount" msgstr "" @@ -2684,7 +2684,7 @@ msgid "Mark as Spam" msgstr "" #: entry_detail.php:1468 -#: includes/addon/class-gf-feed-addon.php:1439 +#: includes/addon/class-gf-feed-addon.php:1440 #: includes/webapi/includes/class-gf-api-keys-table.php:61 #: gravityforms.php:4294 #: gravityforms.php:4609 @@ -2699,7 +2699,7 @@ msgstr "" #: includes/webapi/webapi.php:526 #: gravityforms.php:3878 #: form_detail.php:2439 -#: common.php:4653 +#: common.php:4703 msgid "Update" msgstr "" @@ -2711,7 +2711,7 @@ msgstr "" #: form_detail.php:1504 #: form_detail.php:1514 #: form_detail.php:2451 -#: common.php:5332 +#: common.php:5383 #: select_columns.php:268 msgid "Cancel" msgstr "" @@ -2782,12 +2782,12 @@ msgid "Sub-Label:" msgstr "" #: js.php:256 -#: common.php:4667 +#: common.php:4717 msgid "Show" msgstr "" #: js.php:258 -#: includes/addon/class-gf-addon.php:2803 +#: includes/addon/class-gf-addon.php:2804 msgid "Field" msgstr "" @@ -2859,9 +2859,9 @@ msgstr "" #: js.php:552 #: js.php:733 -#: includes/addon/class-gf-payment-addon.php:2254 -#: includes/addon/class-gf-payment-addon.php:2330 -#: includes/addon/class-gf-payment-addon.php:2334 +#: includes/addon/class-gf-payment-addon.php:2280 +#: includes/addon/class-gf-payment-addon.php:2356 +#: includes/addon/class-gf-payment-addon.php:2360 #: includes/fields/class-gf-field-name.php:39 #: form_settings.php:2269 #: notification.php:752 @@ -2901,8 +2901,8 @@ msgid "Third Choice" msgstr "" #: js.php:604 -#: includes/addon/class-gf-addon.php:3215 -#: includes/addon/class-gf-payment-addon.php:2642 +#: includes/addon/class-gf-addon.php:3216 +#: includes/addon/class-gf-payment-addon.php:2668 #: includes/fields/class-gf-field-address.php:36 msgid "Address" msgstr "" @@ -2918,8 +2918,8 @@ msgid "Address Line 2" msgstr "" #: js.php:606 -#: includes/addon/class-gf-addon.php:3217 -#: includes/addon/class-gf-payment-addon.php:2644 +#: includes/addon/class-gf-addon.php:3218 +#: includes/addon/class-gf-payment-addon.php:2670 #: includes/fields/class-gf-field-address.php:157 msgid "City" msgstr "" @@ -2934,8 +2934,8 @@ msgid "ZIP / Postal Code" msgstr "" #: js.php:607 -#: includes/addon/class-gf-addon.php:3220 -#: includes/addon/class-gf-payment-addon.php:2647 +#: includes/addon/class-gf-addon.php:3221 +#: includes/addon/class-gf-payment-addon.php:2673 #: includes/fields/class-gf-field-address.php:161 msgid "Country" msgstr "" @@ -2984,7 +2984,7 @@ msgid "Cardholder Name" msgstr "" #: js.php:628 -#: includes/addon/class-gf-payment-addon.php:2641 +#: includes/addon/class-gf-payment-addon.php:2667 #: includes/fields/class-gf-field-email.php:13 #: form_detail.php:759 msgid "Email" @@ -3178,8 +3178,8 @@ msgstr "" #: js.php:884 #: js.php:885 -#: includes/addon/class-gf-payment-addon.php:2919 -#: includes/addon/class-gf-payment-addon.php:2920 +#: includes/addon/class-gf-payment-addon.php:2945 +#: includes/addon/class-gf-payment-addon.php:2946 #: includes/fields/class-gf-field-date.php:585 #: includes/fields/class-gf-field-creditcard.php:284 msgid "Month" @@ -3187,8 +3187,8 @@ msgstr "" #: js.php:886 #: js.php:887 -#: includes/addon/class-gf-payment-addon.php:2936 -#: includes/addon/class-gf-payment-addon.php:2939 +#: includes/addon/class-gf-payment-addon.php:2962 +#: includes/addon/class-gf-payment-addon.php:2965 #: includes/fields/class-gf-field-date.php:593 msgid "Day" msgstr "" @@ -3337,7 +3337,7 @@ msgstr "" #: widget.php:38 #: gravityforms.php:4548 #: js/blocks.js:229 -#: js/blocks.js:400 +#: js/blocks.js:409 msgid "Form" msgstr "" @@ -3379,147 +3379,147 @@ msgstr "" msgid "Tab Index Start" msgstr "" -#: includes/api.php:126 +#: includes/api.php:130 msgid "Form with id: %s not found" msgstr "" -#: includes/api.php:206 -#: includes/api.php:423 +#: includes/api.php:210 +#: includes/api.php:427 msgid "Invalid form object" msgstr "" -#: includes/api.php:218 +#: includes/api.php:222 #: includes/webapi/v2/includes/controllers/class-controller-form-feeds.php:205 #: includes/webapi/webapi.php:1143 msgid "Missing form id" msgstr "" -#: includes/api.php:234 +#: includes/api.php:238 #: includes/webapi/v2/includes/controllers/class-controller-forms.php:135 #: includes/webapi/v2/includes/class-results-cache.php:477 msgid "Form not found" msgstr "" -#: includes/api.php:244 +#: includes/api.php:248 msgid "Error updating form" msgstr "" -#: includes/api.php:251 +#: includes/api.php:255 msgid "Error updating form confirmations" msgstr "" -#: includes/api.php:259 +#: includes/api.php:263 msgid "Error updating form notifications" msgstr "" -#: includes/api.php:267 +#: includes/api.php:271 msgid "Error updating title" msgstr "" -#: includes/api.php:322 +#: includes/api.php:326 msgid "Property key incorrect" msgstr "" -#: includes/api.php:385 +#: includes/api.php:389 msgid "Invalid form objects" msgstr "" -#: includes/api.php:427 +#: includes/api.php:431 msgid "The form title is missing" msgstr "" -#: includes/api.php:431 +#: includes/api.php:435 msgid "The form fields are missing" msgstr "" -#: includes/api.php:484 +#: includes/api.php:488 msgid "There was a problem while inserting the form" msgstr "" -#: includes/api.php:671 -#: includes/api.php:682 +#: includes/api.php:675 +#: includes/api.php:686 msgid "Entry with id %s not found" msgstr "" -#: includes/api.php:804 +#: includes/api.php:808 #: includes/legacy/forms_model_legacy.php:2033 msgid "Missing entry id" msgstr "" -#: includes/api.php:810 +#: includes/api.php:814 #: includes/legacy/forms_model_legacy.php:2039 msgid "Entry not found" msgstr "" -#: includes/api.php:825 -#: includes/api.php:1196 +#: includes/api.php:829 +#: includes/api.php:1198 #: includes/legacy/forms_model_legacy.php:2053 #: includes/legacy/forms_model_legacy.php:2275 msgid "The form for this entry does not exist" msgstr "" -#: includes/api.php:973 +#: includes/api.php:975 #: includes/legacy/forms_model_legacy.php:2120 msgid "There was a problem while updating the entry properties" msgstr "" -#: includes/api.php:1083 -#: includes/api.php:1135 +#: includes/api.php:1085 +#: includes/api.php:1137 #: includes/legacy/forms_model_legacy.php:2160 #: includes/legacy/forms_model_legacy.php:2196 msgid "There was a problem while updating the field values" msgstr "" -#: includes/api.php:1115 +#: includes/api.php:1117 #: includes/legacy/forms_model_legacy.php:2147 msgid "There was a problem while updating one of the input values for the entry" msgstr "" -#: includes/api.php:1186 +#: includes/api.php:1188 #: includes/legacy/forms_model_legacy.php:2265 msgid "The entry object must be an array" msgstr "" -#: includes/api.php:1192 +#: includes/api.php:1194 #: includes/legacy/forms_model_legacy.php:2271 msgid "The form id must be specified" msgstr "" -#: includes/api.php:1240 +#: includes/api.php:1242 #: includes/legacy/forms_model_legacy.php:2315 msgid "There was a problem while inserting the entry properties" msgstr "" -#: includes/api.php:1306 +#: includes/api.php:1308 msgid "Invalid entry id: %s" msgstr "" -#: includes/api.php:1478 +#: includes/api.php:1480 msgid "Your form could not be found" msgstr "" -#: includes/api.php:1506 -#: includes/api.php:1515 +#: includes/api.php:1508 +#: includes/api.php:1517 msgid "There was an error while processing the form:" msgstr "" -#: includes/api.php:1633 +#: includes/api.php:1635 msgid "Feed not found" msgstr "" -#: includes/api.php:1667 +#: includes/api.php:1669 msgid "There was an error while deleting feed id %s" msgstr "" -#: includes/api.php:1671 +#: includes/api.php:1673 msgid "Feed id %s not found" msgstr "" -#: includes/api.php:1710 +#: includes/api.php:1712 msgid "There was an error while updating feed id %s" msgstr "" -#: includes/api.php:1743 +#: includes/api.php:1745 msgid "There was an error while inserting a feed" msgstr "" @@ -3532,9 +3532,9 @@ msgid "There was a problem while inserting the field values" msgstr "" #: includes/class-gf-osdxp.php:27 -#: includes/addon/class-gf-addon.php:4596 -#: includes/addon/class-gf-addon.php:4819 -#: includes/addon/class-gf-addon.php:4985 +#: includes/addon/class-gf-addon.php:4597 +#: includes/addon/class-gf-addon.php:4820 +#: includes/addon/class-gf-addon.php:4986 #: includes/system-status/class-gf-update.php:73 #: gravityforms.php:1452 #: gravityforms.php:1872 @@ -3609,7 +3609,7 @@ msgstr "" #: includes/class-gf-osdxp.php:245 #: includes/class-gf-osdxp.php:246 -#: includes/addon/class-gf-addon.php:1256 +#: includes/addon/class-gf-addon.php:1257 #: form_settings.php:171 #: form_settings.php:975 #: form_settings.php:1712 @@ -3663,7 +3663,7 @@ msgid "Created By" msgstr "" #: includes/class-personal-data.php:206 -#: includes/addon/class-gf-addon.php:3406 +#: includes/addon/class-gf-addon.php:3407 #: includes/logging/logging.php:332 msgid "Enable" msgstr "" @@ -3677,8 +3677,8 @@ msgid "Identification Field" msgstr "" #: includes/class-personal-data.php:234 -#: includes/addon/class-gf-addon.php:2835 -#: includes/addon/class-gf-addon.php:3152 +#: includes/addon/class-gf-addon.php:2836 +#: includes/addon/class-gf-addon.php:3153 #: notification.php:847 msgid "Select a Field" msgstr "" @@ -3709,8 +3709,8 @@ msgstr "" #: includes/class-personal-data.php:428 #: form_detail.php:1513 -#: common.php:4652 -#: common.php:4682 +#: common.php:4702 +#: common.php:4733 #: select_columns.php:267 msgid "Save" msgstr "" @@ -3771,12 +3771,12 @@ msgid "Date Range" msgstr "" #: includes/addon/class-gf-results.php:269 -#: export.php:601 +#: export.php:609 msgid "Start" msgstr "" #: includes/addon/class-gf-results.php:277 -#: export.php:606 +#: export.php:614 msgid "End" msgstr "" @@ -3894,873 +3894,873 @@ msgstr "" msgid "Show more" msgstr "" -#: includes/addon/class-gf-addon.php:445 +#: includes/addon/class-gf-addon.php:446 msgid "Required Gravity Forms Add-On is missing: %s." msgstr "" -#: includes/addon/class-gf-addon.php:453 +#: includes/addon/class-gf-addon.php:454 msgid "Required Gravity Forms Add-On \"%s\" does not meet minimum version requirement: %s." msgstr "" -#: includes/addon/class-gf-addon.php:473 +#: includes/addon/class-gf-addon.php:474 msgid "Required WordPress plugin is missing: %s." msgstr "" -#: includes/addon/class-gf-addon.php:483 +#: includes/addon/class-gf-addon.php:484 msgid "Current PHP version (%s) does not meet minimum PHP version requirement (%s)." msgstr "" -#: includes/addon/class-gf-addon.php:500 +#: includes/addon/class-gf-addon.php:501 msgid "Required PHP extension missing: %s" msgstr "" -#: includes/addon/class-gf-addon.php:507 +#: includes/addon/class-gf-addon.php:508 msgid "Required PHP extension \"%s\" does not meet minimum version requirement: %s." msgstr "" -#: includes/addon/class-gf-addon.php:522 +#: includes/addon/class-gf-addon.php:523 msgid "Required PHP function missing: %s" msgstr "" -#: includes/addon/class-gf-addon.php:535 +#: includes/addon/class-gf-addon.php:536 msgid "Current WordPress version (%s) does not meet minimum WordPress version requirement (%s)." msgstr "" -#: includes/addon/class-gf-addon.php:574 +#: includes/addon/class-gf-addon.php:575 msgid "%s is not able to run because your WordPress environment has not met the minimum requirements." msgstr "" -#: includes/addon/class-gf-addon.php:575 +#: includes/addon/class-gf-addon.php:576 msgid "Please resolve the following issues to use %s:" msgstr "" -#: includes/addon/class-gf-addon.php:1202 +#: includes/addon/class-gf-addon.php:1203 msgid "GF Add-Ons" msgstr "" -#: includes/addon/class-gf-addon.php:1259 -#: includes/addon/class-gf-addon.php:4997 +#: includes/addon/class-gf-addon.php:1260 +#: includes/addon/class-gf-addon.php:4998 #: settings.php:795 msgid "Uninstall" msgstr "" -#: includes/addon/class-gf-addon.php:1262 +#: includes/addon/class-gf-addon.php:1263 msgid "Add-On Page" msgstr "" -#: includes/addon/class-gf-addon.php:1265 +#: includes/addon/class-gf-addon.php:1266 msgid "Add-On Settings" msgstr "" -#: includes/addon/class-gf-addon.php:1284 +#: includes/addon/class-gf-addon.php:1285 msgid "Gravity Forms Add-Ons" msgstr "" -#: includes/addon/class-gf-addon.php:1516 +#: includes/addon/class-gf-addon.php:1517 msgid "Field type '%s' has not been implemented" msgstr "" -#: includes/addon/class-gf-addon.php:1713 +#: includes/addon/class-gf-addon.php:1714 msgid "%s settings updated." msgstr "" -#: includes/addon/class-gf-addon.php:1719 +#: includes/addon/class-gf-addon.php:1720 msgid "There was an error while saving your settings." msgstr "" -#: includes/addon/class-gf-addon.php:2186 +#: includes/addon/class-gf-addon.php:2187 msgid "Add Custom" msgstr "" -#: includes/addon/class-gf-addon.php:2328 +#: includes/addon/class-gf-addon.php:2329 msgid "Custom Key" msgstr "" -#: includes/addon/class-gf-addon.php:2339 +#: includes/addon/class-gf-addon.php:2340 msgid "Custom Value" msgstr "" -#: includes/addon/class-gf-addon.php:2342 +#: includes/addon/class-gf-addon.php:2343 #: includes/webapi/includes/class-gf-api-keys-table.php:20 msgid "Key" msgstr "" -#: includes/addon/class-gf-addon.php:2343 +#: includes/addon/class-gf-addon.php:2344 #: form_detail.php:1441 #: form_detail.php:2135 msgid "Value" msgstr "" -#: includes/addon/class-gf-addon.php:2639 +#: includes/addon/class-gf-addon.php:2640 msgid "Please add a %s field to your form." msgstr "" -#: includes/addon/class-gf-addon.php:2732 +#: includes/addon/class-gf-addon.php:2733 msgid "Add Custom Key" msgstr "" -#: includes/addon/class-gf-addon.php:2742 +#: includes/addon/class-gf-addon.php:2743 msgid "Add Custom Value" msgstr "" -#: includes/addon/class-gf-addon.php:2763 +#: includes/addon/class-gf-addon.php:2764 msgid "Reset" msgstr "" -#: includes/addon/class-gf-addon.php:2785 +#: includes/addon/class-gf-addon.php:2786 msgid "Form Field" msgstr "" -#: includes/addon/class-gf-addon.php:2842 -#: includes/addon/class-gf-addon.php:3159 +#: includes/addon/class-gf-addon.php:2843 +#: includes/addon/class-gf-addon.php:3160 msgid "Select a %s Field" msgstr "" -#: includes/addon/class-gf-addon.php:2850 -#: common.php:5113 +#: includes/addon/class-gf-addon.php:2851 +#: common.php:5164 msgid "Entry ID" msgstr "" -#: includes/addon/class-gf-addon.php:2891 -#: includes/addon/class-gf-addon.php:2898 -#: includes/addon/class-gf-addon.php:2918 -#: includes/addon/class-gf-addon.php:3311 -#: includes/addon/class-gf-addon.php:3318 -#: includes/addon/class-gf-addon.php:3338 +#: includes/addon/class-gf-addon.php:2892 +#: includes/addon/class-gf-addon.php:2899 +#: includes/addon/class-gf-addon.php:2919 +#: includes/addon/class-gf-addon.php:3312 +#: includes/addon/class-gf-addon.php:3319 +#: includes/addon/class-gf-addon.php:3339 msgid "Full" msgstr "" -#: includes/addon/class-gf-addon.php:2905 -#: includes/addon/class-gf-addon.php:3325 +#: includes/addon/class-gf-addon.php:2906 +#: includes/addon/class-gf-addon.php:3326 msgid "Selected" msgstr "" -#: includes/addon/class-gf-addon.php:3213 +#: includes/addon/class-gf-addon.php:3214 msgid "First Name" msgstr "" -#: includes/addon/class-gf-addon.php:3213 +#: includes/addon/class-gf-addon.php:3214 msgid "Name (First)" msgstr "" -#: includes/addon/class-gf-addon.php:3214 +#: includes/addon/class-gf-addon.php:3215 msgid "Last Name" msgstr "" -#: includes/addon/class-gf-addon.php:3214 +#: includes/addon/class-gf-addon.php:3215 msgid "Name (Last)" msgstr "" -#: includes/addon/class-gf-addon.php:3215 +#: includes/addon/class-gf-addon.php:3216 msgid "Address (Street Address)" msgstr "" -#: includes/addon/class-gf-addon.php:3216 -#: includes/addon/class-gf-payment-addon.php:2643 +#: includes/addon/class-gf-addon.php:3217 +#: includes/addon/class-gf-payment-addon.php:2669 msgid "Address 2" msgstr "" -#: includes/addon/class-gf-addon.php:3216 +#: includes/addon/class-gf-addon.php:3217 msgid "Address (Address Line 2)" msgstr "" -#: includes/addon/class-gf-addon.php:3217 +#: includes/addon/class-gf-addon.php:3218 msgid "Address (City)" msgstr "" -#: includes/addon/class-gf-addon.php:3218 -#: includes/addon/class-gf-payment-addon.php:2645 +#: includes/addon/class-gf-addon.php:3219 +#: includes/addon/class-gf-payment-addon.php:2671 #: includes/fields/class-gf-field-address.php:128 #: includes/fields/class-gf-field-address.php:405 #: form_detail.php:1165 msgid "State" msgstr "" -#: includes/addon/class-gf-addon.php:3218 +#: includes/addon/class-gf-addon.php:3219 msgid "Address (State / Province)" msgstr "" -#: includes/addon/class-gf-addon.php:3219 -#: includes/addon/class-gf-payment-addon.php:2646 +#: includes/addon/class-gf-addon.php:3220 +#: includes/addon/class-gf-payment-addon.php:2672 msgid "Zip" msgstr "" -#: includes/addon/class-gf-addon.php:3219 +#: includes/addon/class-gf-addon.php:3220 msgid "Address (Zip / Postal Code)" msgstr "" -#: includes/addon/class-gf-addon.php:3220 +#: includes/addon/class-gf-addon.php:3221 msgid "Address (Country)" msgstr "" -#: includes/addon/class-gf-addon.php:3473 +#: includes/addon/class-gf-addon.php:3474 msgid "Update Settings" msgstr "" -#: includes/addon/class-gf-addon.php:3669 -#: includes/addon/class-gf-addon.php:3688 +#: includes/addon/class-gf-addon.php:3670 +#: includes/addon/class-gf-addon.php:3689 msgid "The text you have entered is not valid. For security reasons, some characters are not allowed. " msgstr "" -#: includes/addon/class-gf-addon.php:3672 -#: includes/addon/class-gf-addon.php:3691 +#: includes/addon/class-gf-addon.php:3673 +#: includes/addon/class-gf-addon.php:3692 msgid "Fix it" msgstr "" -#: includes/addon/class-gf-addon.php:3713 -#: includes/addon/class-gf-addon.php:3754 -#: includes/addon/class-gf-addon.php:3770 -#: includes/addon/class-gf-addon.php:3786 -#: includes/addon/class-gf-addon.php:3836 -#: includes/addon/class-gf-feed-addon.php:1613 +#: includes/addon/class-gf-addon.php:3714 +#: includes/addon/class-gf-addon.php:3755 +#: includes/addon/class-gf-addon.php:3771 +#: includes/addon/class-gf-addon.php:3787 +#: includes/addon/class-gf-addon.php:3837 +#: includes/addon/class-gf-feed-addon.php:1614 msgid "Invalid value" msgstr "" -#: includes/addon/class-gf-addon.php:3944 +#: includes/addon/class-gf-addon.php:3945 #: settings.php:371 msgid "Validation Error" msgstr "" -#: includes/addon/class-gf-addon.php:4154 -#: common.php:4672 +#: includes/addon/class-gf-addon.php:4155 +#: common.php:4722 #: notification.php:347 #: notification.php:949 msgid "is" msgstr "" -#: includes/addon/class-gf-addon.php:4158 -#: common.php:4673 +#: includes/addon/class-gf-addon.php:4159 +#: common.php:4723 #: notification.php:348 #: notification.php:950 msgid "is not" msgstr "" -#: includes/addon/class-gf-addon.php:4162 -#: common.php:4674 +#: includes/addon/class-gf-addon.php:4163 +#: common.php:4724 #: notification.php:349 #: notification.php:951 msgid "greater than" msgstr "" -#: includes/addon/class-gf-addon.php:4166 -#: common.php:4675 +#: includes/addon/class-gf-addon.php:4167 +#: common.php:4725 #: notification.php:350 #: notification.php:952 msgid "less than" msgstr "" -#: includes/addon/class-gf-addon.php:4170 -#: common.php:4676 +#: includes/addon/class-gf-addon.php:4171 +#: common.php:4726 #: notification.php:351 #: notification.php:953 msgid "contains" msgstr "" -#: includes/addon/class-gf-addon.php:4174 -#: common.php:4677 +#: includes/addon/class-gf-addon.php:4175 +#: common.php:4727 #: notification.php:352 #: notification.php:954 msgid "starts with" msgstr "" -#: includes/addon/class-gf-addon.php:4178 -#: common.php:4678 +#: includes/addon/class-gf-addon.php:4179 +#: common.php:4728 #: notification.php:353 #: notification.php:955 msgid "ends with" msgstr "" -#: includes/addon/class-gf-addon.php:4388 -#: includes/addon/class-gf-feed-addon.php:1248 +#: includes/addon/class-gf-addon.php:4389 +#: includes/addon/class-gf-feed-addon.php:1249 msgid "You don't have sufficient permissions to update the form settings." msgstr "" -#: includes/addon/class-gf-addon.php:4722 -#: includes/addon/class-gf-addon.php:4728 +#: includes/addon/class-gf-addon.php:4723 +#: includes/addon/class-gf-addon.php:4729 msgid "You don't have adequate permission to view this page" msgstr "" -#: includes/addon/class-gf-addon.php:4838 +#: includes/addon/class-gf-addon.php:4839 msgid "This add-on needs to be updated. Please contact the developer." msgstr "" -#: includes/addon/class-gf-addon.php:4850 -#: includes/addon/class-gf-addon.php:5015 -#: includes/addon/class-gf-addon.php:5134 +#: includes/addon/class-gf-addon.php:4851 +#: includes/addon/class-gf-addon.php:5016 +#: includes/addon/class-gf-addon.php:5135 msgid "%s has been successfully uninstalled. It can be re-activated from the %splugins page%s." msgstr "" -#: includes/addon/class-gf-addon.php:4877 -#: includes/addon/class-gf-addon.php:5163 -#: includes/addon/class-gf-feed-addon.php:1474 +#: includes/addon/class-gf-addon.php:4878 +#: includes/addon/class-gf-addon.php:5164 +#: includes/addon/class-gf-feed-addon.php:1475 msgid "%s Settings" msgstr "" -#: includes/addon/class-gf-addon.php:4941 -#: includes/addon/class-gf-addon.php:5232 +#: includes/addon/class-gf-addon.php:4942 +#: includes/addon/class-gf-addon.php:5233 msgid "You don't have sufficient permissions to update the settings." msgstr "" -#: includes/addon/class-gf-addon.php:5026 -#: includes/addon/class-gf-addon.php:5040 +#: includes/addon/class-gf-addon.php:5027 +#: includes/addon/class-gf-addon.php:5041 msgid "Uninstall %s" msgstr "" -#: includes/addon/class-gf-addon.php:5032 -#: includes/addon/class-gf-addon.php:5305 +#: includes/addon/class-gf-addon.php:5033 +#: includes/addon/class-gf-addon.php:5306 #: settings.php:226 msgid "Warning" msgstr "" -#: includes/addon/class-gf-addon.php:5303 +#: includes/addon/class-gf-addon.php:5304 msgid "Uninstall %s Add-On" msgstr "" -#: includes/addon/class-gf-addon.php:5309 +#: includes/addon/class-gf-addon.php:5310 msgid "Uninstall Add-On" msgstr "" -#: includes/addon/class-gf-addon.php:5320 +#: includes/addon/class-gf-addon.php:5321 msgid "%sThis operation deletes ALL %s settings%s. If you continue, you will NOT be able to retrieve these settings." msgstr "" -#: includes/addon/class-gf-addon.php:5324 +#: includes/addon/class-gf-addon.php:5325 msgid "Warning! ALL %s settings will be deleted. This cannot be undone. 'OK' to delete, 'Cancel' to stop" msgstr "" -#: includes/addon/class-gf-addon.php:5351 +#: includes/addon/class-gf-addon.php:5352 msgid "You don't have adequate permission to uninstall this add-on: " msgstr "" -#: includes/addon/class-gf-addon.php:5448 +#: includes/addon/class-gf-addon.php:5449 #: includes/addon/class-gf-auto-upgrade.php:66 msgid "Gravity Forms %s is required. Activate it now or %spurchase it today!%s" msgstr "" -#: includes/addon/class-gf-feed-addon.php:961 +#: includes/addon/class-gf-feed-addon.php:962 msgid "Copy 1" msgstr "" -#: includes/addon/class-gf-feed-addon.php:963 +#: includes/addon/class-gf-feed-addon.php:964 msgid "Copy %d" msgstr "" -#: includes/addon/class-gf-feed-addon.php:1043 -#: includes/addon/class-gf-payment-addon.php:3665 +#: includes/addon/class-gf-feed-addon.php:1044 +#: includes/addon/class-gf-payment-addon.php:3691 msgid "Access denied." msgstr "" -#: includes/addon/class-gf-feed-addon.php:1107 +#: includes/addon/class-gf-feed-addon.php:1108 msgid "%s Feeds" msgstr "" -#: includes/addon/class-gf-feed-addon.php:1153 +#: includes/addon/class-gf-feed-addon.php:1154 msgid "Feed Settings" msgstr "" -#: includes/addon/class-gf-feed-addon.php:1296 +#: includes/addon/class-gf-feed-addon.php:1297 msgid "Feed updated successfully." msgstr "" -#: includes/addon/class-gf-feed-addon.php:1305 +#: includes/addon/class-gf-feed-addon.php:1306 msgid "There was an error updating this feed. Please review all errors below and try again." msgstr "" -#: includes/addon/class-gf-feed-addon.php:1441 +#: includes/addon/class-gf-feed-addon.php:1442 msgid "WARNING: You are about to delete this item." msgstr "" -#: includes/addon/class-gf-feed-addon.php:1457 +#: includes/addon/class-gf-feed-addon.php:1458 msgid "You don't have any feeds configured. Let's go %screate one%s!" msgstr "" -#: includes/addon/class-gf-feed-addon.php:1477 +#: includes/addon/class-gf-feed-addon.php:1478 msgid "To get started, please configure your %s." msgstr "" -#: includes/addon/class-gf-feed-addon.php:1539 +#: includes/addon/class-gf-feed-addon.php:1540 msgid "Process this feed if" msgstr "" -#: includes/addon/class-gf-feed-addon.php:1560 +#: includes/addon/class-gf-feed-addon.php:1561 msgid "Enable Condition" msgstr "" -#: includes/addon/class-gf-feed-addon.php:1699 +#: includes/addon/class-gf-feed-addon.php:1700 msgid "Process %s feed only when payment is received." msgstr "" -#: includes/addon/class-gf-feed-addon.php:1711 -#: includes/addon/class-gf-feed-addon.php:1714 +#: includes/addon/class-gf-feed-addon.php:1712 +#: includes/addon/class-gf-feed-addon.php:1715 msgid "Post Payment Actions" msgstr "" -#: includes/addon/class-gf-feed-addon.php:1714 +#: includes/addon/class-gf-feed-addon.php:1715 msgid "Select which actions should only occur after payment has been received." msgstr "" -#: includes/addon/class-gf-feed-addon.php:2106 +#: includes/addon/class-gf-feed-addon.php:2107 #: settings.php:572 msgid "Checkbox" msgstr "" -#: includes/addon/class-gf-feed-addon.php:2121 +#: includes/addon/class-gf-feed-addon.php:2122 msgid "feed" msgstr "" -#: includes/addon/class-gf-feed-addon.php:2122 +#: includes/addon/class-gf-feed-addon.php:2123 msgid "feeds" msgstr "" -#: includes/addon/class-gf-auto-upgrade.php:190 +#: includes/addon/class-gf-auto-upgrade.php:194 msgid "Oops!! Something went wrong.%sPlease try again or %scontact us%s." msgstr "" -#: includes/addon/class-gf-auto-upgrade.php:250 -#: includes/addon/class-gf-auto-upgrade.php:302 +#: includes/addon/class-gf-auto-upgrade.php:254 +#: includes/addon/class-gf-auto-upgrade.php:306 msgid "View version %s details" msgstr "" -#: includes/addon/class-gf-auto-upgrade.php:252 -#: includes/addon/class-gf-auto-upgrade.php:304 +#: includes/addon/class-gf-auto-upgrade.php:256 +#: includes/addon/class-gf-auto-upgrade.php:308 msgid "There is a new version of %1$s available. %s." msgstr "" -#: includes/addon/class-gf-auto-upgrade.php:260 -#: includes/addon/class-gf-auto-upgrade.php:316 +#: includes/addon/class-gf-auto-upgrade.php:264 +#: includes/addon/class-gf-auto-upgrade.php:320 msgid "Your version of %s is up to date." msgstr "" -#: includes/addon/class-gf-auto-upgrade.php:292 +#: includes/addon/class-gf-auto-upgrade.php:296 #: includes/system-status/class-gf-update.php:119 #: includes/system-status/class-gf-update.php:194 msgid "%sRegister%s your copy of Gravity Forms to receive access to automatic updates and support. Need a license key? %sPurchase one now%s." msgstr "" -#: includes/addon/class-gf-auto-upgrade.php:308 +#: includes/addon/class-gf-auto-upgrade.php:312 msgid "You can update to the latest version automatically or download the update and install it manually. %sUpdate Automatically%s %sDownload Update%s" msgstr "" -#: includes/addon/class-gf-payment-addon.php:962 +#: includes/addon/class-gf-payment-addon.php:967 msgid "Payment failed to be captured. Reason: %s" msgstr "" -#: includes/addon/class-gf-payment-addon.php:1004 +#: includes/addon/class-gf-payment-addon.php:1009 msgid "Initial payment" msgstr "" -#: includes/addon/class-gf-payment-addon.php:1011 +#: includes/addon/class-gf-payment-addon.php:1016 msgid "%s has been captured successfully. Amount: %s. Transaction Id: %s" msgstr "" -#: includes/addon/class-gf-payment-addon.php:1016 +#: includes/addon/class-gf-payment-addon.php:1021 msgid "Failed to capture %s. Reason: %s." msgstr "" -#: includes/addon/class-gf-payment-addon.php:1030 +#: includes/addon/class-gf-payment-addon.php:1035 msgid "Subscription failed to be created. Reason: %s" msgstr "" -#: includes/addon/class-gf-payment-addon.php:1351 +#: includes/addon/class-gf-payment-addon.php:1360 msgid "options: " msgstr "" -#: includes/addon/class-gf-payment-addon.php:1560 +#: includes/addon/class-gf-payment-addon.php:1586 msgid "This webhook has already been processed (Event Id: %s)" msgstr "" -#: includes/addon/class-gf-payment-addon.php:1726 +#: includes/addon/class-gf-payment-addon.php:1752 msgid "Payment is pending. Amount: %s. Transaction Id: %s." msgstr "" -#: includes/addon/class-gf-payment-addon.php:1757 +#: includes/addon/class-gf-payment-addon.php:1783 msgid "Payment has been authorized. Amount: %s. Transaction Id: %s." msgstr "" -#: includes/addon/class-gf-payment-addon.php:1792 +#: includes/addon/class-gf-payment-addon.php:1818 msgid "Payment has been completed. Amount: %s. Transaction Id: %s." msgstr "" -#: includes/addon/class-gf-payment-addon.php:1850 +#: includes/addon/class-gf-payment-addon.php:1876 msgid "Payment has been refunded. Amount: %s. Transaction Id: %s." msgstr "" -#: includes/addon/class-gf-payment-addon.php:1904 +#: includes/addon/class-gf-payment-addon.php:1930 msgid "Payment has failed. Amount: %s." msgstr "" -#: includes/addon/class-gf-payment-addon.php:1923 +#: includes/addon/class-gf-payment-addon.php:1949 msgid "Authorization has been voided. Transaction Id: %s" msgstr "" -#: includes/addon/class-gf-payment-addon.php:1954 +#: includes/addon/class-gf-payment-addon.php:1980 msgid "Subscription has been created. Subscription Id: %s." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2008 +#: includes/addon/class-gf-payment-addon.php:2034 msgid "Subscription has been paid. Amount: %s. Subscription Id: %s" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2063 +#: includes/addon/class-gf-payment-addon.php:2089 msgid "Subscription payment has failed. Amount: %s. Subscription Id: %s." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2118 +#: includes/addon/class-gf-payment-addon.php:2144 msgid "Subscription has been cancelled. Subscription Id: %s." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2159 +#: includes/addon/class-gf-payment-addon.php:2185 msgid "Subscription has expired. Subscriber Id: %s" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2255 -#: includes/addon/class-gf-payment-addon.php:2338 -#: includes/addon/class-gf-payment-addon.php:2352 +#: includes/addon/class-gf-payment-addon.php:2281 +#: includes/addon/class-gf-payment-addon.php:2364 +#: includes/addon/class-gf-payment-addon.php:2378 msgid "Transaction Type" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2263 -#: includes/addon/class-gf-payment-addon.php:2350 +#: includes/addon/class-gf-payment-addon.php:2289 +#: includes/addon/class-gf-payment-addon.php:2376 msgid "Subscription" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2266 -#: includes/addon/class-gf-payment-addon.php:2347 +#: includes/addon/class-gf-payment-addon.php:2292 +#: includes/addon/class-gf-payment-addon.php:2373 msgid "Products and Services" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2269 +#: includes/addon/class-gf-payment-addon.php:2295 msgid "Donations" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2274 +#: includes/addon/class-gf-payment-addon.php:2300 msgid "Unsupported transaction type" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2281 -#: includes/addon/class-gf-payment-addon.php:2612 -#: includes/addon/class-gf-payment-addon.php:2620 +#: includes/addon/class-gf-payment-addon.php:2307 +#: includes/addon/class-gf-payment-addon.php:2638 +#: includes/addon/class-gf-payment-addon.php:2646 msgid "Form Total" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2318 +#: includes/addon/class-gf-payment-addon.php:2344 msgid "You must add a Credit Card field to your form before creating a feed. Let's go %sadd one%s!" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2334 +#: includes/addon/class-gf-payment-addon.php:2360 msgid "Enter a feed name to uniquely identify this setup." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2343 +#: includes/addon/class-gf-payment-addon.php:2369 msgid "Select a transaction type" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2352 +#: includes/addon/class-gf-payment-addon.php:2378 msgid "Select a transaction type." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2357 +#: includes/addon/class-gf-payment-addon.php:2383 msgid "Subscription Settings" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2369 +#: includes/addon/class-gf-payment-addon.php:2395 msgid "Select which field determines the recurring payment amount, or select 'Form Total' to use the total of all pricing fields as the recurring amount." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2373 -#: includes/addon/class-gf-payment-addon.php:2375 +#: includes/addon/class-gf-payment-addon.php:2399 +#: includes/addon/class-gf-payment-addon.php:2401 msgid "Billing Cycle" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2375 +#: includes/addon/class-gf-payment-addon.php:2401 msgid "Select your billing cycle. This determines how often the recurring payment should occur." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2379 -#: includes/addon/class-gf-payment-addon.php:2387 +#: includes/addon/class-gf-payment-addon.php:2405 +#: includes/addon/class-gf-payment-addon.php:2413 msgid "Recurring Times" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2383 +#: includes/addon/class-gf-payment-addon.php:2409 msgid "infinite" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2387 +#: includes/addon/class-gf-payment-addon.php:2413 msgid "Select how many times the recurring payment should be made. The default is to bill the customer until the subscription is canceled." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2391 +#: includes/addon/class-gf-payment-addon.php:2417 msgid "Setup Fee" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2396 +#: includes/addon/class-gf-payment-addon.php:2422 msgid "Trial" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2399 +#: includes/addon/class-gf-payment-addon.php:2425 msgid "Trial Period" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2399 +#: includes/addon/class-gf-payment-addon.php:2425 msgid "Enable a trial period. The user's recurring payment will not begin until after this trial period." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2404 +#: includes/addon/class-gf-payment-addon.php:2430 msgid "Products & Services Settings" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2417 +#: includes/addon/class-gf-payment-addon.php:2443 msgid "Select which field determines the payment amount, or select 'Form Total' to use the total of all pricing fields as the payment amount." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2422 +#: includes/addon/class-gf-payment-addon.php:2448 msgid "Other Settings" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2437 -#: includes/addon/class-gf-payment-addon.php:2440 +#: includes/addon/class-gf-payment-addon.php:2463 +#: includes/addon/class-gf-payment-addon.php:2466 msgid "Billing Information" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2440 +#: includes/addon/class-gf-payment-addon.php:2466 msgid "Map your Form Fields to the available listed fields." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2448 +#: includes/addon/class-gf-payment-addon.php:2474 msgid "Options" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2458 +#: includes/addon/class-gf-payment-addon.php:2484 msgid "When conditions are enabled, form submissions will only be sent to the payment gateway when the conditions are met. When disabled, all form submissions will be sent to the payment gateway." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2518 -#: includes/addon/class-gf-payment-addon.php:2563 +#: includes/addon/class-gf-payment-addon.php:2544 +#: includes/addon/class-gf-payment-addon.php:2589 #: includes/webapi/webapi.php:467 #: includes/wizard/steps/class-gf-installation-wizard-step-background-updates.php:110 msgid "Enabled" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2577 +#: includes/addon/class-gf-payment-addon.php:2603 msgid "Enter an amount" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2629 +#: includes/addon/class-gf-payment-addon.php:2655 msgid "Sample Option" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2665 +#: includes/addon/class-gf-payment-addon.php:2691 msgid "day(s)" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2666 +#: includes/addon/class-gf-payment-addon.php:2692 msgid "week(s)" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2667 +#: includes/addon/class-gf-payment-addon.php:2693 msgid "month(s)" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2668 +#: includes/addon/class-gf-payment-addon.php:2694 msgid "year(s)" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2677 +#: includes/addon/class-gf-payment-addon.php:2703 msgid "Select a product field" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2693 +#: includes/addon/class-gf-payment-addon.php:2719 msgctxt "toolbar label" msgid "Sales" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2694 +#: includes/addon/class-gf-payment-addon.php:2720 msgctxt "metabox title" msgid "Filter" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2720 +#: includes/addon/class-gf-payment-addon.php:2746 msgid "Today" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2721 +#: includes/addon/class-gf-payment-addon.php:2747 msgid "Yesterday" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2722 +#: includes/addon/class-gf-payment-addon.php:2748 msgid "Last 30 Days" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2729 -#: includes/addon/class-gf-payment-addon.php:2736 -#: includes/addon/class-gf-payment-addon.php:2744 -#: includes/addon/class-gf-payment-addon.php:2751 +#: includes/addon/class-gf-payment-addon.php:2755 +#: includes/addon/class-gf-payment-addon.php:2762 +#: includes/addon/class-gf-payment-addon.php:2770 +#: includes/addon/class-gf-payment-addon.php:2777 msgid "subscriptions" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2730 -#: includes/addon/class-gf-payment-addon.php:2737 -#: includes/addon/class-gf-payment-addon.php:2745 -#: includes/addon/class-gf-payment-addon.php:2752 +#: includes/addon/class-gf-payment-addon.php:2756 +#: includes/addon/class-gf-payment-addon.php:2763 +#: includes/addon/class-gf-payment-addon.php:2771 +#: includes/addon/class-gf-payment-addon.php:2778 msgid "orders" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2760 +#: includes/addon/class-gf-payment-addon.php:2786 msgid "There aren't any transactions that match your criteria." msgstr "" -#: includes/addon/class-gf-payment-addon.php:2872 -#: includes/addon/class-gf-payment-addon.php:2881 +#: includes/addon/class-gf-payment-addon.php:2898 +#: includes/addon/class-gf-payment-addon.php:2907 msgid "Revenue" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2877 +#: includes/addon/class-gf-payment-addon.php:2903 msgid "Orders" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2878 +#: includes/addon/class-gf-payment-addon.php:2904 msgid "Subscriptions" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2879 +#: includes/addon/class-gf-payment-addon.php:2905 msgid "Recurring Payments" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2880 +#: includes/addon/class-gf-payment-addon.php:2906 msgid "Refunds" msgstr "" -#: includes/addon/class-gf-payment-addon.php:2902 -#: includes/addon/class-gf-payment-addon.php:2903 +#: includes/addon/class-gf-payment-addon.php:2928 +#: includes/addon/class-gf-payment-addon.php:2929 msgid "Week" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3080 +#: includes/addon/class-gf-payment-addon.php:3106 msgid "Jan" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3081 +#: includes/addon/class-gf-payment-addon.php:3107 msgid "Feb" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3082 +#: includes/addon/class-gf-payment-addon.php:3108 msgid "Mar" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3083 +#: includes/addon/class-gf-payment-addon.php:3109 msgid "Apr" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3084 +#: includes/addon/class-gf-payment-addon.php:3110 #: form_detail.php:1465 msgid "May" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3085 +#: includes/addon/class-gf-payment-addon.php:3111 msgid "Jun" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3086 +#: includes/addon/class-gf-payment-addon.php:3112 msgid "Jul" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3087 +#: includes/addon/class-gf-payment-addon.php:3113 msgid "Aug" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3088 +#: includes/addon/class-gf-payment-addon.php:3114 msgid "Sep" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3089 +#: includes/addon/class-gf-payment-addon.php:3115 msgid "Oct" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3090 +#: includes/addon/class-gf-payment-addon.php:3116 msgid "Nov" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3091 +#: includes/addon/class-gf-payment-addon.php:3117 msgid "Dec" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3207 +#: includes/addon/class-gf-payment-addon.php:3233 msgid "Daily" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3208 +#: includes/addon/class-gf-payment-addon.php:3234 msgid "Weekly" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3209 +#: includes/addon/class-gf-payment-addon.php:3235 msgid "Monthly" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3215 +#: includes/addon/class-gf-payment-addon.php:3241 msgid "Select how you would like the sales data to be displayed." msgstr "" -#: includes/addon/class-gf-payment-addon.php:3225 +#: includes/addon/class-gf-payment-addon.php:3251 msgctxt "regarding a payment method" msgid "Any" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3236 +#: includes/addon/class-gf-payment-addon.php:3262 msgid "Payment Method" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3354 +#: includes/addon/class-gf-payment-addon.php:3380 msgid "Warning! This subscription will be canceled. This cannot be undone. 'OK' to cancel subscription, 'Cancel' to stop" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3356 +#: includes/addon/class-gf-payment-addon.php:3382 msgid "Canceled" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3357 +#: includes/addon/class-gf-payment-addon.php:3383 msgid "The subscription could not be canceled. Please try again later." msgstr "" -#: includes/addon/class-gf-payment-addon.php:3623 +#: includes/addon/class-gf-payment-addon.php:3649 msgid "Cancel Subscription" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3754 +#: includes/addon/class-gf-payment-addon.php:3780 msgid "sale" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3755 +#: includes/addon/class-gf-payment-addon.php:3781 msgid "sales" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3769 +#: includes/addon/class-gf-payment-addon.php:3795 msgid "There hasn't been any sales in the specified date range." msgstr "" -#: includes/addon/class-gf-payment-addon.php:3792 +#: includes/addon/class-gf-payment-addon.php:3818 msgid "1 item" msgid_plural "%s items" msgstr[0] "" msgstr[1] "" -#: includes/addon/class-gf-payment-addon.php:3809 +#: includes/addon/class-gf-payment-addon.php:3835 msgid "Go to the first page" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3816 +#: includes/addon/class-gf-payment-addon.php:3842 msgid "Go to the previous page" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3826 +#: includes/addon/class-gf-payment-addon.php:3852 msgctxt "paging" msgid "%1$s of %2$s" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3831 +#: includes/addon/class-gf-payment-addon.php:3857 msgid "Go to the next page" msgstr "" -#: includes/addon/class-gf-payment-addon.php:3840 +#: includes/addon/class-gf-payment-addon.php:3866 msgid "Go to the last page" msgstr "" @@ -7327,19 +7327,19 @@ msgstr "" msgid "Radio Buttons" msgstr "" -#: includes/fields/class-gf-field-radio.php:128 +#: includes/fields/class-gf-field-radio.php:115 +#: includes/fields/class-gf-field-checkbox.php:638 +msgid "%d of %d items shown. Edit field to view all" +msgstr "" + +#: includes/fields/class-gf-field-radio.php:189 #: form_detail.php:1462 #: form_detail.php:1463 #: common.php:665 -#: common.php:4036 +#: common.php:4086 msgid "Other" msgstr "" -#: includes/fields/class-gf-field-radio.php:148 -#: includes/fields/class-gf-field-checkbox.php:638 -msgid "%d of %d items shown. Edit field to view all" -msgstr "" - #: includes/fields/class-gf-field-date.php:83 msgid "Please enter a valid date in the format (%s)." msgstr "" @@ -7381,8 +7381,8 @@ msgid "YYYY dot MM dot DD" msgstr "" #: includes/fields/class-gf-field-date.php:687 -#: common.php:5119 -#: common.php:5152 +#: common.php:5170 +#: common.php:5203 msgid "yyyy-mm-dd" msgstr "" @@ -7431,14 +7431,14 @@ msgid "Checkboxes" msgstr "" #: includes/fields/class-gf-field-checkbox.php:532 -#: export.php:377 -#: export.php:462 +#: export.php:385 +#: export.php:470 msgid "Select All" msgstr "" #: includes/fields/class-gf-field-checkbox.php:543 -#: export.php:377 -#: export.php:462 +#: export.php:385 +#: export.php:470 msgid "Deselect All" msgstr "" @@ -7522,7 +7522,7 @@ msgstr "" #: form_detail.php:752 #: form_detail.php:1987 #: form_detail.php:2021 -#: common.php:5932 +#: common.php:5983 msgid "Hidden" msgstr "" @@ -7596,26 +7596,26 @@ msgstr "" msgid "Failed to upload file." msgstr "" -#: includes/upload.php:173 +#: includes/upload.php:175 msgid "Failed to open temp directory." msgstr "" -#: includes/upload.php:202 -#: includes/upload.php:226 +#: includes/upload.php:204 +#: includes/upload.php:228 msgid "Failed to open input stream." msgstr "" -#: includes/upload.php:209 -#: includes/upload.php:232 +#: includes/upload.php:211 +#: includes/upload.php:234 msgid "Failed to open output stream." msgstr "" -#: includes/upload.php:212 +#: includes/upload.php:214 msgid "Failed to move uploaded file." msgstr "" -#: includes/upload.php:243 -#: includes/upload.php:253 +#: includes/upload.php:245 +#: includes/upload.php:255 msgid "Upload unsuccessful" msgstr "" @@ -8758,7 +8758,7 @@ msgid "You now have control" msgstr "" #: includes/locking/class-gf-locking.php:206 -#: common.php:5186 +#: common.php:5237 msgid "Pending" msgstr "" @@ -8897,7 +8897,7 @@ msgid "%sIMPORTANT NOTICE:%s We do not provide support via telephone or e-mail. msgstr "" #: help.php:39 -msgid "Please review the plugin documentation and %sfrequently asked questions (FAQ)%s first. If you still can't find the answer %sopen a support ticket%s and we will be happy to answer your questions and assist you with any problems. %sPlease note:%s If you have not %spurchased a license%s from us, you will not have access to these help resources." +msgid "Please review the %sdocumentation%s and %sknowledge base%s first. If you still can't find the answer %sopen a support ticket%s and we will be happy to answer your questions and assist you with any problems. %sPlease note:%s If you have not %spurchased a license%s from us, you will not have access to these help resources." msgstr "" #: help.php:44 @@ -8937,7 +8937,7 @@ msgid "API Functions" msgstr "" #: help.php:95 -msgid "Web API" +msgid "REST API" msgstr "" #: help.php:100 @@ -8976,19 +8976,19 @@ msgstr "" msgid "You don't have adequate permission to view entries." msgstr "" -#: print-entry.php:159 +#: print-entry.php:176 msgid "Form Id and Entry Id are required parameters." msgstr "" -#: print-entry.php:182 +#: print-entry.php:199 msgid "Bulk Print" msgstr "" -#: print-entry.php:220 +#: print-entry.php:237 msgid "close window" msgstr "" -#: print-entry.php:220 +#: print-entry.php:237 msgid "Print Preview" msgstr "" @@ -8996,120 +8996,120 @@ msgstr "" msgid "Please select the forms to be exported" msgstr "" -#: export.php:288 +#: export.php:296 msgid "Forms could not be imported. Please make sure your export file is in the correct format." msgstr "" -#: export.php:290 +#: export.php:298 msgid "Forms could not be imported. Your export file is not compatible with your current version of Gravity Forms." msgstr "" -#: export.php:292 +#: export.php:300 msgid "forms" msgstr "" -#: export.php:292 +#: export.php:300 msgid "form" msgstr "" -#: export.php:293 +#: export.php:301 msgid "Edit Form" msgstr "" -#: export.php:294 +#: export.php:302 msgid "Gravity Forms imported %d %s successfully" msgstr "" -#: export.php:301 -#: export.php:1108 +#: export.php:309 +#: export.php:1116 msgid "Import Forms" msgstr "" -#: export.php:306 +#: export.php:314 msgid "Select the Gravity Forms export files you would like to import. When you click the import button below, Gravity Forms will import the forms." msgstr "" -#: export.php:323 +#: export.php:331 msgid "Import" msgstr "" -#: export.php:339 -#: export.php:1105 +#: export.php:347 +#: export.php:1113 msgid "Export Forms" msgstr "" -#: export.php:364 +#: export.php:372 msgid "Select the forms you would like to export. When you click the download button below, Gravity Forms will create a JSON file for you to save to your computer. Once you've saved the download file, you can use the Import tool to import the forms." msgstr "" -#: export.php:371 +#: export.php:379 msgid "Select Forms" msgstr "" -#: export.php:406 -#: export.php:618 +#: export.php:414 +#: export.php:626 msgid "Download Export File" msgstr "" -#: export.php:421 -#: export.php:1101 +#: export.php:429 +#: export.php:1109 msgid "Export Entries" msgstr "" -#: export.php:446 +#: export.php:454 msgid "Ajax error while selecting a form" msgstr "" -#: export.php:471 +#: export.php:479 msgid "Export entries if {0} of the following match:" msgstr "" -#: export.php:480 +#: export.php:488 msgid "Please select the fields to be exported" msgstr "" -#: export.php:537 +#: export.php:545 msgid "Select a form below to export entries. Once you have selected a form you may select the fields you would like to export and then define optional filters for field values and the date range. When you click the download button below, Gravity Forms will create a CSV file for you to save to your computer." msgstr "" -#: export.php:545 +#: export.php:553 msgid "Select A Form" msgstr "" -#: export.php:550 +#: export.php:558 msgid "Select a form" msgstr "" -#: export.php:575 +#: export.php:583 msgid "Select Fields" msgstr "" -#: export.php:595 +#: export.php:603 msgid "Select Date Range" msgstr "" -#: export.php:610 +#: export.php:618 msgid "Date Range is optional, if no date range is selected all entries will be exported." msgstr "" -#: export.php:620 +#: export.php:628 msgid "Exporting entries. Progress:" msgstr "" -#: export.php:995 +#: export.php:1003 msgid "Created By (User Id)" msgstr "" -#: export.php:1004 +#: export.php:1012 #: common.php:628 msgid "Post Id" msgstr "" -#: export.php:1005 +#: export.php:1013 msgid "User Agent" msgstr "" -#: export.php:1232 +#: export.php:1240 msgid "The PHP readfile function is not available, please contact the web host." msgstr "" @@ -9398,7 +9398,7 @@ msgid "Forms per page" msgstr "" #. translators: 1: The table name 2: the URL with further details -#: gravityforms.php:5510 +#: gravityforms.php:5511 msgid "An outdated add-on or custom code is attempting to access the %1$s table which is not valid in this version of Gravity Forms. Update your add-ons and custom code to prevent loss of form data. Further details: %2$s" msgstr "" @@ -9723,7 +9723,7 @@ msgid "Confirmation saved successfully. %sBack to confirmations.%s" msgstr "" #: form_settings.php:1858 -#: common.php:4685 +#: common.php:4736 msgid "There was an issue saving this confirmation." msgstr "" @@ -9732,7 +9732,7 @@ msgid "Confirmation deleted." msgstr "" #: form_settings.php:1891 -#: common.php:4687 +#: common.php:4738 msgid "There was an issue deleting this confirmation." msgstr "" @@ -11542,7 +11542,7 @@ msgid "Enable Password Input" msgstr "" #: form_detail.php:2320 -#: common.php:5970 +#: common.php:6021 msgid "Visibility" msgstr "" @@ -11724,288 +11724,292 @@ msgstr "" msgid "Allowable form fields" msgstr "" -#: common.php:1590 +#: common.php:1584 msgid "Total:" msgstr "" -#: common.php:2042 +#: common.php:2036 msgid "Cannot send email because the TO address is invalid." msgstr "" -#: common.php:2049 +#: common.php:2043 msgid "Cannot send email because there is no SUBJECT and no MESSAGE." msgstr "" -#: common.php:2056 +#: common.php:2050 msgid "Cannot send email because the FROM address is invalid." msgstr "" -#: common.php:2792 +#: common.php:2786 msgid "Gravity Forms requires WordPress %s or greater. You must upgrade WordPress in order to use Gravity Forms" msgstr "" -#: common.php:2919 +#: common.php:2913 msgid "%s ago" msgstr "" -#: common.php:2921 -#: common.php:2924 +#: common.php:2915 +#: common.php:2918 msgid "%1$s at %2$s" msgstr "" -#: common.php:3423 +#: common.php:3417 msgid "Pricing fields are not editable" msgstr "" -#: common.php:4655 +#: common.php:4705 msgid "Select a format" msgstr "" -#: common.php:4656 +#: common.php:4706 msgid "5 of %d items shown. Edit field to view all" msgstr "" -#: common.php:4657 +#: common.php:4707 msgid "Enter a value" msgstr "" -#: common.php:4658 +#: common.php:4708 msgid "Untitled Form" msgstr "" -#: common.php:4659 +#: common.php:4709 msgid "We would love to hear from you! Please fill out this form and we will get in touch with you shortly." msgstr "" -#: common.php:4662 +#: common.php:4712 #: notification.php:466 msgid "Loading..." msgstr "" -#: common.php:4663 +#: common.php:4713 msgid "this field if" msgstr "" -#: common.php:4664 +#: common.php:4714 msgid "this section if" msgstr "" -#: common.php:4665 +#: common.php:4715 msgid "this page" msgstr "" -#: common.php:4666 +#: common.php:4716 msgid "this form button if" msgstr "" -#: common.php:4668 +#: common.php:4718 msgid "Hide" msgstr "" -#: common.php:4669 +#: common.php:4719 msgctxt "Conditional Logic" msgid "All" msgstr "" -#: common.php:4670 +#: common.php:4720 msgctxt "Conditional Logic" msgid "Any" msgstr "" -#: common.php:4671 +#: common.php:4721 msgid "of the following match:" msgstr "" -#: common.php:4680 +#: common.php:4729 +msgid "Empty (no choices selected)" +msgstr "" + +#: common.php:4731 msgid "Use this confirmation if" msgstr "" -#: common.php:4681 +#: common.php:4732 msgid "Send this notification if" msgstr "" -#: common.php:4683 +#: common.php:4734 msgid "Saving..." msgstr "" -#: common.php:4684 +#: common.php:4735 msgid "Are you sure you wish to cancel these changes?" msgstr "" -#: common.php:4686 +#: common.php:4737 msgid "Are you sure you wish to delete this confirmation?" msgstr "" -#: common.php:4688 +#: common.php:4739 msgid "There are unsaved changes to the current confirmation. Would you like to discard these changes?" msgstr "" -#: common.php:4689 +#: common.php:4740 msgid "Untitled Confirmation" msgstr "" -#: common.php:4691 +#: common.php:4742 msgid "Please select a page." msgstr "" -#: common.php:4692 +#: common.php:4743 msgid "Please enter a URL." msgstr "" -#: common.php:4693 +#: common.php:4744 msgid "Please enter a confirmation name." msgstr "" -#: common.php:4694 +#: common.php:4745 msgid "Warning! Deleting this field will also delete all entry data associated with it. 'Cancel' to stop. 'OK' to delete." msgstr "" -#: common.php:4696 +#: common.php:4747 msgid "Warning! This form contains conditional logic dependent upon this field. Deleting this field will deactivate those conditional logic rules and also delete all entry data associated with the field. 'OK' to delete, 'Cancel' to abort." msgstr "" -#: common.php:4697 +#: common.php:4748 msgid "This form contains conditional logic dependent upon this choice. Are you sure you want to delete this choice? 'OK' to delete, 'Cancel' to abort." msgstr "" -#: common.php:4698 +#: common.php:4749 msgid "This form contains conditional logic dependent upon this choice. Are you sure you want to modify this choice? 'OK' to delete, 'Cancel' to abort." msgstr "" -#: common.php:4699 +#: common.php:4750 msgid "This form contains conditional logic dependent upon this field. Are you sure you want to mark this field as Admin Only? 'OK' to confirm, 'Cancel' to abort." msgstr "" -#: common.php:4701 +#: common.php:4752 msgid "Merge Tags" msgstr "" -#: common.php:4701 +#: common.php:4752 msgid "Merge tags allow you to dynamically populate submitted field values in your form content wherever this merge tag icon is present." msgstr "" -#: common.php:4710 +#: common.php:4761 msgid "Add a condition" msgstr "" -#: common.php:4711 +#: common.php:4762 msgid "Remove a condition" msgstr "" -#: common.php:4712 +#: common.php:4763 msgid "Include results if {0} match:" msgstr "" -#: common.php:4714 +#: common.php:4765 msgid "Custom Choices" msgstr "" -#: common.php:4715 +#: common.php:4766 msgid "Predefined Choices" msgstr "" -#: common.php:5006 +#: common.php:5057 msgid "Any form field" msgstr "" -#: common.php:5123 +#: common.php:5174 msgid "Starred" msgstr "" -#: common.php:5141 +#: common.php:5192 msgid "Source URL" msgstr "" -#: common.php:5160 +#: common.php:5211 msgid "Transaction ID" msgstr "" -#: common.php:5180 +#: common.php:5231 msgid "Authorized" msgstr "" -#: common.php:5181 +#: common.php:5232 msgid "Paid" msgstr "" -#: common.php:5182 +#: common.php:5233 msgid "Processing" msgstr "" -#: common.php:5183 +#: common.php:5234 msgid "Failed" msgstr "" -#: common.php:5185 -#: common.php:5334 +#: common.php:5236 +#: common.php:5385 msgid "Cancelled" msgstr "" -#: common.php:5187 +#: common.php:5238 msgid "Refunded" msgstr "" -#: common.php:5188 +#: common.php:5239 msgid "Voided" msgstr "" -#: common.php:5324 +#: common.php:5375 msgid "This type of file is not allowed. Must be one of the following: " msgstr "" -#: common.php:5325 +#: common.php:5376 msgid "Delete this file" msgstr "" -#: common.php:5326 +#: common.php:5377 msgid "in progress" msgstr "" -#: common.php:5327 +#: common.php:5378 msgid "File exceeds size limit" msgstr "" -#: common.php:5328 +#: common.php:5379 msgid "This type of file is not allowed." msgstr "" -#: common.php:5329 +#: common.php:5380 msgid "Maximum number of files reached" msgstr "" -#: common.php:5330 +#: common.php:5381 msgid "There was a problem while saving the file on the server" msgstr "" -#: common.php:5331 +#: common.php:5382 msgid "Please wait for the uploading to complete" msgstr "" -#: common.php:5333 +#: common.php:5384 msgid "Cancel this upload" msgstr "" -#: common.php:5927 +#: common.php:5978 msgid "Visible" msgstr "" -#: common.php:5929 +#: common.php:5980 msgid "Default option. The field is visible when viewing the form." msgstr "" -#: common.php:5934 +#: common.php:5985 msgid "The field is hidden when viewing the form. Useful when you require the functionality of this field but do not want the user to be able to see this field." msgstr "" -#: common.php:5937 +#: common.php:5988 msgid "Administrative" msgstr "" -#: common.php:5939 +#: common.php:5990 msgid "The field is only visible when administering submitted entries. The field is not visible or functional when viewing the form." msgstr "" -#: common.php:5970 +#: common.php:6021 msgid "Select the visibility for this field." msgstr "" @@ -12230,6 +12234,10 @@ msgstr "" msgid "The selected form has been deleted or trashed. Please select a new form." msgstr "" -#: js/blocks.js:401 +#: js/blocks.js:338 +msgid "You must have at least one form to use the block." +msgstr "" + +#: js/blocks.js:410 msgid "Select a form below to add it to your page." msgstr "" diff --git a/print-entry.php b/print-entry.php index 819499d..07c5c5f 100644 --- a/print-entry.php +++ b/print-entry.php @@ -32,14 +32,31 @@ function gform_default_entry_content( $form, $entry, $entry_ids ) { $page_break = rgget( 'page_break' ) ? 'print-page-break' : false; - // Separate each entry inside a form element so radio buttons don't get treated as a single group across multiple entries. + /** + * @todo Review use of the form tag. The entry detail markup does not use inputs so they may no longer be needed. + * + * Previous comment: Separate each entry inside a form element so radio buttons don't get treated as a single group across multiple entries. + */ echo '
    '; GFEntryDetail::lead_detail_grid( $form, $entry ); echo '
    '; - if ( rgget( 'notes' ) ) { + $print_entry_notes = rgget( 'notes' ) === '1'; + + /** + * Allows printing of entry notes to be overridden. + * + * @since 2.4.17 + * + * @param bool $print_entry_notes Indicates if printing of notes was enabled via the entry list or detail pages. + * @param array $entry The entry currently being printed. + * @param array $form The form which created the current entry. + */ + $print_entry_notes = apply_filters( 'gform_print_entry_notes', $print_entry_notes, $entry, $form ); + + if ( $print_entry_notes ) { $notes = GFFormsModel::get_lead_notes( $entry['id'] ); if ( ! empty( $notes ) ) { GFEntryDetail::notes_grid( $notes, false ); diff --git a/tooltips.php b/tooltips.php index 54406b8..7540ea8 100644 --- a/tooltips.php +++ b/tooltips.php @@ -109,7 +109,7 @@ function enqueue_tooltip_scripts() { 'form_field_recaptcha_language' => '
    ' . __( 'reCAPTCHA Language', 'gravityforms' ) . '
    ' . __( 'Select the language you would like to use for the reCAPTCHA display from the available options.', 'gravityforms' ), 'form_field_css_class' => '
    ' . __( 'CSS Class Name', 'gravityforms' ) . '
    ' . __( 'Enter the CSS class name you would like to use in order to override the default styles for this field.', 'gravityforms' ), 'form_field_visibility' => GFCommon::get_visibility_tooltip(), - 'form_field_choices' => '
    ' . __( 'Field Choices', 'gravityforms' ) . '
    ' . __( 'Add Choices to this field. You can mark each choice as checked by default by using the radio/checkbox fields on the left.', 'gravityforms' ), + 'form_field_choices' => '
    ' . __( 'Field Choices', 'gravityforms' ) . '
    ' . __( 'Define the choices for this field. If the field type supports it you will also be able to select the default choice(s) using a radio or checkbox located to the left of the choice.', 'gravityforms' ), 'form_field_choice_values' => '
    ' . __( 'Enable Choice Values', 'gravityforms' ) . '
    ' . __( 'Check this option to specify a value for each choice. Choice values are not displayed to the user viewing the form, but are accessible to administrators when viewing the entry.', 'gravityforms' ), 'form_field_conditional_logic' => '
    ' . __( 'Conditional Logic', 'gravityforms' ) . '
    ' . __( 'Create rules to dynamically display or hide this field based on values from another field.', 'gravityforms' ), /* Translators: %s: Link to Chosen jQuery framework. */