Version Description
- Release date: 2015-11-18
- Changed Installer version to 1.7.2
- Fixed usability issue with select2.
Download this release
Release Info
Developer | iworks |
Plugin | Toolset Types – Custom Post Types, Custom Fields and Taxonomies |
Version | 1.8.10 |
Comparing to | |
See all releases |
Code changes from version 1.8.9 to 1.8.10
- embedded/bootstrap.php +2 -2
- embedded/includes/post-relationship.php +10 -2
- embedded/plugin.php +1 -1
- embedded/readme.txt +1 -1
- embedded/resources/js/post-relationship.js +4 -3
- embedded/toolset/onthego-resources/loader.php +1 -1
- embedded/toolset/onthego-resources/onthego-styles/onthego-styles-helper.css +3075 -0
- embedded/toolset/onthego-resources/onthego-styles/onthego-styles-helper.scss +4 -0
- embedded/toolset/onthego-resources/onthegosystems-icons/.fontcustom-manifest.json +15 -7
- embedded/toolset/onthego-resources/onthegosystems-icons/css/_onthegosystems-icons.scss +10 -6
- embedded/toolset/onthego-resources/onthegosystems-icons/css/onthegosystems-icons.css +10 -6
- embedded/toolset/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons-preview.html +37 -7
- embedded/toolset/toolset-common/visual-editor/editor-addon-generic.class.php +0 -1
- embedded/toolset/toolset-common/visual-editor/views-editor-addon.class.php +1 -1
- plus/installer/changelog.txt +6 -0
- plus/installer/installer.php +1 -1
- plus/installer/loader.php +40 -2
- readme.txt +7 -1
- wpcf.php +2 -2
embedded/bootstrap.php
CHANGED
@@ -66,7 +66,7 @@ add_action( 'init', 'wpcf_embedded_init', TYPES_INIT_PRIORITY );
|
|
66 |
* register_post_type & register_taxonomy - must be with default pririty to
|
67 |
* handle defult taxonomies
|
68 |
*/
|
69 |
-
add_action(
|
70 |
|
71 |
/*
|
72 |
*
|
@@ -156,7 +156,7 @@ function wpcf_embedded_init() {
|
|
156 |
// Define necessary constants if plugin is not present
|
157 |
// This ones are skipped if used as embedded code!
|
158 |
if ( !defined( 'WPCF_VERSION' ) ) {
|
159 |
-
define( 'WPCF_VERSION', '1.8.
|
160 |
define( 'WPCF_META_PREFIX', 'wpcf-' );
|
161 |
}
|
162 |
|
66 |
* register_post_type & register_taxonomy - must be with default pririty to
|
67 |
* handle defult taxonomies
|
68 |
*/
|
69 |
+
add_action('init', 'wpcf_init_custom_types_taxonomies');
|
70 |
|
71 |
/*
|
72 |
*
|
156 |
// Define necessary constants if plugin is not present
|
157 |
// This ones are skipped if used as embedded code!
|
158 |
if ( !defined( 'WPCF_VERSION' ) ) {
|
159 |
+
define( 'WPCF_VERSION', '1.8.10' );
|
160 |
define( 'WPCF_META_PREFIX', 'wpcf-' );
|
161 |
}
|
162 |
|
embedded/includes/post-relationship.php
CHANGED
@@ -577,15 +577,23 @@ function wpcf_pr_admin_wpcf_relationship_search()
|
|
577 |
'post_status' => apply_filters( 'wpcf_pr_belongs_post_status', array( 'publish', 'private' ) ),
|
578 |
'post_type' => $_REQUEST['post_type'],
|
579 |
'suppress_filters' => 1,
|
580 |
-
's' => $_REQUEST['s'],
|
581 |
);
|
582 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
583 |
$the_query = new WP_Query( $args );
|
584 |
|
585 |
$posts = array(
|
586 |
'items' => array(),
|
587 |
'total_count' => $the_query->found_posts,
|
588 |
'incomplete_results' => $the_query->found_posts > $posts_per_page,
|
|
|
589 |
);
|
590 |
|
591 |
if ( $the_query->have_posts() ) {
|
@@ -621,7 +629,7 @@ function wpcf_pr_admin_wpcf_relationship_search()
|
|
621 |
|
622 |
// Reset numerical keys
|
623 |
$posts['items'] = array_values( $posts['items'] );
|
624 |
-
$posts['incomplete_results'] = $posts['total_count'] > $
|
625 |
}
|
626 |
|
627 |
echo json_encode($posts);
|
577 |
'post_status' => apply_filters( 'wpcf_pr_belongs_post_status', array( 'publish', 'private' ) ),
|
578 |
'post_type' => $_REQUEST['post_type'],
|
579 |
'suppress_filters' => 1,
|
|
|
580 |
);
|
581 |
|
582 |
+
if ( isset( $_REQUEST['s'] ) ) {
|
583 |
+
$args['s'] = $_REQUEST['s'];
|
584 |
+
}
|
585 |
+
|
586 |
+
if ( isset( $_REQUEST['page'] ) && preg_match('/^\d+$/', $_REQUEST['page']) ) {
|
587 |
+
$args['paged'] = intval($_REQUEST['page']);
|
588 |
+
}
|
589 |
+
|
590 |
$the_query = new WP_Query( $args );
|
591 |
|
592 |
$posts = array(
|
593 |
'items' => array(),
|
594 |
'total_count' => $the_query->found_posts,
|
595 |
'incomplete_results' => $the_query->found_posts > $posts_per_page,
|
596 |
+
'posts_per_page' => $posts_per_page,
|
597 |
);
|
598 |
|
599 |
if ( $the_query->have_posts() ) {
|
629 |
|
630 |
// Reset numerical keys
|
631 |
$posts['items'] = array_values( $posts['items'] );
|
632 |
+
$posts['incomplete_results'] = $posts['total_count'] > $posts_per_page;
|
633 |
}
|
634 |
|
635 |
echo json_encode($posts);
|
embedded/plugin.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Description: Define custom post types, custom taxonomies and custom fields.
|
6 |
Author: OnTheGoSystems
|
7 |
Author URI: http://www.onthegosystems.com
|
8 |
-
Version: 1.8.
|
9 |
*/
|
10 |
/**
|
11 |
*
|
5 |
Description: Define custom post types, custom taxonomies and custom fields.
|
6 |
Author: OnTheGoSystems
|
7 |
Author URI: http://www.onthegosystems.com
|
8 |
+
Version: 1.8.10
|
9 |
*/
|
10 |
/**
|
11 |
*
|
embedded/readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: CMS, custom field, custom fields, custom post type, custom post types, fie
|
|
5 |
License: GPLv2
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.3,1
|
8 |
-
Stable tag: 1.8.
|
9 |
|
10 |
The Embedded version lets you create custom types, taxonomies and fields for your theme or plugin, without requiring any plugin.
|
11 |
|
5 |
License: GPLv2
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.3,1
|
8 |
+
Stable tag: 1.8.10
|
9 |
|
10 |
The Embedded version lets you create custom types, taxonomies and fields for your theme or plugin, without requiring any plugin.
|
11 |
|
embedded/resources/js/post-relationship.js
CHANGED
@@ -936,12 +936,12 @@ function wpcfBindSelect2($) {
|
|
936 |
},
|
937 |
allowClear: true,
|
938 |
placeholder: $(this).data('placeholder'),
|
939 |
-
minimumInputLength:
|
940 |
formatInputTooShort: $(this).data('input-too-short'),
|
941 |
ajax: {
|
942 |
url: ajaxurl,
|
943 |
dataType: 'json',
|
944 |
-
quietMillis:
|
945 |
data: function (term, page) {
|
946 |
return {
|
947 |
nounce: $(this).data('nounce'),
|
@@ -953,7 +953,8 @@ function wpcfBindSelect2($) {
|
|
953 |
};
|
954 |
},
|
955 |
results: function (data, page) {
|
956 |
-
|
|
|
957 |
},
|
958 |
cache: true
|
959 |
},
|
936 |
},
|
937 |
allowClear: true,
|
938 |
placeholder: $(this).data('placeholder'),
|
939 |
+
minimumInputLength: 0,
|
940 |
formatInputTooShort: $(this).data('input-too-short'),
|
941 |
ajax: {
|
942 |
url: ajaxurl,
|
943 |
dataType: 'json',
|
944 |
+
quietMillis: 250,
|
945 |
data: function (term, page) {
|
946 |
return {
|
947 |
nounce: $(this).data('nounce'),
|
953 |
};
|
954 |
},
|
955 |
results: function (data, page) {
|
956 |
+
var more = (page * data.posts_per_page) < data.total_count;
|
957 |
+
return { results: data.items, more: more };
|
958 |
},
|
959 |
cache: true
|
960 |
},
|
embedded/toolset/onthego-resources/loader.php
CHANGED
@@ -17,7 +17,7 @@
|
|
17 |
// The version number will then be used to work out which plugin has the latest
|
18 |
// version of the code.
|
19 |
|
20 |
-
$onthegosystems_branding_version =
|
21 |
|
22 |
// ----------------------------------------------------------------------//
|
23 |
// WARNING * WARNING *WARNING
|
17 |
// The version number will then be used to work out which plugin has the latest
|
18 |
// version of the code.
|
19 |
|
20 |
+
$onthegosystems_branding_version = 6;
|
21 |
|
22 |
// ----------------------------------------------------------------------//
|
23 |
// WARNING * WARNING *WARNING
|
embedded/toolset/onthego-resources/onthego-styles/onthego-styles-helper.css
CHANGED
@@ -1424,6 +1424,3081 @@
|
|
1424 |
.from-bot-96 {
|
1425 |
margin-bottom: 96px !important; }
|
1426 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1427 |
/* RESET MARGIN AND PADDING FOR ALL OUR ICONS ONLY */
|
1428 |
[class^="icon-access"] {
|
1429 |
margin: 0;
|
1424 |
.from-bot-96 {
|
1425 |
margin-bottom: 96px !important; }
|
1426 |
|
1427 |
+
.ont-manual-width-0 {
|
1428 |
+
width: 0px !important; }
|
1429 |
+
|
1430 |
+
.ont-manual-width-1 {
|
1431 |
+
width: 1px !important; }
|
1432 |
+
|
1433 |
+
.ont-manual-width-2 {
|
1434 |
+
width: 2px !important; }
|
1435 |
+
|
1436 |
+
.ont-manual-width-3 {
|
1437 |
+
width: 3px !important; }
|
1438 |
+
|
1439 |
+
.ont-manual-width-4 {
|
1440 |
+
width: 4px !important; }
|
1441 |
+
|
1442 |
+
.ont-manual-width-5 {
|
1443 |
+
width: 5px !important; }
|
1444 |
+
|
1445 |
+
.ont-manual-width-6 {
|
1446 |
+
width: 6px !important; }
|
1447 |
+
|
1448 |
+
.ont-manual-width-7 {
|
1449 |
+
width: 7px !important; }
|
1450 |
+
|
1451 |
+
.ont-manual-width-8 {
|
1452 |
+
width: 8px !important; }
|
1453 |
+
|
1454 |
+
.ont-manual-width-9 {
|
1455 |
+
width: 9px !important; }
|
1456 |
+
|
1457 |
+
.ont-manual-width-10 {
|
1458 |
+
width: 10px !important; }
|
1459 |
+
|
1460 |
+
.ont-manual-width-11 {
|
1461 |
+
width: 11px !important; }
|
1462 |
+
|
1463 |
+
.ont-manual-width-12 {
|
1464 |
+
width: 12px !important; }
|
1465 |
+
|
1466 |
+
.ont-manual-width-13 {
|
1467 |
+
width: 13px !important; }
|
1468 |
+
|
1469 |
+
.ont-manual-width-14 {
|
1470 |
+
width: 14px !important; }
|
1471 |
+
|
1472 |
+
.ont-manual-width-15 {
|
1473 |
+
width: 15px !important; }
|
1474 |
+
|
1475 |
+
.ont-manual-width-16 {
|
1476 |
+
width: 16px !important; }
|
1477 |
+
|
1478 |
+
.ont-manual-width-17 {
|
1479 |
+
width: 17px !important; }
|
1480 |
+
|
1481 |
+
.ont-manual-width-18 {
|
1482 |
+
width: 18px !important; }
|
1483 |
+
|
1484 |
+
.ont-manual-width-19 {
|
1485 |
+
width: 19px !important; }
|
1486 |
+
|
1487 |
+
.ont-manual-width-20 {
|
1488 |
+
width: 20px !important; }
|
1489 |
+
|
1490 |
+
.ont-manual-width-21 {
|
1491 |
+
width: 21px !important; }
|
1492 |
+
|
1493 |
+
.ont-manual-width-22 {
|
1494 |
+
width: 22px !important; }
|
1495 |
+
|
1496 |
+
.ont-manual-width-23 {
|
1497 |
+
width: 23px !important; }
|
1498 |
+
|
1499 |
+
.ont-manual-width-24 {
|
1500 |
+
width: 24px !important; }
|
1501 |
+
|
1502 |
+
.ont-manual-width-25 {
|
1503 |
+
width: 25px !important; }
|
1504 |
+
|
1505 |
+
.ont-manual-width-26 {
|
1506 |
+
width: 26px !important; }
|
1507 |
+
|
1508 |
+
.ont-manual-width-27 {
|
1509 |
+
width: 27px !important; }
|
1510 |
+
|
1511 |
+
.ont-manual-width-28 {
|
1512 |
+
width: 28px !important; }
|
1513 |
+
|
1514 |
+
.ont-manual-width-29 {
|
1515 |
+
width: 29px !important; }
|
1516 |
+
|
1517 |
+
.ont-manual-width-30 {
|
1518 |
+
width: 30px !important; }
|
1519 |
+
|
1520 |
+
.ont-manual-width-31 {
|
1521 |
+
width: 31px !important; }
|
1522 |
+
|
1523 |
+
.ont-manual-width-32 {
|
1524 |
+
width: 32px !important; }
|
1525 |
+
|
1526 |
+
.ont-manual-width-33 {
|
1527 |
+
width: 33px !important; }
|
1528 |
+
|
1529 |
+
.ont-manual-width-34 {
|
1530 |
+
width: 34px !important; }
|
1531 |
+
|
1532 |
+
.ont-manual-width-35 {
|
1533 |
+
width: 35px !important; }
|
1534 |
+
|
1535 |
+
.ont-manual-width-36 {
|
1536 |
+
width: 36px !important; }
|
1537 |
+
|
1538 |
+
.ont-manual-width-37 {
|
1539 |
+
width: 37px !important; }
|
1540 |
+
|
1541 |
+
.ont-manual-width-38 {
|
1542 |
+
width: 38px !important; }
|
1543 |
+
|
1544 |
+
.ont-manual-width-39 {
|
1545 |
+
width: 39px !important; }
|
1546 |
+
|
1547 |
+
.ont-manual-width-40 {
|
1548 |
+
width: 40px !important; }
|
1549 |
+
|
1550 |
+
.ont-manual-width-41 {
|
1551 |
+
width: 41px !important; }
|
1552 |
+
|
1553 |
+
.ont-manual-width-42 {
|
1554 |
+
width: 42px !important; }
|
1555 |
+
|
1556 |
+
.ont-manual-width-43 {
|
1557 |
+
width: 43px !important; }
|
1558 |
+
|
1559 |
+
.ont-manual-width-44 {
|
1560 |
+
width: 44px !important; }
|
1561 |
+
|
1562 |
+
.ont-manual-width-45 {
|
1563 |
+
width: 45px !important; }
|
1564 |
+
|
1565 |
+
.ont-manual-width-46 {
|
1566 |
+
width: 46px !important; }
|
1567 |
+
|
1568 |
+
.ont-manual-width-47 {
|
1569 |
+
width: 47px !important; }
|
1570 |
+
|
1571 |
+
.ont-manual-width-48 {
|
1572 |
+
width: 48px !important; }
|
1573 |
+
|
1574 |
+
.ont-manual-width-49 {
|
1575 |
+
width: 49px !important; }
|
1576 |
+
|
1577 |
+
.ont-manual-width-50 {
|
1578 |
+
width: 50px !important; }
|
1579 |
+
|
1580 |
+
.ont-manual-width-51 {
|
1581 |
+
width: 51px !important; }
|
1582 |
+
|
1583 |
+
.ont-manual-width-52 {
|
1584 |
+
width: 52px !important; }
|
1585 |
+
|
1586 |
+
.ont-manual-width-53 {
|
1587 |
+
width: 53px !important; }
|
1588 |
+
|
1589 |
+
.ont-manual-width-54 {
|
1590 |
+
width: 54px !important; }
|
1591 |
+
|
1592 |
+
.ont-manual-width-55 {
|
1593 |
+
width: 55px !important; }
|
1594 |
+
|
1595 |
+
.ont-manual-width-56 {
|
1596 |
+
width: 56px !important; }
|
1597 |
+
|
1598 |
+
.ont-manual-width-57 {
|
1599 |
+
width: 57px !important; }
|
1600 |
+
|
1601 |
+
.ont-manual-width-58 {
|
1602 |
+
width: 58px !important; }
|
1603 |
+
|
1604 |
+
.ont-manual-width-59 {
|
1605 |
+
width: 59px !important; }
|
1606 |
+
|
1607 |
+
.ont-manual-width-60 {
|
1608 |
+
width: 60px !important; }
|
1609 |
+
|
1610 |
+
.ont-manual-width-61 {
|
1611 |
+
width: 61px !important; }
|
1612 |
+
|
1613 |
+
.ont-manual-width-62 {
|
1614 |
+
width: 62px !important; }
|
1615 |
+
|
1616 |
+
.ont-manual-width-63 {
|
1617 |
+
width: 63px !important; }
|
1618 |
+
|
1619 |
+
.ont-manual-width-64 {
|
1620 |
+
width: 64px !important; }
|
1621 |
+
|
1622 |
+
.ont-manual-width-65 {
|
1623 |
+
width: 65px !important; }
|
1624 |
+
|
1625 |
+
.ont-manual-width-66 {
|
1626 |
+
width: 66px !important; }
|
1627 |
+
|
1628 |
+
.ont-manual-width-67 {
|
1629 |
+
width: 67px !important; }
|
1630 |
+
|
1631 |
+
.ont-manual-width-68 {
|
1632 |
+
width: 68px !important; }
|
1633 |
+
|
1634 |
+
.ont-manual-width-69 {
|
1635 |
+
width: 69px !important; }
|
1636 |
+
|
1637 |
+
.ont-manual-width-70 {
|
1638 |
+
width: 70px !important; }
|
1639 |
+
|
1640 |
+
.ont-manual-width-71 {
|
1641 |
+
width: 71px !important; }
|
1642 |
+
|
1643 |
+
.ont-manual-width-72 {
|
1644 |
+
width: 72px !important; }
|
1645 |
+
|
1646 |
+
.ont-manual-width-73 {
|
1647 |
+
width: 73px !important; }
|
1648 |
+
|
1649 |
+
.ont-manual-width-74 {
|
1650 |
+
width: 74px !important; }
|
1651 |
+
|
1652 |
+
.ont-manual-width-75 {
|
1653 |
+
width: 75px !important; }
|
1654 |
+
|
1655 |
+
.ont-manual-width-76 {
|
1656 |
+
width: 76px !important; }
|
1657 |
+
|
1658 |
+
.ont-manual-width-77 {
|
1659 |
+
width: 77px !important; }
|
1660 |
+
|
1661 |
+
.ont-manual-width-78 {
|
1662 |
+
width: 78px !important; }
|
1663 |
+
|
1664 |
+
.ont-manual-width-79 {
|
1665 |
+
width: 79px !important; }
|
1666 |
+
|
1667 |
+
.ont-manual-width-80 {
|
1668 |
+
width: 80px !important; }
|
1669 |
+
|
1670 |
+
.ont-manual-width-81 {
|
1671 |
+
width: 81px !important; }
|
1672 |
+
|
1673 |
+
.ont-manual-width-82 {
|
1674 |
+
width: 82px !important; }
|
1675 |
+
|
1676 |
+
.ont-manual-width-83 {
|
1677 |
+
width: 83px !important; }
|
1678 |
+
|
1679 |
+
.ont-manual-width-84 {
|
1680 |
+
width: 84px !important; }
|
1681 |
+
|
1682 |
+
.ont-manual-width-85 {
|
1683 |
+
width: 85px !important; }
|
1684 |
+
|
1685 |
+
.ont-manual-width-86 {
|
1686 |
+
width: 86px !important; }
|
1687 |
+
|
1688 |
+
.ont-manual-width-87 {
|
1689 |
+
width: 87px !important; }
|
1690 |
+
|
1691 |
+
.ont-manual-width-88 {
|
1692 |
+
width: 88px !important; }
|
1693 |
+
|
1694 |
+
.ont-manual-width-89 {
|
1695 |
+
width: 89px !important; }
|
1696 |
+
|
1697 |
+
.ont-manual-width-90 {
|
1698 |
+
width: 90px !important; }
|
1699 |
+
|
1700 |
+
.ont-manual-width-91 {
|
1701 |
+
width: 91px !important; }
|
1702 |
+
|
1703 |
+
.ont-manual-width-92 {
|
1704 |
+
width: 92px !important; }
|
1705 |
+
|
1706 |
+
.ont-manual-width-93 {
|
1707 |
+
width: 93px !important; }
|
1708 |
+
|
1709 |
+
.ont-manual-width-94 {
|
1710 |
+
width: 94px !important; }
|
1711 |
+
|
1712 |
+
.ont-manual-width-95 {
|
1713 |
+
width: 95px !important; }
|
1714 |
+
|
1715 |
+
.ont-manual-width-96 {
|
1716 |
+
width: 96px !important; }
|
1717 |
+
|
1718 |
+
.ont-manual-width-97 {
|
1719 |
+
width: 97px !important; }
|
1720 |
+
|
1721 |
+
.ont-manual-width-98 {
|
1722 |
+
width: 98px !important; }
|
1723 |
+
|
1724 |
+
.ont-manual-width-99 {
|
1725 |
+
width: 99px !important; }
|
1726 |
+
|
1727 |
+
.ont-manual-width-100 {
|
1728 |
+
width: 100px !important; }
|
1729 |
+
|
1730 |
+
.ont-manual-width-101 {
|
1731 |
+
width: 101px !important; }
|
1732 |
+
|
1733 |
+
.ont-manual-width-102 {
|
1734 |
+
width: 102px !important; }
|
1735 |
+
|
1736 |
+
.ont-manual-width-103 {
|
1737 |
+
width: 103px !important; }
|
1738 |
+
|
1739 |
+
.ont-manual-width-104 {
|
1740 |
+
width: 104px !important; }
|
1741 |
+
|
1742 |
+
.ont-manual-width-105 {
|
1743 |
+
width: 105px !important; }
|
1744 |
+
|
1745 |
+
.ont-manual-width-106 {
|
1746 |
+
width: 106px !important; }
|
1747 |
+
|
1748 |
+
.ont-manual-width-107 {
|
1749 |
+
width: 107px !important; }
|
1750 |
+
|
1751 |
+
.ont-manual-width-108 {
|
1752 |
+
width: 108px !important; }
|
1753 |
+
|
1754 |
+
.ont-manual-width-109 {
|
1755 |
+
width: 109px !important; }
|
1756 |
+
|
1757 |
+
.ont-manual-width-110 {
|
1758 |
+
width: 110px !important; }
|
1759 |
+
|
1760 |
+
.ont-manual-width-111 {
|
1761 |
+
width: 111px !important; }
|
1762 |
+
|
1763 |
+
.ont-manual-width-112 {
|
1764 |
+
width: 112px !important; }
|
1765 |
+
|
1766 |
+
.ont-manual-width-113 {
|
1767 |
+
width: 113px !important; }
|
1768 |
+
|
1769 |
+
.ont-manual-width-114 {
|
1770 |
+
width: 114px !important; }
|
1771 |
+
|
1772 |
+
.ont-manual-width-115 {
|
1773 |
+
width: 115px !important; }
|
1774 |
+
|
1775 |
+
.ont-manual-width-116 {
|
1776 |
+
width: 116px !important; }
|
1777 |
+
|
1778 |
+
.ont-manual-width-117 {
|
1779 |
+
width: 117px !important; }
|
1780 |
+
|
1781 |
+
.ont-manual-width-118 {
|
1782 |
+
width: 118px !important; }
|
1783 |
+
|
1784 |
+
.ont-manual-width-119 {
|
1785 |
+
width: 119px !important; }
|
1786 |
+
|
1787 |
+
.ont-manual-width-120 {
|
1788 |
+
width: 120px !important; }
|
1789 |
+
|
1790 |
+
.ont-manual-width-121 {
|
1791 |
+
width: 121px !important; }
|
1792 |
+
|
1793 |
+
.ont-manual-width-122 {
|
1794 |
+
width: 122px !important; }
|
1795 |
+
|
1796 |
+
.ont-manual-width-123 {
|
1797 |
+
width: 123px !important; }
|
1798 |
+
|
1799 |
+
.ont-manual-width-124 {
|
1800 |
+
width: 124px !important; }
|
1801 |
+
|
1802 |
+
.ont-manual-width-125 {
|
1803 |
+
width: 125px !important; }
|
1804 |
+
|
1805 |
+
.ont-manual-width-126 {
|
1806 |
+
width: 126px !important; }
|
1807 |
+
|
1808 |
+
.ont-manual-width-127 {
|
1809 |
+
width: 127px !important; }
|
1810 |
+
|
1811 |
+
.ont-manual-width-128 {
|
1812 |
+
width: 128px !important; }
|
1813 |
+
|
1814 |
+
.ont-manual-width-129 {
|
1815 |
+
width: 129px !important; }
|
1816 |
+
|
1817 |
+
.ont-manual-width-130 {
|
1818 |
+
width: 130px !important; }
|
1819 |
+
|
1820 |
+
.ont-manual-width-131 {
|
1821 |
+
width: 131px !important; }
|
1822 |
+
|
1823 |
+
.ont-manual-width-132 {
|
1824 |
+
width: 132px !important; }
|
1825 |
+
|
1826 |
+
.ont-manual-width-133 {
|
1827 |
+
width: 133px !important; }
|
1828 |
+
|
1829 |
+
.ont-manual-width-134 {
|
1830 |
+
width: 134px !important; }
|
1831 |
+
|
1832 |
+
.ont-manual-width-135 {
|
1833 |
+
width: 135px !important; }
|
1834 |
+
|
1835 |
+
.ont-manual-width-136 {
|
1836 |
+
width: 136px !important; }
|
1837 |
+
|
1838 |
+
.ont-manual-width-137 {
|
1839 |
+
width: 137px !important; }
|
1840 |
+
|
1841 |
+
.ont-manual-width-138 {
|
1842 |
+
width: 138px !important; }
|
1843 |
+
|
1844 |
+
.ont-manual-width-139 {
|
1845 |
+
width: 139px !important; }
|
1846 |
+
|
1847 |
+
.ont-manual-width-140 {
|
1848 |
+
width: 140px !important; }
|
1849 |
+
|
1850 |
+
.ont-manual-width-141 {
|
1851 |
+
width: 141px !important; }
|
1852 |
+
|
1853 |
+
.ont-manual-width-142 {
|
1854 |
+
width: 142px !important; }
|
1855 |
+
|
1856 |
+
.ont-manual-width-143 {
|
1857 |
+
width: 143px !important; }
|
1858 |
+
|
1859 |
+
.ont-manual-width-144 {
|
1860 |
+
width: 144px !important; }
|
1861 |
+
|
1862 |
+
.ont-manual-width-145 {
|
1863 |
+
width: 145px !important; }
|
1864 |
+
|
1865 |
+
.ont-manual-width-146 {
|
1866 |
+
width: 146px !important; }
|
1867 |
+
|
1868 |
+
.ont-manual-width-147 {
|
1869 |
+
width: 147px !important; }
|
1870 |
+
|
1871 |
+
.ont-manual-width-148 {
|
1872 |
+
width: 148px !important; }
|
1873 |
+
|
1874 |
+
.ont-manual-width-149 {
|
1875 |
+
width: 149px !important; }
|
1876 |
+
|
1877 |
+
.ont-manual-width-150 {
|
1878 |
+
width: 150px !important; }
|
1879 |
+
|
1880 |
+
.ont-manual-width-151 {
|
1881 |
+
width: 151px !important; }
|
1882 |
+
|
1883 |
+
.ont-manual-width-152 {
|
1884 |
+
width: 152px !important; }
|
1885 |
+
|
1886 |
+
.ont-manual-width-153 {
|
1887 |
+
width: 153px !important; }
|
1888 |
+
|
1889 |
+
.ont-manual-width-154 {
|
1890 |
+
width: 154px !important; }
|
1891 |
+
|
1892 |
+
.ont-manual-width-155 {
|
1893 |
+
width: 155px !important; }
|
1894 |
+
|
1895 |
+
.ont-manual-width-156 {
|
1896 |
+
width: 156px !important; }
|
1897 |
+
|
1898 |
+
.ont-manual-width-157 {
|
1899 |
+
width: 157px !important; }
|
1900 |
+
|
1901 |
+
.ont-manual-width-158 {
|
1902 |
+
width: 158px !important; }
|
1903 |
+
|
1904 |
+
.ont-manual-width-159 {
|
1905 |
+
width: 159px !important; }
|
1906 |
+
|
1907 |
+
.ont-manual-width-160 {
|
1908 |
+
width: 160px !important; }
|
1909 |
+
|
1910 |
+
.ont-manual-width-161 {
|
1911 |
+
width: 161px !important; }
|
1912 |
+
|
1913 |
+
.ont-manual-width-162 {
|
1914 |
+
width: 162px !important; }
|
1915 |
+
|
1916 |
+
.ont-manual-width-163 {
|
1917 |
+
width: 163px !important; }
|
1918 |
+
|
1919 |
+
.ont-manual-width-164 {
|
1920 |
+
width: 164px !important; }
|
1921 |
+
|
1922 |
+
.ont-manual-width-165 {
|
1923 |
+
width: 165px !important; }
|
1924 |
+
|
1925 |
+
.ont-manual-width-166 {
|
1926 |
+
width: 166px !important; }
|
1927 |
+
|
1928 |
+
.ont-manual-width-167 {
|
1929 |
+
width: 167px !important; }
|
1930 |
+
|
1931 |
+
.ont-manual-width-168 {
|
1932 |
+
width: 168px !important; }
|
1933 |
+
|
1934 |
+
.ont-manual-width-169 {
|
1935 |
+
width: 169px !important; }
|
1936 |
+
|
1937 |
+
.ont-manual-width-170 {
|
1938 |
+
width: 170px !important; }
|
1939 |
+
|
1940 |
+
.ont-manual-width-171 {
|
1941 |
+
width: 171px !important; }
|
1942 |
+
|
1943 |
+
.ont-manual-width-172 {
|
1944 |
+
width: 172px !important; }
|
1945 |
+
|
1946 |
+
.ont-manual-width-173 {
|
1947 |
+
width: 173px !important; }
|
1948 |
+
|
1949 |
+
.ont-manual-width-174 {
|
1950 |
+
width: 174px !important; }
|
1951 |
+
|
1952 |
+
.ont-manual-width-175 {
|
1953 |
+
width: 175px !important; }
|
1954 |
+
|
1955 |
+
.ont-manual-width-176 {
|
1956 |
+
width: 176px !important; }
|
1957 |
+
|
1958 |
+
.ont-manual-width-177 {
|
1959 |
+
width: 177px !important; }
|
1960 |
+
|
1961 |
+
.ont-manual-width-178 {
|
1962 |
+
width: 178px !important; }
|
1963 |
+
|
1964 |
+
.ont-manual-width-179 {
|
1965 |
+
width: 179px !important; }
|
1966 |
+
|
1967 |
+
.ont-manual-width-180 {
|
1968 |
+
width: 180px !important; }
|
1969 |
+
|
1970 |
+
.ont-manual-width-181 {
|
1971 |
+
width: 181px !important; }
|
1972 |
+
|
1973 |
+
.ont-manual-width-182 {
|
1974 |
+
width: 182px !important; }
|
1975 |
+
|
1976 |
+
.ont-manual-width-183 {
|
1977 |
+
width: 183px !important; }
|
1978 |
+
|
1979 |
+
.ont-manual-width-184 {
|
1980 |
+
width: 184px !important; }
|
1981 |
+
|
1982 |
+
.ont-manual-width-185 {
|
1983 |
+
width: 185px !important; }
|
1984 |
+
|
1985 |
+
.ont-manual-width-186 {
|
1986 |
+
width: 186px !important; }
|
1987 |
+
|
1988 |
+
.ont-manual-width-187 {
|
1989 |
+
width: 187px !important; }
|
1990 |
+
|
1991 |
+
.ont-manual-width-188 {
|
1992 |
+
width: 188px !important; }
|
1993 |
+
|
1994 |
+
.ont-manual-width-189 {
|
1995 |
+
width: 189px !important; }
|
1996 |
+
|
1997 |
+
.ont-manual-width-190 {
|
1998 |
+
width: 190px !important; }
|
1999 |
+
|
2000 |
+
.ont-manual-width-191 {
|
2001 |
+
width: 191px !important; }
|
2002 |
+
|
2003 |
+
.ont-manual-width-192 {
|
2004 |
+
width: 192px !important; }
|
2005 |
+
|
2006 |
+
.ont-manual-width-193 {
|
2007 |
+
width: 193px !important; }
|
2008 |
+
|
2009 |
+
.ont-manual-width-194 {
|
2010 |
+
width: 194px !important; }
|
2011 |
+
|
2012 |
+
.ont-manual-width-195 {
|
2013 |
+
width: 195px !important; }
|
2014 |
+
|
2015 |
+
.ont-manual-width-196 {
|
2016 |
+
width: 196px !important; }
|
2017 |
+
|
2018 |
+
.ont-manual-width-197 {
|
2019 |
+
width: 197px !important; }
|
2020 |
+
|
2021 |
+
.ont-manual-width-198 {
|
2022 |
+
width: 198px !important; }
|
2023 |
+
|
2024 |
+
.ont-manual-width-199 {
|
2025 |
+
width: 199px !important; }
|
2026 |
+
|
2027 |
+
.ont-manual-width-200 {
|
2028 |
+
width: 200px !important; }
|
2029 |
+
|
2030 |
+
.ont-manual-width-201 {
|
2031 |
+
width: 201px !important; }
|
2032 |
+
|
2033 |
+
.ont-manual-width-202 {
|
2034 |
+
width: 202px !important; }
|
2035 |
+
|
2036 |
+
.ont-manual-width-203 {
|
2037 |
+
width: 203px !important; }
|
2038 |
+
|
2039 |
+
.ont-manual-width-204 {
|
2040 |
+
width: 204px !important; }
|
2041 |
+
|
2042 |
+
.ont-manual-width-205 {
|
2043 |
+
width: 205px !important; }
|
2044 |
+
|
2045 |
+
.ont-manual-width-206 {
|
2046 |
+
width: 206px !important; }
|
2047 |
+
|
2048 |
+
.ont-manual-width-207 {
|
2049 |
+
width: 207px !important; }
|
2050 |
+
|
2051 |
+
.ont-manual-width-208 {
|
2052 |
+
width: 208px !important; }
|
2053 |
+
|
2054 |
+
.ont-manual-width-209 {
|
2055 |
+
width: 209px !important; }
|
2056 |
+
|
2057 |
+
.ont-manual-width-210 {
|
2058 |
+
width: 210px !important; }
|
2059 |
+
|
2060 |
+
.ont-manual-width-211 {
|
2061 |
+
width: 211px !important; }
|
2062 |
+
|
2063 |
+
.ont-manual-width-212 {
|
2064 |
+
width: 212px !important; }
|
2065 |
+
|
2066 |
+
.ont-manual-width-213 {
|
2067 |
+
width: 213px !important; }
|
2068 |
+
|
2069 |
+
.ont-manual-width-214 {
|
2070 |
+
width: 214px !important; }
|
2071 |
+
|
2072 |
+
.ont-manual-width-215 {
|
2073 |
+
width: 215px !important; }
|
2074 |
+
|
2075 |
+
.ont-manual-width-216 {
|
2076 |
+
width: 216px !important; }
|
2077 |
+
|
2078 |
+
.ont-manual-width-217 {
|
2079 |
+
width: 217px !important; }
|
2080 |
+
|
2081 |
+
.ont-manual-width-218 {
|
2082 |
+
width: 218px !important; }
|
2083 |
+
|
2084 |
+
.ont-manual-width-219 {
|
2085 |
+
width: 219px !important; }
|
2086 |
+
|
2087 |
+
.ont-manual-width-220 {
|
2088 |
+
width: 220px !important; }
|
2089 |
+
|
2090 |
+
.ont-manual-width-221 {
|
2091 |
+
width: 221px !important; }
|
2092 |
+
|
2093 |
+
.ont-manual-width-222 {
|
2094 |
+
width: 222px !important; }
|
2095 |
+
|
2096 |
+
.ont-manual-width-223 {
|
2097 |
+
width: 223px !important; }
|
2098 |
+
|
2099 |
+
.ont-manual-width-224 {
|
2100 |
+
width: 224px !important; }
|
2101 |
+
|
2102 |
+
.ont-manual-width-225 {
|
2103 |
+
width: 225px !important; }
|
2104 |
+
|
2105 |
+
.ont-manual-width-226 {
|
2106 |
+
width: 226px !important; }
|
2107 |
+
|
2108 |
+
.ont-manual-width-227 {
|
2109 |
+
width: 227px !important; }
|
2110 |
+
|
2111 |
+
.ont-manual-width-228 {
|
2112 |
+
width: 228px !important; }
|
2113 |
+
|
2114 |
+
.ont-manual-width-229 {
|
2115 |
+
width: 229px !important; }
|
2116 |
+
|
2117 |
+
.ont-manual-width-230 {
|
2118 |
+
width: 230px !important; }
|
2119 |
+
|
2120 |
+
.ont-manual-width-231 {
|
2121 |
+
width: 231px !important; }
|
2122 |
+
|
2123 |
+
.ont-manual-width-232 {
|
2124 |
+
width: 232px !important; }
|
2125 |
+
|
2126 |
+
.ont-manual-width-233 {
|
2127 |
+
width: 233px !important; }
|
2128 |
+
|
2129 |
+
.ont-manual-width-234 {
|
2130 |
+
width: 234px !important; }
|
2131 |
+
|
2132 |
+
.ont-manual-width-235 {
|
2133 |
+
width: 235px !important; }
|
2134 |
+
|
2135 |
+
.ont-manual-width-236 {
|
2136 |
+
width: 236px !important; }
|
2137 |
+
|
2138 |
+
.ont-manual-width-237 {
|
2139 |
+
width: 237px !important; }
|
2140 |
+
|
2141 |
+
.ont-manual-width-238 {
|
2142 |
+
width: 238px !important; }
|
2143 |
+
|
2144 |
+
.ont-manual-width-239 {
|
2145 |
+
width: 239px !important; }
|
2146 |
+
|
2147 |
+
.ont-manual-width-240 {
|
2148 |
+
width: 240px !important; }
|
2149 |
+
|
2150 |
+
.ont-manual-width-241 {
|
2151 |
+
width: 241px !important; }
|
2152 |
+
|
2153 |
+
.ont-manual-width-242 {
|
2154 |
+
width: 242px !important; }
|
2155 |
+
|
2156 |
+
.ont-manual-width-243 {
|
2157 |
+
width: 243px !important; }
|
2158 |
+
|
2159 |
+
.ont-manual-width-244 {
|
2160 |
+
width: 244px !important; }
|
2161 |
+
|
2162 |
+
.ont-manual-width-245 {
|
2163 |
+
width: 245px !important; }
|
2164 |
+
|
2165 |
+
.ont-manual-width-246 {
|
2166 |
+
width: 246px !important; }
|
2167 |
+
|
2168 |
+
.ont-manual-width-247 {
|
2169 |
+
width: 247px !important; }
|
2170 |
+
|
2171 |
+
.ont-manual-width-248 {
|
2172 |
+
width: 248px !important; }
|
2173 |
+
|
2174 |
+
.ont-manual-width-249 {
|
2175 |
+
width: 249px !important; }
|
2176 |
+
|
2177 |
+
.ont-manual-width-250 {
|
2178 |
+
width: 250px !important; }
|
2179 |
+
|
2180 |
+
.ont-manual-width-251 {
|
2181 |
+
width: 251px !important; }
|
2182 |
+
|
2183 |
+
.ont-manual-width-252 {
|
2184 |
+
width: 252px !important; }
|
2185 |
+
|
2186 |
+
.ont-manual-width-253 {
|
2187 |
+
width: 253px !important; }
|
2188 |
+
|
2189 |
+
.ont-manual-width-254 {
|
2190 |
+
width: 254px !important; }
|
2191 |
+
|
2192 |
+
.ont-manual-width-255 {
|
2193 |
+
width: 255px !important; }
|
2194 |
+
|
2195 |
+
.ont-manual-width-256 {
|
2196 |
+
width: 256px !important; }
|
2197 |
+
|
2198 |
+
.ont-manual-width-257 {
|
2199 |
+
width: 257px !important; }
|
2200 |
+
|
2201 |
+
.ont-manual-width-258 {
|
2202 |
+
width: 258px !important; }
|
2203 |
+
|
2204 |
+
.ont-manual-width-259 {
|
2205 |
+
width: 259px !important; }
|
2206 |
+
|
2207 |
+
.ont-manual-width-260 {
|
2208 |
+
width: 260px !important; }
|
2209 |
+
|
2210 |
+
.ont-manual-width-261 {
|
2211 |
+
width: 261px !important; }
|
2212 |
+
|
2213 |
+
.ont-manual-width-262 {
|
2214 |
+
width: 262px !important; }
|
2215 |
+
|
2216 |
+
.ont-manual-width-263 {
|
2217 |
+
width: 263px !important; }
|
2218 |
+
|
2219 |
+
.ont-manual-width-264 {
|
2220 |
+
width: 264px !important; }
|
2221 |
+
|
2222 |
+
.ont-manual-width-265 {
|
2223 |
+
width: 265px !important; }
|
2224 |
+
|
2225 |
+
.ont-manual-width-266 {
|
2226 |
+
width: 266px !important; }
|
2227 |
+
|
2228 |
+
.ont-manual-width-267 {
|
2229 |
+
width: 267px !important; }
|
2230 |
+
|
2231 |
+
.ont-manual-width-268 {
|
2232 |
+
width: 268px !important; }
|
2233 |
+
|
2234 |
+
.ont-manual-width-269 {
|
2235 |
+
width: 269px !important; }
|
2236 |
+
|
2237 |
+
.ont-manual-width-270 {
|
2238 |
+
width: 270px !important; }
|
2239 |
+
|
2240 |
+
.ont-manual-width-271 {
|
2241 |
+
width: 271px !important; }
|
2242 |
+
|
2243 |
+
.ont-manual-width-272 {
|
2244 |
+
width: 272px !important; }
|
2245 |
+
|
2246 |
+
.ont-manual-width-273 {
|
2247 |
+
width: 273px !important; }
|
2248 |
+
|
2249 |
+
.ont-manual-width-274 {
|
2250 |
+
width: 274px !important; }
|
2251 |
+
|
2252 |
+
.ont-manual-width-275 {
|
2253 |
+
width: 275px !important; }
|
2254 |
+
|
2255 |
+
.ont-manual-width-276 {
|
2256 |
+
width: 276px !important; }
|
2257 |
+
|
2258 |
+
.ont-manual-width-277 {
|
2259 |
+
width: 277px !important; }
|
2260 |
+
|
2261 |
+
.ont-manual-width-278 {
|
2262 |
+
width: 278px !important; }
|
2263 |
+
|
2264 |
+
.ont-manual-width-279 {
|
2265 |
+
width: 279px !important; }
|
2266 |
+
|
2267 |
+
.ont-manual-width-280 {
|
2268 |
+
width: 280px !important; }
|
2269 |
+
|
2270 |
+
.ont-manual-width-281 {
|
2271 |
+
width: 281px !important; }
|
2272 |
+
|
2273 |
+
.ont-manual-width-282 {
|
2274 |
+
width: 282px !important; }
|
2275 |
+
|
2276 |
+
.ont-manual-width-283 {
|
2277 |
+
width: 283px !important; }
|
2278 |
+
|
2279 |
+
.ont-manual-width-284 {
|
2280 |
+
width: 284px !important; }
|
2281 |
+
|
2282 |
+
.ont-manual-width-285 {
|
2283 |
+
width: 285px !important; }
|
2284 |
+
|
2285 |
+
.ont-manual-width-286 {
|
2286 |
+
width: 286px !important; }
|
2287 |
+
|
2288 |
+
.ont-manual-width-287 {
|
2289 |
+
width: 287px !important; }
|
2290 |
+
|
2291 |
+
.ont-manual-width-288 {
|
2292 |
+
width: 288px !important; }
|
2293 |
+
|
2294 |
+
.ont-manual-width-289 {
|
2295 |
+
width: 289px !important; }
|
2296 |
+
|
2297 |
+
.ont-manual-width-290 {
|
2298 |
+
width: 290px !important; }
|
2299 |
+
|
2300 |
+
.ont-manual-width-291 {
|
2301 |
+
width: 291px !important; }
|
2302 |
+
|
2303 |
+
.ont-manual-width-292 {
|
2304 |
+
width: 292px !important; }
|
2305 |
+
|
2306 |
+
.ont-manual-width-293 {
|
2307 |
+
width: 293px !important; }
|
2308 |
+
|
2309 |
+
.ont-manual-width-294 {
|
2310 |
+
width: 294px !important; }
|
2311 |
+
|
2312 |
+
.ont-manual-width-295 {
|
2313 |
+
width: 295px !important; }
|
2314 |
+
|
2315 |
+
.ont-manual-width-296 {
|
2316 |
+
width: 296px !important; }
|
2317 |
+
|
2318 |
+
.ont-manual-width-297 {
|
2319 |
+
width: 297px !important; }
|
2320 |
+
|
2321 |
+
.ont-manual-width-298 {
|
2322 |
+
width: 298px !important; }
|
2323 |
+
|
2324 |
+
.ont-manual-width-299 {
|
2325 |
+
width: 299px !important; }
|
2326 |
+
|
2327 |
+
.ont-manual-width-300 {
|
2328 |
+
width: 300px !important; }
|
2329 |
+
|
2330 |
+
.ont-manual-width-301 {
|
2331 |
+
width: 301px !important; }
|
2332 |
+
|
2333 |
+
.ont-manual-width-302 {
|
2334 |
+
width: 302px !important; }
|
2335 |
+
|
2336 |
+
.ont-manual-width-303 {
|
2337 |
+
width: 303px !important; }
|
2338 |
+
|
2339 |
+
.ont-manual-width-304 {
|
2340 |
+
width: 304px !important; }
|
2341 |
+
|
2342 |
+
.ont-manual-width-305 {
|
2343 |
+
width: 305px !important; }
|
2344 |
+
|
2345 |
+
.ont-manual-width-306 {
|
2346 |
+
width: 306px !important; }
|
2347 |
+
|
2348 |
+
.ont-manual-width-307 {
|
2349 |
+
width: 307px !important; }
|
2350 |
+
|
2351 |
+
.ont-manual-width-308 {
|
2352 |
+
width: 308px !important; }
|
2353 |
+
|
2354 |
+
.ont-manual-width-309 {
|
2355 |
+
width: 309px !important; }
|
2356 |
+
|
2357 |
+
.ont-manual-width-310 {
|
2358 |
+
width: 310px !important; }
|
2359 |
+
|
2360 |
+
.ont-manual-width-311 {
|
2361 |
+
width: 311px !important; }
|
2362 |
+
|
2363 |
+
.ont-manual-width-312 {
|
2364 |
+
width: 312px !important; }
|
2365 |
+
|
2366 |
+
.ont-manual-width-313 {
|
2367 |
+
width: 313px !important; }
|
2368 |
+
|
2369 |
+
.ont-manual-width-314 {
|
2370 |
+
width: 314px !important; }
|
2371 |
+
|
2372 |
+
.ont-manual-width-315 {
|
2373 |
+
width: 315px !important; }
|
2374 |
+
|
2375 |
+
.ont-manual-width-316 {
|
2376 |
+
width: 316px !important; }
|
2377 |
+
|
2378 |
+
.ont-manual-width-317 {
|
2379 |
+
width: 317px !important; }
|
2380 |
+
|
2381 |
+
.ont-manual-width-318 {
|
2382 |
+
width: 318px !important; }
|
2383 |
+
|
2384 |
+
.ont-manual-width-319 {
|
2385 |
+
width: 319px !important; }
|
2386 |
+
|
2387 |
+
.ont-manual-width-320 {
|
2388 |
+
width: 320px !important; }
|
2389 |
+
|
2390 |
+
.ont-manual-width-321 {
|
2391 |
+
width: 321px !important; }
|
2392 |
+
|
2393 |
+
.ont-manual-width-322 {
|
2394 |
+
width: 322px !important; }
|
2395 |
+
|
2396 |
+
.ont-manual-width-323 {
|
2397 |
+
width: 323px !important; }
|
2398 |
+
|
2399 |
+
.ont-manual-width-324 {
|
2400 |
+
width: 324px !important; }
|
2401 |
+
|
2402 |
+
.ont-manual-width-325 {
|
2403 |
+
width: 325px !important; }
|
2404 |
+
|
2405 |
+
.ont-manual-width-326 {
|
2406 |
+
width: 326px !important; }
|
2407 |
+
|
2408 |
+
.ont-manual-width-327 {
|
2409 |
+
width: 327px !important; }
|
2410 |
+
|
2411 |
+
.ont-manual-width-328 {
|
2412 |
+
width: 328px !important; }
|
2413 |
+
|
2414 |
+
.ont-manual-width-329 {
|
2415 |
+
width: 329px !important; }
|
2416 |
+
|
2417 |
+
.ont-manual-width-330 {
|
2418 |
+
width: 330px !important; }
|
2419 |
+
|
2420 |
+
.ont-manual-width-331 {
|
2421 |
+
width: 331px !important; }
|
2422 |
+
|
2423 |
+
.ont-manual-width-332 {
|
2424 |
+
width: 332px !important; }
|
2425 |
+
|
2426 |
+
.ont-manual-width-333 {
|
2427 |
+
width: 333px !important; }
|
2428 |
+
|
2429 |
+
.ont-manual-width-334 {
|
2430 |
+
width: 334px !important; }
|
2431 |
+
|
2432 |
+
.ont-manual-width-335 {
|
2433 |
+
width: 335px !important; }
|
2434 |
+
|
2435 |
+
.ont-manual-width-336 {
|
2436 |
+
width: 336px !important; }
|
2437 |
+
|
2438 |
+
.ont-manual-width-337 {
|
2439 |
+
width: 337px !important; }
|
2440 |
+
|
2441 |
+
.ont-manual-width-338 {
|
2442 |
+
width: 338px !important; }
|
2443 |
+
|
2444 |
+
.ont-manual-width-339 {
|
2445 |
+
width: 339px !important; }
|
2446 |
+
|
2447 |
+
.ont-manual-width-340 {
|
2448 |
+
width: 340px !important; }
|
2449 |
+
|
2450 |
+
.ont-manual-width-341 {
|
2451 |
+
width: 341px !important; }
|
2452 |
+
|
2453 |
+
.ont-manual-width-342 {
|
2454 |
+
width: 342px !important; }
|
2455 |
+
|
2456 |
+
.ont-manual-width-343 {
|
2457 |
+
width: 343px !important; }
|
2458 |
+
|
2459 |
+
.ont-manual-width-344 {
|
2460 |
+
width: 344px !important; }
|
2461 |
+
|
2462 |
+
.ont-manual-width-345 {
|
2463 |
+
width: 345px !important; }
|
2464 |
+
|
2465 |
+
.ont-manual-width-346 {
|
2466 |
+
width: 346px !important; }
|
2467 |
+
|
2468 |
+
.ont-manual-width-347 {
|
2469 |
+
width: 347px !important; }
|
2470 |
+
|
2471 |
+
.ont-manual-width-348 {
|
2472 |
+
width: 348px !important; }
|
2473 |
+
|
2474 |
+
.ont-manual-width-349 {
|
2475 |
+
width: 349px !important; }
|
2476 |
+
|
2477 |
+
.ont-manual-width-350 {
|
2478 |
+
width: 350px !important; }
|
2479 |
+
|
2480 |
+
.ont-manual-width-351 {
|
2481 |
+
width: 351px !important; }
|
2482 |
+
|
2483 |
+
.ont-manual-width-352 {
|
2484 |
+
width: 352px !important; }
|
2485 |
+
|
2486 |
+
.ont-manual-width-353 {
|
2487 |
+
width: 353px !important; }
|
2488 |
+
|
2489 |
+
.ont-manual-width-354 {
|
2490 |
+
width: 354px !important; }
|
2491 |
+
|
2492 |
+
.ont-manual-width-355 {
|
2493 |
+
width: 355px !important; }
|
2494 |
+
|
2495 |
+
.ont-manual-width-356 {
|
2496 |
+
width: 356px !important; }
|
2497 |
+
|
2498 |
+
.ont-manual-width-357 {
|
2499 |
+
width: 357px !important; }
|
2500 |
+
|
2501 |
+
.ont-manual-width-358 {
|
2502 |
+
width: 358px !important; }
|
2503 |
+
|
2504 |
+
.ont-manual-width-359 {
|
2505 |
+
width: 359px !important; }
|
2506 |
+
|
2507 |
+
.ont-manual-width-360 {
|
2508 |
+
width: 360px !important; }
|
2509 |
+
|
2510 |
+
.ont-manual-width-361 {
|
2511 |
+
width: 361px !important; }
|
2512 |
+
|
2513 |
+
.ont-manual-width-362 {
|
2514 |
+
width: 362px !important; }
|
2515 |
+
|
2516 |
+
.ont-manual-width-363 {
|
2517 |
+
width: 363px !important; }
|
2518 |
+
|
2519 |
+
.ont-manual-width-364 {
|
2520 |
+
width: 364px !important; }
|
2521 |
+
|
2522 |
+
.ont-manual-width-365 {
|
2523 |
+
width: 365px !important; }
|
2524 |
+
|
2525 |
+
.ont-manual-width-366 {
|
2526 |
+
width: 366px !important; }
|
2527 |
+
|
2528 |
+
.ont-manual-width-367 {
|
2529 |
+
width: 367px !important; }
|
2530 |
+
|
2531 |
+
.ont-manual-width-368 {
|
2532 |
+
width: 368px !important; }
|
2533 |
+
|
2534 |
+
.ont-manual-width-369 {
|
2535 |
+
width: 369px !important; }
|
2536 |
+
|
2537 |
+
.ont-manual-width-370 {
|
2538 |
+
width: 370px !important; }
|
2539 |
+
|
2540 |
+
.ont-manual-width-371 {
|
2541 |
+
width: 371px !important; }
|
2542 |
+
|
2543 |
+
.ont-manual-width-372 {
|
2544 |
+
width: 372px !important; }
|
2545 |
+
|
2546 |
+
.ont-manual-width-373 {
|
2547 |
+
width: 373px !important; }
|
2548 |
+
|
2549 |
+
.ont-manual-width-374 {
|
2550 |
+
width: 374px !important; }
|
2551 |
+
|
2552 |
+
.ont-manual-width-375 {
|
2553 |
+
width: 375px !important; }
|
2554 |
+
|
2555 |
+
.ont-manual-width-376 {
|
2556 |
+
width: 376px !important; }
|
2557 |
+
|
2558 |
+
.ont-manual-width-377 {
|
2559 |
+
width: 377px !important; }
|
2560 |
+
|
2561 |
+
.ont-manual-width-378 {
|
2562 |
+
width: 378px !important; }
|
2563 |
+
|
2564 |
+
.ont-manual-width-379 {
|
2565 |
+
width: 379px !important; }
|
2566 |
+
|
2567 |
+
.ont-manual-width-380 {
|
2568 |
+
width: 380px !important; }
|
2569 |
+
|
2570 |
+
.ont-manual-width-381 {
|
2571 |
+
width: 381px !important; }
|
2572 |
+
|
2573 |
+
.ont-manual-width-382 {
|
2574 |
+
width: 382px !important; }
|
2575 |
+
|
2576 |
+
.ont-manual-width-383 {
|
2577 |
+
width: 383px !important; }
|
2578 |
+
|
2579 |
+
.ont-manual-width-384 {
|
2580 |
+
width: 384px !important; }
|
2581 |
+
|
2582 |
+
.ont-manual-width-385 {
|
2583 |
+
width: 385px !important; }
|
2584 |
+
|
2585 |
+
.ont-manual-width-386 {
|
2586 |
+
width: 386px !important; }
|
2587 |
+
|
2588 |
+
.ont-manual-width-387 {
|
2589 |
+
width: 387px !important; }
|
2590 |
+
|
2591 |
+
.ont-manual-width-388 {
|
2592 |
+
width: 388px !important; }
|
2593 |
+
|
2594 |
+
.ont-manual-width-389 {
|
2595 |
+
width: 389px !important; }
|
2596 |
+
|
2597 |
+
.ont-manual-width-390 {
|
2598 |
+
width: 390px !important; }
|
2599 |
+
|
2600 |
+
.ont-manual-width-391 {
|
2601 |
+
width: 391px !important; }
|
2602 |
+
|
2603 |
+
.ont-manual-width-392 {
|
2604 |
+
width: 392px !important; }
|
2605 |
+
|
2606 |
+
.ont-manual-width-393 {
|
2607 |
+
width: 393px !important; }
|
2608 |
+
|
2609 |
+
.ont-manual-width-394 {
|
2610 |
+
width: 394px !important; }
|
2611 |
+
|
2612 |
+
.ont-manual-width-395 {
|
2613 |
+
width: 395px !important; }
|
2614 |
+
|
2615 |
+
.ont-manual-width-396 {
|
2616 |
+
width: 396px !important; }
|
2617 |
+
|
2618 |
+
.ont-manual-width-397 {
|
2619 |
+
width: 397px !important; }
|
2620 |
+
|
2621 |
+
.ont-manual-width-398 {
|
2622 |
+
width: 398px !important; }
|
2623 |
+
|
2624 |
+
.ont-manual-width-399 {
|
2625 |
+
width: 399px !important; }
|
2626 |
+
|
2627 |
+
.ont-manual-width-400 {
|
2628 |
+
width: 400px !important; }
|
2629 |
+
|
2630 |
+
.ont-manual-width-401 {
|
2631 |
+
width: 401px !important; }
|
2632 |
+
|
2633 |
+
.ont-manual-width-402 {
|
2634 |
+
width: 402px !important; }
|
2635 |
+
|
2636 |
+
.ont-manual-width-403 {
|
2637 |
+
width: 403px !important; }
|
2638 |
+
|
2639 |
+
.ont-manual-width-404 {
|
2640 |
+
width: 404px !important; }
|
2641 |
+
|
2642 |
+
.ont-manual-width-405 {
|
2643 |
+
width: 405px !important; }
|
2644 |
+
|
2645 |
+
.ont-manual-width-406 {
|
2646 |
+
width: 406px !important; }
|
2647 |
+
|
2648 |
+
.ont-manual-width-407 {
|
2649 |
+
width: 407px !important; }
|
2650 |
+
|
2651 |
+
.ont-manual-width-408 {
|
2652 |
+
width: 408px !important; }
|
2653 |
+
|
2654 |
+
.ont-manual-width-409 {
|
2655 |
+
width: 409px !important; }
|
2656 |
+
|
2657 |
+
.ont-manual-width-410 {
|
2658 |
+
width: 410px !important; }
|
2659 |
+
|
2660 |
+
.ont-manual-width-411 {
|
2661 |
+
width: 411px !important; }
|
2662 |
+
|
2663 |
+
.ont-manual-width-412 {
|
2664 |
+
width: 412px !important; }
|
2665 |
+
|
2666 |
+
.ont-manual-width-413 {
|
2667 |
+
width: 413px !important; }
|
2668 |
+
|
2669 |
+
.ont-manual-width-414 {
|
2670 |
+
width: 414px !important; }
|
2671 |
+
|
2672 |
+
.ont-manual-width-415 {
|
2673 |
+
width: 415px !important; }
|
2674 |
+
|
2675 |
+
.ont-manual-width-416 {
|
2676 |
+
width: 416px !important; }
|
2677 |
+
|
2678 |
+
.ont-manual-width-417 {
|
2679 |
+
width: 417px !important; }
|
2680 |
+
|
2681 |
+
.ont-manual-width-418 {
|
2682 |
+
width: 418px !important; }
|
2683 |
+
|
2684 |
+
.ont-manual-width-419 {
|
2685 |
+
width: 419px !important; }
|
2686 |
+
|
2687 |
+
.ont-manual-width-420 {
|
2688 |
+
width: 420px !important; }
|
2689 |
+
|
2690 |
+
.ont-manual-width-421 {
|
2691 |
+
width: 421px !important; }
|
2692 |
+
|
2693 |
+
.ont-manual-width-422 {
|
2694 |
+
width: 422px !important; }
|
2695 |
+
|
2696 |
+
.ont-manual-width-423 {
|
2697 |
+
width: 423px !important; }
|
2698 |
+
|
2699 |
+
.ont-manual-width-424 {
|
2700 |
+
width: 424px !important; }
|
2701 |
+
|
2702 |
+
.ont-manual-width-425 {
|
2703 |
+
width: 425px !important; }
|
2704 |
+
|
2705 |
+
.ont-manual-width-426 {
|
2706 |
+
width: 426px !important; }
|
2707 |
+
|
2708 |
+
.ont-manual-width-427 {
|
2709 |
+
width: 427px !important; }
|
2710 |
+
|
2711 |
+
.ont-manual-width-428 {
|
2712 |
+
width: 428px !important; }
|
2713 |
+
|
2714 |
+
.ont-manual-width-429 {
|
2715 |
+
width: 429px !important; }
|
2716 |
+
|
2717 |
+
.ont-manual-width-430 {
|
2718 |
+
width: 430px !important; }
|
2719 |
+
|
2720 |
+
.ont-manual-width-431 {
|
2721 |
+
width: 431px !important; }
|
2722 |
+
|
2723 |
+
.ont-manual-width-432 {
|
2724 |
+
width: 432px !important; }
|
2725 |
+
|
2726 |
+
.ont-manual-width-433 {
|
2727 |
+
width: 433px !important; }
|
2728 |
+
|
2729 |
+
.ont-manual-width-434 {
|
2730 |
+
width: 434px !important; }
|
2731 |
+
|
2732 |
+
.ont-manual-width-435 {
|
2733 |
+
width: 435px !important; }
|
2734 |
+
|
2735 |
+
.ont-manual-width-436 {
|
2736 |
+
width: 436px !important; }
|
2737 |
+
|
2738 |
+
.ont-manual-width-437 {
|
2739 |
+
width: 437px !important; }
|
2740 |
+
|
2741 |
+
.ont-manual-width-438 {
|
2742 |
+
width: 438px !important; }
|
2743 |
+
|
2744 |
+
.ont-manual-width-439 {
|
2745 |
+
width: 439px !important; }
|
2746 |
+
|
2747 |
+
.ont-manual-width-440 {
|
2748 |
+
width: 440px !important; }
|
2749 |
+
|
2750 |
+
.ont-manual-width-441 {
|
2751 |
+
width: 441px !important; }
|
2752 |
+
|
2753 |
+
.ont-manual-width-442 {
|
2754 |
+
width: 442px !important; }
|
2755 |
+
|
2756 |
+
.ont-manual-width-443 {
|
2757 |
+
width: 443px !important; }
|
2758 |
+
|
2759 |
+
.ont-manual-width-444 {
|
2760 |
+
width: 444px !important; }
|
2761 |
+
|
2762 |
+
.ont-manual-width-445 {
|
2763 |
+
width: 445px !important; }
|
2764 |
+
|
2765 |
+
.ont-manual-width-446 {
|
2766 |
+
width: 446px !important; }
|
2767 |
+
|
2768 |
+
.ont-manual-width-447 {
|
2769 |
+
width: 447px !important; }
|
2770 |
+
|
2771 |
+
.ont-manual-width-448 {
|
2772 |
+
width: 448px !important; }
|
2773 |
+
|
2774 |
+
.ont-manual-width-449 {
|
2775 |
+
width: 449px !important; }
|
2776 |
+
|
2777 |
+
.ont-manual-width-450 {
|
2778 |
+
width: 450px !important; }
|
2779 |
+
|
2780 |
+
.ont-manual-width-451 {
|
2781 |
+
width: 451px !important; }
|
2782 |
+
|
2783 |
+
.ont-manual-width-452 {
|
2784 |
+
width: 452px !important; }
|
2785 |
+
|
2786 |
+
.ont-manual-width-453 {
|
2787 |
+
width: 453px !important; }
|
2788 |
+
|
2789 |
+
.ont-manual-width-454 {
|
2790 |
+
width: 454px !important; }
|
2791 |
+
|
2792 |
+
.ont-manual-width-455 {
|
2793 |
+
width: 455px !important; }
|
2794 |
+
|
2795 |
+
.ont-manual-width-456 {
|
2796 |
+
width: 456px !important; }
|
2797 |
+
|
2798 |
+
.ont-manual-width-457 {
|
2799 |
+
width: 457px !important; }
|
2800 |
+
|
2801 |
+
.ont-manual-width-458 {
|
2802 |
+
width: 458px !important; }
|
2803 |
+
|
2804 |
+
.ont-manual-width-459 {
|
2805 |
+
width: 459px !important; }
|
2806 |
+
|
2807 |
+
.ont-manual-width-460 {
|
2808 |
+
width: 460px !important; }
|
2809 |
+
|
2810 |
+
.ont-manual-width-461 {
|
2811 |
+
width: 461px !important; }
|
2812 |
+
|
2813 |
+
.ont-manual-width-462 {
|
2814 |
+
width: 462px !important; }
|
2815 |
+
|
2816 |
+
.ont-manual-width-463 {
|
2817 |
+
width: 463px !important; }
|
2818 |
+
|
2819 |
+
.ont-manual-width-464 {
|
2820 |
+
width: 464px !important; }
|
2821 |
+
|
2822 |
+
.ont-manual-width-465 {
|
2823 |
+
width: 465px !important; }
|
2824 |
+
|
2825 |
+
.ont-manual-width-466 {
|
2826 |
+
width: 466px !important; }
|
2827 |
+
|
2828 |
+
.ont-manual-width-467 {
|
2829 |
+
width: 467px !important; }
|
2830 |
+
|
2831 |
+
.ont-manual-width-468 {
|
2832 |
+
width: 468px !important; }
|
2833 |
+
|
2834 |
+
.ont-manual-width-469 {
|
2835 |
+
width: 469px !important; }
|
2836 |
+
|
2837 |
+
.ont-manual-width-470 {
|
2838 |
+
width: 470px !important; }
|
2839 |
+
|
2840 |
+
.ont-manual-width-471 {
|
2841 |
+
width: 471px !important; }
|
2842 |
+
|
2843 |
+
.ont-manual-width-472 {
|
2844 |
+
width: 472px !important; }
|
2845 |
+
|
2846 |
+
.ont-manual-width-473 {
|
2847 |
+
width: 473px !important; }
|
2848 |
+
|
2849 |
+
.ont-manual-width-474 {
|
2850 |
+
width: 474px !important; }
|
2851 |
+
|
2852 |
+
.ont-manual-width-475 {
|
2853 |
+
width: 475px !important; }
|
2854 |
+
|
2855 |
+
.ont-manual-width-476 {
|
2856 |
+
width: 476px !important; }
|
2857 |
+
|
2858 |
+
.ont-manual-width-477 {
|
2859 |
+
width: 477px !important; }
|
2860 |
+
|
2861 |
+
.ont-manual-width-478 {
|
2862 |
+
width: 478px !important; }
|
2863 |
+
|
2864 |
+
.ont-manual-width-479 {
|
2865 |
+
width: 479px !important; }
|
2866 |
+
|
2867 |
+
.ont-manual-width-480 {
|
2868 |
+
width: 480px !important; }
|
2869 |
+
|
2870 |
+
.ont-manual-width-481 {
|
2871 |
+
width: 481px !important; }
|
2872 |
+
|
2873 |
+
.ont-manual-width-482 {
|
2874 |
+
width: 482px !important; }
|
2875 |
+
|
2876 |
+
.ont-manual-width-483 {
|
2877 |
+
width: 483px !important; }
|
2878 |
+
|
2879 |
+
.ont-manual-width-484 {
|
2880 |
+
width: 484px !important; }
|
2881 |
+
|
2882 |
+
.ont-manual-width-485 {
|
2883 |
+
width: 485px !important; }
|
2884 |
+
|
2885 |
+
.ont-manual-width-486 {
|
2886 |
+
width: 486px !important; }
|
2887 |
+
|
2888 |
+
.ont-manual-width-487 {
|
2889 |
+
width: 487px !important; }
|
2890 |
+
|
2891 |
+
.ont-manual-width-488 {
|
2892 |
+
width: 488px !important; }
|
2893 |
+
|
2894 |
+
.ont-manual-width-489 {
|
2895 |
+
width: 489px !important; }
|
2896 |
+
|
2897 |
+
.ont-manual-width-490 {
|
2898 |
+
width: 490px !important; }
|
2899 |
+
|
2900 |
+
.ont-manual-width-491 {
|
2901 |
+
width: 491px !important; }
|
2902 |
+
|
2903 |
+
.ont-manual-width-492 {
|
2904 |
+
width: 492px !important; }
|
2905 |
+
|
2906 |
+
.ont-manual-width-493 {
|
2907 |
+
width: 493px !important; }
|
2908 |
+
|
2909 |
+
.ont-manual-width-494 {
|
2910 |
+
width: 494px !important; }
|
2911 |
+
|
2912 |
+
.ont-manual-width-495 {
|
2913 |
+
width: 495px !important; }
|
2914 |
+
|
2915 |
+
.ont-manual-width-496 {
|
2916 |
+
width: 496px !important; }
|
2917 |
+
|
2918 |
+
.ont-manual-width-497 {
|
2919 |
+
width: 497px !important; }
|
2920 |
+
|
2921 |
+
.ont-manual-width-498 {
|
2922 |
+
width: 498px !important; }
|
2923 |
+
|
2924 |
+
.ont-manual-width-499 {
|
2925 |
+
width: 499px !important; }
|
2926 |
+
|
2927 |
+
.ont-manual-width-500 {
|
2928 |
+
width: 500px !important; }
|
2929 |
+
|
2930 |
+
.ont-manual-width-501 {
|
2931 |
+
width: 501px !important; }
|
2932 |
+
|
2933 |
+
.ont-manual-width-502 {
|
2934 |
+
width: 502px !important; }
|
2935 |
+
|
2936 |
+
.ont-manual-width-503 {
|
2937 |
+
width: 503px !important; }
|
2938 |
+
|
2939 |
+
.ont-manual-width-504 {
|
2940 |
+
width: 504px !important; }
|
2941 |
+
|
2942 |
+
.ont-manual-width-505 {
|
2943 |
+
width: 505px !important; }
|
2944 |
+
|
2945 |
+
.ont-manual-width-506 {
|
2946 |
+
width: 506px !important; }
|
2947 |
+
|
2948 |
+
.ont-manual-width-507 {
|
2949 |
+
width: 507px !important; }
|
2950 |
+
|
2951 |
+
.ont-manual-width-508 {
|
2952 |
+
width: 508px !important; }
|
2953 |
+
|
2954 |
+
.ont-manual-width-509 {
|
2955 |
+
width: 509px !important; }
|
2956 |
+
|
2957 |
+
.ont-manual-width-510 {
|
2958 |
+
width: 510px !important; }
|
2959 |
+
|
2960 |
+
.ont-manual-width-511 {
|
2961 |
+
width: 511px !important; }
|
2962 |
+
|
2963 |
+
.ont-manual-width-512 {
|
2964 |
+
width: 512px !important; }
|
2965 |
+
|
2966 |
+
.ont-manual-width-513 {
|
2967 |
+
width: 513px !important; }
|
2968 |
+
|
2969 |
+
.ont-manual-width-514 {
|
2970 |
+
width: 514px !important; }
|
2971 |
+
|
2972 |
+
.ont-manual-width-515 {
|
2973 |
+
width: 515px !important; }
|
2974 |
+
|
2975 |
+
.ont-manual-width-516 {
|
2976 |
+
width: 516px !important; }
|
2977 |
+
|
2978 |
+
.ont-manual-width-517 {
|
2979 |
+
width: 517px !important; }
|
2980 |
+
|
2981 |
+
.ont-manual-width-518 {
|
2982 |
+
width: 518px !important; }
|
2983 |
+
|
2984 |
+
.ont-manual-width-519 {
|
2985 |
+
width: 519px !important; }
|
2986 |
+
|
2987 |
+
.ont-manual-width-520 {
|
2988 |
+
width: 520px !important; }
|
2989 |
+
|
2990 |
+
.ont-manual-width-521 {
|
2991 |
+
width: 521px !important; }
|
2992 |
+
|
2993 |
+
.ont-manual-width-522 {
|
2994 |
+
width: 522px !important; }
|
2995 |
+
|
2996 |
+
.ont-manual-width-523 {
|
2997 |
+
width: 523px !important; }
|
2998 |
+
|
2999 |
+
.ont-manual-width-524 {
|
3000 |
+
width: 524px !important; }
|
3001 |
+
|
3002 |
+
.ont-manual-width-525 {
|
3003 |
+
width: 525px !important; }
|
3004 |
+
|
3005 |
+
.ont-manual-width-526 {
|
3006 |
+
width: 526px !important; }
|
3007 |
+
|
3008 |
+
.ont-manual-width-527 {
|
3009 |
+
width: 527px !important; }
|
3010 |
+
|
3011 |
+
.ont-manual-width-528 {
|
3012 |
+
width: 528px !important; }
|
3013 |
+
|
3014 |
+
.ont-manual-width-529 {
|
3015 |
+
width: 529px !important; }
|
3016 |
+
|
3017 |
+
.ont-manual-width-530 {
|
3018 |
+
width: 530px !important; }
|
3019 |
+
|
3020 |
+
.ont-manual-width-531 {
|
3021 |
+
width: 531px !important; }
|
3022 |
+
|
3023 |
+
.ont-manual-width-532 {
|
3024 |
+
width: 532px !important; }
|
3025 |
+
|
3026 |
+
.ont-manual-width-533 {
|
3027 |
+
width: 533px !important; }
|
3028 |
+
|
3029 |
+
.ont-manual-width-534 {
|
3030 |
+
width: 534px !important; }
|
3031 |
+
|
3032 |
+
.ont-manual-width-535 {
|
3033 |
+
width: 535px !important; }
|
3034 |
+
|
3035 |
+
.ont-manual-width-536 {
|
3036 |
+
width: 536px !important; }
|
3037 |
+
|
3038 |
+
.ont-manual-width-537 {
|
3039 |
+
width: 537px !important; }
|
3040 |
+
|
3041 |
+
.ont-manual-width-538 {
|
3042 |
+
width: 538px !important; }
|
3043 |
+
|
3044 |
+
.ont-manual-width-539 {
|
3045 |
+
width: 539px !important; }
|
3046 |
+
|
3047 |
+
.ont-manual-width-540 {
|
3048 |
+
width: 540px !important; }
|
3049 |
+
|
3050 |
+
.ont-manual-width-541 {
|
3051 |
+
width: 541px !important; }
|
3052 |
+
|
3053 |
+
.ont-manual-width-542 {
|
3054 |
+
width: 542px !important; }
|
3055 |
+
|
3056 |
+
.ont-manual-width-543 {
|
3057 |
+
width: 543px !important; }
|
3058 |
+
|
3059 |
+
.ont-manual-width-544 {
|
3060 |
+
width: 544px !important; }
|
3061 |
+
|
3062 |
+
.ont-manual-width-545 {
|
3063 |
+
width: 545px !important; }
|
3064 |
+
|
3065 |
+
.ont-manual-width-546 {
|
3066 |
+
width: 546px !important; }
|
3067 |
+
|
3068 |
+
.ont-manual-width-547 {
|
3069 |
+
width: 547px !important; }
|
3070 |
+
|
3071 |
+
.ont-manual-width-548 {
|
3072 |
+
width: 548px !important; }
|
3073 |
+
|
3074 |
+
.ont-manual-width-549 {
|
3075 |
+
width: 549px !important; }
|
3076 |
+
|
3077 |
+
.ont-manual-width-550 {
|
3078 |
+
width: 550px !important; }
|
3079 |
+
|
3080 |
+
.ont-manual-width-551 {
|
3081 |
+
width: 551px !important; }
|
3082 |
+
|
3083 |
+
.ont-manual-width-552 {
|
3084 |
+
width: 552px !important; }
|
3085 |
+
|
3086 |
+
.ont-manual-width-553 {
|
3087 |
+
width: 553px !important; }
|
3088 |
+
|
3089 |
+
.ont-manual-width-554 {
|
3090 |
+
width: 554px !important; }
|
3091 |
+
|
3092 |
+
.ont-manual-width-555 {
|
3093 |
+
width: 555px !important; }
|
3094 |
+
|
3095 |
+
.ont-manual-width-556 {
|
3096 |
+
width: 556px !important; }
|
3097 |
+
|
3098 |
+
.ont-manual-width-557 {
|
3099 |
+
width: 557px !important; }
|
3100 |
+
|
3101 |
+
.ont-manual-width-558 {
|
3102 |
+
width: 558px !important; }
|
3103 |
+
|
3104 |
+
.ont-manual-width-559 {
|
3105 |
+
width: 559px !important; }
|
3106 |
+
|
3107 |
+
.ont-manual-width-560 {
|
3108 |
+
width: 560px !important; }
|
3109 |
+
|
3110 |
+
.ont-manual-width-561 {
|
3111 |
+
width: 561px !important; }
|
3112 |
+
|
3113 |
+
.ont-manual-width-562 {
|
3114 |
+
width: 562px !important; }
|
3115 |
+
|
3116 |
+
.ont-manual-width-563 {
|
3117 |
+
width: 563px !important; }
|
3118 |
+
|
3119 |
+
.ont-manual-width-564 {
|
3120 |
+
width: 564px !important; }
|
3121 |
+
|
3122 |
+
.ont-manual-width-565 {
|
3123 |
+
width: 565px !important; }
|
3124 |
+
|
3125 |
+
.ont-manual-width-566 {
|
3126 |
+
width: 566px !important; }
|
3127 |
+
|
3128 |
+
.ont-manual-width-567 {
|
3129 |
+
width: 567px !important; }
|
3130 |
+
|
3131 |
+
.ont-manual-width-568 {
|
3132 |
+
width: 568px !important; }
|
3133 |
+
|
3134 |
+
.ont-manual-width-569 {
|
3135 |
+
width: 569px !important; }
|
3136 |
+
|
3137 |
+
.ont-manual-width-570 {
|
3138 |
+
width: 570px !important; }
|
3139 |
+
|
3140 |
+
.ont-manual-width-571 {
|
3141 |
+
width: 571px !important; }
|
3142 |
+
|
3143 |
+
.ont-manual-width-572 {
|
3144 |
+
width: 572px !important; }
|
3145 |
+
|
3146 |
+
.ont-manual-width-573 {
|
3147 |
+
width: 573px !important; }
|
3148 |
+
|
3149 |
+
.ont-manual-width-574 {
|
3150 |
+
width: 574px !important; }
|
3151 |
+
|
3152 |
+
.ont-manual-width-575 {
|
3153 |
+
width: 575px !important; }
|
3154 |
+
|
3155 |
+
.ont-manual-width-576 {
|
3156 |
+
width: 576px !important; }
|
3157 |
+
|
3158 |
+
.ont-manual-width-577 {
|
3159 |
+
width: 577px !important; }
|
3160 |
+
|
3161 |
+
.ont-manual-width-578 {
|
3162 |
+
width: 578px !important; }
|
3163 |
+
|
3164 |
+
.ont-manual-width-579 {
|
3165 |
+
width: 579px !important; }
|
3166 |
+
|
3167 |
+
.ont-manual-width-580 {
|
3168 |
+
width: 580px !important; }
|
3169 |
+
|
3170 |
+
.ont-manual-width-581 {
|
3171 |
+
width: 581px !important; }
|
3172 |
+
|
3173 |
+
.ont-manual-width-582 {
|
3174 |
+
width: 582px !important; }
|
3175 |
+
|
3176 |
+
.ont-manual-width-583 {
|
3177 |
+
width: 583px !important; }
|
3178 |
+
|
3179 |
+
.ont-manual-width-584 {
|
3180 |
+
width: 584px !important; }
|
3181 |
+
|
3182 |
+
.ont-manual-width-585 {
|
3183 |
+
width: 585px !important; }
|
3184 |
+
|
3185 |
+
.ont-manual-width-586 {
|
3186 |
+
width: 586px !important; }
|
3187 |
+
|
3188 |
+
.ont-manual-width-587 {
|
3189 |
+
width: 587px !important; }
|
3190 |
+
|
3191 |
+
.ont-manual-width-588 {
|
3192 |
+
width: 588px !important; }
|
3193 |
+
|
3194 |
+
.ont-manual-width-589 {
|
3195 |
+
width: 589px !important; }
|
3196 |
+
|
3197 |
+
.ont-manual-width-590 {
|
3198 |
+
width: 590px !important; }
|
3199 |
+
|
3200 |
+
.ont-manual-width-591 {
|
3201 |
+
width: 591px !important; }
|
3202 |
+
|
3203 |
+
.ont-manual-width-592 {
|
3204 |
+
width: 592px !important; }
|
3205 |
+
|
3206 |
+
.ont-manual-width-593 {
|
3207 |
+
width: 593px !important; }
|
3208 |
+
|
3209 |
+
.ont-manual-width-594 {
|
3210 |
+
width: 594px !important; }
|
3211 |
+
|
3212 |
+
.ont-manual-width-595 {
|
3213 |
+
width: 595px !important; }
|
3214 |
+
|
3215 |
+
.ont-manual-width-596 {
|
3216 |
+
width: 596px !important; }
|
3217 |
+
|
3218 |
+
.ont-manual-width-597 {
|
3219 |
+
width: 597px !important; }
|
3220 |
+
|
3221 |
+
.ont-manual-width-598 {
|
3222 |
+
width: 598px !important; }
|
3223 |
+
|
3224 |
+
.ont-manual-width-599 {
|
3225 |
+
width: 599px !important; }
|
3226 |
+
|
3227 |
+
.ont-manual-width-600 {
|
3228 |
+
width: 600px !important; }
|
3229 |
+
|
3230 |
+
.ont-manual-width-601 {
|
3231 |
+
width: 601px !important; }
|
3232 |
+
|
3233 |
+
.ont-manual-width-602 {
|
3234 |
+
width: 602px !important; }
|
3235 |
+
|
3236 |
+
.ont-manual-width-603 {
|
3237 |
+
width: 603px !important; }
|
3238 |
+
|
3239 |
+
.ont-manual-width-604 {
|
3240 |
+
width: 604px !important; }
|
3241 |
+
|
3242 |
+
.ont-manual-width-605 {
|
3243 |
+
width: 605px !important; }
|
3244 |
+
|
3245 |
+
.ont-manual-width-606 {
|
3246 |
+
width: 606px !important; }
|
3247 |
+
|
3248 |
+
.ont-manual-width-607 {
|
3249 |
+
width: 607px !important; }
|
3250 |
+
|
3251 |
+
.ont-manual-width-608 {
|
3252 |
+
width: 608px !important; }
|
3253 |
+
|
3254 |
+
.ont-manual-width-609 {
|
3255 |
+
width: 609px !important; }
|
3256 |
+
|
3257 |
+
.ont-manual-width-610 {
|
3258 |
+
width: 610px !important; }
|
3259 |
+
|
3260 |
+
.ont-manual-width-611 {
|
3261 |
+
width: 611px !important; }
|
3262 |
+
|
3263 |
+
.ont-manual-width-612 {
|
3264 |
+
width: 612px !important; }
|
3265 |
+
|
3266 |
+
.ont-manual-width-613 {
|
3267 |
+
width: 613px !important; }
|
3268 |
+
|
3269 |
+
.ont-manual-width-614 {
|
3270 |
+
width: 614px !important; }
|
3271 |
+
|
3272 |
+
.ont-manual-width-615 {
|
3273 |
+
width: 615px !important; }
|
3274 |
+
|
3275 |
+
.ont-manual-width-616 {
|
3276 |
+
width: 616px !important; }
|
3277 |
+
|
3278 |
+
.ont-manual-width-617 {
|
3279 |
+
width: 617px !important; }
|
3280 |
+
|
3281 |
+
.ont-manual-width-618 {
|
3282 |
+
width: 618px !important; }
|
3283 |
+
|
3284 |
+
.ont-manual-width-619 {
|
3285 |
+
width: 619px !important; }
|
3286 |
+
|
3287 |
+
.ont-manual-width-620 {
|
3288 |
+
width: 620px !important; }
|
3289 |
+
|
3290 |
+
.ont-manual-width-621 {
|
3291 |
+
width: 621px !important; }
|
3292 |
+
|
3293 |
+
.ont-manual-width-622 {
|
3294 |
+
width: 622px !important; }
|
3295 |
+
|
3296 |
+
.ont-manual-width-623 {
|
3297 |
+
width: 623px !important; }
|
3298 |
+
|
3299 |
+
.ont-manual-width-624 {
|
3300 |
+
width: 624px !important; }
|
3301 |
+
|
3302 |
+
.ont-manual-width-625 {
|
3303 |
+
width: 625px !important; }
|
3304 |
+
|
3305 |
+
.ont-manual-width-626 {
|
3306 |
+
width: 626px !important; }
|
3307 |
+
|
3308 |
+
.ont-manual-width-627 {
|
3309 |
+
width: 627px !important; }
|
3310 |
+
|
3311 |
+
.ont-manual-width-628 {
|
3312 |
+
width: 628px !important; }
|
3313 |
+
|
3314 |
+
.ont-manual-width-629 {
|
3315 |
+
width: 629px !important; }
|
3316 |
+
|
3317 |
+
.ont-manual-width-630 {
|
3318 |
+
width: 630px !important; }
|
3319 |
+
|
3320 |
+
.ont-manual-width-631 {
|
3321 |
+
width: 631px !important; }
|
3322 |
+
|
3323 |
+
.ont-manual-width-632 {
|
3324 |
+
width: 632px !important; }
|
3325 |
+
|
3326 |
+
.ont-manual-width-633 {
|
3327 |
+
width: 633px !important; }
|
3328 |
+
|
3329 |
+
.ont-manual-width-634 {
|
3330 |
+
width: 634px !important; }
|
3331 |
+
|
3332 |
+
.ont-manual-width-635 {
|
3333 |
+
width: 635px !important; }
|
3334 |
+
|
3335 |
+
.ont-manual-width-636 {
|
3336 |
+
width: 636px !important; }
|
3337 |
+
|
3338 |
+
.ont-manual-width-637 {
|
3339 |
+
width: 637px !important; }
|
3340 |
+
|
3341 |
+
.ont-manual-width-638 {
|
3342 |
+
width: 638px !important; }
|
3343 |
+
|
3344 |
+
.ont-manual-width-639 {
|
3345 |
+
width: 639px !important; }
|
3346 |
+
|
3347 |
+
.ont-manual-width-640 {
|
3348 |
+
width: 640px !important; }
|
3349 |
+
|
3350 |
+
.ont-manual-width-641 {
|
3351 |
+
width: 641px !important; }
|
3352 |
+
|
3353 |
+
.ont-manual-width-642 {
|
3354 |
+
width: 642px !important; }
|
3355 |
+
|
3356 |
+
.ont-manual-width-643 {
|
3357 |
+
width: 643px !important; }
|
3358 |
+
|
3359 |
+
.ont-manual-width-644 {
|
3360 |
+
width: 644px !important; }
|
3361 |
+
|
3362 |
+
.ont-manual-width-645 {
|
3363 |
+
width: 645px !important; }
|
3364 |
+
|
3365 |
+
.ont-manual-width-646 {
|
3366 |
+
width: 646px !important; }
|
3367 |
+
|
3368 |
+
.ont-manual-width-647 {
|
3369 |
+
width: 647px !important; }
|
3370 |
+
|
3371 |
+
.ont-manual-width-648 {
|
3372 |
+
width: 648px !important; }
|
3373 |
+
|
3374 |
+
.ont-manual-width-649 {
|
3375 |
+
width: 649px !important; }
|
3376 |
+
|
3377 |
+
.ont-manual-width-650 {
|
3378 |
+
width: 650px !important; }
|
3379 |
+
|
3380 |
+
.ont-manual-width-651 {
|
3381 |
+
width: 651px !important; }
|
3382 |
+
|
3383 |
+
.ont-manual-width-652 {
|
3384 |
+
width: 652px !important; }
|
3385 |
+
|
3386 |
+
.ont-manual-width-653 {
|
3387 |
+
width: 653px !important; }
|
3388 |
+
|
3389 |
+
.ont-manual-width-654 {
|
3390 |
+
width: 654px !important; }
|
3391 |
+
|
3392 |
+
.ont-manual-width-655 {
|
3393 |
+
width: 655px !important; }
|
3394 |
+
|
3395 |
+
.ont-manual-width-656 {
|
3396 |
+
width: 656px !important; }
|
3397 |
+
|
3398 |
+
.ont-manual-width-657 {
|
3399 |
+
width: 657px !important; }
|
3400 |
+
|
3401 |
+
.ont-manual-width-658 {
|
3402 |
+
width: 658px !important; }
|
3403 |
+
|
3404 |
+
.ont-manual-width-659 {
|
3405 |
+
width: 659px !important; }
|
3406 |
+
|
3407 |
+
.ont-manual-width-660 {
|
3408 |
+
width: 660px !important; }
|
3409 |
+
|
3410 |
+
.ont-manual-width-661 {
|
3411 |
+
width: 661px !important; }
|
3412 |
+
|
3413 |
+
.ont-manual-width-662 {
|
3414 |
+
width: 662px !important; }
|
3415 |
+
|
3416 |
+
.ont-manual-width-663 {
|
3417 |
+
width: 663px !important; }
|
3418 |
+
|
3419 |
+
.ont-manual-width-664 {
|
3420 |
+
width: 664px !important; }
|
3421 |
+
|
3422 |
+
.ont-manual-width-665 {
|
3423 |
+
width: 665px !important; }
|
3424 |
+
|
3425 |
+
.ont-manual-width-666 {
|
3426 |
+
width: 666px !important; }
|
3427 |
+
|
3428 |
+
.ont-manual-width-667 {
|
3429 |
+
width: 667px !important; }
|
3430 |
+
|
3431 |
+
.ont-manual-width-668 {
|
3432 |
+
width: 668px !important; }
|
3433 |
+
|
3434 |
+
.ont-manual-width-669 {
|
3435 |
+
width: 669px !important; }
|
3436 |
+
|
3437 |
+
.ont-manual-width-670 {
|
3438 |
+
width: 670px !important; }
|
3439 |
+
|
3440 |
+
.ont-manual-width-671 {
|
3441 |
+
width: 671px !important; }
|
3442 |
+
|
3443 |
+
.ont-manual-width-672 {
|
3444 |
+
width: 672px !important; }
|
3445 |
+
|
3446 |
+
.ont-manual-width-673 {
|
3447 |
+
width: 673px !important; }
|
3448 |
+
|
3449 |
+
.ont-manual-width-674 {
|
3450 |
+
width: 674px !important; }
|
3451 |
+
|
3452 |
+
.ont-manual-width-675 {
|
3453 |
+
width: 675px !important; }
|
3454 |
+
|
3455 |
+
.ont-manual-width-676 {
|
3456 |
+
width: 676px !important; }
|
3457 |
+
|
3458 |
+
.ont-manual-width-677 {
|
3459 |
+
width: 677px !important; }
|
3460 |
+
|
3461 |
+
.ont-manual-width-678 {
|
3462 |
+
width: 678px !important; }
|
3463 |
+
|
3464 |
+
.ont-manual-width-679 {
|
3465 |
+
width: 679px !important; }
|
3466 |
+
|
3467 |
+
.ont-manual-width-680 {
|
3468 |
+
width: 680px !important; }
|
3469 |
+
|
3470 |
+
.ont-manual-width-681 {
|
3471 |
+
width: 681px !important; }
|
3472 |
+
|
3473 |
+
.ont-manual-width-682 {
|
3474 |
+
width: 682px !important; }
|
3475 |
+
|
3476 |
+
.ont-manual-width-683 {
|
3477 |
+
width: 683px !important; }
|
3478 |
+
|
3479 |
+
.ont-manual-width-684 {
|
3480 |
+
width: 684px !important; }
|
3481 |
+
|
3482 |
+
.ont-manual-width-685 {
|
3483 |
+
width: 685px !important; }
|
3484 |
+
|
3485 |
+
.ont-manual-width-686 {
|
3486 |
+
width: 686px !important; }
|
3487 |
+
|
3488 |
+
.ont-manual-width-687 {
|
3489 |
+
width: 687px !important; }
|
3490 |
+
|
3491 |
+
.ont-manual-width-688 {
|
3492 |
+
width: 688px !important; }
|
3493 |
+
|
3494 |
+
.ont-manual-width-689 {
|
3495 |
+
width: 689px !important; }
|
3496 |
+
|
3497 |
+
.ont-manual-width-690 {
|
3498 |
+
width: 690px !important; }
|
3499 |
+
|
3500 |
+
.ont-manual-width-691 {
|
3501 |
+
width: 691px !important; }
|
3502 |
+
|
3503 |
+
.ont-manual-width-692 {
|
3504 |
+
width: 692px !important; }
|
3505 |
+
|
3506 |
+
.ont-manual-width-693 {
|
3507 |
+
width: 693px !important; }
|
3508 |
+
|
3509 |
+
.ont-manual-width-694 {
|
3510 |
+
width: 694px !important; }
|
3511 |
+
|
3512 |
+
.ont-manual-width-695 {
|
3513 |
+
width: 695px !important; }
|
3514 |
+
|
3515 |
+
.ont-manual-width-696 {
|
3516 |
+
width: 696px !important; }
|
3517 |
+
|
3518 |
+
.ont-manual-width-697 {
|
3519 |
+
width: 697px !important; }
|
3520 |
+
|
3521 |
+
.ont-manual-width-698 {
|
3522 |
+
width: 698px !important; }
|
3523 |
+
|
3524 |
+
.ont-manual-width-699 {
|
3525 |
+
width: 699px !important; }
|
3526 |
+
|
3527 |
+
.ont-manual-width-700 {
|
3528 |
+
width: 700px !important; }
|
3529 |
+
|
3530 |
+
.ont-manual-width-701 {
|
3531 |
+
width: 701px !important; }
|
3532 |
+
|
3533 |
+
.ont-manual-width-702 {
|
3534 |
+
width: 702px !important; }
|
3535 |
+
|
3536 |
+
.ont-manual-width-703 {
|
3537 |
+
width: 703px !important; }
|
3538 |
+
|
3539 |
+
.ont-manual-width-704 {
|
3540 |
+
width: 704px !important; }
|
3541 |
+
|
3542 |
+
.ont-manual-width-705 {
|
3543 |
+
width: 705px !important; }
|
3544 |
+
|
3545 |
+
.ont-manual-width-706 {
|
3546 |
+
width: 706px !important; }
|
3547 |
+
|
3548 |
+
.ont-manual-width-707 {
|
3549 |
+
width: 707px !important; }
|
3550 |
+
|
3551 |
+
.ont-manual-width-708 {
|
3552 |
+
width: 708px !important; }
|
3553 |
+
|
3554 |
+
.ont-manual-width-709 {
|
3555 |
+
width: 709px !important; }
|
3556 |
+
|
3557 |
+
.ont-manual-width-710 {
|
3558 |
+
width: 710px !important; }
|
3559 |
+
|
3560 |
+
.ont-manual-width-711 {
|
3561 |
+
width: 711px !important; }
|
3562 |
+
|
3563 |
+
.ont-manual-width-712 {
|
3564 |
+
width: 712px !important; }
|
3565 |
+
|
3566 |
+
.ont-manual-width-713 {
|
3567 |
+
width: 713px !important; }
|
3568 |
+
|
3569 |
+
.ont-manual-width-714 {
|
3570 |
+
width: 714px !important; }
|
3571 |
+
|
3572 |
+
.ont-manual-width-715 {
|
3573 |
+
width: 715px !important; }
|
3574 |
+
|
3575 |
+
.ont-manual-width-716 {
|
3576 |
+
width: 716px !important; }
|
3577 |
+
|
3578 |
+
.ont-manual-width-717 {
|
3579 |
+
width: 717px !important; }
|
3580 |
+
|
3581 |
+
.ont-manual-width-718 {
|
3582 |
+
width: 718px !important; }
|
3583 |
+
|
3584 |
+
.ont-manual-width-719 {
|
3585 |
+
width: 719px !important; }
|
3586 |
+
|
3587 |
+
.ont-manual-width-720 {
|
3588 |
+
width: 720px !important; }
|
3589 |
+
|
3590 |
+
.ont-manual-width-721 {
|
3591 |
+
width: 721px !important; }
|
3592 |
+
|
3593 |
+
.ont-manual-width-722 {
|
3594 |
+
width: 722px !important; }
|
3595 |
+
|
3596 |
+
.ont-manual-width-723 {
|
3597 |
+
width: 723px !important; }
|
3598 |
+
|
3599 |
+
.ont-manual-width-724 {
|
3600 |
+
width: 724px !important; }
|
3601 |
+
|
3602 |
+
.ont-manual-width-725 {
|
3603 |
+
width: 725px !important; }
|
3604 |
+
|
3605 |
+
.ont-manual-width-726 {
|
3606 |
+
width: 726px !important; }
|
3607 |
+
|
3608 |
+
.ont-manual-width-727 {
|
3609 |
+
width: 727px !important; }
|
3610 |
+
|
3611 |
+
.ont-manual-width-728 {
|
3612 |
+
width: 728px !important; }
|
3613 |
+
|
3614 |
+
.ont-manual-width-729 {
|
3615 |
+
width: 729px !important; }
|
3616 |
+
|
3617 |
+
.ont-manual-width-730 {
|
3618 |
+
width: 730px !important; }
|
3619 |
+
|
3620 |
+
.ont-manual-width-731 {
|
3621 |
+
width: 731px !important; }
|
3622 |
+
|
3623 |
+
.ont-manual-width-732 {
|
3624 |
+
width: 732px !important; }
|
3625 |
+
|
3626 |
+
.ont-manual-width-733 {
|
3627 |
+
width: 733px !important; }
|
3628 |
+
|
3629 |
+
.ont-manual-width-734 {
|
3630 |
+
width: 734px !important; }
|
3631 |
+
|
3632 |
+
.ont-manual-width-735 {
|
3633 |
+
width: 735px !important; }
|
3634 |
+
|
3635 |
+
.ont-manual-width-736 {
|
3636 |
+
width: 736px !important; }
|
3637 |
+
|
3638 |
+
.ont-manual-width-737 {
|
3639 |
+
width: 737px !important; }
|
3640 |
+
|
3641 |
+
.ont-manual-width-738 {
|
3642 |
+
width: 738px !important; }
|
3643 |
+
|
3644 |
+
.ont-manual-width-739 {
|
3645 |
+
width: 739px !important; }
|
3646 |
+
|
3647 |
+
.ont-manual-width-740 {
|
3648 |
+
width: 740px !important; }
|
3649 |
+
|
3650 |
+
.ont-manual-width-741 {
|
3651 |
+
width: 741px !important; }
|
3652 |
+
|
3653 |
+
.ont-manual-width-742 {
|
3654 |
+
width: 742px !important; }
|
3655 |
+
|
3656 |
+
.ont-manual-width-743 {
|
3657 |
+
width: 743px !important; }
|
3658 |
+
|
3659 |
+
.ont-manual-width-744 {
|
3660 |
+
width: 744px !important; }
|
3661 |
+
|
3662 |
+
.ont-manual-width-745 {
|
3663 |
+
width: 745px !important; }
|
3664 |
+
|
3665 |
+
.ont-manual-width-746 {
|
3666 |
+
width: 746px !important; }
|
3667 |
+
|
3668 |
+
.ont-manual-width-747 {
|
3669 |
+
width: 747px !important; }
|
3670 |
+
|
3671 |
+
.ont-manual-width-748 {
|
3672 |
+
width: 748px !important; }
|
3673 |
+
|
3674 |
+
.ont-manual-width-749 {
|
3675 |
+
width: 749px !important; }
|
3676 |
+
|
3677 |
+
.ont-manual-width-750 {
|
3678 |
+
width: 750px !important; }
|
3679 |
+
|
3680 |
+
.ont-manual-width-751 {
|
3681 |
+
width: 751px !important; }
|
3682 |
+
|
3683 |
+
.ont-manual-width-752 {
|
3684 |
+
width: 752px !important; }
|
3685 |
+
|
3686 |
+
.ont-manual-width-753 {
|
3687 |
+
width: 753px !important; }
|
3688 |
+
|
3689 |
+
.ont-manual-width-754 {
|
3690 |
+
width: 754px !important; }
|
3691 |
+
|
3692 |
+
.ont-manual-width-755 {
|
3693 |
+
width: 755px !important; }
|
3694 |
+
|
3695 |
+
.ont-manual-width-756 {
|
3696 |
+
width: 756px !important; }
|
3697 |
+
|
3698 |
+
.ont-manual-width-757 {
|
3699 |
+
width: 757px !important; }
|
3700 |
+
|
3701 |
+
.ont-manual-width-758 {
|
3702 |
+
width: 758px !important; }
|
3703 |
+
|
3704 |
+
.ont-manual-width-759 {
|
3705 |
+
width: 759px !important; }
|
3706 |
+
|
3707 |
+
.ont-manual-width-760 {
|
3708 |
+
width: 760px !important; }
|
3709 |
+
|
3710 |
+
.ont-manual-width-761 {
|
3711 |
+
width: 761px !important; }
|
3712 |
+
|
3713 |
+
.ont-manual-width-762 {
|
3714 |
+
width: 762px !important; }
|
3715 |
+
|
3716 |
+
.ont-manual-width-763 {
|
3717 |
+
width: 763px !important; }
|
3718 |
+
|
3719 |
+
.ont-manual-width-764 {
|
3720 |
+
width: 764px !important; }
|
3721 |
+
|
3722 |
+
.ont-manual-width-765 {
|
3723 |
+
width: 765px !important; }
|
3724 |
+
|
3725 |
+
.ont-manual-width-766 {
|
3726 |
+
width: 766px !important; }
|
3727 |
+
|
3728 |
+
.ont-manual-width-767 {
|
3729 |
+
width: 767px !important; }
|
3730 |
+
|
3731 |
+
.ont-manual-width-768 {
|
3732 |
+
width: 768px !important; }
|
3733 |
+
|
3734 |
+
.ont-manual-width-769 {
|
3735 |
+
width: 769px !important; }
|
3736 |
+
|
3737 |
+
.ont-manual-width-770 {
|
3738 |
+
width: 770px !important; }
|
3739 |
+
|
3740 |
+
.ont-manual-width-771 {
|
3741 |
+
width: 771px !important; }
|
3742 |
+
|
3743 |
+
.ont-manual-width-772 {
|
3744 |
+
width: 772px !important; }
|
3745 |
+
|
3746 |
+
.ont-manual-width-773 {
|
3747 |
+
width: 773px !important; }
|
3748 |
+
|
3749 |
+
.ont-manual-width-774 {
|
3750 |
+
width: 774px !important; }
|
3751 |
+
|
3752 |
+
.ont-manual-width-775 {
|
3753 |
+
width: 775px !important; }
|
3754 |
+
|
3755 |
+
.ont-manual-width-776 {
|
3756 |
+
width: 776px !important; }
|
3757 |
+
|
3758 |
+
.ont-manual-width-777 {
|
3759 |
+
width: 777px !important; }
|
3760 |
+
|
3761 |
+
.ont-manual-width-778 {
|
3762 |
+
width: 778px !important; }
|
3763 |
+
|
3764 |
+
.ont-manual-width-779 {
|
3765 |
+
width: 779px !important; }
|
3766 |
+
|
3767 |
+
.ont-manual-width-780 {
|
3768 |
+
width: 780px !important; }
|
3769 |
+
|
3770 |
+
.ont-manual-width-781 {
|
3771 |
+
width: 781px !important; }
|
3772 |
+
|
3773 |
+
.ont-manual-width-782 {
|
3774 |
+
width: 782px !important; }
|
3775 |
+
|
3776 |
+
.ont-manual-width-783 {
|
3777 |
+
width: 783px !important; }
|
3778 |
+
|
3779 |
+
.ont-manual-width-784 {
|
3780 |
+
width: 784px !important; }
|
3781 |
+
|
3782 |
+
.ont-manual-width-785 {
|
3783 |
+
width: 785px !important; }
|
3784 |
+
|
3785 |
+
.ont-manual-width-786 {
|
3786 |
+
width: 786px !important; }
|
3787 |
+
|
3788 |
+
.ont-manual-width-787 {
|
3789 |
+
width: 787px !important; }
|
3790 |
+
|
3791 |
+
.ont-manual-width-788 {
|
3792 |
+
width: 788px !important; }
|
3793 |
+
|
3794 |
+
.ont-manual-width-789 {
|
3795 |
+
width: 789px !important; }
|
3796 |
+
|
3797 |
+
.ont-manual-width-790 {
|
3798 |
+
width: 790px !important; }
|
3799 |
+
|
3800 |
+
.ont-manual-width-791 {
|
3801 |
+
width: 791px !important; }
|
3802 |
+
|
3803 |
+
.ont-manual-width-792 {
|
3804 |
+
width: 792px !important; }
|
3805 |
+
|
3806 |
+
.ont-manual-width-793 {
|
3807 |
+
width: 793px !important; }
|
3808 |
+
|
3809 |
+
.ont-manual-width-794 {
|
3810 |
+
width: 794px !important; }
|
3811 |
+
|
3812 |
+
.ont-manual-width-795 {
|
3813 |
+
width: 795px !important; }
|
3814 |
+
|
3815 |
+
.ont-manual-width-796 {
|
3816 |
+
width: 796px !important; }
|
3817 |
+
|
3818 |
+
.ont-manual-width-797 {
|
3819 |
+
width: 797px !important; }
|
3820 |
+
|
3821 |
+
.ont-manual-width-798 {
|
3822 |
+
width: 798px !important; }
|
3823 |
+
|
3824 |
+
.ont-manual-width-799 {
|
3825 |
+
width: 799px !important; }
|
3826 |
+
|
3827 |
+
.ont-manual-width-800 {
|
3828 |
+
width: 800px !important; }
|
3829 |
+
|
3830 |
+
.ont-manual-width-801 {
|
3831 |
+
width: 801px !important; }
|
3832 |
+
|
3833 |
+
.ont-manual-width-802 {
|
3834 |
+
width: 802px !important; }
|
3835 |
+
|
3836 |
+
.ont-manual-width-803 {
|
3837 |
+
width: 803px !important; }
|
3838 |
+
|
3839 |
+
.ont-manual-width-804 {
|
3840 |
+
width: 804px !important; }
|
3841 |
+
|
3842 |
+
.ont-manual-width-805 {
|
3843 |
+
width: 805px !important; }
|
3844 |
+
|
3845 |
+
.ont-manual-width-806 {
|
3846 |
+
width: 806px !important; }
|
3847 |
+
|
3848 |
+
.ont-manual-width-807 {
|
3849 |
+
width: 807px !important; }
|
3850 |
+
|
3851 |
+
.ont-manual-width-808 {
|
3852 |
+
width: 808px !important; }
|
3853 |
+
|
3854 |
+
.ont-manual-width-809 {
|
3855 |
+
width: 809px !important; }
|
3856 |
+
|
3857 |
+
.ont-manual-width-810 {
|
3858 |
+
width: 810px !important; }
|
3859 |
+
|
3860 |
+
.ont-manual-width-811 {
|
3861 |
+
width: 811px !important; }
|
3862 |
+
|
3863 |
+
.ont-manual-width-812 {
|
3864 |
+
width: 812px !important; }
|
3865 |
+
|
3866 |
+
.ont-manual-width-813 {
|
3867 |
+
width: 813px !important; }
|
3868 |
+
|
3869 |
+
.ont-manual-width-814 {
|
3870 |
+
width: 814px !important; }
|
3871 |
+
|
3872 |
+
.ont-manual-width-815 {
|
3873 |
+
width: 815px !important; }
|
3874 |
+
|
3875 |
+
.ont-manual-width-816 {
|
3876 |
+
width: 816px !important; }
|
3877 |
+
|
3878 |
+
.ont-manual-width-817 {
|
3879 |
+
width: 817px !important; }
|
3880 |
+
|
3881 |
+
.ont-manual-width-818 {
|
3882 |
+
width: 818px !important; }
|
3883 |
+
|
3884 |
+
.ont-manual-width-819 {
|
3885 |
+
width: 819px !important; }
|
3886 |
+
|
3887 |
+
.ont-manual-width-820 {
|
3888 |
+
width: 820px !important; }
|
3889 |
+
|
3890 |
+
.ont-manual-width-821 {
|
3891 |
+
width: 821px !important; }
|
3892 |
+
|
3893 |
+
.ont-manual-width-822 {
|
3894 |
+
width: 822px !important; }
|
3895 |
+
|
3896 |
+
.ont-manual-width-823 {
|
3897 |
+
width: 823px !important; }
|
3898 |
+
|
3899 |
+
.ont-manual-width-824 {
|
3900 |
+
width: 824px !important; }
|
3901 |
+
|
3902 |
+
.ont-manual-width-825 {
|
3903 |
+
width: 825px !important; }
|
3904 |
+
|
3905 |
+
.ont-manual-width-826 {
|
3906 |
+
width: 826px !important; }
|
3907 |
+
|
3908 |
+
.ont-manual-width-827 {
|
3909 |
+
width: 827px !important; }
|
3910 |
+
|
3911 |
+
.ont-manual-width-828 {
|
3912 |
+
width: 828px !important; }
|
3913 |
+
|
3914 |
+
.ont-manual-width-829 {
|
3915 |
+
width: 829px !important; }
|
3916 |
+
|
3917 |
+
.ont-manual-width-830 {
|
3918 |
+
width: 830px !important; }
|
3919 |
+
|
3920 |
+
.ont-manual-width-831 {
|
3921 |
+
width: 831px !important; }
|
3922 |
+
|
3923 |
+
.ont-manual-width-832 {
|
3924 |
+
width: 832px !important; }
|
3925 |
+
|
3926 |
+
.ont-manual-width-833 {
|
3927 |
+
width: 833px !important; }
|
3928 |
+
|
3929 |
+
.ont-manual-width-834 {
|
3930 |
+
width: 834px !important; }
|
3931 |
+
|
3932 |
+
.ont-manual-width-835 {
|
3933 |
+
width: 835px !important; }
|
3934 |
+
|
3935 |
+
.ont-manual-width-836 {
|
3936 |
+
width: 836px !important; }
|
3937 |
+
|
3938 |
+
.ont-manual-width-837 {
|
3939 |
+
width: 837px !important; }
|
3940 |
+
|
3941 |
+
.ont-manual-width-838 {
|
3942 |
+
width: 838px !important; }
|
3943 |
+
|
3944 |
+
.ont-manual-width-839 {
|
3945 |
+
width: 839px !important; }
|
3946 |
+
|
3947 |
+
.ont-manual-width-840 {
|
3948 |
+
width: 840px !important; }
|
3949 |
+
|
3950 |
+
.ont-manual-width-841 {
|
3951 |
+
width: 841px !important; }
|
3952 |
+
|
3953 |
+
.ont-manual-width-842 {
|
3954 |
+
width: 842px !important; }
|
3955 |
+
|
3956 |
+
.ont-manual-width-843 {
|
3957 |
+
width: 843px !important; }
|
3958 |
+
|
3959 |
+
.ont-manual-width-844 {
|
3960 |
+
width: 844px !important; }
|
3961 |
+
|
3962 |
+
.ont-manual-width-845 {
|
3963 |
+
width: 845px !important; }
|
3964 |
+
|
3965 |
+
.ont-manual-width-846 {
|
3966 |
+
width: 846px !important; }
|
3967 |
+
|
3968 |
+
.ont-manual-width-847 {
|
3969 |
+
width: 847px !important; }
|
3970 |
+
|
3971 |
+
.ont-manual-width-848 {
|
3972 |
+
width: 848px !important; }
|
3973 |
+
|
3974 |
+
.ont-manual-width-849 {
|
3975 |
+
width: 849px !important; }
|
3976 |
+
|
3977 |
+
.ont-manual-width-850 {
|
3978 |
+
width: 850px !important; }
|
3979 |
+
|
3980 |
+
.ont-manual-width-851 {
|
3981 |
+
width: 851px !important; }
|
3982 |
+
|
3983 |
+
.ont-manual-width-852 {
|
3984 |
+
width: 852px !important; }
|
3985 |
+
|
3986 |
+
.ont-manual-width-853 {
|
3987 |
+
width: 853px !important; }
|
3988 |
+
|
3989 |
+
.ont-manual-width-854 {
|
3990 |
+
width: 854px !important; }
|
3991 |
+
|
3992 |
+
.ont-manual-width-855 {
|
3993 |
+
width: 855px !important; }
|
3994 |
+
|
3995 |
+
.ont-manual-width-856 {
|
3996 |
+
width: 856px !important; }
|
3997 |
+
|
3998 |
+
.ont-manual-width-857 {
|
3999 |
+
width: 857px !important; }
|
4000 |
+
|
4001 |
+
.ont-manual-width-858 {
|
4002 |
+
width: 858px !important; }
|
4003 |
+
|
4004 |
+
.ont-manual-width-859 {
|
4005 |
+
width: 859px !important; }
|
4006 |
+
|
4007 |
+
.ont-manual-width-860 {
|
4008 |
+
width: 860px !important; }
|
4009 |
+
|
4010 |
+
.ont-manual-width-861 {
|
4011 |
+
width: 861px !important; }
|
4012 |
+
|
4013 |
+
.ont-manual-width-862 {
|
4014 |
+
width: 862px !important; }
|
4015 |
+
|
4016 |
+
.ont-manual-width-863 {
|
4017 |
+
width: 863px !important; }
|
4018 |
+
|
4019 |
+
.ont-manual-width-864 {
|
4020 |
+
width: 864px !important; }
|
4021 |
+
|
4022 |
+
.ont-manual-width-865 {
|
4023 |
+
width: 865px !important; }
|
4024 |
+
|
4025 |
+
.ont-manual-width-866 {
|
4026 |
+
width: 866px !important; }
|
4027 |
+
|
4028 |
+
.ont-manual-width-867 {
|
4029 |
+
width: 867px !important; }
|
4030 |
+
|
4031 |
+
.ont-manual-width-868 {
|
4032 |
+
width: 868px !important; }
|
4033 |
+
|
4034 |
+
.ont-manual-width-869 {
|
4035 |
+
width: 869px !important; }
|
4036 |
+
|
4037 |
+
.ont-manual-width-870 {
|
4038 |
+
width: 870px !important; }
|
4039 |
+
|
4040 |
+
.ont-manual-width-871 {
|
4041 |
+
width: 871px !important; }
|
4042 |
+
|
4043 |
+
.ont-manual-width-872 {
|
4044 |
+
width: 872px !important; }
|
4045 |
+
|
4046 |
+
.ont-manual-width-873 {
|
4047 |
+
width: 873px !important; }
|
4048 |
+
|
4049 |
+
.ont-manual-width-874 {
|
4050 |
+
width: 874px !important; }
|
4051 |
+
|
4052 |
+
.ont-manual-width-875 {
|
4053 |
+
width: 875px !important; }
|
4054 |
+
|
4055 |
+
.ont-manual-width-876 {
|
4056 |
+
width: 876px !important; }
|
4057 |
+
|
4058 |
+
.ont-manual-width-877 {
|
4059 |
+
width: 877px !important; }
|
4060 |
+
|
4061 |
+
.ont-manual-width-878 {
|
4062 |
+
width: 878px !important; }
|
4063 |
+
|
4064 |
+
.ont-manual-width-879 {
|
4065 |
+
width: 879px !important; }
|
4066 |
+
|
4067 |
+
.ont-manual-width-880 {
|
4068 |
+
width: 880px !important; }
|
4069 |
+
|
4070 |
+
.ont-manual-width-881 {
|
4071 |
+
width: 881px !important; }
|
4072 |
+
|
4073 |
+
.ont-manual-width-882 {
|
4074 |
+
width: 882px !important; }
|
4075 |
+
|
4076 |
+
.ont-manual-width-883 {
|
4077 |
+
width: 883px !important; }
|
4078 |
+
|
4079 |
+
.ont-manual-width-884 {
|
4080 |
+
width: 884px !important; }
|
4081 |
+
|
4082 |
+
.ont-manual-width-885 {
|
4083 |
+
width: 885px !important; }
|
4084 |
+
|
4085 |
+
.ont-manual-width-886 {
|
4086 |
+
width: 886px !important; }
|
4087 |
+
|
4088 |
+
.ont-manual-width-887 {
|
4089 |
+
width: 887px !important; }
|
4090 |
+
|
4091 |
+
.ont-manual-width-888 {
|
4092 |
+
width: 888px !important; }
|
4093 |
+
|
4094 |
+
.ont-manual-width-889 {
|
4095 |
+
width: 889px !important; }
|
4096 |
+
|
4097 |
+
.ont-manual-width-890 {
|
4098 |
+
width: 890px !important; }
|
4099 |
+
|
4100 |
+
.ont-manual-width-891 {
|
4101 |
+
width: 891px !important; }
|
4102 |
+
|
4103 |
+
.ont-manual-width-892 {
|
4104 |
+
width: 892px !important; }
|
4105 |
+
|
4106 |
+
.ont-manual-width-893 {
|
4107 |
+
width: 893px !important; }
|
4108 |
+
|
4109 |
+
.ont-manual-width-894 {
|
4110 |
+
width: 894px !important; }
|
4111 |
+
|
4112 |
+
.ont-manual-width-895 {
|
4113 |
+
width: 895px !important; }
|
4114 |
+
|
4115 |
+
.ont-manual-width-896 {
|
4116 |
+
width: 896px !important; }
|
4117 |
+
|
4118 |
+
.ont-manual-width-897 {
|
4119 |
+
width: 897px !important; }
|
4120 |
+
|
4121 |
+
.ont-manual-width-898 {
|
4122 |
+
width: 898px !important; }
|
4123 |
+
|
4124 |
+
.ont-manual-width-899 {
|
4125 |
+
width: 899px !important; }
|
4126 |
+
|
4127 |
+
.ont-manual-width-900 {
|
4128 |
+
width: 900px !important; }
|
4129 |
+
|
4130 |
+
.ont-manual-width-901 {
|
4131 |
+
width: 901px !important; }
|
4132 |
+
|
4133 |
+
.ont-manual-width-902 {
|
4134 |
+
width: 902px !important; }
|
4135 |
+
|
4136 |
+
.ont-manual-width-903 {
|
4137 |
+
width: 903px !important; }
|
4138 |
+
|
4139 |
+
.ont-manual-width-904 {
|
4140 |
+
width: 904px !important; }
|
4141 |
+
|
4142 |
+
.ont-manual-width-905 {
|
4143 |
+
width: 905px !important; }
|
4144 |
+
|
4145 |
+
.ont-manual-width-906 {
|
4146 |
+
width: 906px !important; }
|
4147 |
+
|
4148 |
+
.ont-manual-width-907 {
|
4149 |
+
width: 907px !important; }
|
4150 |
+
|
4151 |
+
.ont-manual-width-908 {
|
4152 |
+
width: 908px !important; }
|
4153 |
+
|
4154 |
+
.ont-manual-width-909 {
|
4155 |
+
width: 909px !important; }
|
4156 |
+
|
4157 |
+
.ont-manual-width-910 {
|
4158 |
+
width: 910px !important; }
|
4159 |
+
|
4160 |
+
.ont-manual-width-911 {
|
4161 |
+
width: 911px !important; }
|
4162 |
+
|
4163 |
+
.ont-manual-width-912 {
|
4164 |
+
width: 912px !important; }
|
4165 |
+
|
4166 |
+
.ont-manual-width-913 {
|
4167 |
+
width: 913px !important; }
|
4168 |
+
|
4169 |
+
.ont-manual-width-914 {
|
4170 |
+
width: 914px !important; }
|
4171 |
+
|
4172 |
+
.ont-manual-width-915 {
|
4173 |
+
width: 915px !important; }
|
4174 |
+
|
4175 |
+
.ont-manual-width-916 {
|
4176 |
+
width: 916px !important; }
|
4177 |
+
|
4178 |
+
.ont-manual-width-917 {
|
4179 |
+
width: 917px !important; }
|
4180 |
+
|
4181 |
+
.ont-manual-width-918 {
|
4182 |
+
width: 918px !important; }
|
4183 |
+
|
4184 |
+
.ont-manual-width-919 {
|
4185 |
+
width: 919px !important; }
|
4186 |
+
|
4187 |
+
.ont-manual-width-920 {
|
4188 |
+
width: 920px !important; }
|
4189 |
+
|
4190 |
+
.ont-manual-width-921 {
|
4191 |
+
width: 921px !important; }
|
4192 |
+
|
4193 |
+
.ont-manual-width-922 {
|
4194 |
+
width: 922px !important; }
|
4195 |
+
|
4196 |
+
.ont-manual-width-923 {
|
4197 |
+
width: 923px !important; }
|
4198 |
+
|
4199 |
+
.ont-manual-width-924 {
|
4200 |
+
width: 924px !important; }
|
4201 |
+
|
4202 |
+
.ont-manual-width-925 {
|
4203 |
+
width: 925px !important; }
|
4204 |
+
|
4205 |
+
.ont-manual-width-926 {
|
4206 |
+
width: 926px !important; }
|
4207 |
+
|
4208 |
+
.ont-manual-width-927 {
|
4209 |
+
width: 927px !important; }
|
4210 |
+
|
4211 |
+
.ont-manual-width-928 {
|
4212 |
+
width: 928px !important; }
|
4213 |
+
|
4214 |
+
.ont-manual-width-929 {
|
4215 |
+
width: 929px !important; }
|
4216 |
+
|
4217 |
+
.ont-manual-width-930 {
|
4218 |
+
width: 930px !important; }
|
4219 |
+
|
4220 |
+
.ont-manual-width-931 {
|
4221 |
+
width: 931px !important; }
|
4222 |
+
|
4223 |
+
.ont-manual-width-932 {
|
4224 |
+
width: 932px !important; }
|
4225 |
+
|
4226 |
+
.ont-manual-width-933 {
|
4227 |
+
width: 933px !important; }
|
4228 |
+
|
4229 |
+
.ont-manual-width-934 {
|
4230 |
+
width: 934px !important; }
|
4231 |
+
|
4232 |
+
.ont-manual-width-935 {
|
4233 |
+
width: 935px !important; }
|
4234 |
+
|
4235 |
+
.ont-manual-width-936 {
|
4236 |
+
width: 936px !important; }
|
4237 |
+
|
4238 |
+
.ont-manual-width-937 {
|
4239 |
+
width: 937px !important; }
|
4240 |
+
|
4241 |
+
.ont-manual-width-938 {
|
4242 |
+
width: 938px !important; }
|
4243 |
+
|
4244 |
+
.ont-manual-width-939 {
|
4245 |
+
width: 939px !important; }
|
4246 |
+
|
4247 |
+
.ont-manual-width-940 {
|
4248 |
+
width: 940px !important; }
|
4249 |
+
|
4250 |
+
.ont-manual-width-941 {
|
4251 |
+
width: 941px !important; }
|
4252 |
+
|
4253 |
+
.ont-manual-width-942 {
|
4254 |
+
width: 942px !important; }
|
4255 |
+
|
4256 |
+
.ont-manual-width-943 {
|
4257 |
+
width: 943px !important; }
|
4258 |
+
|
4259 |
+
.ont-manual-width-944 {
|
4260 |
+
width: 944px !important; }
|
4261 |
+
|
4262 |
+
.ont-manual-width-945 {
|
4263 |
+
width: 945px !important; }
|
4264 |
+
|
4265 |
+
.ont-manual-width-946 {
|
4266 |
+
width: 946px !important; }
|
4267 |
+
|
4268 |
+
.ont-manual-width-947 {
|
4269 |
+
width: 947px !important; }
|
4270 |
+
|
4271 |
+
.ont-manual-width-948 {
|
4272 |
+
width: 948px !important; }
|
4273 |
+
|
4274 |
+
.ont-manual-width-949 {
|
4275 |
+
width: 949px !important; }
|
4276 |
+
|
4277 |
+
.ont-manual-width-950 {
|
4278 |
+
width: 950px !important; }
|
4279 |
+
|
4280 |
+
.ont-manual-width-951 {
|
4281 |
+
width: 951px !important; }
|
4282 |
+
|
4283 |
+
.ont-manual-width-952 {
|
4284 |
+
width: 952px !important; }
|
4285 |
+
|
4286 |
+
.ont-manual-width-953 {
|
4287 |
+
width: 953px !important; }
|
4288 |
+
|
4289 |
+
.ont-manual-width-954 {
|
4290 |
+
width: 954px !important; }
|
4291 |
+
|
4292 |
+
.ont-manual-width-955 {
|
4293 |
+
width: 955px !important; }
|
4294 |
+
|
4295 |
+
.ont-manual-width-956 {
|
4296 |
+
width: 956px !important; }
|
4297 |
+
|
4298 |
+
.ont-manual-width-957 {
|
4299 |
+
width: 957px !important; }
|
4300 |
+
|
4301 |
+
.ont-manual-width-958 {
|
4302 |
+
width: 958px !important; }
|
4303 |
+
|
4304 |
+
.ont-manual-width-959 {
|
4305 |
+
width: 959px !important; }
|
4306 |
+
|
4307 |
+
.ont-manual-width-960 {
|
4308 |
+
width: 960px !important; }
|
4309 |
+
|
4310 |
+
.ont-manual-width-961 {
|
4311 |
+
width: 961px !important; }
|
4312 |
+
|
4313 |
+
.ont-manual-width-962 {
|
4314 |
+
width: 962px !important; }
|
4315 |
+
|
4316 |
+
.ont-manual-width-963 {
|
4317 |
+
width: 963px !important; }
|
4318 |
+
|
4319 |
+
.ont-manual-width-964 {
|
4320 |
+
width: 964px !important; }
|
4321 |
+
|
4322 |
+
.ont-manual-width-965 {
|
4323 |
+
width: 965px !important; }
|
4324 |
+
|
4325 |
+
.ont-manual-width-966 {
|
4326 |
+
width: 966px !important; }
|
4327 |
+
|
4328 |
+
.ont-manual-width-967 {
|
4329 |
+
width: 967px !important; }
|
4330 |
+
|
4331 |
+
.ont-manual-width-968 {
|
4332 |
+
width: 968px !important; }
|
4333 |
+
|
4334 |
+
.ont-manual-width-969 {
|
4335 |
+
width: 969px !important; }
|
4336 |
+
|
4337 |
+
.ont-manual-width-970 {
|
4338 |
+
width: 970px !important; }
|
4339 |
+
|
4340 |
+
.ont-manual-width-971 {
|
4341 |
+
width: 971px !important; }
|
4342 |
+
|
4343 |
+
.ont-manual-width-972 {
|
4344 |
+
width: 972px !important; }
|
4345 |
+
|
4346 |
+
.ont-manual-width-973 {
|
4347 |
+
width: 973px !important; }
|
4348 |
+
|
4349 |
+
.ont-manual-width-974 {
|
4350 |
+
width: 974px !important; }
|
4351 |
+
|
4352 |
+
.ont-manual-width-975 {
|
4353 |
+
width: 975px !important; }
|
4354 |
+
|
4355 |
+
.ont-manual-width-976 {
|
4356 |
+
width: 976px !important; }
|
4357 |
+
|
4358 |
+
.ont-manual-width-977 {
|
4359 |
+
width: 977px !important; }
|
4360 |
+
|
4361 |
+
.ont-manual-width-978 {
|
4362 |
+
width: 978px !important; }
|
4363 |
+
|
4364 |
+
.ont-manual-width-979 {
|
4365 |
+
width: 979px !important; }
|
4366 |
+
|
4367 |
+
.ont-manual-width-980 {
|
4368 |
+
width: 980px !important; }
|
4369 |
+
|
4370 |
+
.ont-manual-width-981 {
|
4371 |
+
width: 981px !important; }
|
4372 |
+
|
4373 |
+
.ont-manual-width-982 {
|
4374 |
+
width: 982px !important; }
|
4375 |
+
|
4376 |
+
.ont-manual-width-983 {
|
4377 |
+
width: 983px !important; }
|
4378 |
+
|
4379 |
+
.ont-manual-width-984 {
|
4380 |
+
width: 984px !important; }
|
4381 |
+
|
4382 |
+
.ont-manual-width-985 {
|
4383 |
+
width: 985px !important; }
|
4384 |
+
|
4385 |
+
.ont-manual-width-986 {
|
4386 |
+
width: 986px !important; }
|
4387 |
+
|
4388 |
+
.ont-manual-width-987 {
|
4389 |
+
width: 987px !important; }
|
4390 |
+
|
4391 |
+
.ont-manual-width-988 {
|
4392 |
+
width: 988px !important; }
|
4393 |
+
|
4394 |
+
.ont-manual-width-989 {
|
4395 |
+
width: 989px !important; }
|
4396 |
+
|
4397 |
+
.ont-manual-width-990 {
|
4398 |
+
width: 990px !important; }
|
4399 |
+
|
4400 |
+
.ont-manual-width-991 {
|
4401 |
+
width: 991px !important; }
|
4402 |
+
|
4403 |
+
.ont-manual-width-992 {
|
4404 |
+
width: 992px !important; }
|
4405 |
+
|
4406 |
+
.ont-manual-width-993 {
|
4407 |
+
width: 993px !important; }
|
4408 |
+
|
4409 |
+
.ont-manual-width-994 {
|
4410 |
+
width: 994px !important; }
|
4411 |
+
|
4412 |
+
.ont-manual-width-995 {
|
4413 |
+
width: 995px !important; }
|
4414 |
+
|
4415 |
+
.ont-manual-width-996 {
|
4416 |
+
width: 996px !important; }
|
4417 |
+
|
4418 |
+
.ont-manual-width-997 {
|
4419 |
+
width: 997px !important; }
|
4420 |
+
|
4421 |
+
.ont-manual-width-998 {
|
4422 |
+
width: 998px !important; }
|
4423 |
+
|
4424 |
+
.ont-manual-width-999 {
|
4425 |
+
width: 999px !important; }
|
4426 |
+
|
4427 |
+
.ont-manual-width-1000 {
|
4428 |
+
width: 1000px !important; }
|
4429 |
+
|
4430 |
+
.ont-manual-width-1001 {
|
4431 |
+
width: 1001px !important; }
|
4432 |
+
|
4433 |
+
.ont-manual-width-1002 {
|
4434 |
+
width: 1002px !important; }
|
4435 |
+
|
4436 |
+
.ont-manual-width-1003 {
|
4437 |
+
width: 1003px !important; }
|
4438 |
+
|
4439 |
+
.ont-manual-width-1004 {
|
4440 |
+
width: 1004px !important; }
|
4441 |
+
|
4442 |
+
.ont-manual-width-1005 {
|
4443 |
+
width: 1005px !important; }
|
4444 |
+
|
4445 |
+
.ont-manual-width-1006 {
|
4446 |
+
width: 1006px !important; }
|
4447 |
+
|
4448 |
+
.ont-manual-width-1007 {
|
4449 |
+
width: 1007px !important; }
|
4450 |
+
|
4451 |
+
.ont-manual-width-1008 {
|
4452 |
+
width: 1008px !important; }
|
4453 |
+
|
4454 |
+
.ont-manual-width-1009 {
|
4455 |
+
width: 1009px !important; }
|
4456 |
+
|
4457 |
+
.ont-manual-width-1010 {
|
4458 |
+
width: 1010px !important; }
|
4459 |
+
|
4460 |
+
.ont-manual-width-1011 {
|
4461 |
+
width: 1011px !important; }
|
4462 |
+
|
4463 |
+
.ont-manual-width-1012 {
|
4464 |
+
width: 1012px !important; }
|
4465 |
+
|
4466 |
+
.ont-manual-width-1013 {
|
4467 |
+
width: 1013px !important; }
|
4468 |
+
|
4469 |
+
.ont-manual-width-1014 {
|
4470 |
+
width: 1014px !important; }
|
4471 |
+
|
4472 |
+
.ont-manual-width-1015 {
|
4473 |
+
width: 1015px !important; }
|
4474 |
+
|
4475 |
+
.ont-manual-width-1016 {
|
4476 |
+
width: 1016px !important; }
|
4477 |
+
|
4478 |
+
.ont-manual-width-1017 {
|
4479 |
+
width: 1017px !important; }
|
4480 |
+
|
4481 |
+
.ont-manual-width-1018 {
|
4482 |
+
width: 1018px !important; }
|
4483 |
+
|
4484 |
+
.ont-manual-width-1019 {
|
4485 |
+
width: 1019px !important; }
|
4486 |
+
|
4487 |
+
.ont-manual-width-1020 {
|
4488 |
+
width: 1020px !important; }
|
4489 |
+
|
4490 |
+
.ont-manual-width-1021 {
|
4491 |
+
width: 1021px !important; }
|
4492 |
+
|
4493 |
+
.ont-manual-width-1022 {
|
4494 |
+
width: 1022px !important; }
|
4495 |
+
|
4496 |
+
.ont-manual-width-1023 {
|
4497 |
+
width: 1023px !important; }
|
4498 |
+
|
4499 |
+
.ont-manual-width-1024 {
|
4500 |
+
width: 1024px !important; }
|
4501 |
+
|
4502 |
/* RESET MARGIN AND PADDING FOR ALL OUR ICONS ONLY */
|
4503 |
[class^="icon-access"] {
|
4504 |
margin: 0;
|
embedded/toolset/onthego-resources/onthego-styles/onthego-styles-helper.scss
CHANGED
@@ -26,6 +26,10 @@
|
|
26 |
.from-bot-#{$i} { margin-bottom:$i + px!important; }
|
27 |
}
|
28 |
|
|
|
|
|
|
|
|
|
29 |
|
30 |
/* RESET MARGIN AND PADDING FOR ALL OUR ICONS ONLY */
|
31 |
@each $name in (access, cred, layouts, module, types, views, packager, toolset, wpml, bootstrap, conditional){
|
26 |
.from-bot-#{$i} { margin-bottom:$i + px!important; }
|
27 |
}
|
28 |
|
29 |
+
@for $i from 0 through 1024 {
|
30 |
+
.ont-manual-width-#{$i} { width:$i + px!important; }
|
31 |
+
}
|
32 |
+
|
33 |
|
34 |
/* RESET MARGIN AND PADDING FOR ALL OUR ICONS ONLY */
|
35 |
@each $name in (access, cred, layouts, module, types, views, packager, toolset, wpml, bootstrap, conditional){
|
embedded/toolset/onthego-resources/onthegosystems-icons/.fontcustom-manifest.json
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
{
|
2 |
"checksum": {
|
3 |
-
"previous": "
|
4 |
-
"current": "
|
5 |
},
|
6 |
"fonts": [
|
7 |
-
"fonts/onthegosystems-
|
8 |
-
"fonts/onthegosystems-
|
9 |
-
"fonts/onthegosystems-
|
10 |
-
"fonts/onthegosystems-
|
11 |
],
|
12 |
"glyphs": {
|
13 |
"access": {
|
@@ -70,6 +70,14 @@
|
|
70 |
"codepoint": 61722,
|
71 |
"source": "vectors/toolset-logo.svg"
|
72 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
"types": {
|
74 |
"codepoint": 61723,
|
75 |
"source": "vectors/types.svg"
|
@@ -95,7 +103,7 @@
|
|
95 |
"autowidth": false,
|
96 |
"config": "fontcustom.yml",
|
97 |
"css_selector": ".icon-{{glyph}}",
|
98 |
-
"debug":
|
99 |
"file_hash": false,
|
100 |
"font_name": "onthegosystems-icons",
|
101 |
"force": false,
|
1 |
{
|
2 |
"checksum": {
|
3 |
+
"previous": "69b3ac844e2982eac8a71a161ae6068f035af7c234b4049fa236b4bce932a523",
|
4 |
+
"current": "69b3ac844e2982eac8a71a161ae6068f035af7c234b4049fa236b4bce932a523"
|
5 |
},
|
6 |
"fonts": [
|
7 |
+
"fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.ttf",
|
8 |
+
"fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.svg",
|
9 |
+
"fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.woff",
|
10 |
+
"fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.eot"
|
11 |
],
|
12 |
"glyphs": {
|
13 |
"access": {
|
70 |
"codepoint": 61722,
|
71 |
"source": "vectors/toolset-logo.svg"
|
72 |
},
|
73 |
+
"toolset-map": {
|
74 |
+
"codepoint": 61733,
|
75 |
+
"source": "vectors/toolset-map.svg"
|
76 |
+
},
|
77 |
+
"toolset-map-logo": {
|
78 |
+
"codepoint": 61732,
|
79 |
+
"source": "vectors/toolset-map-logo.svg"
|
80 |
+
},
|
81 |
"types": {
|
82 |
"codepoint": 61723,
|
83 |
"source": "vectors/types.svg"
|
103 |
"autowidth": false,
|
104 |
"config": "fontcustom.yml",
|
105 |
"css_selector": ".icon-{{glyph}}",
|
106 |
+
"debug": true,
|
107 |
"file_hash": false,
|
108 |
"font_name": "onthegosystems-icons",
|
109 |
"force": false,
|
embedded/toolset/onthego-resources/onthegosystems-icons/css/_onthegosystems-icons.scss
CHANGED
@@ -4,11 +4,11 @@
|
|
4 |
|
5 |
@font-face {
|
6 |
font-family: "onthegosystems-icons";
|
7 |
-
src: font-url("../fonts/onthegosystems-
|
8 |
-
src: font-url("../fonts/onthegosystems-
|
9 |
-
font-url("../fonts/onthegosystems-
|
10 |
-
font-url("../fonts/onthegosystems-
|
11 |
-
font-url("../fonts/onthegosystems-
|
12 |
font-weight: normal;
|
13 |
font-style: normal;
|
14 |
}
|
@@ -16,7 +16,7 @@
|
|
16 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
17 |
@font-face {
|
18 |
font-family: "onthegosystems-icons";
|
19 |
-
src: font-url("../fonts/onthegosystems-
|
20 |
}
|
21 |
}
|
22 |
|
@@ -38,6 +38,8 @@
|
|
38 |
.icon-packager:before,
|
39 |
.icon-packager-logo:before,
|
40 |
.icon-toolset-logo:before,
|
|
|
|
|
41 |
.icon-types:before,
|
42 |
.icon-types-logo:before,
|
43 |
.icon-views:before,
|
@@ -72,6 +74,8 @@
|
|
72 |
.icon-packager:before { content: "\f120"; }
|
73 |
.icon-packager-logo:before { content: "\f121"; }
|
74 |
.icon-toolset-logo:before { content: "\f11a"; }
|
|
|
|
|
75 |
.icon-types:before { content: "\f11b"; }
|
76 |
.icon-types-logo:before { content: "\f11c"; }
|
77 |
.icon-views:before { content: "\f11d"; }
|
4 |
|
5 |
@font-face {
|
6 |
font-family: "onthegosystems-icons";
|
7 |
+
src: font-url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.eot");
|
8 |
+
src: font-url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.eot?#iefix") format("embedded-opentype"),
|
9 |
+
font-url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.woff") format("woff"),
|
10 |
+
font-url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.ttf") format("truetype"),
|
11 |
+
font-url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.svg#onthegosystems-icons") format("svg");
|
12 |
font-weight: normal;
|
13 |
font-style: normal;
|
14 |
}
|
16 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
17 |
@font-face {
|
18 |
font-family: "onthegosystems-icons";
|
19 |
+
src: font-url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.svg#onthegosystems-icons") format("svg");
|
20 |
}
|
21 |
}
|
22 |
|
38 |
.icon-packager:before,
|
39 |
.icon-packager-logo:before,
|
40 |
.icon-toolset-logo:before,
|
41 |
+
.icon-toolset-map:before,
|
42 |
+
.icon-toolset-map-logo:before,
|
43 |
.icon-types:before,
|
44 |
.icon-types-logo:before,
|
45 |
.icon-views:before,
|
74 |
.icon-packager:before { content: "\f120"; }
|
75 |
.icon-packager-logo:before { content: "\f121"; }
|
76 |
.icon-toolset-logo:before { content: "\f11a"; }
|
77 |
+
.icon-toolset-map:before { content: "\f125"; }
|
78 |
+
.icon-toolset-map-logo:before { content: "\f124"; }
|
79 |
.icon-types:before { content: "\f11b"; }
|
80 |
.icon-types-logo:before { content: "\f11c"; }
|
81 |
.icon-views:before { content: "\f11d"; }
|
embedded/toolset/onthego-resources/onthegosystems-icons/css/onthegosystems-icons.css
CHANGED
@@ -4,11 +4,11 @@
|
|
4 |
|
5 |
@font-face {
|
6 |
font-family: "onthegosystems-icons";
|
7 |
-
src: url("../fonts/onthegosystems-
|
8 |
-
src: url("../fonts/onthegosystems-
|
9 |
-
url("../fonts/onthegosystems-
|
10 |
-
url("../fonts/onthegosystems-
|
11 |
-
url("../fonts/onthegosystems-
|
12 |
font-weight: normal;
|
13 |
font-style: normal;
|
14 |
}
|
@@ -16,7 +16,7 @@
|
|
16 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
17 |
@font-face {
|
18 |
font-family: "onthegosystems-icons";
|
19 |
-
src: url("../fonts/onthegosystems-
|
20 |
}
|
21 |
}
|
22 |
|
@@ -38,6 +38,8 @@
|
|
38 |
.icon-packager:before,
|
39 |
.icon-packager-logo:before,
|
40 |
.icon-toolset-logo:before,
|
|
|
|
|
41 |
.icon-types:before,
|
42 |
.icon-types-logo:before,
|
43 |
.icon-views:before,
|
@@ -72,6 +74,8 @@
|
|
72 |
.icon-packager:before { content: "\f120"; }
|
73 |
.icon-packager-logo:before { content: "\f121"; }
|
74 |
.icon-toolset-logo:before { content: "\f11a"; }
|
|
|
|
|
75 |
.icon-types:before { content: "\f11b"; }
|
76 |
.icon-types-logo:before { content: "\f11c"; }
|
77 |
.icon-views:before { content: "\f11d"; }
|
4 |
|
5 |
@font-face {
|
6 |
font-family: "onthegosystems-icons";
|
7 |
+
src: url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.eot");
|
8 |
+
src: url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.eot?#iefix") format("embedded-opentype"),
|
9 |
+
url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.woff") format("woff"),
|
10 |
+
url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.ttf") format("truetype"),
|
11 |
+
url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.svg#onthegosystems-icons") format("svg");
|
12 |
font-weight: normal;
|
13 |
font-style: normal;
|
14 |
}
|
16 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
17 |
@font-face {
|
18 |
font-family: "onthegosystems-icons";
|
19 |
+
src: url("../fonts/onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.svg#onthegosystems-icons") format("svg");
|
20 |
}
|
21 |
}
|
22 |
|
38 |
.icon-packager:before,
|
39 |
.icon-packager-logo:before,
|
40 |
.icon-toolset-logo:before,
|
41 |
+
.icon-toolset-map:before,
|
42 |
+
.icon-toolset-map-logo:before,
|
43 |
.icon-types:before,
|
44 |
.icon-types-logo:before,
|
45 |
.icon-views:before,
|
74 |
.icon-packager:before { content: "\f120"; }
|
75 |
.icon-packager-logo:before { content: "\f121"; }
|
76 |
.icon-toolset-logo:before { content: "\f11a"; }
|
77 |
+
.icon-toolset-map:before { content: "\f125"; }
|
78 |
+
.icon-toolset-map-logo:before { content: "\f124"; }
|
79 |
.icon-types:before { content: "\f11b"; }
|
80 |
.icon-types-logo:before { content: "\f11c"; }
|
81 |
.icon-views:before { content: "\f11d"; }
|
embedded/toolset/onthego-resources/onthegosystems-icons/fonts/onthegosystems-icons-preview.html
CHANGED
@@ -141,11 +141,11 @@
|
|
141 |
|
142 |
@font-face {
|
143 |
font-family: "onthegosystems-icons";
|
144 |
-
src: url("./onthegosystems-
|
145 |
-
src: url("./onthegosystems-
|
146 |
-
url("./onthegosystems-
|
147 |
-
url("./onthegosystems-
|
148 |
-
url("./onthegosystems-
|
149 |
font-weight: normal;
|
150 |
font-style: normal;
|
151 |
}
|
@@ -153,7 +153,7 @@
|
|
153 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
154 |
@font-face {
|
155 |
font-family: "onthegosystems-icons";
|
156 |
-
src: url("./onthegosystems-
|
157 |
}
|
158 |
}
|
159 |
|
@@ -175,6 +175,8 @@
|
|
175 |
.icon-packager:before,
|
176 |
.icon-packager-logo:before,
|
177 |
.icon-toolset-logo:before,
|
|
|
|
|
178 |
.icon-types:before,
|
179 |
.icon-types-logo:before,
|
180 |
.icon-views:before,
|
@@ -209,6 +211,8 @@
|
|
209 |
.icon-packager:before { content: "\f120"; }
|
210 |
.icon-packager-logo:before { content: "\f121"; }
|
211 |
.icon-toolset-logo:before { content: "\f11a"; }
|
|
|
|
|
212 |
.icon-types:before { content: "\f11b"; }
|
213 |
.icon-types-logo:before { content: "\f11c"; }
|
214 |
.icon-views:before { content: "\f11d"; }
|
@@ -229,7 +233,7 @@
|
|
229 |
<body class="characters-off">
|
230 |
<div id="page" class="container">
|
231 |
<header>
|
232 |
-
<h1>onthegosystems-icons contains
|
233 |
<a onclick="toggleCharacters(); return false;" href="#">Toggle Preview Characters</a>
|
234 |
</header>
|
235 |
|
@@ -429,6 +433,32 @@
|
|
429 |
</div>
|
430 |
</div>
|
431 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
<div class="glyph">
|
433 |
<div class="preview-glyphs">
|
434 |
<span class="step size-12"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-14"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-16"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-18"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-21"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-24"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-36"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-48"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-60"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-72"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span>
|
141 |
|
142 |
@font-face {
|
143 |
font-family: "onthegosystems-icons";
|
144 |
+
src: url("./onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.eot");
|
145 |
+
src: url("./onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.eot?#iefix") format("embedded-opentype"),
|
146 |
+
url("./onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.woff") format("woff"),
|
147 |
+
url("./onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.ttf") format("truetype"),
|
148 |
+
url("./onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.svg#onthegosystems-icons") format("svg");
|
149 |
font-weight: normal;
|
150 |
font-style: normal;
|
151 |
}
|
153 |
@media screen and (-webkit-min-device-pixel-ratio:0) {
|
154 |
@font-face {
|
155 |
font-family: "onthegosystems-icons";
|
156 |
+
src: url("./onthegosystems-icons_69b3ac844e2982eac8a71a161ae6068f.svg#onthegosystems-icons") format("svg");
|
157 |
}
|
158 |
}
|
159 |
|
175 |
.icon-packager:before,
|
176 |
.icon-packager-logo:before,
|
177 |
.icon-toolset-logo:before,
|
178 |
+
.icon-toolset-map:before,
|
179 |
+
.icon-toolset-map-logo:before,
|
180 |
.icon-types:before,
|
181 |
.icon-types-logo:before,
|
182 |
.icon-views:before,
|
211 |
.icon-packager:before { content: "\f120"; }
|
212 |
.icon-packager-logo:before { content: "\f121"; }
|
213 |
.icon-toolset-logo:before { content: "\f11a"; }
|
214 |
+
.icon-toolset-map:before { content: "\f125"; }
|
215 |
+
.icon-toolset-map-logo:before { content: "\f124"; }
|
216 |
.icon-types:before { content: "\f11b"; }
|
217 |
.icon-types-logo:before { content: "\f11c"; }
|
218 |
.icon-views:before { content: "\f11d"; }
|
233 |
<body class="characters-off">
|
234 |
<div id="page" class="container">
|
235 |
<header>
|
236 |
+
<h1>onthegosystems-icons contains 22 glyphs:</h1>
|
237 |
<a onclick="toggleCharacters(); return false;" href="#">Toggle Preview Characters</a>
|
238 |
</header>
|
239 |
|
433 |
</div>
|
434 |
</div>
|
435 |
|
436 |
+
<div class="glyph">
|
437 |
+
<div class="preview-glyphs">
|
438 |
+
<span class="step size-12"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span><span class="step size-14"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span><span class="step size-16"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span><span class="step size-18"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span><span class="step size-21"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span><span class="step size-24"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span><span class="step size-36"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span><span class="step size-48"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span><span class="step size-60"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span><span class="step size-72"><span class="letters">Pp</span><i id="icon-toolset-map" class="icon-toolset-map"></i></span>
|
439 |
+
</div>
|
440 |
+
<div class="preview-scale">
|
441 |
+
<span class="step">12</span><span class="step">14</span><span class="step">16</span><span class="step">18</span><span class="step">21</span><span class="step">24</span><span class="step">36</span><span class="step">48</span><span class="step">60</span><span class="step">72</span>
|
442 |
+
</div>
|
443 |
+
<div class="usage">
|
444 |
+
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-toolset-map" />
|
445 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf125;" />
|
446 |
+
</div>
|
447 |
+
</div>
|
448 |
+
|
449 |
+
<div class="glyph">
|
450 |
+
<div class="preview-glyphs">
|
451 |
+
<span class="step size-12"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span><span class="step size-14"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span><span class="step size-16"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span><span class="step size-18"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span><span class="step size-21"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span><span class="step size-24"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span><span class="step size-36"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span><span class="step size-48"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span><span class="step size-60"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span><span class="step size-72"><span class="letters">Pp</span><i id="icon-toolset-map-logo" class="icon-toolset-map-logo"></i></span>
|
452 |
+
</div>
|
453 |
+
<div class="preview-scale">
|
454 |
+
<span class="step">12</span><span class="step">14</span><span class="step">16</span><span class="step">18</span><span class="step">21</span><span class="step">24</span><span class="step">36</span><span class="step">48</span><span class="step">60</span><span class="step">72</span>
|
455 |
+
</div>
|
456 |
+
<div class="usage">
|
457 |
+
<input class="class" type="text" readonly="readonly" onClick="this.select();" value=".icon-toolset-map-logo" />
|
458 |
+
<input class="point" type="text" readonly="readonly" onClick="this.select();" value="&#xf124;" />
|
459 |
+
</div>
|
460 |
+
</div>
|
461 |
+
|
462 |
<div class="glyph">
|
463 |
<div class="preview-glyphs">
|
464 |
<span class="step size-12"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-14"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-16"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-18"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-21"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-24"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-36"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-48"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-60"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span><span class="step size-72"><span class="letters">Pp</span><i id="icon-types" class="icon-types"></i></span>
|
embedded/toolset/toolset-common/visual-editor/editor-addon-generic.class.php
CHANGED
@@ -171,7 +171,6 @@ if( !class_exists( 'Editor_addon_generic' ) )
|
|
171 |
$this->initialized = false;
|
172 |
$this->icon_class = $icon_class;
|
173 |
|
174 |
-
|
175 |
if ( ( $media_button_image != '' || $icon_class != '' ) && $print_button ) {
|
176 |
// Media buttons
|
177 |
//Adding "embed form" button
|
171 |
$this->initialized = false;
|
172 |
$this->icon_class = $icon_class;
|
173 |
|
|
|
174 |
if ( ( $media_button_image != '' || $icon_class != '' ) && $print_button ) {
|
175 |
// Media buttons
|
176 |
//Adding "embed form" button
|
embedded/toolset/toolset-common/visual-editor/views-editor-addon.class.php
CHANGED
@@ -286,4 +286,4 @@ if ( file_exists( dirname(__FILE__) . '/editor-addon-generic.class.php') && !cla
|
|
286 |
}
|
287 |
}
|
288 |
|
289 |
-
}
|
286 |
}
|
287 |
}
|
288 |
|
289 |
+
}
|
plus/installer/changelog.txt
CHANGED
@@ -1,3 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
= 1.7.0 =
|
2 |
* New format for the products data file.
|
3 |
* Other fixes
|
1 |
+
= 1.7.2 =
|
2 |
+
* Added an exception to handle the case when Types embedded is installer from Toolset Installer and its included Installer version overrides the one running the Toolset setup wizard
|
3 |
+
|
4 |
+
= 1.7.1 =
|
5 |
+
* Added an exception for the case of Types 1.8.9 (Installer 1.7.0) together with older WPML (older Installer)
|
6 |
+
|
7 |
= 1.7.0 =
|
8 |
* New format for the products data file.
|
9 |
* Other fixes
|
plus/installer/installer.php
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
<?php
|
2 |
-
define('WP_INSTALLER_VERSION', '1.7.
|
3 |
|
4 |
include_once dirname(__FILE__) . '/includes/installer.class.php';
|
5 |
|
1 |
<?php
|
2 |
+
define('WP_INSTALLER_VERSION', '1.7.2');
|
3 |
|
4 |
include_once dirname(__FILE__) . '/includes/installer.class.php';
|
5 |
|
plus/installer/loader.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Installer
|
4 |
Plugin URI: http://wp-compatibility.com/installer-plugin/
|
5 |
Description: Need help buying, installing and upgrading commercial themes and plugins? **Installer** handles all this for you, right from the WordPress admin. Installer lets you find themes and plugins from different sources, then, buy them from within the WordPress admin. Instead of manually uploading and unpacking, you'll see those themes and plugins available, just like any other plugin you're getting from WordPress.org.
|
6 |
-
Version: 1.7.
|
7 |
Author: OnTheGoSystems Inc.
|
8 |
Author URI: http://www.onthegosystems.com/
|
9 |
*/
|
@@ -28,9 +28,11 @@ $wp_installer_instance = dirname(__FILE__) . '/installer.php';
|
|
28 |
global $wp_installer_instances;
|
29 |
$wp_installer_instances[$wp_installer_instance] = array(
|
30 |
'bootfile' => $wp_installer_instance,
|
31 |
-
'version' => '1.7.
|
32 |
);
|
33 |
|
|
|
|
|
34 |
// Exception: When WPML prior 3.2 is used, that instance must be used regardless of another newer instance
|
35 |
// Case 1: WPML loaded before Types - eliminate other instances
|
36 |
if( defined('ICL_SITEPRESS_VERSION') && version_compare(ICL_SITEPRESS_VERSION, '3.2', '<') ) {
|
@@ -43,6 +45,42 @@ if( defined('ICL_SITEPRESS_VERSION') && version_compare(ICL_SITEPRESS_VERSION, '
|
|
43 |
}
|
44 |
}
|
45 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
// Only one of these in the end
|
47 |
remove_action('after_setup_theme', 'wpml_installer_instance_delegator', 1);
|
48 |
add_action('after_setup_theme', 'wpml_installer_instance_delegator', 1);
|
3 |
Plugin Name: Installer
|
4 |
Plugin URI: http://wp-compatibility.com/installer-plugin/
|
5 |
Description: Need help buying, installing and upgrading commercial themes and plugins? **Installer** handles all this for you, right from the WordPress admin. Installer lets you find themes and plugins from different sources, then, buy them from within the WordPress admin. Instead of manually uploading and unpacking, you'll see those themes and plugins available, just like any other plugin you're getting from WordPress.org.
|
6 |
+
Version: 1.7.2
|
7 |
Author: OnTheGoSystems Inc.
|
8 |
Author URI: http://www.onthegosystems.com/
|
9 |
*/
|
28 |
global $wp_installer_instances;
|
29 |
$wp_installer_instances[$wp_installer_instance] = array(
|
30 |
'bootfile' => $wp_installer_instance,
|
31 |
+
'version' => '1.7.2'
|
32 |
);
|
33 |
|
34 |
+
|
35 |
+
/* EXCEPTIONS ********************************************************************************************/
|
36 |
// Exception: When WPML prior 3.2 is used, that instance must be used regardless of another newer instance
|
37 |
// Case 1: WPML loaded before Types - eliminate other instances
|
38 |
if( defined('ICL_SITEPRESS_VERSION') && version_compare(ICL_SITEPRESS_VERSION, '3.2', '<') ) {
|
45 |
}
|
46 |
}
|
47 |
|
48 |
+
// Exception: Types 1.8.9 (Installer 1.7.0) with WPML before 3.3 (Installer before 1.7.0)
|
49 |
+
// New products file http://d2salfytceyqoe.cloudfront.net/wpml-products33.json overrides the old one
|
50 |
+
// while the WPML's instance is being used
|
51 |
+
// => Force using the new Installer Instance
|
52 |
+
if( defined('ICL_SITEPRESS_VERSION') && version_compare(ICL_SITEPRESS_VERSION, '3.3.1', '<') ) {
|
53 |
+
|
54 |
+
// if Installer 1.7.0+ is present, unregister Installer from old WPML
|
55 |
+
// Force Installer 1.7.0+ being used over older Installer versions
|
56 |
+
$installer_171_plus_on = false;
|
57 |
+
foreach($wp_installer_instances as $key => $instance) {
|
58 |
+
if( version_compare( $instance['version'], '1.7.1', '>=' ) ){
|
59 |
+
$installer_171_plus_on = true;
|
60 |
+
break;
|
61 |
+
}
|
62 |
+
}
|
63 |
+
|
64 |
+
if( $installer_171_plus_on ){
|
65 |
+
foreach($wp_installer_instances as $key => $instance) {
|
66 |
+
|
67 |
+
if( version_compare( $instance['version'], '1.7.0', '<' ) ){
|
68 |
+
unset( $wp_installer_instances[$key] );
|
69 |
+
}
|
70 |
+
|
71 |
+
}
|
72 |
+
}
|
73 |
+
|
74 |
+
}
|
75 |
+
|
76 |
+
// Exception: When using the embedded plugins module allow the set up to run completely with the
|
77 |
+
// Installer instance that triggers it
|
78 |
+
if( isset( $_POST['installer_instance'] ) && isset( $wp_installer_instances[$_POST['installer_instance']] ) ){
|
79 |
+
$wp_installer_instances[$_POST['installer_instance']]['version'] = '999';
|
80 |
+
}
|
81 |
+
/* EXCEPTIONS ********************************************************************************************/
|
82 |
+
|
83 |
+
|
84 |
// Only one of these in the end
|
85 |
remove_action('after_setup_theme', 'wpml_installer_instance_delegator', 1);
|
86 |
add_action('after_setup_theme', 'wpml_installer_instance_delegator', 1);
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: CMS, custom field, custom fields, custom post type, custom post types, fie
|
|
5 |
License: GPLv2
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.3.1
|
8 |
-
Stable tag: 1.8.
|
9 |
|
10 |
The complete and reliable plugin for managing custom post types, custom taxonomies and custom fields.
|
11 |
|
@@ -155,6 +155,12 @@ Additionally, Types is the only plugin that lets you define parent/child relatio
|
|
155 |
|
156 |
== Changelog ==
|
157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
= 1.8.9 =
|
159 |
|
160 |
* Release date: 2015-11-10
|
5 |
License: GPLv2
|
6 |
Requires at least: 3.4
|
7 |
Tested up to: 4.3.1
|
8 |
+
Stable tag: 1.8.10
|
9 |
|
10 |
The complete and reliable plugin for managing custom post types, custom taxonomies and custom fields.
|
11 |
|
155 |
|
156 |
== Changelog ==
|
157 |
|
158 |
+
= 1.8.10 =
|
159 |
+
|
160 |
+
* Release date: 2015-11-18
|
161 |
+
* Changed Installer version to 1.7.2
|
162 |
+
* Fixed usability issue with select2.
|
163 |
+
|
164 |
= 1.8.9 =
|
165 |
|
166 |
* Release date: 2015-11-10
|
wpcf.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
Description: Define custom post types, custom taxonomies and custom fields.
|
6 |
Author: OnTheGoSystems
|
7 |
Author URI: http://www.onthegosystems.com
|
8 |
-
Version: 1.8.
|
9 |
*/
|
10 |
/**
|
11 |
*
|
@@ -16,7 +16,7 @@ if ( !defined( 'WPCF_VERSION' ) ) {
|
|
16 |
/**
|
17 |
* make sure that WPCF_VERSION in embedded/bootstrap.php is the same!
|
18 |
*/
|
19 |
-
define( 'WPCF_VERSION', '1.8.
|
20 |
}
|
21 |
|
22 |
define( 'WPCF_REPOSITORY', 'http://api.wp-types.com/' );
|
5 |
Description: Define custom post types, custom taxonomies and custom fields.
|
6 |
Author: OnTheGoSystems
|
7 |
Author URI: http://www.onthegosystems.com
|
8 |
+
Version: 1.8.10
|
9 |
*/
|
10 |
/**
|
11 |
*
|
16 |
/**
|
17 |
* make sure that WPCF_VERSION in embedded/bootstrap.php is the same!
|
18 |
*/
|
19 |
+
define( 'WPCF_VERSION', '1.8.10' );
|
20 |
}
|
21 |
|
22 |
define( 'WPCF_REPOSITORY', 'http://api.wp-types.com/' );
|