Ultimate Member – User Profile & Membership Plugin - Version 1.0.26

Version Description

Download this release

Release Info

Developer ultimatemember
Plugin Icon 128x128 Ultimate Member – User Profile & Membership Plugin
Version 1.0.26
Comparing to
See all releases

Code changes from version 1.0.33 to 1.0.26

Files changed (56) hide show
  1. admin/assets/css/um-admin-global.css +5 -5
  2. admin/assets/css/um-admin-misc.css +0 -1
  3. admin/core/um-admin-access.php +2 -30
  4. admin/core/um-admin-enqueue.php +17 -0
  5. admin/core/um-admin-metabox.php +8 -41
  6. admin/templates/directory/pagination.php +32 -6
  7. admin/templates/directory/search.php +3 -12
  8. admin/templates/form/login_css.php +0 -8
  9. admin/templates/form/profile_css.php +0 -8
  10. admin/templates/form/profile_customize.php +0 -4
  11. admin/templates/form/register_css.php +0 -8
  12. admin/templates/role/admin.php +1 -9
  13. admin/um-admin-init.php +0 -2
  14. assets/css/um-profile.css +15 -35
  15. assets/css/um-responsive.css +10 -17
  16. assets/css/um-styles.css +2 -20
  17. assets/css/um.min.css +1 -1
  18. assets/js/um-functions.js +2 -2
  19. assets/js/um.min.js +1 -1
  20. core/um-actions-access.php +3 -3
  21. core/um-actions-account.php +8 -8
  22. core/um-actions-form.php +1 -1
  23. core/um-actions-members.php +3 -3
  24. core/um-actions-misc.php +0 -4
  25. core/um-actions-profile.php +10 -27
  26. core/um-actions-wpadmin.php +3 -19
  27. core/um-builtin.php +1 -1
  28. core/um-enqueue.php +2 -25
  29. core/um-fields.php +10 -50
  30. core/um-filters-fields.php +2 -2
  31. core/um-filters-login.php +1 -22
  32. core/um-filters-members.php +4 -8
  33. core/um-filters-misc.php +0 -10
  34. core/um-filters-navmenu.php +2 -14
  35. core/um-mail.php +0 -20
  36. core/um-members.php +6 -9
  37. core/um-navmenu.php +1 -1
  38. core/um-permalinks.php +0 -2
  39. core/um-profile.php +3 -27
  40. core/um-query.php +3 -14
  41. core/um-rewrite.php +3 -8
  42. core/um-setup.php +1 -9
  43. core/um-short-functions.php +8 -24
  44. core/um-shortcodes.php +0 -47
  45. core/um-user-posts.php +0 -125
  46. core/um-user.php +1 -1
  47. index.php +1 -1
  48. languages/ultimatemember-en_US.mo +0 -0
  49. languages/ultimatemember-en_US.po +283 -473
  50. readme.txt +23 -92
  51. templates/profile/comments-single.php +0 -18
  52. templates/profile/comments.php +0 -25
  53. templates/profile/posts-single.php +0 -20
  54. templates/profile/posts.php +0 -25
  55. um-config.php +3 -97
  56. um-init.php +0 -3
admin/assets/css/um-admin-global.css CHANGED
@@ -2,7 +2,7 @@
2
  - General metabox styling
3
  */
4
 
5
- #um-admin-access-settings h3 {
6
  padding: 10px 20px 10px 60px;
7
  color: #fff;
8
  background: #3ba1da url(../img/logo-small.png) no-repeat 12px center;
@@ -12,17 +12,17 @@
12
  -moz-osx-font-smoothing: grayscale !important;
13
  }
14
 
15
- #um-admin-access-settings h4 { margin: 10px 0 4px 0!important}
16
 
17
- #um-admin-access-settings div.handlediv {
18
  color: #fff !important;
19
  -webkit-font-smoothing: antialiased !important;
20
  -moz-osx-font-smoothing: grayscale !important;
21
  }
22
 
23
- #um-admin-access-settings p {font-size: 13px}
24
 
25
- #um-admin-access-settings input[type=text] {font-size: 13px}
26
 
27
  /*
28
  - Nav Menu
2
  - General metabox styling
3
  */
4
 
5
+ #um-admin-access-control h3 {
6
  padding: 10px 20px 10px 60px;
7
  color: #fff;
8
  background: #3ba1da url(../img/logo-small.png) no-repeat 12px center;
12
  -moz-osx-font-smoothing: grayscale !important;
13
  }
14
 
15
+ #um-admin-access-control h4 {margin:10px 0 4px 0!important}
16
 
17
+ #um-admin-access-control div.handlediv {
18
  color: #fff !important;
19
  -webkit-font-smoothing: antialiased !important;
20
  -moz-osx-font-smoothing: grayscale !important;
21
  }
22
 
23
+ #um-admin-access-control p {font-size: 13px}
24
 
25
+ #um-admin-access-control input[type=text] {font-size: 13px}
26
 
27
  /*
28
  - Nav Menu
admin/assets/css/um-admin-misc.css CHANGED
@@ -155,7 +155,6 @@ body.um-admin-modal-open {
155
  .um-admin-metabox input[type=text].small {width: 50px}
156
 
157
  .um-admin-metabox textarea {min-height: 100px;height: 100px}
158
- .um-admin-metabox textarea.tall {min-height: 200px;height: 200px}
159
 
160
  .wp-picker-container input.wp-color-picker[type="text"] {
161
  width: 68px !important;
155
  .um-admin-metabox input[type=text].small {width: 50px}
156
 
157
  .um-admin-metabox textarea {min-height: 100px;height: 100px}
 
158
 
159
  .wp-picker-container input.wp-color-picker[type="text"] {
160
  width: 68px !important;
admin/core/um-admin-access.php CHANGED
@@ -60,27 +60,7 @@ class UM_Admin_Access {
60
  ***/
61
  function load_metabox_form( $object, $box ) {
62
  global $ultimatemember, $post;
63
-
64
- $box['id'] = str_replace('um-admin-access-','', $box['id']);
65
-
66
- if ( $box['id'] == 'builder' ) {
67
- $UM_Builder = new UM_Admin_Builder();
68
- $UM_Builder->form_id = get_the_ID();
69
- }
70
-
71
- preg_match('#\{.*?\}#s', $box['id'], $matches);
72
-
73
- if ( isset($matches[0]) ){
74
- $path = $matches[0];
75
- $box['id'] = preg_replace('~(\\{[^}]+\\})~','', $box['id'] );
76
- } else {
77
- $path = um_path;
78
- }
79
-
80
- $path = str_replace('{','', $path );
81
- $path = str_replace('}','', $path );
82
-
83
- include_once $path . 'admin/templates/access/'. $box['id'] . '.php';
84
  wp_nonce_field( basename( __FILE__ ), 'um_admin_save_metabox_access_nonce' );
85
  }
86
 
@@ -92,9 +72,7 @@ class UM_Admin_Access {
92
  $types = get_post_types();
93
  foreach($types as $post_type) {
94
  if ( $this->core_post_type( $post_type ) ) return;
95
- add_meta_box('um-admin-access-settings', __('Access Control'), array(&$this, 'load_metabox_form'), $post_type, 'side', 'default');
96
-
97
- do_action('um_admin_custom_access_metaboxes');
98
  }
99
 
100
  }
@@ -113,12 +91,6 @@ class UM_Admin_Access {
113
  if ( !current_user_can( $post_type->cap->edit_post, $post_id ) ) return $post_id;
114
 
115
  // save
116
- $multi_choice_keys = apply_filters('um_admin_multi_choice_keys', array() );
117
- if ( $multi_choice_keys ) {
118
- foreach( $multi_choice_keys as $k ) {
119
- delete_post_meta( $post_id, $k );
120
- }
121
- }
122
  foreach( $_POST as $k => $v ) {
123
  if (strstr($k, '_um_')){
124
  update_post_meta( $post_id, $k, $v);
60
  ***/
61
  function load_metabox_form( $object, $box ) {
62
  global $ultimatemember, $post;
63
+ include_once um_path . 'admin/templates/access/settings.php';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
64
  wp_nonce_field( basename( __FILE__ ), 'um_admin_save_metabox_access_nonce' );
65
  }
66
 
72
  $types = get_post_types();
73
  foreach($types as $post_type) {
74
  if ( $this->core_post_type( $post_type ) ) return;
75
+ add_meta_box('um-admin-access-control', __('Access Control'), array(&$this, 'load_metabox_form'), $post_type, 'side', 'default');
 
 
76
  }
77
 
78
  }
91
  if ( !current_user_can( $post_type->cap->edit_post, $post_id ) ) return $post_id;
92
 
93
  // save
 
 
 
 
 
 
94
  foreach( $_POST as $k => $v ) {
95
  if (strstr($k, '_um_')){
96
  update_post_meta( $post_id, $k, $v);
admin/core/um-admin-enqueue.php CHANGED
@@ -39,6 +39,23 @@ class UM_Admin_Enqueue {
39
  function admin_head(){
40
  global $current_screen, $post;
41
  $screen_id = $current_screen->id;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
 
43
  if ( $this->is_plugin_post_type() ){
44
 
39
  function admin_head(){
40
  global $current_screen, $post;
41
  $screen_id = $current_screen->id;
42
+
43
+ if ( strstr($screen_id, 'um_form') ) $highlighted_id = 3;
44
+ if ( strstr($screen_id, 'um_role') ) $highlighted_id = 4;
45
+ if ( strstr($screen_id, 'um_directory') ) $highlighted_id = 5;
46
+
47
+ if ( isset($highlighted_id) ) { ?>
48
+
49
+ <script type="text/javascript">
50
+ jQuery(document).ready( function() {
51
+ jQuery('#toplevel_page_ultimatemember').addClass('wp-current-submenu wp-has-current-submenu wp-menu-open current');
52
+ jQuery('#toplevel_page_ultimatemember a:first').addClass('wp-current-submenu wp-has-current-submenu current');
53
+ jQuery('#toplevel_page_ultimatemember').find('li:eq(<?php echo $highlighted_id; ?>)').addClass('current');
54
+ });
55
+ </script>
56
+
57
+ <?php
58
+ }
59
 
60
  if ( $this->is_plugin_post_type() ){
61
 
admin/core/um-admin-metabox.php CHANGED
@@ -171,28 +171,9 @@ class UM_Admin_Metabox {
171
  *** @load a role metabox
172
  ***/
173
  function load_metabox_role( $object, $box ) {
174
- global $ultimatemember, $post;
175
-
176
  $box['id'] = str_replace('um-admin-form-','', $box['id']);
177
-
178
- if ( $box['id'] == 'builder' ) {
179
- $UM_Builder = new UM_Admin_Builder();
180
- $UM_Builder->form_id = get_the_ID();
181
- }
182
-
183
- preg_match('#\{.*?\}#s', $box['id'], $matches);
184
-
185
- if ( isset($matches[0]) ){
186
- $path = $matches[0];
187
- $box['id'] = preg_replace('~(\\{[^}]+\\})~','', $box['id'] );
188
- } else {
189
- $path = um_path;
190
- }
191
-
192
- $path = str_replace('{','', $path );
193
- $path = str_replace('}','', $path );
194
-
195
- include_once $path . 'admin/templates/role/'. $box['id'] . '.php';
196
  wp_nonce_field( basename( __FILE__ ), 'um_admin_save_metabox_role_nonce' );
197
  }
198
 
@@ -200,7 +181,7 @@ class UM_Admin_Metabox {
200
  *** @load a form metabox
201
  ***/
202
  function load_metabox_form( $object, $box ) {
203
- global $ultimatemember, $post;
204
 
205
  $box['id'] = str_replace('um-admin-form-','', $box['id']);
206
 
@@ -263,8 +244,6 @@ class UM_Admin_Metabox {
263
  add_meta_box('um-admin-form-logout', __('Logout Options'), array(&$this, 'load_metabox_role'), 'um_role', 'normal', 'default');
264
 
265
  add_meta_box('um-admin-form-delete', __('Delete Options'), array(&$this, 'load_metabox_role'), 'um_role', 'normal', 'default');
266
-
267
- do_action('um_admin_custom_role_metaboxes');
268
 
269
  }
270
 
@@ -274,25 +253,23 @@ class UM_Admin_Metabox {
274
  function add_metabox_form() {
275
 
276
  add_meta_box('um-admin-form-mode', __('Select Form Type'), array(&$this, 'load_metabox_form'), 'um_form', 'normal', 'default');
 
277
  add_meta_box('um-admin-form-builder', __('Form Builder'), array(&$this, 'load_metabox_form'), 'um_form', 'normal', 'default');
 
278
  add_meta_box('um-admin-form-shortcode', __('Shortcode'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
279
 
280
  add_meta_box('um-admin-form-register_customize', __('Customize this form'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
281
- add_meta_box('um-admin-form-register_css', __('Custom CSS'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
282
 
283
  do_action('um_admin_custom_register_metaboxes');
284
 
285
  add_meta_box('um-admin-form-profile_customize', __('Customize this form'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
286
- add_meta_box('um-admin-form-profile_settings', __('User Meta'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
287
- add_meta_box('um-admin-form-profile_css', __('Custom CSS'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
288
-
289
- do_action('um_admin_custom_profile_metaboxes');
290
 
291
  add_meta_box('um-admin-form-login_customize', __('Customize this form'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
292
- add_meta_box('um-admin-form-login_settings', __('Options'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
293
- add_meta_box('um-admin-form-login_css', __('Custom CSS'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
294
 
295
  do_action('um_admin_custom_login_metaboxes');
 
 
 
296
 
297
  }
298
 
@@ -659,16 +636,6 @@ class UM_Admin_Metabox {
659
  <?php
660
  break;
661
 
662
- case '_divider_text':
663
- ?>
664
-
665
- <p><label for="_divider_text">Optional Text <?php $this->tooltip( __('Optional text to include with the divider','ultimatemember') ); ?></label>
666
- <input type="text" name="_divider_text" id="_divider_text" value="<?php echo ( $this->edit_mode_value ) ? $this->edit_mode_value : ''; ?>" />
667
- </p>
668
-
669
- <?php
670
- break;
671
-
672
  case '_padding':
673
  ?>
674
 
171
  *** @load a role metabox
172
  ***/
173
  function load_metabox_role( $object, $box ) {
174
+ global $ultimatemember;
 
175
  $box['id'] = str_replace('um-admin-form-','', $box['id']);
176
+ include_once um_path . 'admin/templates/role/'. $box['id'] . '.php';
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
177
  wp_nonce_field( basename( __FILE__ ), 'um_admin_save_metabox_role_nonce' );
178
  }
179
 
181
  *** @load a form metabox
182
  ***/
183
  function load_metabox_form( $object, $box ) {
184
+ global $ultimatemember;
185
 
186
  $box['id'] = str_replace('um-admin-form-','', $box['id']);
187
 
244
  add_meta_box('um-admin-form-logout', __('Logout Options'), array(&$this, 'load_metabox_role'), 'um_role', 'normal', 'default');
245
 
246
  add_meta_box('um-admin-form-delete', __('Delete Options'), array(&$this, 'load_metabox_role'), 'um_role', 'normal', 'default');
 
 
247
 
248
  }
249
 
253
  function add_metabox_form() {
254
 
255
  add_meta_box('um-admin-form-mode', __('Select Form Type'), array(&$this, 'load_metabox_form'), 'um_form', 'normal', 'default');
256
+
257
  add_meta_box('um-admin-form-builder', __('Form Builder'), array(&$this, 'load_metabox_form'), 'um_form', 'normal', 'default');
258
+
259
  add_meta_box('um-admin-form-shortcode', __('Shortcode'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
260
 
261
  add_meta_box('um-admin-form-register_customize', __('Customize this form'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
 
262
 
263
  do_action('um_admin_custom_register_metaboxes');
264
 
265
  add_meta_box('um-admin-form-profile_customize', __('Customize this form'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
 
 
 
 
266
 
267
  add_meta_box('um-admin-form-login_customize', __('Customize this form'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
 
 
268
 
269
  do_action('um_admin_custom_login_metaboxes');
270
+
271
+ add_meta_box('um-admin-form-profile_settings', __('User Meta'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
272
+ add_meta_box('um-admin-form-login_settings', __('Options'), array(&$this, 'load_metabox_form'), 'um_form', 'side', 'default');
273
 
274
  }
275
 
636
  <?php
637
  break;
638
 
 
 
 
 
 
 
 
 
 
 
639
  case '_padding':
640
  ?>
641
 
admin/templates/directory/pagination.php CHANGED
@@ -2,26 +2,52 @@
2
 
3
  <div class="">
4
 
 
 
 
 
5
  <p>
6
- <label class="um-admin-half"><?php _e('Number of profiles per page','ultimatemember'); ?> <?php $this->tooltip( __('Number of profiles to appear on page for standard users') ); ?></label>
7
  <span class="um-admin-half">
8
 
9
- <input type="text" name="_um_profiles_per_page" id="_um_profiles_per_page" value="<?php echo $ultimatemember->query->get_meta_value('_um_profiles_per_page', null, 12); ?>" class="small" />
 
 
 
 
 
 
 
 
 
10
 
11
  </span>
12
  </p><div class="um-admin-clear"></div>
13
 
14
- <p>
15
- <label class="um-admin-half"><?php _e('Number of profiles per page (for Mobiles & Tablets)','ultimatemember'); ?> <?php $this->tooltip( __('Number of profiles to appear on page for mobile users') ); ?></label>
16
  <span class="um-admin-half">
17
 
18
- <input type="text" name="_um_profiles_per_page_mobile" id="_um_profiles_per_page_mobile" value="<?php echo $ultimatemember->query->get_meta_value('_um_profiles_per_page_mobile', null, 8); ?>" class="small" />
 
 
 
 
 
 
 
 
 
 
 
 
 
19
 
20
  </span>
21
  </p><div class="um-admin-clear"></div>
22
 
23
  <p>
24
- <label class="um-admin-half"><?php _e('Maximum number of profiles','ultimatemember'); ?> <?php $this->tooltip( __('Use this setting to control the maximum number of profiles to appear in this directory. Leave blank to disable this limit','ultimatemember') ); ?></label>
25
  <span class="um-admin-half">
26
 
27
  <input type="text" name="_um_max_users" id="_um_max_users" value="<?php echo $ultimatemember->query->get_meta_value('_um_max_users', null, 'na' ); ?>" class="small" />
2
 
3
  <div class="">
4
 
5
+ <?php
6
+
7
+ /*
8
+
9
  <p>
10
+ <label class="um-admin-half"><?php _e('Use Infinite Scroll instead of pagination','ultimatemember'); ?></label>
11
  <span class="um-admin-half">
12
 
13
+ <?php $this->ui_on_off('_um_infinitescroll', 0, true, 1, 'infinite-settings', 'pagination-settings'); ?>
14
+
15
+ </span>
16
+ </p><div class="um-admin-clear"></div>
17
+
18
+ <p class="infinite-settings um-admin-hide">
19
+ <label class="um-admin-half"><?php _e('Number of profiles to show on first load','ultimatemember'); ?> <?php $this->tooltip('Number of member profiles to appear on the first load only'); ?></label>
20
+ <span class="um-admin-half">
21
+
22
+ <input type="text" name="_um_profiles_on_load" id="_um_profiles_on_load" value="<?php echo $ultimatemember->query->get_meta_value('_um_max_users', null, 12 ); ?>" class="small" />
23
 
24
  </span>
25
  </p><div class="um-admin-clear"></div>
26
 
27
+ <p class="infinite-settings um-admin-hide">
28
+ <label class="um-admin-half"><?php _e('Number of profiles to show on load more','ultimatemember'); ?> <?php $this->tooltip('Number of member profiles to appear when user loads more profiles'); ?></label>
29
  <span class="um-admin-half">
30
 
31
+ <input type="text" name="_um_profiles_load_more" id="_um_profiles_load_more" value="<?php echo $ultimatemember->query->get_meta_value('_um_max_users', null, 12 ); ?>" class="small" />
32
+
33
+ </span>
34
+ </p><div class="um-admin-clear"></div>
35
+
36
+ */
37
+
38
+ ?>
39
+
40
+ <p class="pagination-settings">
41
+ <label class="um-admin-half"><?php _e('Number of profiles per page','ultimatemember'); ?> <?php $this->tooltip('Number of member profiles to appear on every page'); ?></label>
42
+ <span class="um-admin-half">
43
+
44
+ <input type="text" name="_um_profiles_per_page" id="_um_profiles_per_page" value="<?php echo $ultimatemember->query->get_meta_value('_um_profiles_per_page', null, 12); ?>" class="small" />
45
 
46
  </span>
47
  </p><div class="um-admin-clear"></div>
48
 
49
  <p>
50
+ <label class="um-admin-half"><?php _e('Maximum number of profiles','ultimatemember'); ?> <?php $this->tooltip('Use this setting to control the maximum number of profiles to appear in this directory. Leave blank to disable this limit'); ?></label>
51
  <span class="um-admin-half">
52
 
53
  <input type="text" name="_um_max_users" id="_um_max_users" value="<?php echo $ultimatemember->query->get_meta_value('_um_max_users', null, 'na' ); ?>" class="small" />
admin/templates/directory/search.php CHANGED
@@ -73,25 +73,16 @@
73
  </p><div class="um-admin-clear"></div>
74
 
75
  <p class="search-options">
76
- <label class="um-admin-half"><?php _e('Results Text','ultimatemember'); ?> <?php $this->tooltip( __('Customize the search result text . e.g. Found 3,000 Members. Leave this blank to not show result text','ultimatemember') ); ?></label>
77
  <span class="um-admin-half">
78
 
79
- <input type="text" name="_um_directory_header" id="_um_directory_header" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_header', null, __('{total_users} Members','ultimatemember') ); ?>" />
80
 
81
  </span>
82
  </p><div class="um-admin-clear"></div>
83
 
84
  <p class="search-options">
85
- <label class="um-admin-half"><?php _e('Single Result Text','ultimatemember'); ?> <?php $this->tooltip( __('Same as above but in case of 1 user found only','ultimatemember') ); ?></label>
86
- <span class="um-admin-half">
87
-
88
- <input type="text" name="_um_directory_header_single" id="_um_directory_header_single" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_header_single', null, __('{total_users} Member','ultimatemember') ); ?>" />
89
-
90
- </span>
91
- </p><div class="um-admin-clear"></div>
92
-
93
- <p class="search-options">
94
- <label class="um-admin-half"><?php _e('Custom text if no users were found','ultimatemember'); ?> <?php $this->tooltip('This is the text that is displayed if no users are found during a search'); ?></label>
95
  <span class="um-admin-half">
96
 
97
  <input type="text" name="_um_directory_no_users" id="_um_directory_no_users" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_no_users', null, __('We are sorry. We cannot find any users who match your search criteria.','ultimatemember') ); ?>" />
73
  </p><div class="um-admin-clear"></div>
74
 
75
  <p class="search-options">
76
+ <label class="um-admin-half"><?php _e('Results Text','ultimatemember'); ?> <?php $this->tooltip('Customize the search result text . e.g. Found 3,000 Members. Leave this blank to not show result text'); ?></label>
77
  <span class="um-admin-half">
78
 
79
+ <input type="text" name="_um_directory_header" id="_um_directory_header" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_header', null, __('{total_users} Members','ultimatemember') ); ?>" />
80
 
81
  </span>
82
  </p><div class="um-admin-clear"></div>
83
 
84
  <p class="search-options">
85
+ <label class="um-admin-half"><?php _e('Custom text If no users were found','ultimatemember'); ?> <?php $this->tooltip('This is the text that is displayed if no users are found during a search'); ?></label>
 
 
 
 
 
 
 
 
 
86
  <span class="um-admin-half">
87
 
88
  <input type="text" name="_um_directory_no_users" id="_um_directory_no_users" value="<?php echo $ultimatemember->query->get_meta_value('_um_directory_no_users', null, __('We are sorry. We cannot find any users who match your search criteria.','ultimatemember') ); ?>" />
admin/templates/form/login_css.php DELETED
@@ -1,8 +0,0 @@
1
- <div class="um-admin-metabox">
2
-
3
- <p>
4
- <label><?php _e('Custom CSS','ultimatemember'); ?> <?php $this->tooltip( __('Enter custom css that will be applied to this form only','ultimatemember'), 'e'); ?></label>
5
- <textarea name="_um_login_custom_css" id="_um_login_custom_css" class="tall"><?php echo $ultimatemember->query->get_meta_value('_um_login_custom_css', null, 'na' ); ?></textarea>
6
- </p><div class="um-admin-clear"></div>
7
-
8
- </div>
 
 
 
 
 
 
 
 
admin/templates/form/profile_css.php DELETED
@@ -1,8 +0,0 @@
1
- <div class="um-admin-metabox">
2
-
3
- <p>
4
- <label><?php _e('Custom CSS','ultimatemember'); ?> <?php $this->tooltip( __('Enter custom css that will be applied to this form only','ultimatemember'), 'e'); ?></label>
5
- <textarea name="_um_profile_custom_css" id="_um_profile_custom_css" class="tall"><?php echo $ultimatemember->query->get_meta_value('_um_profile_custom_css', null, 'na' ); ?></textarea>
6
- </p><div class="um-admin-clear"></div>
7
-
8
- </div>
 
 
 
 
 
 
 
 
admin/templates/form/profile_customize.php CHANGED
@@ -39,10 +39,6 @@
39
  <input type="text" value="<?php echo $ultimatemember->query->get_meta_value('_um_profile_max_width', null, um_get_option('profile_max_width') ); ?>" name="_um_profile_max_width" id="_um_profile_max_width" />
40
  </p>
41
 
42
- <p><label for="_um_profile_area_max_width"><?php _e('Profile Area Max. Width (px)','ultimatemember'); ?> <?php $this->tooltip('The maximum width of the profile area inside profile (below profile header)', 'e'); ?></label>
43
- <input type="text" value="<?php echo $ultimatemember->query->get_meta_value('_um_profile_area_max_width', null, um_get_option('profile_area_max_width') ); ?>" name="_um_profile_area_max_width" id="_um_profile_area_max_width" />
44
- </p>
45
-
46
  <p><label for="_um_profile_align"><?php _e('Alignment','ultimatemember'); ?> <?php $this->tooltip('The shortcode is centered by default unless you specify otherwise here', 'e'); ?></label>
47
  <select name="_um_profile_align" id="_um_profile_align" class="umaf-selectjs" style="width: 100%">
48
 
39
  <input type="text" value="<?php echo $ultimatemember->query->get_meta_value('_um_profile_max_width', null, um_get_option('profile_max_width') ); ?>" name="_um_profile_max_width" id="_um_profile_max_width" />
40
  </p>
41
 
 
 
 
 
42
  <p><label for="_um_profile_align"><?php _e('Alignment','ultimatemember'); ?> <?php $this->tooltip('The shortcode is centered by default unless you specify otherwise here', 'e'); ?></label>
43
  <select name="_um_profile_align" id="_um_profile_align" class="umaf-selectjs" style="width: 100%">
44
 
admin/templates/form/register_css.php DELETED
@@ -1,8 +0,0 @@
1
- <div class="um-admin-metabox">
2
-
3
- <p>
4
- <label><?php _e('Custom CSS','ultimatemember'); ?> <?php $this->tooltip( __('Enter custom css that will be applied to this form only','ultimatemember'), 'e'); ?></label>
5
- <textarea name="_um_register_custom_css" id="_um_register_custom_css" class="tall"><?php echo $ultimatemember->query->get_meta_value('_um_register_custom_css', null, 'na' ); ?></textarea>
6
- </p><div class="um-admin-clear"></div>
7
-
8
- </div>
 
 
 
 
 
 
 
 
admin/templates/role/admin.php CHANGED
@@ -7,21 +7,13 @@
7
  <label class="um-admin-half"><?php _e('Can access wp-admin?','ultimatemember'); ?> <?php $this->tooltip( __('The core admin role must always have access to wp-admin / WordPress backend','ultimatemember') ); ?></label>
8
  <span class="um-admin-half"><?php $this->ui_on_off('_um_can_access_wpadmin', 1); ?></span>
9
  </p><div class="um-admin-clear"></div>
10
- <p>
11
- <label class="um-admin-half"><?php _e('Force hiding adminbar in frontend?','ultimatemember'); ?> <?php $this->tooltip( __('Show/hide the adminbar on frontend','ultimatemember') ); ?></label>
12
- <span class="um-admin-half"><?php $this->ui_on_off('_um_can_not_see_adminbar', 0); ?></span>
13
- </p><div class="um-admin-clear"></div>
14
  <?php } else { ?>
15
  <p>
16
  <label class="um-admin-half"><?php _e('Can access wp-admin?','ultimatemember'); ?> <?php $this->tooltip( __('Allow this role to access the admin dashboard. If turned on the WordPress toolbar will appear at top of the page.','ultimatemember') ); ?></label>
17
  <span class="um-admin-half"><?php $this->ui_on_off('_um_can_access_wpadmin', 0); ?></span>
18
  </p><div class="um-admin-clear"></div>
19
- <p>
20
- <label class="um-admin-half"><?php _e('Force hiding adminbar in frontend?','ultimatemember'); ?> <?php $this->tooltip( __('Show/hide the adminbar on frontend','ultimatemember') ); ?></label>
21
- <span class="um-admin-half"><?php $this->ui_on_off('_um_can_not_see_adminbar', 1); ?></span>
22
- </p><div class="um-admin-clear"></div>
23
  <?php } ?>
24
-
25
  <p>
26
  <label class="um-admin-half"><?php _e('Can edit other member accounts?','ultimatemember'); ?> <?php $this->tooltip( __('Allow this role to edit accounts of other members','ultimatemember') ); ?></label>
27
  <span class="um-admin-half"><?php $this->ui_on_off('_um_can_edit_everyone', 0, true, 1, 'edit-roles', 'xxx'); ?></span>
7
  <label class="um-admin-half"><?php _e('Can access wp-admin?','ultimatemember'); ?> <?php $this->tooltip( __('The core admin role must always have access to wp-admin / WordPress backend','ultimatemember') ); ?></label>
8
  <span class="um-admin-half"><?php $this->ui_on_off('_um_can_access_wpadmin', 1); ?></span>
9
  </p><div class="um-admin-clear"></div>
 
 
 
 
10
  <?php } else { ?>
11
  <p>
12
  <label class="um-admin-half"><?php _e('Can access wp-admin?','ultimatemember'); ?> <?php $this->tooltip( __('Allow this role to access the admin dashboard. If turned on the WordPress toolbar will appear at top of the page.','ultimatemember') ); ?></label>
13
  <span class="um-admin-half"><?php $this->ui_on_off('_um_can_access_wpadmin', 0); ?></span>
14
  </p><div class="um-admin-clear"></div>
 
 
 
 
15
  <?php } ?>
16
+
17
  <p>
18
  <label class="um-admin-half"><?php _e('Can edit other member accounts?','ultimatemember'); ?> <?php $this->tooltip( __('Allow this role to edit accounts of other members','ultimatemember') ); ?></label>
19
  <span class="um-admin-half"><?php $this->ui_on_off('_um_can_edit_everyone', 0, true, 1, 'edit-roles', 'xxx'); ?></span>
admin/um-admin-init.php CHANGED
@@ -55,8 +55,6 @@ class UM_Admin_API {
55
  if ( um_get_option('members_page' ) || !get_option('um_options') ){
56
  add_submenu_page( $this->slug, __('Member Directories', $this->slug), __('Member Directories', $this->slug), 'manage_options', 'edit.php?post_type=um_directory', '', '' );
57
  }
58
-
59
- do_action('um_extend_admin_menu');
60
 
61
  }
62
 
55
  if ( um_get_option('members_page' ) || !get_option('um_options') ){
56
  add_submenu_page( $this->slug, __('Member Directories', $this->slug), __('Member Directories', $this->slug), 'manage_options', 'edit.php?post_type=um_directory', '', '' );
57
  }
 
 
58
 
59
  }
60
 
assets/css/um-profile.css CHANGED
@@ -342,37 +342,26 @@ font-weight: normal;
342
  color: #FFF!important;
343
  }
344
 
345
- .um-profile-nav-item.active a span.count {background: transparent}
346
-
347
  .um-profile-nav-item a {
348
  color: #fff!important;
349
- font-size: 14px;
350
  font-weight: 600;
351
- padding: 6px 10px 6px 28px;
352
  display: block;
353
  float: left;
354
  border-radius: 4px;
355
- margin-left: 5px;
356
- position: relative;
357
  }
358
 
359
- .um-profile-nav-item.without-icon a {padding-left: 10px}
360
- .um-profile-nav-item.without-icon span.title {padding-left: 0}
361
- .um-profile-nav-item.without-icon i {display: none}
362
-
363
- .um-profile-nav-item a:hover {background: #555}
364
- .um-profile-nav-item i {font-size: 18px;height: 18px;line-height: 18px;position: absolute;display: block;top: 8px;left: 10px}
365
- .um-profile-nav-item span.title {padding-left: 5px}
366
- .um-profile-nav-item span.count {
367
- font-size: 12px;
368
- font-weight: 300;
369
- background: #777;
370
- border-radius: 3px;
371
- padding: 2px 4px;
372
- margin-left: 3px;
373
  }
374
 
375
- /* Subnav */
 
 
 
 
376
 
377
  .um-profile-subnav {
378
  background: #eee;
@@ -426,27 +415,18 @@ font-weight: normal;
426
  .um-item-link a {
427
  color: #333;
428
  font-size: 16px;
429
- line-height: 20px;
430
  }
431
 
432
  .um-item-link a:hover {
433
  text-decoration: underline !important;
434
  }
435
 
436
- .um-item-link i {
437
- font-size: 24px;
438
- color: #ccc;
439
- margin-right: 10px;
440
- position: relative;
441
- top: 3px;
442
- }
443
-
444
- .um-item-meta {color: #888}
445
 
446
  .um-item-meta span {
447
- font-size: 13px;
448
- font-weight: 400;
449
- font-style: italic;
450
  }
451
 
452
  .um-item-meta span:not(:last-child):after {
@@ -455,7 +435,7 @@ font-weight: normal;
455
  content: "•";
456
  }
457
 
458
- .um-item-meta a {font-weight: bold;border-bottom: 1px solid #E0E0E0;color: #3BA1DA}
459
  .um-item-meta a:hover {border-bottom-color: #bbb}
460
 
461
  .um-load-items {
342
  color: #FFF!important;
343
  }
344
 
 
 
345
  .um-profile-nav-item a {
346
  color: #fff!important;
347
+ font-size: 15px;
348
  font-weight: 600;
349
+ padding: 7px 20px;
350
  display: block;
351
  float: left;
352
  border-radius: 4px;
353
+ margin-left: 10px;
 
354
  }
355
 
356
+ .um-profile-nav-item a:hover {
357
+ background: #555;
 
 
 
 
 
 
 
 
 
 
 
 
358
  }
359
 
360
+ .um-profile-nav-item i {
361
+ font-size: 20px;
362
+ width: 20px;
363
+ text-align: center;
364
+ }
365
 
366
  .um-profile-subnav {
367
  background: #eee;
415
  .um-item-link a {
416
  color: #333;
417
  font-size: 16px;
 
418
  }
419
 
420
  .um-item-link a:hover {
421
  text-decoration: underline !important;
422
  }
423
 
424
+ .um-item-meta {color: #999}
 
 
 
 
 
 
 
 
425
 
426
  .um-item-meta span {
427
+ font-size: 14px;
428
+ font-weight: 500;
429
+ font-style: italic;
430
  }
431
 
432
  .um-item-meta span:not(:last-child):after {
435
  content: "•";
436
  }
437
 
438
+ .um-item-meta a {border-bottom: 1px solid #E0E0E0;color: #3BA1DA}
439
  .um-item-meta a:hover {border-bottom-color: #bbb}
440
 
441
  .um-load-items {
assets/css/um-responsive.css CHANGED
@@ -46,13 +46,11 @@ div.uimob340 .um-profile-nav {
46
  }
47
 
48
  div.uimob340 .um-profile-nav-item a {
49
- padding: 10px 16px;
50
  margin-left: 0;
51
  border-radius: 0;
52
  }
53
 
54
- div.uimob340 .um-profile-nav-item i{display:block;position: static;top: auto;left: auto}
55
-
56
  div.uimob340 .um-profile-subnav {
57
  padding: 8px 15px;
58
  }
@@ -262,17 +260,14 @@ div.uimob340 .um-account-meta {
262
  /********************************************/
263
 
264
  div.uimob500 .um-profile-nav {
265
- padding: 0;
266
  }
267
 
268
  div.uimob500 .um-profile-nav-item a {
269
- padding: 10px 16px;
270
- margin-left: 0;
271
- border-radius: 0;
272
  }
273
 
274
- div.uimob500 .um-profile-nav-item i{display:block;position: static;top: auto;left: auto;font-size: 22px;height: 22px;line-height: 22px;}
275
-
276
  div.uimob500 .um-profile-subnav {
277
  padding: 8px 15px;
278
  }
@@ -467,17 +462,15 @@ div.uimob500 .um-account-meta {
467
  for 800px and below
468
  **/
469
 
470
- div.uimob800 .um-profile-nav {
471
- padding: 0;
472
- }
473
-
474
  div.uimob800 .um-profile-nav-item a {
475
- padding: 10px 20px;
476
- margin-left: 0;
477
- border-radius: 0;
478
  }
479
 
480
- div.uimob800 .um-profile-nav-item i{display:block;position: static;top: auto;left: auto;font-size: 26px;height: 26px;line-height: 26px;}
 
 
 
481
 
482
  div.uimob800 .um-profile-subnav {
483
  padding: 8px 15px;
46
  }
47
 
48
  div.uimob340 .um-profile-nav-item a {
49
+ padding: 1px 12px;
50
  margin-left: 0;
51
  border-radius: 0;
52
  }
53
 
 
 
54
  div.uimob340 .um-profile-subnav {
55
  padding: 8px 15px;
56
  }
260
  /********************************************/
261
 
262
  div.uimob500 .um-profile-nav {
263
+ padding: 6px;
264
  }
265
 
266
  div.uimob500 .um-profile-nav-item a {
267
+ padding: 1px 12px;
268
+ margin-left: 6px;
 
269
  }
270
 
 
 
271
  div.uimob500 .um-profile-subnav {
272
  padding: 8px 15px;
273
  }
462
  for 800px and below
463
  **/
464
 
 
 
 
 
465
  div.uimob800 .um-profile-nav-item a {
466
+ padding: 1px 12px;
467
+ margin-left: 6px;
 
468
  }
469
 
470
+ div.uimob800 .um-profile-nav-item i {
471
+ font-size: 25px;
472
+ width: 25px;
473
+ }
474
 
475
  div.uimob800 .um-profile-subnav {
476
  padding: 8px 15px;
assets/css/um-styles.css CHANGED
@@ -312,26 +312,8 @@ p.um-notice.err {
312
 
313
  .um-field-divider {
314
  width: 100%;
315
- margin: 0 0 12px 0;
316
- height: 24px;
317
- position: relative;
318
- }
319
-
320
- .um-field-divider-text {
321
- position: absolute;
322
- width: 100%;
323
- text-align: center;
324
- bottom: -24px;
325
- left: 0;
326
- font-size: 16px;
327
- padding: 10px 0;
328
- }
329
-
330
- .um-field-divider-text span {
331
- background: #fff;
332
- color: #555;
333
- display: inline-block;
334
- padding: 0 15px;
335
  }
336
 
337
  .um-field-icon {
312
 
313
  .um-field-divider {
314
  width: 100%;
315
+ margin: 0 0 20px 0;
316
+ height: 15px;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
317
  }
318
 
319
  .um-field-icon {
assets/css/um.min.css CHANGED
@@ -1 +1 @@
1
- @charset "UTF-8";@font-face{font-family:FontAwesome;src:url(../font/fontawesome-webfont.eot?v=4.2.0);src:url(../font/fontawesome-webfont.eot?v=4.2.0#iefix) format("embedded-opentype"),url(../font/fontawesome-webfont.woff?v=4.2.0) format("woff"),url(../font/fontawesome-webfont.ttf?v=4.2.0) format("truetype"),url(../font/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular) format("svg");font-weight:400;font-style:normal}[class*=" um-faicon-"]:before,[class^=um-faicon-]:before{font-family:FontAwesome!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.um-faicon-glass:before{content:"\f000"}.um-faicon-music:before{content:"\f001"}.um-faicon-search:before{content:"\f002"}.um-faicon-envelope-o:before{content:"\f003"}.um-faicon-heart:before{content:"\f004"}.um-faicon-star:before{content:"\f005"}.um-faicon-star-o:before{content:"\f006"}.um-faicon-user:before{content:"\f007"}.um-faicon-film:before{content:"\f008"}.um-faicon-th-large:before{content:"\f009"}.um-faicon-th:before{content:"\f00a"}.um-faicon-th-list:before{content:"\f00b"}.um-faicon-check:before{content:"\f00c"}.um-faicon-close:before,.um-faicon-remove:before,.um-faicon-times:before{content:"\f00d"}.um-faicon-search-plus:before{content:"\f00e"}.um-faicon-search-minus:before{content:"\f010"}.um-faicon-power-off:before{content:"\f011"}.um-faicon-signal:before{content:"\f012"}.um-faicon-cog:before,.um-faicon-gear:before{content:"\f013"}.um-faicon-trash-o:before{content:"\f014"}.um-faicon-home:before{content:"\f015"}.um-faicon-file-o:before{content:"\f016"}.um-faicon-clock-o:before{content:"\f017"}.um-faicon-road:before{content:"\f018"}.um-faicon-download:before{content:"\f019"}.um-faicon-arrow-circle-o-down:before{content:"\f01a"}.um-faicon-arrow-circle-o-up:before{content:"\f01b"}.um-faicon-inbox:before{content:"\f01c"}.um-faicon-play-circle-o:before{content:"\f01d"}.um-faicon-repeat:before,.um-faicon-rotate-right:before{content:"\f01e"}.um-faicon-refresh:before{content:"\f021"}.um-faicon-list-alt:before{content:"\f022"}.um-faicon-lock:before{content:"\f023"}.um-faicon-flag:before{content:"\f024"}.um-faicon-headphones:before{content:"\f025"}.um-faicon-volume-off:before{content:"\f026"}.um-faicon-volume-down:before{content:"\f027"}.um-faicon-volume-up:before{content:"\f028"}.um-faicon-qrcode:before{content:"\f029"}.um-faicon-barcode:before{content:"\f02a"}.um-faicon-tag:before{content:"\f02b"}.um-faicon-tags:before{content:"\f02c"}.um-faicon-book:before{content:"\f02d"}.um-faicon-bookmark:before{content:"\f02e"}.um-faicon-print:before{content:"\f02f"}.um-faicon-camera:before{content:"\f030"}.um-faicon-font:before{content:"\f031"}.um-faicon-bold:before{content:"\f032"}.um-faicon-italic:before{content:"\f033"}.um-faicon-text-height:before{content:"\f034"}.um-faicon-text-width:before{content:"\f035"}.um-faicon-align-left:before{content:"\f036"}.um-faicon-align-center:before{content:"\f037"}.um-faicon-align-right:before{content:"\f038"}.um-faicon-align-justify:before{content:"\f039"}.um-faicon-list:before{content:"\f03a"}.um-faicon-dedent:before,.um-faicon-outdent:before{content:"\f03b"}.um-faicon-indent:before{content:"\f03c"}.um-faicon-video-camera:before{content:"\f03d"}.um-faicon-image:before,.um-faicon-photo:before,.um-faicon-picture-o:before{content:"\f03e"}.um-faicon-pencil:before{content:"\f040"}.um-faicon-map-marker:before{content:"\f041"}.um-faicon-adjust:before{content:"\f042"}.um-faicon-tint:before{content:"\f043"}.um-faicon-edit:before,.um-faicon-pencil-square-o:before{content:"\f044"}.um-faicon-share-square-o:before{content:"\f045"}.um-faicon-check-square-o:before{content:"\f046"}.um-faicon-arrows:before{content:"\f047"}.um-faicon-step-backward:before{content:"\f048"}.um-faicon-fast-backward:before{content:"\f049"}.um-faicon-backward:before{content:"\f04a"}.um-faicon-play:before{content:"\f04b"}.um-faicon-pause:before{content:"\f04c"}.um-faicon-stop:before{content:"\f04d"}.um-faicon-forward:before{content:"\f04e"}.um-faicon-fast-forward:before{content:"\f050"}.um-faicon-step-forward:before{content:"\f051"}.um-faicon-eject:before{content:"\f052"}.um-faicon-chevron-left:before{content:"\f053"}.um-faicon-chevron-right:before{content:"\f054"}.um-faicon-plus-circle:before{content:"\f055"}.um-faicon-minus-circle:before{content:"\f056"}.um-faicon-times-circle:before{content:"\f057"}.um-faicon-check-circle:before{content:"\f058"}.um-faicon-question-circle:before{content:"\f059"}.um-faicon-info-circle:before{content:"\f05a"}.um-faicon-crosshairs:before{content:"\f05b"}.um-faicon-times-circle-o:before{content:"\f05c"}.um-faicon-check-circle-o:before{content:"\f05d"}.um-faicon-ban:before{content:"\f05e"}.um-faicon-arrow-left:before{content:"\f060"}.um-faicon-arrow-right:before{content:"\f061"}.um-faicon-arrow-up:before{content:"\f062"}.um-faicon-arrow-down:before{content:"\f063"}.um-faicon-mail-forward:before,.um-faicon-share:before{content:"\f064"}.um-faicon-expand:before{content:"\f065"}.um-faicon-compress:before{content:"\f066"}.um-faicon-plus:before{content:"\f067"}.um-faicon-minus:before{content:"\f068"}.um-faicon-asterisk:before{content:"\f069"}.um-faicon-exclamation-circle:before{content:"\f06a"}.um-faicon-gift:before{content:"\f06b"}.um-faicon-leaf:before{content:"\f06c"}.um-faicon-fire:before{content:"\f06d"}.um-faicon-eye:before{content:"\f06e"}.um-faicon-eye-slash:before{content:"\f070"}.um-faicon-exclamation-triangle:before,.um-faicon-warning:before{content:"\f071"}.um-faicon-plane:before{content:"\f072"}.um-faicon-calendar:before{content:"\f073"}.um-faicon-random:before{content:"\f074"}.um-faicon-comment:before{content:"\f075"}.um-faicon-magnet:before{content:"\f076"}.um-faicon-chevron-up:before{content:"\f077"}.um-faicon-chevron-down:before{content:"\f078"}.um-faicon-retweet:before{content:"\f079"}.um-faicon-shopping-cart:before{content:"\f07a"}.um-faicon-folder:before{content:"\f07b"}.um-faicon-folder-open:before{content:"\f07c"}.um-faicon-arrows-v:before{content:"\f07d"}.um-faicon-arrows-h:before{content:"\f07e"}.um-faicon-bar-chart-o:before,.um-faicon-bar-chart:before{content:"\f080"}.um-faicon-twitter-square:before{content:"\f081"}.um-faicon-facebook-square:before{content:"\f082"}.um-faicon-camera-retro:before{content:"\f083"}.um-faicon-key:before{content:"\f084"}.um-faicon-cogs:before,.um-faicon-gears:before{content:"\f085"}.um-faicon-comments:before{content:"\f086"}.um-faicon-thumbs-o-up:before{content:"\f087"}.um-faicon-thumbs-o-down:before{content:"\f088"}.um-faicon-star-half:before{content:"\f089"}.um-faicon-heart-o:before{content:"\f08a"}.um-faicon-sign-out:before{content:"\f08b"}.um-faicon-linkedin-square:before{content:"\f08c"}.um-faicon-thumb-tack:before{content:"\f08d"}.um-faicon-external-link:before{content:"\f08e"}.um-faicon-sign-in:before{content:"\f090"}.um-faicon-trophy:before{content:"\f091"}.um-faicon-github-square:before{content:"\f092"}.um-faicon-upload:before{content:"\f093"}.um-faicon-lemon-o:before{content:"\f094"}.um-faicon-phone:before{content:"\f095"}.um-faicon-square-o:before{content:"\f096"}.um-faicon-bookmark-o:before{content:"\f097"}.um-faicon-phone-square:before{content:"\f098"}.um-faicon-twitter:before{content:"\f099"}.um-faicon-facebook:before{content:"\f09a"}.um-faicon-github:before{content:"\f09b"}.um-faicon-unlock:before{content:"\f09c"}.um-faicon-credit-card:before{content:"\f09d"}.um-faicon-rss:before{content:"\f09e"}.um-faicon-hdd-o:before{content:"\f0a0"}.um-faicon-bullhorn:before{content:"\f0a1"}.um-faicon-bell:before{content:"\f0f3"}.um-faicon-certificate:before{content:"\f0a3"}.um-faicon-hand-o-right:before{content:"\f0a4"}.um-faicon-hand-o-left:before{content:"\f0a5"}.um-faicon-hand-o-up:before{content:"\f0a6"}.um-faicon-hand-o-down:before{content:"\f0a7"}.um-faicon-arrow-circle-left:before{content:"\f0a8"}.um-faicon-arrow-circle-right:before{content:"\f0a9"}.um-faicon-arrow-circle-up:before{content:"\f0aa"}.um-faicon-arrow-circle-down:before{content:"\f0ab"}.um-faicon-globe:before{content:"\f0ac"}.um-faicon-wrench:before{content:"\f0ad"}.um-faicon-tasks:before{content:"\f0ae"}.um-faicon-filter:before{content:"\f0b0"}.um-faicon-briefcase:before{content:"\f0b1"}.um-faicon-arrows-alt:before{content:"\f0b2"}.um-faicon-group:before,.um-faicon-users:before{content:"\f0c0"}.um-faicon-chain:before,.um-faicon-link:before{content:"\f0c1"}.um-faicon-cloud:before{content:"\f0c2"}.um-faicon-flask:before{content:"\f0c3"}.um-faicon-cut:before,.um-faicon-scissors:before{content:"\f0c4"}.um-faicon-copy:before,.um-faicon-files-o:before{content:"\f0c5"}.um-faicon-paperclip:before{content:"\f0c6"}.um-faicon-floppy-o:before,.um-faicon-save:before{content:"\f0c7"}.um-faicon-square:before{content:"\f0c8"}.um-faicon-bars:before,.um-faicon-navicon:before,.um-faicon-reorder:before{content:"\f0c9"}.um-faicon-list-ul:before{content:"\f0ca"}.um-faicon-list-ol:before{content:"\f0cb"}.um-faicon-strikethrough:before{content:"\f0cc"}.um-faicon-underline:before{content:"\f0cd"}.um-faicon-table:before{content:"\f0ce"}.um-faicon-magic:before{content:"\f0d0"}.um-faicon-truck:before{content:"\f0d1"}.um-faicon-pinterest:before{content:"\f0d2"}.um-faicon-pinterest-square:before{content:"\f0d3"}.um-faicon-google-plus-square:before{content:"\f0d4"}.um-faicon-google-plus:before{content:"\f0d5"}.um-faicon-money:before{content:"\f0d6"}.um-faicon-caret-down:before{content:"\f0d7"}.um-faicon-caret-up:before{content:"\f0d8"}.um-faicon-caret-left:before{content:"\f0d9"}.um-faicon-caret-right:before{content:"\f0da"}.um-faicon-columns:before{content:"\f0db"}.um-faicon-sort:before,.um-faicon-unsorted:before{content:"\f0dc"}.um-faicon-sort-desc:before,.um-faicon-sort-down:before{content:"\f0dd"}.um-faicon-sort-asc:before,.um-faicon-sort-up:before{content:"\f0de"}.um-faicon-envelope:before{content:"\f0e0"}.um-faicon-linkedin:before{content:"\f0e1"}.um-faicon-rotate-left:before,.um-faicon-undo:before{content:"\f0e2"}.um-faicon-gavel:before,.um-faicon-legal:before{content:"\f0e3"}.um-faicon-dashboard:before,.um-faicon-tachometer:before{content:"\f0e4"}.um-faicon-comment-o:before{content:"\f0e5"}.um-faicon-comments-o:before{content:"\f0e6"}.um-faicon-bolt:before,.um-faicon-flash:before{content:"\f0e7"}.um-faicon-sitemap:before{content:"\f0e8"}.um-faicon-umbrella:before{content:"\f0e9"}.um-faicon-clipboard:before,.um-faicon-paste:before{content:"\f0ea"}.um-faicon-lightbulb-o:before{content:"\f0eb"}.um-faicon-exchange:before{content:"\f0ec"}.um-faicon-cloud-download:before{content:"\f0ed"}.um-faicon-cloud-upload:before{content:"\f0ee"}.um-faicon-user-md:before{content:"\f0f0"}.um-faicon-stethoscope:before{content:"\f0f1"}.um-faicon-suitcase:before{content:"\f0f2"}.um-faicon-bell-o:before{content:"\f0a2"}.um-faicon-coffee:before{content:"\f0f4"}.um-faicon-cutlery:before{content:"\f0f5"}.um-faicon-file-text-o:before{content:"\f0f6"}.um-faicon-building-o:before{content:"\f0f7"}.um-faicon-hospital-o:before{content:"\f0f8"}.um-faicon-ambulance:before{content:"\f0f9"}.um-faicon-medkit:before{content:"\f0fa"}.um-faicon-fighter-jet:before{content:"\f0fb"}.um-faicon-beer:before{content:"\f0fc"}.um-faicon-h-square:before{content:"\f0fd"}.um-faicon-plus-square:before{content:"\f0fe"}.um-faicon-angle-double-left:before{content:"\f100"}.um-faicon-angle-double-right:before{content:"\f101"}.um-faicon-angle-double-up:before{content:"\f102"}.um-faicon-angle-double-down:before{content:"\f103"}.um-faicon-angle-left:before{content:"\f104"}.um-faicon-angle-right:before{content:"\f105"}.um-faicon-angle-up:before{content:"\f106"}.um-faicon-angle-down:before{content:"\f107"}.um-faicon-desktop:before{content:"\f108"}.um-faicon-laptop:before{content:"\f109"}.um-faicon-tablet:before{content:"\f10a"}.um-faicon-mobile-phone:before,.um-faicon-mobile:before{content:"\f10b"}.um-faicon-circle-o:before{content:"\f10c"}.um-faicon-quote-left:before{content:"\f10d"}.um-faicon-quote-right:before{content:"\f10e"}.um-faicon-spinner:before{content:"\f110"}.um-faicon-circle:before{content:"\f111"}.um-faicon-mail-reply:before,.um-faicon-reply:before{content:"\f112"}.um-faicon-github-alt:before{content:"\f113"}.um-faicon-folder-o:before{content:"\f114"}.um-faicon-folder-open-o:before{content:"\f115"}.um-faicon-smile-o:before{content:"\f118"}.um-faicon-frown-o:before{content:"\f119"}.um-faicon-meh-o:before{content:"\f11a"}.um-faicon-gamepad:before{content:"\f11b"}.um-faicon-keyboard-o:before{content:"\f11c"}.um-faicon-flag-o:before{content:"\f11d"}.um-faicon-flag-checkered:before{content:"\f11e"}.um-faicon-terminal:before{content:"\f120"}.um-faicon-code:before{content:"\f121"}.um-faicon-mail-reply-all:before,.um-faicon-reply-all:before{content:"\f122"}.um-faicon-star-half-empty:before,.um-faicon-star-half-full:before,.um-faicon-star-half-o:before{content:"\f123"}.um-faicon-location-arrow:before{content:"\f124"}.um-faicon-crop:before{content:"\f125"}.um-faicon-code-fork:before{content:"\f126"}.um-faicon-chain-broken:before,.um-faicon-unlink:before{content:"\f127"}.um-faicon-question:before{content:"\f128"}.um-faicon-info:before{content:"\f129"}.um-faicon-exclamation:before{content:"\f12a"}.um-faicon-superscript:before{content:"\f12b"}.um-faicon-subscript:before{content:"\f12c"}.um-faicon-eraser:before{content:"\f12d"}.um-faicon-puzzle-piece:before{content:"\f12e"}.um-faicon-microphone:before{content:"\f130"}.um-faicon-microphone-slash:before{content:"\f131"}.um-faicon-shield:before{content:"\f132"}.um-faicon-calendar-o:before{content:"\f133"}.um-faicon-fire-extinguisher:before{content:"\f134"}.um-faicon-rocket:before{content:"\f135"}.um-faicon-maxcdn:before{content:"\f136"}.um-faicon-chevron-circle-left:before{content:"\f137"}.um-faicon-chevron-circle-right:before{content:"\f138"}.um-faicon-chevron-circle-up:before{content:"\f139"}.um-faicon-chevron-circle-down:before{content:"\f13a"}.um-faicon-html5:before{content:"\f13b"}.um-faicon-css3:before{content:"\f13c"}.um-faicon-anchor:before{content:"\f13d"}.um-faicon-unlock-alt:before{content:"\f13e"}.um-faicon-bullseye:before{content:"\f140"}.um-faicon-ellipsis-h:before{content:"\f141"}.um-faicon-ellipsis-v:before{content:"\f142"}.um-faicon-rss-square:before{content:"\f143"}.um-faicon-play-circle:before{content:"\f144"}.um-faicon-ticket:before{content:"\f145"}.um-faicon-minus-square:before{content:"\f146"}.um-faicon-minus-square-o:before{content:"\f147"}.um-faicon-level-up:before{content:"\f148"}.um-faicon-level-down:before{content:"\f149"}.um-faicon-check-square:before{content:"\f14a"}.um-faicon-pencil-square:before{content:"\f14b"}.um-faicon-external-link-square:before{content:"\f14c"}.um-faicon-share-square:before{content:"\f14d"}.um-faicon-compass:before{content:"\f14e"}.um-faicon-caret-square-o-down:before,.um-faicon-toggle-down:before{content:"\f150"}.um-faicon-caret-square-o-up:before,.um-faicon-toggle-up:before{content:"\f151"}.um-faicon-caret-square-o-right:before,.um-faicon-toggle-right:before{content:"\f152"}.um-faicon-eur:before,.um-faicon-euro:before{content:"\f153"}.um-faicon-gbp:before{content:"\f154"}.um-faicon-dollar:before,.um-faicon-usd:before{content:"\f155"}.um-faicon-inr:before,.um-faicon-rupee:before{content:"\f156"}.um-faicon-cny:before,.um-faicon-jpy:before,.um-faicon-rmb:before,.um-faicon-yen:before{content:"\f157"}.um-faicon-rouble:before,.um-faicon-rub:before,.um-faicon-ruble:before{content:"\f158"}.um-faicon-krw:before,.um-faicon-won:before{content:"\f159"}.um-faicon-bitcoin:before,.um-faicon-btc:before{content:"\f15a"}.um-faicon-file:before{content:"\f15b"}.um-faicon-file-text:before{content:"\f15c"}.um-faicon-sort-alpha-asc:before{content:"\f15d"}.um-faicon-sort-alpha-desc:before{content:"\f15e"}.um-faicon-sort-amount-asc:before{content:"\f160"}.um-faicon-sort-amount-desc:before{content:"\f161"}.um-faicon-sort-numeric-asc:before{content:"\f162"}.um-faicon-sort-numeric-desc:before{content:"\f163"}.um-faicon-thumbs-up:before{content:"\f164"}.um-faicon-thumbs-down:before{content:"\f165"}.um-faicon-youtube-square:before{content:"\f166"}.um-faicon-youtube:before{content:"\f167"}.um-faicon-xing:before{content:"\f168"}.um-faicon-xing-square:before{content:"\f169"}.um-faicon-youtube-play:before{content:"\f16a"}.um-faicon-dropbox:before{content:"\f16b"}.um-faicon-stack-overflow:before{content:"\f16c"}.um-faicon-instagram:before{content:"\f16d"}.um-faicon-flickr:before{content:"\f16e"}.um-faicon-adn:before{content:"\f170"}.um-faicon-bitbucket:before{content:"\f171"}.um-faicon-bitbucket-square:before{content:"\f172"}.um-faicon-tumblr:before{content:"\f173"}.um-faicon-tumblr-square:before{content:"\f174"}.um-faicon-long-arrow-down:before{content:"\f175"}.um-faicon-long-arrow-up:before{content:"\f176"}.um-faicon-long-arrow-left:before{content:"\f177"}.um-faicon-long-arrow-right:before{content:"\f178"}.um-faicon-apple:before{content:"\f179"}.um-faicon-windows:before{content:"\f17a"}.um-faicon-android:before{content:"\f17b"}.um-faicon-linux:before{content:"\f17c"}.um-faicon-dribbble:before{content:"\f17d"}.um-faicon-skype:before{content:"\f17e"}.um-faicon-foursquare:before{content:"\f180"}.um-faicon-trello:before{content:"\f181"}.um-faicon-female:before{content:"\f182"}.um-faicon-male:before{content:"\f183"}.um-faicon-gittip:before{content:"\f184"}.um-faicon-sun-o:before{content:"\f185"}.um-faicon-moon-o:before{content:"\f186"}.um-faicon-archive:before{content:"\f187"}.um-faicon-bug:before{content:"\f188"}.um-faicon-vk:before{content:"\f189"}.um-faicon-weibo:before{content:"\f18a"}.um-faicon-renren:before{content:"\f18b"}.um-faicon-pagelines:before{content:"\f18c"}.um-faicon-stack-exchange:before{content:"\f18d"}.um-faicon-arrow-circle-o-right:before{content:"\f18e"}.um-faicon-arrow-circle-o-left:before{content:"\f190"}.um-faicon-caret-square-o-left:before,.um-faicon-toggle-left:before{content:"\f191"}.um-faicon-dot-circle-o:before{content:"\f192"}.um-faicon-wheelchair:before{content:"\f193"}.um-faicon-vimeo-square:before{content:"\f194"}.um-faicon-try:before,.um-faicon-turkish-lira:before{content:"\f195"}.um-faicon-plus-square-o:before{content:"\f196"}.um-faicon-space-shuttle:before{content:"\f197"}.um-faicon-slack:before{content:"\f198"}.um-faicon-envelope-square:before{content:"\f199"}.um-faicon-wordpress:before{content:"\f19a"}.um-faicon-openid:before{content:"\f19b"}.um-faicon-bank:before,.um-faicon-institution:before,.um-faicon-university:before{content:"\f19c"}.um-faicon-graduation-cap:before,.um-faicon-mortar-board:before{content:"\f19d"}.um-faicon-yahoo:before{content:"\f19e"}.um-faicon-google:before{content:"\f1a0"}.um-faicon-reddit:before{content:"\f1a1"}.um-faicon-reddit-square:before{content:"\f1a2"}.um-faicon-stumbleupon-circle:before{content:"\f1a3"}.um-faicon-stumbleupon:before{content:"\f1a4"}.um-faicon-delicious:before{content:"\f1a5"}.um-faicon-digg:before{content:"\f1a6"}.um-faicon-pied-piper:before{content:"\f1a7"}.um-faicon-pied-piper-alt:before{content:"\f1a8"}.um-faicon-drupal:before{content:"\f1a9"}.um-faicon-joomla:before{content:"\f1aa"}.um-faicon-language:before{content:"\f1ab"}.um-faicon-fax:before{content:"\f1ac"}.um-faicon-building:before{content:"\f1ad"}.um-faicon-child:before{content:"\f1ae"}.um-faicon-paw:before{content:"\f1b0"}.um-faicon-spoon:before{content:"\f1b1"}.um-faicon-cube:before{content:"\f1b2"}.um-faicon-cubes:before{content:"\f1b3"}.um-faicon-behance:before{content:"\f1b4"}.um-faicon-behance-square:before{content:"\f1b5"}.um-faicon-steam:before{content:"\f1b6"}.um-faicon-steam-square:before{content:"\f1b7"}.um-faicon-recycle:before{content:"\f1b8"}.um-faicon-automobile:before,.um-faicon-car:before{content:"\f1b9"}.um-faicon-cab:before,.um-faicon-taxi:before{content:"\f1ba"}.um-faicon-tree:before{content:"\f1bb"}.um-faicon-spotify:before{content:"\f1bc"}.um-faicon-deviantart:before{content:"\f1bd"}.um-faicon-soundcloud:before{content:"\f1be"}.um-faicon-database:before{content:"\f1c0"}.um-faicon-file-pdf-o:before{content:"\f1c1"}.um-faicon-file-word-o:before{content:"\f1c2"}.um-faicon-file-excel-o:before{content:"\f1c3"}.um-faicon-file-powerpoint-o:before{content:"\f1c4"}.um-faicon-file-image-o:before,.um-faicon-file-photo-o:before,.um-faicon-file-picture-o:before{content:"\f1c5"}.um-faicon-file-archive-o:before,.um-faicon-file-zip-o:before{content:"\f1c6"}.um-faicon-file-audio-o:before,.um-faicon-file-sound-o:before{content:"\f1c7"}.um-faicon-file-movie-o:before,.um-faicon-file-video-o:before{content:"\f1c8"}.um-faicon-file-code-o:before{content:"\f1c9"}.um-faicon-vine:before{content:"\f1ca"}.um-faicon-codepen:before{content:"\f1cb"}.um-faicon-jsfiddle:before{content:"\f1cc"}.um-faicon-life-bouy:before,.um-faicon-life-buoy:before,.um-faicon-life-ring:before,.um-faicon-life-saver:before,.um-faicon-support:before{content:"\f1cd"}.um-faicon-circle-o-notch:before{content:"\f1ce"}.um-faicon-ra:before,.um-faicon-rebel:before{content:"\f1d0"}.um-faicon-empire:before,.um-faicon-ge:before{content:"\f1d1"}.um-faicon-git-square:before{content:"\f1d2"}.um-faicon-git:before{content:"\f1d3"}.um-faicon-hacker-news:before{content:"\f1d4"}.um-faicon-tencent-weibo:before{content:"\f1d5"}.um-faicon-qq:before{content:"\f1d6"}.um-faicon-wechat:before,.um-faicon-weixin:before{content:"\f1d7"}.um-faicon-paper-plane:before,.um-faicon-send:before{content:"\f1d8"}.um-faicon-paper-plane-o:before,.um-faicon-send-o:before{content:"\f1d9"}.um-faicon-history:before{content:"\f1da"}.um-faicon-circle-thin:before{content:"\f1db"}.um-faicon-header:before{content:"\f1dc"}.um-faicon-paragraph:before{content:"\f1dd"}.um-faicon-sliders:before{content:"\f1de"}.um-faicon-share-alt:before{content:"\f1e0"}.um-faicon-share-alt-square:before{content:"\f1e1"}.um-faicon-bomb:before{content:"\f1e2"}.um-faicon-futbol-o:before,.um-faicon-soccer-ball-o:before{content:"\f1e3"}.um-faicon-tty:before{content:"\f1e4"}.um-faicon-binoculars:before{content:"\f1e5"}.um-faicon-plug:before{content:"\f1e6"}.um-faicon-slideshare:before{content:"\f1e7"}.um-faicon-twitch:before{content:"\f1e8"}.um-faicon-yelp:before{content:"\f1e9"}.um-faicon-newspaper-o:before{content:"\f1ea"}.um-faicon-wifi:before{content:"\f1eb"}.um-faicon-calculator:before{content:"\f1ec"}.um-faicon-paypal:before{content:"\f1ed"}.um-faicon-google-wallet:before{content:"\f1ee"}.um-faicon-cc-visa:before{content:"\f1f0"}.um-faicon-cc-mastercard:before{content:"\f1f1"}.um-faicon-cc-discover:before{content:"\f1f2"}.um-faicon-cc-amex:before{content:"\f1f3"}.um-faicon-cc-paypal:before{content:"\f1f4"}.um-faicon-cc-stripe:before{content:"\f1f5"}.um-faicon-bell-slash:before{content:"\f1f6"}.um-faicon-bell-slash-o:before{content:"\f1f7"}.um-faicon-trash:before{content:"\f1f8"}.um-faicon-copyright:before{content:"\f1f9"}.um-faicon-at:before{content:"\f1fa"}.um-faicon-eyedropper:before{content:"\f1fb"}.um-faicon-paint-brush:before{content:"\f1fc"}.um-faicon-birthday-cake:before{content:"\f1fd"}.um-faicon-area-chart:before{content:"\f1fe"}.um-faicon-pie-chart:before{content:"\f200"}.um-faicon-line-chart:before{content:"\f201"}.um-faicon-lastfm:before{content:"\f202"}.um-faicon-lastfm-square:before{content:"\f203"}.um-faicon-toggle-off:before{content:"\f204"}.um-faicon-toggle-on:before{content:"\f205"}.um-faicon-bicycle:before{content:"\f206"}.um-faicon-bus:before{content:"\f207"}.um-faicon-ioxhost:before{content:"\f208"}.um-faicon-angellist:before{content:"\f209"}.um-faicon-cc:before{content:"\f20a"}.um-faicon-ils:before,.um-faicon-shekel:before,.um-faicon-sheqel:before{content:"\f20b"}.um-faicon-meanpath:before{content:"\f20c"}@font-face{font-family:Ionicons;src:url(../font/ionicons.eot?v=2.0.0);src:url(../font/ionicons.eot?v=2.0.0#iefix) format("embedded-opentype"),url(../font/ionicons.woff?v=2.0.0) format("woff"),url(../font/ionicons.ttf?v=2.0.0) format("truetype"),url(../font/ionicons.svg?v=2.0.0#Ionicons) format("svg");font-weight:400;font-style:normal}[class*=" um-icon-"]:before,[class^=um-icon-]:before{font-family:Ionicons!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.um-icon-alert:before{content:"\f101"}.um-icon-alert-circled:before{content:"\f100"}.um-icon-android-add:before{content:"\f2c7"}.um-icon-android-add-circle:before{content:"\f359"}.um-icon-android-alarm-clock:before{content:"\f35a"}.um-icon-android-alert:before{content:"\f35b"}.um-icon-android-apps:before{content:"\f35c"}.um-icon-android-archive:before{content:"\f2c9"}.um-icon-android-arrow-back:before{content:"\f2ca"}.um-icon-android-arrow-down:before{content:"\f35d"}.um-icon-android-arrow-dropdown:before{content:"\f35f"}.um-icon-android-arrow-dropdown-circle:before{content:"\f35e"}.um-icon-android-arrow-dropleft:before{content:"\f361"}.um-icon-android-arrow-dropleft-circle:before{content:"\f360"}.um-icon-android-arrow-dropright:before{content:"\f363"}.um-icon-android-arrow-dropright-circle:before{content:"\f362"}.um-icon-android-arrow-dropup:before{content:"\f365"}.um-icon-android-arrow-dropup-circle:before{content:"\f364"}.um-icon-android-arrow-forward:before{content:"\f30f"}.um-icon-android-arrow-up:before{content:"\f366"}.um-icon-android-attach:before{content:"\f367"}.um-icon-android-bar:before{content:"\f368"}.um-icon-android-bicycle:before{content:"\f369"}.um-icon-android-boat:before{content:"\f36a"}.um-icon-android-bookmark:before{content:"\f36b"}.um-icon-android-bulb:before{content:"\f36c"}.um-icon-android-bus:before{content:"\f36d"}.um-icon-android-calendar:before{content:"\f2d1"}.um-icon-android-call:before{content:"\f2d2"}.um-icon-android-camera:before{content:"\f2d3"}.um-icon-android-cancel:before{content:"\f36e"}.um-icon-android-car:before{content:"\f36f"}.um-icon-android-cart:before{content:"\f370"}.um-icon-android-chat:before{content:"\f2d4"}.um-icon-android-checkbox:before{content:"\f374"}.um-icon-android-checkbox-blank:before{content:"\f371"}.um-icon-android-checkbox-outline:before{content:"\f373"}.um-icon-android-checkbox-outline-blank:before{content:"\f372"}.um-icon-android-checkmark-circle:before{content:"\f375"}.um-icon-android-clipboard:before{content:"\f376"}.um-icon-android-close:before{content:"\f2d7"}.um-icon-android-cloud:before{content:"\f37a"}.um-icon-android-cloud-circle:before{content:"\f377"}.um-icon-android-cloud-done:before{content:"\f378"}.um-icon-android-cloud-outline:before{content:"\f379"}.um-icon-android-color-palette:before{content:"\f37b"}.um-icon-android-compass:before{content:"\f37c"}.um-icon-android-contact:before{content:"\f2d8"}.um-icon-android-contacts:before{content:"\f2d9"}.um-icon-android-contract:before{content:"\f37d"}.um-icon-android-create:before{content:"\f37e"}.um-icon-android-delete:before{content:"\f37f"}.um-icon-android-desktop:before{content:"\f380"}.um-icon-android-document:before{content:"\f381"}.um-icon-android-done:before{content:"\f383"}.um-icon-android-done-all:before{content:"\f382"}.um-icon-android-download:before{content:"\f2dd"}.um-icon-android-drafts:before{content:"\f384"}.um-icon-android-exit:before{content:"\f385"}.um-icon-android-expand:before{content:"\f386"}.um-icon-android-favorite:before{content:"\f388"}.um-icon-android-favorite-outline:before{content:"\f387"}.um-icon-android-film:before{content:"\f389"}.um-icon-android-folder:before{content:"\f2e0"}.um-icon-android-folder-open:before{content:"\f38a"}.um-icon-android-funnel:before{content:"\f38b"}.um-icon-android-globe:before{content:"\f38c"}.um-icon-android-hand:before{content:"\f2e3"}.um-icon-android-hangout:before{content:"\f38d"}.um-icon-android-happy:before{content:"\f38e"}.um-icon-android-home:before{content:"\f38f"}.um-icon-android-image:before{content:"\f2e4"}.um-icon-android-laptop:before{content:"\f390"}.um-icon-android-list:before{content:"\f391"}.um-icon-android-locate:before{content:"\f2e9"}.um-icon-android-lock:before{content:"\f392"}.um-icon-android-mail:before{content:"\f2eb"}.um-icon-android-map:before{content:"\f393"}.um-icon-android-menu:before{content:"\f394"}.um-icon-android-microphone:before{content:"\f2ec"}.um-icon-android-microphone-off:before{content:"\f395"}.um-icon-android-more-horizontal:before{content:"\f396"}.um-icon-android-more-vertical:before{content:"\f397"}.um-icon-android-navigate:before{content:"\f398"}.um-icon-android-notifications:before{content:"\f39b"}.um-icon-android-notifications-none:before{content:"\f399"}.um-icon-android-notifications-off:before{content:"\f39a"}.um-icon-android-open:before{content:"\f39c"}.um-icon-android-options:before{content:"\f39d"}.um-icon-android-people:before{content:"\f39e"}.um-icon-android-person:before{content:"\f3a0"}.um-icon-android-person-add:before{content:"\f39f"}.um-icon-android-phone-landscape:before{content:"\f3a1"}.um-icon-android-phone-portrait:before{content:"\f3a2"}.um-icon-android-pin:before{content:"\f3a3"}.um-icon-android-plane:before{content:"\f3a4"}.um-icon-android-playstore:before{content:"\f2f0"}.um-icon-android-print:before{content:"\f3a5"}.um-icon-android-radio-button-off:before{content:"\f3a6"}.um-icon-android-radio-button-on:before{content:"\f3a7"}.um-icon-android-refresh:before{content:"\f3a8"}.um-icon-android-remove:before{content:"\f2f4"}.um-icon-android-remove-circle:before{content:"\f3a9"}.um-icon-android-restaurant:before{content:"\f3aa"}.um-icon-android-sad:before{content:"\f3ab"}.um-icon-android-search:before{content:"\f2f5"}.um-icon-android-send:before{content:"\f2f6"}.um-icon-android-settings:before{content:"\f2f7"}.um-icon-android-share:before{content:"\f2f8"}.um-icon-android-share-alt:before{content:"\f3ac"}.um-icon-android-star:before{content:"\f2fc"}.um-icon-android-star-half:before{content:"\f3ad"}.um-icon-android-star-outline:before{content:"\f3ae"}.um-icon-android-stopwatch:before{content:"\f2fd"}.um-icon-android-subway:before{content:"\f3af"}.um-icon-android-sunny:before{content:"\f3b0"}.um-icon-android-sync:before{content:"\f3b1"}.um-icon-android-textsms:before{content:"\f3b2"}.um-icon-android-time:before{content:"\f3b3"}.um-icon-android-train:before{content:"\f3b4"}.um-icon-android-unlock:before{content:"\f3b5"}.um-icon-android-upload:before{content:"\f3b6"}.um-icon-android-volume-down:before{content:"\f3b7"}.um-icon-android-volume-mute:before{content:"\f3b8"}.um-icon-android-volume-off:before{content:"\f3b9"}.um-icon-android-volume-up:before{content:"\f3ba"}.um-icon-android-walk:before{content:"\f3bb"}.um-icon-android-warning:before{content:"\f3bc"}.um-icon-android-watch:before{content:"\f3bd"}.um-icon-android-wifi:before{content:"\f305"}.um-icon-aperture:before{content:"\f313"}.um-icon-archive:before{content:"\f102"}.um-icon-arrow-down-a:before{content:"\f103"}.um-icon-arrow-down-b:before{content:"\f104"}.um-icon-arrow-down-c:before{content:"\f105"}.um-icon-arrow-expand:before{content:"\f25e"}.um-icon-arrow-graph-down-left:before{content:"\f25f"}.um-icon-arrow-graph-down-right:before{content:"\f260"}.um-icon-arrow-graph-up-left:before{content:"\f261"}.um-icon-arrow-graph-up-right:before{content:"\f262"}.um-icon-arrow-left-a:before{content:"\f106"}.um-icon-arrow-left-b:before{content:"\f107"}.um-icon-arrow-left-c:before{content:"\f108"}.um-icon-arrow-move:before{content:"\f263"}.um-icon-arrow-resize:before{content:"\f264"}.um-icon-arrow-return-left:before{content:"\f265"}.um-icon-arrow-return-right:before{content:"\f266"}.um-icon-arrow-right-a:before{content:"\f109"}.um-icon-arrow-right-b:before{content:"\f10a"}.um-icon-arrow-right-c:before{content:"\f10b"}.um-icon-arrow-shrink:before{content:"\f267"}.um-icon-arrow-swap:before{content:"\f268"}.um-icon-arrow-up-a:before{content:"\f10c"}.um-icon-arrow-up-b:before{content:"\f10d"}.um-icon-arrow-up-c:before{content:"\f10e"}.um-icon-asterisk:before{content:"\f314"}.um-icon-at:before{content:"\f10f"}.um-icon-backspace:before{content:"\f3bf"}.um-icon-backspace-outline:before{content:"\f3be"}.um-icon-bag:before{content:"\f110"}.um-icon-battery-charging:before{content:"\f111"}.um-icon-battery-empty:before{content:"\f112"}.um-icon-battery-full:before{content:"\f113"}.um-icon-battery-half:before{content:"\f114"}.um-icon-battery-low:before{content:"\f115"}.um-icon-beaker:before{content:"\f269"}.um-icon-beer:before{content:"\f26a"}.um-icon-bluetooth:before{content:"\f116"}.um-icon-bonfire:before{content:"\f315"}.um-icon-bookmark:before{content:"\f26b"}.um-icon-bowtie:before{content:"\f3c0"}.um-icon-briefcase:before{content:"\f26c"}.um-icon-bug:before{content:"\f2be"}.um-icon-calculator:before{content:"\f26d"}.um-icon-calendar:before{content:"\f117"}.um-icon-camera:before{content:"\f118"}.um-icon-card:before{content:"\f119"}.um-icon-cash:before{content:"\f316"}.um-icon-chatbox:before{content:"\f11b"}.um-icon-chatbox-working:before{content:"\f11a"}.um-icon-chatboxes:before{content:"\f11c"}.um-icon-chatbubble:before{content:"\f11e"}.um-icon-chatbubble-working:before{content:"\f11d"}.um-icon-chatbubbles:before{content:"\f11f"}.um-icon-checkmark:before{content:"\f122"}.um-icon-checkmark-circled:before{content:"\f120"}.um-icon-checkmark-round:before{content:"\f121"}.um-icon-chevron-down:before{content:"\f123"}.um-icon-chevron-left:before{content:"\f124"}.um-icon-chevron-right:before{content:"\f125"}.um-icon-chevron-up:before{content:"\f126"}.um-icon-clipboard:before{content:"\f127"}.um-icon-clock:before{content:"\f26e"}.um-icon-close:before{content:"\f12a"}.um-icon-close-circled:before{content:"\f128"}.um-icon-close-round:before{content:"\f129"}.um-icon-closed-captioning:before{content:"\f317"}.um-icon-cloud:before{content:"\f12b"}.um-icon-code:before{content:"\f271"}.um-icon-code-download:before{content:"\f26f"}.um-icon-code-working:before{content:"\f270"}.um-icon-coffee:before{content:"\f272"}.um-icon-compass:before{content:"\f273"}.um-icon-compose:before{content:"\f12c"}.um-icon-connection-bars:before{content:"\f274"}.um-icon-contrast:before{content:"\f275"}.um-icon-crop:before{content:"\f3c1"}.um-icon-cube:before{content:"\f318"}.um-icon-disc:before{content:"\f12d"}.um-icon-document:before{content:"\f12f"}.um-icon-document-text:before{content:"\f12e"}.um-icon-drag:before{content:"\f130"}.um-icon-earth:before{content:"\f276"}.um-icon-easel:before{content:"\f3c2"}.um-icon-edit:before{content:"\f2bf"}.um-icon-egg:before{content:"\f277"}.um-icon-eject:before{content:"\f131"}.um-icon-email:before{content:"\f132"}.um-icon-email-unread:before{content:"\f3c3"}.um-icon-erlenmeyer-flask:before{content:"\f3c5"}.um-icon-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.um-icon-eye:before{content:"\f133"}.um-icon-eye-disabled:before{content:"\f306"}.um-icon-female:before{content:"\f278"}.um-icon-filing:before{content:"\f134"}.um-icon-film-marker:before{content:"\f135"}.um-icon-fireball:before{content:"\f319"}.um-icon-flag:before{content:"\f279"}.um-icon-flame:before{content:"\f31a"}.um-icon-flash:before{content:"\f137"}.um-icon-flash-off:before{content:"\f136"}.um-icon-folder:before{content:"\f139"}.um-icon-fork:before{content:"\f27a"}.um-icon-fork-repo:before{content:"\f2c0"}.um-icon-forward:before{content:"\f13a"}.um-icon-funnel:before{content:"\f31b"}.um-icon-gear-a:before{content:"\f13d"}.um-icon-gear-b:before{content:"\f13e"}.um-icon-grid:before{content:"\f13f"}.um-icon-hammer:before{content:"\f27b"}.um-icon-happy:before{content:"\f31c"}.um-icon-happy-outline:before{content:"\f3c6"}.um-icon-headphone:before{content:"\f140"}.um-icon-heart:before{content:"\f141"}.um-icon-heart-broken:before{content:"\f31d"}.um-icon-help:before{content:"\f143"}.um-icon-help-buoy:before{content:"\f27c"}.um-icon-help-circled:before{content:"\f142"}.um-icon-home:before{content:"\f144"}.um-icon-icecream:before{content:"\f27d"}.um-icon-image:before{content:"\f147"}.um-icon-images:before{content:"\f148"}.um-icon-information:before{content:"\f14a"}.um-icon-information-circled:before{content:"\f149"}.um-icon-ionic:before{content:"\f14b"}.um-icon-ios-alarm:before{content:"\f3c8"}.um-icon-ios-alarm-outline:before{content:"\f3c7"}.um-icon-ios-albums:before{content:"\f3ca"}.um-icon-ios-albums-outline:before{content:"\f3c9"}.um-icon-ios-americanfootball:before{content:"\f3cc"}.um-icon-ios-americanfootball-outline:before{content:"\f3cb"}.um-icon-ios-analytics:before{content:"\f3ce"}.um-icon-ios-analytics-outline:before{content:"\f3cd"}.um-icon-ios-arrow-back:before{content:"\f3cf"}.um-icon-ios-arrow-down:before{content:"\f3d0"}.um-icon-ios-arrow-forward:before{content:"\f3d1"}.um-icon-ios-arrow-left:before{content:"\f3d2"}.um-icon-ios-arrow-right:before{content:"\f3d3"}.um-icon-ios-arrow-thin-down:before{content:"\f3d4"}.um-icon-ios-arrow-thin-left:before{content:"\f3d5"}.um-icon-ios-arrow-thin-right:before{content:"\f3d6"}.um-icon-ios-arrow-thin-up:before{content:"\f3d7"}.um-icon-ios-arrow-up:before{content:"\f3d8"}.um-icon-ios-at:before{content:"\f3da"}.um-icon-ios-at-outline:before{content:"\f3d9"}.um-icon-ios-barcode:before{content:"\f3dc"}.um-icon-ios-barcode-outline:before{content:"\f3db"}.um-icon-ios-baseball:before{content:"\f3de"}.um-icon-ios-baseball-outline:before{content:"\f3dd"}.um-icon-ios-basketball:before{content:"\f3e0"}.um-icon-ios-basketball-outline:before{content:"\f3df"}.um-icon-ios-bell:before{content:"\f3e2"}.um-icon-ios-bell-outline:before{content:"\f3e1"}.um-icon-ios-body:before{content:"\f3e4"}.um-icon-ios-body-outline:before{content:"\f3e3"}.um-icon-ios-bolt:before{content:"\f3e6"}.um-icon-ios-bolt-outline:before{content:"\f3e5"}.um-icon-ios-book:before{content:"\f3e8"}.um-icon-ios-book-outline:before{content:"\f3e7"}.um-icon-ios-bookmarks:before{content:"\f3ea"}.um-icon-ios-bookmarks-outline:before{content:"\f3e9"}.um-icon-ios-box:before{content:"\f3ec"}.um-icon-ios-box-outline:before{content:"\f3eb"}.um-icon-ios-briefcase:before{content:"\f3ee"}.um-icon-ios-briefcase-outline:before{content:"\f3ed"}.um-icon-ios-browsers:before{content:"\f3f0"}.um-icon-ios-browsers-outline:before{content:"\f3ef"}.um-icon-ios-calculator:before{content:"\f3f2"}.um-icon-ios-calculator-outline:before{content:"\f3f1"}.um-icon-ios-calendar:before{content:"\f3f4"}.um-icon-ios-calendar-outline:before{content:"\f3f3"}.um-icon-ios-camera:before{content:"\f3f6"}.um-icon-ios-camera-outline:before{content:"\f3f5"}.um-icon-ios-cart:before{content:"\f3f8"}.um-icon-ios-cart-outline:before{content:"\f3f7"}.um-icon-ios-chatboxes:before{content:"\f3fa"}.um-icon-ios-chatboxes-outline:before{content:"\f3f9"}.um-icon-ios-chatbubble:before{content:"\f3fc"}.um-icon-ios-chatbubble-outline:before{content:"\f3fb"}.um-icon-ios-checkmark:before{content:"\f3ff"}.um-icon-ios-checkmark-empty:before{content:"\f3fd"}.um-icon-ios-checkmark-outline:before{content:"\f3fe"}.um-icon-ios-circle-filled:before{content:"\f400"}.um-icon-ios-circle-outline:before{content:"\f401"}.um-icon-ios-clock:before{content:"\f403"}.um-icon-ios-clock-outline:before{content:"\f402"}.um-icon-ios-close:before{content:"\f406"}.um-icon-ios-close-empty:before{content:"\f404"}.um-icon-ios-close-outline:before{content:"\f405"}.um-icon-ios-cloud:before{content:"\f40c"}.um-icon-ios-cloud-download:before{content:"\f408"}.um-icon-ios-cloud-download-outline:before{content:"\f407"}.um-icon-ios-cloud-outline:before{content:"\f409"}.um-icon-ios-cloud-upload:before{content:"\f40b"}.um-icon-ios-cloud-upload-outline:before{content:"\f40a"}.um-icon-ios-cloudy:before{content:"\f410"}.um-icon-ios-cloudy-night:before{content:"\f40e"}.um-icon-ios-cloudy-night-outline:before{content:"\f40d"}.um-icon-ios-cloudy-outline:before{content:"\f40f"}.um-icon-ios-cog:before{content:"\f412"}.um-icon-ios-cog-outline:before{content:"\f411"}.um-icon-ios-color-filter:before{content:"\f414"}.um-icon-ios-color-filter-outline:before{content:"\f413"}.um-icon-ios-color-wand:before{content:"\f416"}.um-icon-ios-color-wand-outline:before{content:"\f415"}.um-icon-ios-compose:before{content:"\f418"}.um-icon-ios-compose-outline:before{content:"\f417"}.um-icon-ios-contact:before{content:"\f41a"}.um-icon-ios-contact-outline:before{content:"\f419"}.um-icon-ios-copy:before{content:"\f41c"}.um-icon-ios-copy-outline:before{content:"\f41b"}.um-icon-ios-crop:before{content:"\f41e"}.um-icon-ios-crop-strong:before{content:"\f41d"}.um-icon-ios-download:before{content:"\f420"}.um-icon-ios-download-outline:before{content:"\f41f"}.um-icon-ios-drag:before{content:"\f421"}.um-icon-ios-email:before{content:"\f423"}.um-icon-ios-email-outline:before{content:"\f422"}.um-icon-ios-eye:before{content:"\f425"}.um-icon-ios-eye-outline:before{content:"\f424"}.um-icon-ios-fastforward:before{content:"\f427"}.um-icon-ios-fastforward-outline:before{content:"\f426"}.um-icon-ios-filing:before{content:"\f429"}.um-icon-ios-filing-outline:before{content:"\f428"}.um-icon-ios-film:before{content:"\f42b"}.um-icon-ios-film-outline:before{content:"\f42a"}.um-icon-ios-flag:before{content:"\f42d"}.um-icon-ios-flag-outline:before{content:"\f42c"}.um-icon-ios-flame:before{content:"\f42f"}.um-icon-ios-flame-outline:before{content:"\f42e"}.um-icon-ios-flask:before{content:"\f431"}.um-icon-ios-flask-outline:before{content:"\f430"}.um-icon-ios-flower:before{content:"\f433"}.um-icon-ios-flower-outline:before{content:"\f432"}.um-icon-ios-folder:before{content:"\f435"}.um-icon-ios-folder-outline:before{content:"\f434"}.um-icon-ios-football:before{content:"\f437"}.um-icon-ios-football-outline:before{content:"\f436"}.um-icon-ios-game-controller-a:before{content:"\f439"}.um-icon-ios-game-controller-a-outline:before{content:"\f438"}.um-icon-ios-game-controller-b:before{content:"\f43b"}.um-icon-ios-game-controller-b-outline:before{content:"\f43a"}.um-icon-ios-gear:before{content:"\f43d"}.um-icon-ios-gear-outline:before{content:"\f43c"}.um-icon-ios-glasses:before{content:"\f43f"}.um-icon-ios-glasses-outline:before{content:"\f43e"}.um-icon-ios-grid-view:before{content:"\f441"}.um-icon-ios-grid-view-outline:before{content:"\f440"}.um-icon-ios-heart:before{content:"\f443"}.um-icon-ios-heart-outline:before{content:"\f442"}.um-icon-ios-help:before{content:"\f446"}.um-icon-ios-help-empty:before{content:"\f444"}.um-icon-ios-help-outline:before{content:"\f445"}.um-icon-ios-home:before{content:"\f448"}.um-icon-ios-home-outline:before{content:"\f447"}.um-icon-ios-infinite:before{content:"\f44a"}.um-icon-ios-infinite-outline:before{content:"\f449"}.um-icon-ios-information:before{content:"\f44d"}.um-icon-ios-information-empty:before{content:"\f44b"}.um-icon-ios-information-outline:before{content:"\f44c"}.um-icon-ios-ionic-outline:before{content:"\f44e"}.um-icon-ios-keypad:before{content:"\f450"}.um-icon-ios-keypad-outline:before{content:"\f44f"}.um-icon-ios-lightbulb:before{content:"\f452"}.um-icon-ios-lightbulb-outline:before{content:"\f451"}.um-icon-ios-list:before{content:"\f454"}.um-icon-ios-list-outline:before{content:"\f453"}.um-icon-ios-location:before{content:"\f456"}.um-icon-ios-location-outline:before{content:"\f455"}.um-icon-ios-locked:before{content:"\f458"}.um-icon-ios-locked-outline:before{content:"\f457"}.um-icon-ios-loop:before{content:"\f45a"}.um-icon-ios-loop-strong:before{content:"\f459"}.um-icon-ios-medical:before{content:"\f45c"}.um-icon-ios-medical-outline:before{content:"\f45b"}.um-icon-ios-medkit:before{content:"\f45e"}.um-icon-ios-medkit-outline:before{content:"\f45d"}.um-icon-ios-mic:before{content:"\f461"}.um-icon-ios-mic-off:before{content:"\f45f"}.um-icon-ios-mic-outline:before{content:"\f460"}.um-icon-ios-minus:before{content:"\f464"}.um-icon-ios-minus-empty:before{content:"\f462"}.um-icon-ios-minus-outline:before{content:"\f463"}.um-icon-ios-monitor:before{content:"\f466"}.um-icon-ios-monitor-outline:before{content:"\f465"}.um-icon-ios-moon:before{content:"\f468"}.um-icon-ios-moon-outline:before{content:"\f467"}.um-icon-ios-more:before{content:"\f46a"}.um-icon-ios-more-outline:before{content:"\f469"}.um-icon-ios-musical-note:before{content:"\f46b"}.um-icon-ios-musical-notes:before{content:"\f46c"}.um-icon-ios-navigate:before{content:"\f46e"}.um-icon-ios-navigate-outline:before{content:"\f46d"}.um-icon-ios-nutrition:before{content:"\f470"}.um-icon-ios-nutrition-outline:before{content:"\f46f"}.um-icon-ios-paper:before{content:"\f472"}.um-icon-ios-paper-outline:before{content:"\f471"}.um-icon-ios-paperplane:before{content:"\f474"}.um-icon-ios-paperplane-outline:before{content:"\f473"}.um-icon-ios-partlysunny:before{content:"\f476"}.um-icon-ios-partlysunny-outline:before{content:"\f475"}.um-icon-ios-pause:before{content:"\f478"}.um-icon-ios-pause-outline:before{content:"\f477"}.um-icon-ios-paw:before{content:"\f47a"}.um-icon-ios-paw-outline:before{content:"\f479"}.um-icon-ios-people:before{content:"\f47c"}.um-icon-ios-people-outline:before{content:"\f47b"}.um-icon-ios-person:before{content:"\f47e"}.um-icon-ios-person-outline:before{content:"\f47d"}.um-icon-ios-personadd:before{content:"\f480"}.um-icon-ios-personadd-outline:before{content:"\f47f"}.um-icon-ios-photos:before{content:"\f482"}.um-icon-ios-photos-outline:before{content:"\f481"}.um-icon-ios-pie:before{content:"\f484"}.um-icon-ios-pie-outline:before{content:"\f483"}.um-icon-ios-pint:before{content:"\f486"}.um-icon-ios-pint-outline:before{content:"\f485"}.um-icon-ios-play:before{content:"\f488"}.um-icon-ios-play-outline:before{content:"\f487"}.um-icon-ios-plus:before{content:"\f48b"}.um-icon-ios-plus-empty:before{content:"\f489"}.um-icon-ios-plus-outline:before{content:"\f48a"}.um-icon-ios-pricetag:before{content:"\f48d"}.um-icon-ios-pricetag-outline:before{content:"\f48c"}.um-icon-ios-pricetags:before{content:"\f48f"}.um-icon-ios-pricetags-outline:before{content:"\f48e"}.um-icon-ios-printer:before{content:"\f491"}.um-icon-ios-printer-outline:before{content:"\f490"}.um-icon-ios-pulse:before{content:"\f493"}.um-icon-ios-pulse-strong:before{content:"\f492"}.um-icon-ios-rainy:before{content:"\f495"}.um-icon-ios-rainy-outline:before{content:"\f494"}.um-icon-ios-recording:before{content:"\f497"}.um-icon-ios-recording-outline:before{content:"\f496"}.um-icon-ios-redo:before{content:"\f499"}.um-icon-ios-redo-outline:before{content:"\f498"}.um-icon-ios-refresh:before{content:"\f49c"}.um-icon-ios-refresh-empty:before{content:"\f49a"}.um-icon-ios-refresh-outline:before{content:"\f49b"}.um-icon-ios-reload:before{content:"\f49d"}.um-icon-ios-reverse-camera:before{content:"\f49f"}.um-icon-ios-reverse-camera-outline:before{content:"\f49e"}.um-icon-ios-rewind:before{content:"\f4a1"}.um-icon-ios-rewind-outline:before{content:"\f4a0"}.um-icon-ios-rose:before{content:"\f4a3"}.um-icon-ios-rose-outline:before{content:"\f4a2"}.um-icon-ios-search:before{content:"\f4a5"}.um-icon-ios-search-strong:before{content:"\f4a4"}.um-icon-ios-settings:before{content:"\f4a7"}.um-icon-ios-settings-strong:before{content:"\f4a6"}.um-icon-ios-shuffle:before{content:"\f4a9"}.um-icon-ios-shuffle-strong:before{content:"\f4a8"}.um-icon-ios-skipbackward:before{content:"\f4ab"}.um-icon-ios-skipbackward-outline:before{content:"\f4aa"}.um-icon-ios-skipforward:before{content:"\f4ad"}.um-icon-ios-skipforward-outline:before{content:"\f4ac"}.um-icon-ios-snowy:before{content:"\f4ae"}.um-icon-ios-speedometer:before{content:"\f4b0"}.um-icon-ios-speedometer-outline:before{content:"\f4af"}.um-icon-ios-star:before{content:"\f4b3"}.um-icon-ios-star-half:before{content:"\f4b1"}.um-icon-ios-star-outline:before{content:"\f4b2"}.um-icon-ios-stopwatch:before{content:"\f4b5"}.um-icon-ios-stopwatch-outline:before{content:"\f4b4"}.um-icon-ios-sunny:before{content:"\f4b7"}.um-icon-ios-sunny-outline:before{content:"\f4b6"}.um-icon-ios-telephone:before{content:"\f4b9"}.um-icon-ios-telephone-outline:before{content:"\f4b8"}.um-icon-ios-tennisball:before{content:"\f4bb"}.um-icon-ios-tennisball-outline:before{content:"\f4ba"}.um-icon-ios-thunderstorm:before{content:"\f4bd"}.um-icon-ios-thunderstorm-outline:before{content:"\f4bc"}.um-icon-ios-time:before{content:"\f4bf"}.um-icon-ios-time-outline:before{content:"\f4be"}.um-icon-ios-timer:before{content:"\f4c1"}.um-icon-ios-timer-outline:before{content:"\f4c0"}.um-icon-ios-toggle:before{content:"\f4c3"}.um-icon-ios-toggle-outline:before{content:"\f4c2"}.um-icon-ios-trash:before{content:"\f4c5"}.um-icon-ios-trash-outline:before{content:"\f4c4"}.um-icon-ios-undo:before{content:"\f4c7"}.um-icon-ios-undo-outline:before{content:"\f4c6"}.um-icon-ios-unlocked:before{content:"\f4c9"}.um-icon-ios-unlocked-outline:before{content:"\f4c8"}.um-icon-ios-upload:before{content:"\f4cb"}.um-icon-ios-upload-outline:before{content:"\f4ca"}.um-icon-ios-videocam:before{content:"\f4cd"}.um-icon-ios-videocam-outline:before{content:"\f4cc"}.um-icon-ios-volume-high:before{content:"\f4ce"}.um-icon-ios-volume-low:before{content:"\f4cf"}.um-icon-ios-wineglass:before{content:"\f4d1"}.um-icon-ios-wineglass-outline:before{content:"\f4d0"}.um-icon-ios-world:before{content:"\f4d3"}.um-icon-ios-world-outline:before{content:"\f4d2"}.um-icon-ipad:before{content:"\f1f9"}.um-icon-iphone:before{content:"\f1fa"}.um-icon-ipod:before{content:"\f1fb"}.um-icon-jet:before{content:"\f295"}.um-icon-key:before{content:"\f296"}.um-icon-knife:before{content:"\f297"}.um-icon-laptop:before{content:"\f1fc"}.um-icon-leaf:before{content:"\f1fd"}.um-icon-levels:before{content:"\f298"}.um-icon-lightbulb:before{content:"\f299"}.um-icon-link:before{content:"\f1fe"}.um-icon-load-a:before{content:"\f29a"}.um-icon-load-b:before{content:"\f29b"}.um-icon-load-c:before{content:"\f29c"}.um-icon-load-d:before{content:"\f29d"}.um-icon-location:before{content:"\f1ff"}.um-icon-lock-combination:before{content:"\f4d4"}.um-icon-locked:before{content:"\f200"}.um-icon-log-in:before{content:"\f29e"}.um-icon-log-out:before{content:"\f29f"}.um-icon-loop:before{content:"\f201"}.um-icon-magnet:before{content:"\f2a0"}.um-icon-male:before{content:"\f2a1"}.um-icon-man:before{content:"\f202"}.um-icon-map:before{content:"\f203"}.um-icon-medkit:before{content:"\f2a2"}.um-icon-merge:before{content:"\f33f"}.um-icon-mic-a:before{content:"\f204"}.um-icon-mic-b:before{content:"\f205"}.um-icon-mic-c:before{content:"\f206"}.um-icon-minus:before{content:"\f209"}.um-icon-minus-circled:before{content:"\f207"}.um-icon-minus-round:before{content:"\f208"}.um-icon-model-s:before{content:"\f2c1"}.um-icon-monitor:before{content:"\f20a"}.um-icon-more:before{content:"\f20b"}.um-icon-mouse:before{content:"\f340"}.um-icon-music-note:before{content:"\f20c"}.um-icon-navicon:before{content:"\f20e"}.um-icon-navicon-round:before{content:"\f20d"}.um-icon-navigate:before{content:"\f2a3"}.um-icon-network:before{content:"\f341"}.um-icon-no-smoking:before{content:"\f2c2"}.um-icon-nuclear:before{content:"\f2a4"}.um-icon-outlet:before{content:"\f342"}.um-icon-paintbrush:before{content:"\f4d5"}.um-icon-paintbucket:before{content:"\f4d6"}.um-icon-paper-airplane:before{content:"\f2c3"}.um-icon-paperclip:before{content:"\f20f"}.um-icon-pause:before{content:"\f210"}.um-icon-person:before{content:"\f213"}.um-icon-person-add:before{content:"\f211"}.um-icon-person-stalker:before{content:"\f212"}.um-icon-pie-graph:before{content:"\f2a5"}.um-icon-pin:before{content:"\f2a6"}.um-icon-pinpoint:before{content:"\f2a7"}.um-icon-pizza:before{content:"\f2a8"}.um-icon-plane:before{content:"\f214"}.um-icon-planet:before{content:"\f343"}.um-icon-play:before{content:"\f215"}.um-icon-playstation:before{content:"\f30a"}.um-icon-plus:before{content:"\f218"}.um-icon-plus-circled:before{content:"\f216"}.um-icon-plus-round:before{content:"\f217"}.um-icon-podium:before{content:"\f344"}.um-icon-pound:before{content:"\f219"}.um-icon-power:before{content:"\f2a9"}.um-icon-pricetag:before{content:"\f2aa"}.um-icon-pricetags:before{content:"\f2ab"}.um-icon-printer:before{content:"\f21a"}.um-icon-pull-request:before{content:"\f345"}.um-icon-qr-scanner:before{content:"\f346"}.um-icon-quote:before{content:"\f347"}.um-icon-radio-waves:before{content:"\f2ac"}.um-icon-record:before{content:"\f21b"}.um-icon-refresh:before{content:"\f21c"}.um-icon-reply:before{content:"\f21e"}.um-icon-reply-all:before{content:"\f21d"}.um-icon-ribbon-a:before{content:"\f348"}.um-icon-ribbon-b:before{content:"\f349"}.um-icon-sad:before{content:"\f34a"}.um-icon-sad-outline:before{content:"\f4d7"}.um-icon-scissors:before{content:"\f34b"}.um-icon-search:before{content:"\f21f"}.um-icon-settings:before{content:"\f2ad"}.um-icon-share:before{content:"\f220"}.um-icon-shuffle:before{content:"\f221"}.um-icon-skip-backward:before{content:"\f222"}.um-icon-skip-forward:before{content:"\f223"}.um-icon-social-android:before{content:"\f225"}.um-icon-social-android-outline:before{content:"\f224"}.um-icon-social-angular:before{content:"\f4d9"}.um-icon-social-angular-outline:before{content:"\f4d8"}.um-icon-social-apple:before{content:"\f227"}.um-icon-social-apple-outline:before{content:"\f226"}.um-icon-social-bitcoin:before{content:"\f2af"}.um-icon-social-bitcoin-outline:before{content:"\f2ae"}.um-icon-social-buffer:before{content:"\f229"}.um-icon-social-buffer-outline:before{content:"\f228"}.um-icon-social-chrome:before{content:"\f4db"}.um-icon-social-chrome-outline:before{content:"\f4da"}.um-icon-social-codepen:before{content:"\f4dd"}.um-icon-social-codepen-outline:before{content:"\f4dc"}.um-icon-social-css3:before{content:"\f4df"}.um-icon-social-css3-outline:before{content:"\f4de"}.um-icon-social-designernews:before{content:"\f22b"}.um-icon-social-designernews-outline:before{content:"\f22a"}.um-icon-social-dribbble:before{content:"\f22d"}.um-icon-social-dribbble-outline:before{content:"\f22c"}.um-icon-social-dropbox:before{content:"\f22f"}.um-icon-social-dropbox-outline:before{content:"\f22e"}.um-icon-social-euro:before{content:"\f4e1"}.um-icon-social-euro-outline:before{content:"\f4e0"}.um-icon-social-facebook:before{content:"\f231"}.um-icon-social-facebook-outline:before{content:"\f230"}.um-icon-social-foursquare:before{content:"\f34d"}.um-icon-social-foursquare-outline:before{content:"\f34c"}.um-icon-social-freebsd-devil:before{content:"\f2c4"}.um-icon-social-github:before{content:"\f233"}.um-icon-social-github-outline:before{content:"\f232"}.um-icon-social-google:before{content:"\f34f"}.um-icon-social-google-outline:before{content:"\f34e"}.um-icon-social-googleplus:before{content:"\f235"}.um-icon-social-googleplus-outline:before{content:"\f234"}.um-icon-social-hackernews:before{content:"\f237"}.um-icon-social-hackernews-outline:before{content:"\f236"}.um-icon-social-html5:before{content:"\f4e3"}.um-icon-social-html5-outline:before{content:"\f4e2"}.um-icon-social-instagram:before{content:"\f351"}.um-icon-social-instagram-outline:before{content:"\f350"}.um-icon-social-javascript:before{content:"\f4e5"}.um-icon-social-javascript-outline:before{content:"\f4e4"}.um-icon-social-linkedin:before{content:"\f239"}.um-icon-social-linkedin-outline:before{content:"\f238"}.um-icon-social-markdown:before{content:"\f4e6"}.um-icon-social-nodejs:before{content:"\f4e7"}.um-icon-social-octocat:before{content:"\f4e8"}.um-icon-social-pinterest:before{content:"\f2b1"}.um-icon-social-pinterest-outline:before{content:"\f2b0"}.um-icon-social-python:before{content:"\f4e9"}.um-icon-social-reddit:before{content:"\f23b"}.um-icon-social-reddit-outline:before{content:"\f23a"}.um-icon-social-rss:before{content:"\f23d"}.um-icon-social-rss-outline:before{content:"\f23c"}.um-icon-social-sass:before{content:"\f4ea"}.um-icon-social-skype:before{content:"\f23f"}.um-icon-social-skype-outline:before{content:"\f23e"}.um-icon-social-snapchat:before{content:"\f4ec"}.um-icon-social-snapchat-outline:before{content:"\f4eb"}.um-icon-social-tumblr:before{content:"\f241"}.um-icon-social-tumblr-outline:before{content:"\f240"}.um-icon-social-tux:before{content:"\f2c5"}.um-icon-social-twitch:before{content:"\f4ee"}.um-icon-social-twitch-outline:before{content:"\f4ed"}.um-icon-social-twitter:before{content:"\f243"}.um-icon-social-twitter-outline:before{content:"\f242"}.um-icon-social-usd:before{content:"\f353"}.um-icon-social-usd-outline:before{content:"\f352"}.um-icon-social-vimeo:before{content:"\f245"}.um-icon-social-vimeo-outline:before{content:"\f244"}.um-icon-social-whatsapp:before{content:"\f4f0"}.um-icon-social-whatsapp-outline:before{content:"\f4ef"}.um-icon-social-windows:before{content:"\f247"}.um-icon-social-windows-outline:before{content:"\f246"}.um-icon-social-wordpress:before{content:"\f249"}.um-icon-social-wordpress-outline:before{content:"\f248"}.um-icon-social-yahoo:before{content:"\f24b"}.um-icon-social-yahoo-outline:before{content:"\f24a"}.um-icon-social-yen:before{content:"\f4f2"}.um-icon-social-yen-outline:before{content:"\f4f1"}.um-icon-social-youtube:before{content:"\f24d"}.um-icon-social-youtube-outline:before{content:"\f24c"}.um-icon-soup-can:before{content:"\f4f4"}.um-icon-soup-can-outline:before{content:"\f4f3"}.um-icon-speakerphone:before{content:"\f2b2"}.um-icon-speedometer:before{content:"\f2b3"}.um-icon-spoon:before{content:"\f2b4"}.um-icon-star:before{content:"\f24e"}.um-icon-stats-bars:before{content:"\f2b5"}.um-icon-steam:before{content:"\f30b"}.um-icon-stop:before{content:"\f24f"}.um-icon-thermometer:before{content:"\f2b6"}.um-icon-thumbsdown:before{content:"\f250"}.um-icon-thumbsup:before{content:"\f251"}.um-icon-toggle:before{content:"\f355"}.um-icon-toggle-filled:before{content:"\f354"}.um-icon-transgender:before{content:"\f4f5"}.um-icon-trash-a:before{content:"\f252"}.um-icon-trash-b:before{content:"\f253"}.um-icon-trophy:before{content:"\f356"}.um-icon-tshirt:before{content:"\f4f7"}.um-icon-tshirt-outline:before{content:"\f4f6"}.um-icon-umbrella:before{content:"\f2b7"}.um-icon-university:before{content:"\f357"}.um-icon-unlocked:before{content:"\f254"}.um-icon-upload:before{content:"\f255"}.um-icon-usb:before{content:"\f2b8"}.um-icon-videocamera:before{content:"\f256"}.um-icon-volume-high:before{content:"\f257"}.um-icon-volume-low:before{content:"\f258"}.um-icon-volume-medium:before{content:"\f259"}.um-icon-volume-mute:before{content:"\f25a"}.um-icon-wand:before{content:"\f358"}.um-icon-waterdrop:before{content:"\f25b"}.um-icon-wifi:before{content:"\f25c"}.um-icon-wineglass:before{content:"\f2b9"}.um-icon-woman:before{content:"\f25d"}.um-icon-wrench:before{content:"\f2ba"}.um-icon-xbox:before{content:"\f30c"}.um{width:100%;text-align:left;box-sizing:border-box;color:#666;font-size:15px;margin-bottom:30px!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important;opacity:0}.um-s1,.um-s2{display:none}.um *,.um :after,.um :before{box-sizing:content-box}.um-account-side li a,.um-cover a,.um-field-value a,.um-header a,.um-member-less a,.um-member-more a,.um-member-name a,.um-member-photo a,.um-members a,.um-members-pagi a,.um-members-pagi span{border-bottom:0!important}.um a:focus,.um-modal a:focus{outline:0!important}.um a .image-overlay,.um a:hover .image-overlay,.um a:hover .image-overlay *{display:none!important;width:0!important;height:0!important;position:static!important}.um.um-in-admin{padding-top:0}.um.um-in-admin .um-tip{display:none!important}.um input,.um select,.um textarea{font-size:15px}.um *{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.um-left{float:left}.um-right{float:right}.um-clear{clear:both}.um-center{text-align:center}.um-center .um-button{display:inline-block!important;width:auto!important;min-width:250px!important}.um-half{width:48%}.um-field-half{width:48%;float:left}.um-field-half.right{float:right}.um-field-tri{width:30%;float:left;margin-right:3%}.um img{box-shadow:none!important}.um-col{padding-bottom:20px}.um-col-alt{margin:0 0 5px}.um-col-alt-b{padding-top:20px}.um-col-121{float:left;width:48%}.um-col-122{float:right;width:48%}.um-col-131{float:left;width:30%}.um-col-132{float:left;width:30%;margin:0 5%}.um-col-133{float:left;width:30%}.um-raty i{font-size:26px}.um-field-half .um-raty i,.um-field-tri .um-raty i{font-size:21px}.um-button i{font-size:22px;position:absolute;left:20px;top:14px}.um-row-heading{padding:5px 0;font-size:16px}.um-row-heading i{font-size:24px;height:24px;line-height:24px;margin:0 12px 0 0;display:inline-block;width:30px;text-align:center}.um-row-heading i:before{vertical-align:middle!important}p.um-notice{width:auto;color:#fff;box-sizing:border-box;font-size:15px;padding:12px!important;margin:12px 0 0!important;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}p.um-notice.success{background:#7ACF58}p.um-notice.err{background:#C74A4A}.um-field-error{width:auto;max-width:100%;background:#C74A4A;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;box-sizing:border-box;position:relative;padding:12px;font-size:14px;line-height:20px!important;margin:12px 0 0}.um-field-error a{color:#fff!important;text-decoration:underline!important}.um-field-arrow{top:-17px;left:10px;position:absolute;z-index:900;color:#C74A4A;font-size:28px;line-height:1em!important}.um-error-block{width:auto;max-width:100%;background:#C74A4A;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;box-sizing:border-box;position:relative;padding:12px;font-size:14px;line-height:1em!important;margin:12px 0 0}.um-tip{margin:0 0 0 8px;cursor:pointer;display:inline-block;vertical-align:middle}.um-tip i{font-size:22px;height:22px;line-height:22px;display:block;position:relative;top:-2px}.um-tip-text{display:block;font-size:13px;line-height:15px;color:#999}.um-form button::-moz-focus-inner,.um-form input::-moz-focus-inner{border:0!important;padding:0!important}.um-field{position:relative;padding:15px 0 0}.um-field.um-is-conditional{display:none}.um-field-label{display:block;margin:0 0 8px}.um-field-label .um-field-label-icon{float:left;margin:0 8px 0 0;height:22px;line-height:22px;display:inline-block}.um-field-label .um-field-label-icon i{font-size:22px;height:22px;line-height:22px;vertical-align:middle}.um-field-label label{display:inline-block!important;height:22px;font-size:15px!important;line-height:22px!important;font-weight:700;font-weight:600}.um-field-area{position:relative}.um-field-block{color:#777;font-size:17px}.um-field-spacing{width:100%}.um-field-divider{width:100%;margin:0 0 12px;height:24px;position:relative}.um-field-divider-text{position:absolute;width:100%;text-align:center;bottom:-24px;left:0;font-size:16px;padding:10px 0}.um-field-divider-text span{background:#fff;color:#555;display:inline-block;padding:0 15px}.um-field-icon{position:absolute;cursor:default;text-align:center!important;top:2px;left:0;width:44px;font-size:22px;line-height:1.7em}.um-form input[type=password],.um-form input[type=text]{padding:0 12px!important;width:100%!important;display:block!important;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;cursor:text!important;font-size:15px!important;height:40px!important;box-sizing:border-box!important;box-shadow:none!important;margin:0!important;position:static;outline:0!important}.um-form input[type=password]:focus,.um-form input[type=text]:focus,.um-form textarea:focus{border-color:#ccc;background-color:#fff!important;box-shadow:none!important;outline:0!important}.um-form input[type=password].um-iconed,.um-form input[type=text].um-iconed{padding-left:44px!important}.um-form input[type=password].um-error,.um-form input[type=text].um-error{border-color:#C74A4A!important}.um-form textarea{width:100%;padding:8px 12px!important;display:block;font-size:15px!important;line-height:22px!important;background:#fff;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;box-sizing:border-box;min-height:80px!important;box-shadow:none;outline:0!important}.um-field-checkbox,.um-field-radio{display:block;margin:8px 0;position:relative;cursor:pointer}.um-field-checkbox:hover i,.um-field-radio:hover i{color:#666}.um-field-checkbox input,.um-field-radio input{display:none!important}.um-field-checkbox-state,.um-field-radio-state{position:absolute;top:0;left:1px;width:24px;height:24px}.um-field-checkbox-state i,.um-field-radio-state i{font-size:24px;line-height:24px;height:24px;color:#aaa;transition:all .2s linear}.um-field-checkbox-option,.um-field-radio-option{margin:0 0 0 36px;line-height:24px;color:#888!important}.um-field-group{margin-top:20px}.um-field-group-head{cursor:pointer;color:#fff;font-size:16px;line-height:22px;padding:10px 20px;transition:.25s;box-sizing:border-box;-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important;border-top:1px solid rgba(0,0,0,0)!important;border-bottom:2px solid rgba(0,0,0,.1)!important}.um-field-group-head i{font-size:20px;margin:0 8px 0 0}.um-field-group-head i:before{vertical-align:middle!important}.um-field-group-body{display:none;margin:15px 0 0;padding:15px 20px 5px;background:#f9f9f9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:relative;box-sizing:border-box;width:100%}.um-field-group-body div.um-field{padding:0 0 15px}.um-field-group-cancel{font-size:18px;position:absolute;z-index:800;right:8px;top:8px;color:#ccc!important;text-decoration:none!important}.um-field-group-cancel:hover{color:#777!important}.um div.disabled,.um input[type=submit]:disabled,.um input[type=text]:disabled{opacity:.6!important;cursor:default!important}input[type=submit].um-button,input[type=submit].um-button:focus{vertical-align:middle!important;height:auto!important;font-size:15px;cursor:pointer!important;width:100%;box-shadow:none;text-shadow:none;font-family:inherit;outline:0!important;margin:0;opacity:1}input[type=submit].um-button:hover{opacity:1}.um-button{font-size:15px;border:none!important;display:block;width:100%;line-height:1em!important;padding:16px 20px!important;text-decoration:none!important;text-align:center;text-transform:none!important;font-weight:400!important;overflow:hidden;position:relative;transition:.25s;box-sizing:border-box;-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important;border-top:1px solid rgba(0,0,0,0)!important;border-bottom:2px solid rgba(0,0,0,.1)!important;opacity:1}.um-button.um-btn-auto-width{width:auto;display:inline-block;padding:14px 20px!important;min-width:200px;max-width:450px}a.um-link-alt{line-height:22px;color:#888!important;display:block!important;text-decoration:none!important;font-weight:400;text-align:center;border-bottom:none!important}a.um-link-alt:hover{text-decoration:underline!important}.um-dropdown{position:absolute;height:auto;background:#fff;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;z-index:10;display:none;border:1px solid #e5e5e5;box-sizing:border-box;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1);box-shadow:0 0 1px rgba(0,0,0,.1)}.um-dropdown li,.um-dropdown ul{list-style-type:none!important;padding:0!important;margin:0!important}.um-dropdown li a{display:block;padding:8px 12px;color:#666;font-size:14px;line-height:18px}.um-dropdown li:last-child a{border-top:1px solid #e5e5e5;padding:12px}.um-dropdown li a:hover{color:#3ba1da}.um-dropdown-b{position:relative}.um-dropdown-arr{position:absolute;font-size:24px;width:24px;height:24px;overflow:hidden;z-index:15;color:#eee}.um-dropdown-arr *{display:block!important;width:24px!important;height:24px!important;vertical-align:bottom!important;overflow:hidden!important;line-height:24px!important}div.um-photo{margin:20px auto 0;text-align:center;box-sizing:border-box;max-width:100%}div.um-photo,div.um-photo a,div.um-photo img{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}div.um-photo a{border:1px solid #e5e5e5;padding:5px;box-sizing:border-box;display:inline-block;box-shadow:0 1px 1px #eee;margin:0 auto;max-width:100%}div.um-photo img{max-height:300px;max-width:100%}.picker{font-size:16px;text-align:left;line-height:1.2;color:#fff;position:absolute;z-index:10000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.picker__input{cursor:default}.picker__input.picker__input--active{border-color:#0089ec}.picker__holder{width:100%;overflow-y:auto;-webkit-overflow-scrolling:touch}.picker__frame,.picker__holder{bottom:0;left:0;right:0;top:100%}.picker__holder{position:fixed;-webkit-transition:background .15s ease-out,top 0s .15s;-moz-transition:background .15s ease-out,top 0s .15s;transition:background .15s ease-out,top 0s .15s}.picker__frame{position:absolute;margin:0 auto;min-width:256px;max-width:400px;width:100%;-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);-moz-opacity:0;opacity:0;-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;transition:all .15s ease-out}@media (min-height:33.875em){.picker__frame{overflow:visible;top:auto;bottom:-100%;max-height:80%}}@media (min-height:40.125em){.picker__frame{margin-bottom:15%!important}}.picker__wrap{display:table;width:100%;height:100%}@media (min-height:33.875em){.picker__wrap{display:block}}.picker__box{display:table-cell;vertical-align:middle}@media (min-height:33.875em){.picker__box{display:block;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}}@media (min-height:40.125em){.picker__box{border-bottom-width:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}}.picker--opened .picker__holder{top:0;zoom:1;background:rgba(0,0,0,.7);-webkit-transition:background .15s ease-out;-moz-transition:background .15s ease-out;transition:background .15s ease-out}.picker--opened .picker__frame{top:0;-ms-filter:"alpha(Opacity=100)";filter:alpha(opacity=100);-moz-opacity:1;opacity:1}@media (min-height:33.875em){.picker--opened .picker__frame{top:auto;bottom:0}}.picker__header{text-align:center;position:relative;margin-top:.75em;border-radius:2px 2px 0 0;padding:15px 0;font-size:18px}.picker__month,.picker__year{display:inline-block;margin-left:10px;margin-right:10px}.picker__select--month,.picker__select--year{margin-left:.25em;margin-right:.25em;font-size:16px;color:#999;background:#fff!important;outline:0!important;border:0!important}@media (min-width:24.5em){.picker__select--month,.picker__select--year{margin-top:-.5em}}.picker__select--month{width:35%}.picker__select--year{width:22.5%}.picker__nav--next,.picker__nav--prev{position:absolute;padding:.5em 1.25em;width:1em;height:1em;box-sizing:content-box!important;top:8px;color:#fff}.picker__nav--prev{left:0;padding-right:1.25em}@media (min-width:24.5em){.picker__nav--prev{padding-right:1.5em}}.picker__nav--next{right:0;padding-left:1.25em}@media (min-width:24.5em){.picker__nav--next{padding-left:1.5em}}.picker__nav--next:before,.picker__nav--prev:before{content:" ";border-top:.5em solid transparent;border-bottom:.5em solid transparent;border-right:.5em solid #fff;width:0;height:0;display:block;margin:0 auto}.picker__nav--next:before{border-right:0;border-left:.5em solid #fff}.picker__nav--next:hover,.picker__nav--prev:hover{cursor:pointer;color:#fff}.picker__nav--disabled,.picker__nav--disabled:before,.picker__nav--disabled:before:hover,.picker__nav--disabled:hover{cursor:default;background:0 0}.picker__table{text-align:center;border-collapse:collapse;border-spacing:0;table-layout:fixed;font-size:inherit;width:100%;margin-top:5px;border:none;margin-bottom:0}.picker__table td{margin:0;padding:0 10px;text-align:center;border:0}.picker__weekday{width:14.285714286%;color:#fff;text-align:center;padding:5px 0!important}.picker__day{padding:10px 0;line-height:1em!important}.picker__day--today{position:relative}.picker__day--outfocus{opacity:.75}.picker__day--infocus:hover,.picker__day--outfocus:hover{border-radius:2px;cursor:pointer}.picker--focused .picker__day--highlighted,.picker__day--highlighted:hover{border-radius:2px}.picker__day--disabled,.picker__day--disabled:hover{cursor:default;background:transparent!important;opacity:.3}.picker__footer{text-align:center;height:50px!important;line-height:50px!important;margin-top:5px;border-radius:0 0 2px 2px}.picker__button--clear,.picker__button--today{width:50%;display:inline-block;background:none!important;box-shadow:none!important;border:0!important;outline:0!important;box-sizing:border-box!important}.picker__button--clear:focus,.picker__button--clear:hover,.picker__button--today:focus,.picker__button--today:hover{cursor:pointer}.picker__list{list-style:none;list-style:none!important;padding:5px!important;margin:0!important}.picker__list-item{position:relative;border-radius:2px;display:inline-block;width:25%;text-align:center;box-sizing:border-box;padding:6px 0!important;margin:5px 0!important}.picker__list-item:hover{cursor:pointer;z-index:10}.picker__list-item--highlighted{z-index:10}.picker--focused .picker__list-item--highlighted,.picker__list-item--highlighted:hover{cursor:pointer;font-weight:700}.picker--focused .picker__list-item--selected,.picker__list-item--selected,.picker__list-item--selected:hover{z-index:10}.picker--focused .picker__list-item--disabled,.picker__list-item--disabled,.picker__list-item--disabled:hover{color:#a9e792;cursor:default;background:0 0;z-index:auto}.picker--time .picker__button--clear{width:100%;display:inline-block;box-shadow:none!important;border:0!important;outline:0!important;background:none!important;border-radius:0 0 2px 2px;color:#fff!important}.picker--time .picker__button--clear:focus,.picker--time .picker__button--clear:hover{cursor:pointer}.picker--time .picker__frame{min-width:256px;max-width:400px}.picker--time .picker__box{font-size:15px;padding:0;border-radius:2px!important}@media (min-height:40.125em){.picker--time .picker__frame{margin-bottom:10%!important}}.um-members img{display:block;overflow:hidden;-moz-border-radius:0!important;-webkit-border-radius:0!important;border-radius:0!important;margin:0!important;padding:0!important}.um-members a,.um-members a:hover{text-decoration:none!important}.um-members-intro{text-align:center;margin:0 0 20px}.um-members-total{font-size:30px;font-weight:300}.um-members-none{text-align:center;font-size:18px}.um-search{text-align:center;padding:20px 50px}.um-search.um-search-2{padding-left:20%;padding-right:20%;width:100%;box-sizing:border-box}.um-search.um-search-1{padding-left:32%;padding-right:32%;width:100%;box-sizing:border-box}.um-search.um-search-1 .um-search-submit .um-button{display:block!important;min-width:100%!important;margin:0 0 10px!important}.um-search.um-search-1 .um-search-filter{width:100%;padding:0 0 10px;float:none}.um-search.um-search-2 .um-search-filter{width:50%}.um-search-filter{padding:0 15px 30px;display:block;float:left;width:33%;box-sizing:border-box}.um-search-submit .um-button{display:inline-block!important;width:auto!important;padding:12px 20px!important;margin:0 10px!important;min-width:150px!important}.um-members{-ms-word-break:break-all;word-break:break-word;word-wrap:break-word}.um-member{float:left;width:30%;background:#fff;text-align:center;border:1px solid #eee;box-sizing:border-box;margin-bottom:40px;position:relative}.um-member.awaiting_admin_review,.um-member.inactive,.um-member.rejected{opacity:.7}.um-member-status{display:none}.um-member-status.awaiting_admin_review,.um-member-status.inactive,.um-member-status.rejected{display:block;position:absolute;top:0;left:0;width:100%;padding:7px 15px;background:#C74A4A;color:#fff;z-index:10;font-size:13px;box-sizing:border-box}.um-member-status.inactive,.um-member-status.rejected{background:#999}.um-gutter-sizer{width:5%}.um-member-cover{background-color:#eee;box-sizing:border-box;position:relative}.um-member-cover-e{text-align:center;box-sizing:border-box}.um-member-cover-e img{width:100%!important}.um-member-photo{padding:40px 0 20px;text-align:center}.um-member-photo a{display:inline!important}.um-member-photo img{display:inline!important;border:5px solid #fff;background:#fff;width:140px;height:140px}.um-member.with-cover .um-member-photo{padding-top:0}.um-member.with-cover .um-member-photo img{width:90px;height:90px;position:relative;top:-35px;margin-bottom:-45px!important;float:none;opacity:1}.um-member-photo.radius-1 img{-moz-border-radius:999px!important;-webkit-border-radius:999px!important;border-radius:999px!important}.um-member-photo.radius-2 img{-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important}.um-member-photo.radius-3 img{-moz-border-radius:0!important;-webkit-border-radius:0!important;border-radius:0!important}.um-member-card.no-photo{padding-top:30px}.um-member-card{padding-bottom:15px}.um-member-name{margin:0 0 4px}.um-member-name a{font-size:16px;line-height:26px;color:#444!important;font-weight:700}.um-member-name a:hover{color:#3ba1da!important}.um-member-tagline{font-size:13px;line-height:22px;color:#999;padding:0 15px}.um-member-less{display:none}.um-member-less a,.um-member-more a{color:#666;display:inline-block}.um-member-less i,.um-member-more i{display:block;font-size:32px;height:32px;line-height:32px}.um-member-less a:hover,.um-member-more a:hover{color:#3ba1da}.um-member-meta{display:none;margin:20px 15px 0;padding:15px 0;border-top:1px solid #e5e5e5}.um-member-meta.no-animate{display:block}.um-member-metaline{font-size:14px;color:#888;padding:12px 0 0;line-height:16px;vertical-align:middle}.um-member-metaline span{display:block;text-align:center}.um-member-connect{padding-top:20px}.um-member-connect a{display:inline-block;width:40px;line-height:40px;height:40px;-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px;color:#fff!important;opacity:.85;margin:0 1px;font-size:16px;transition:.25s}.um-member-connect a:hover{opacity:1;color:#fff}.um-members-pagi,.um-members-pagidrop{text-align:center;padding:5px 0;font-size:15px}.um-members-pagi span.current,.um-members-pagi span.current:hover{background:#3ba1da!important;color:#fff!important}.um-members-pagi i:before{font-size:20px;vertical-align:middle!important;height:34px;line-height:34px;top:-2px;position:relative}.um-members-pagi span.disabled{opacity:.4;cursor:default}.um-members-pagi span.none{color:#aaa!important}.um-members-pagi span{cursor:default}.um-members-pagi a,.um-members-pagi span{display:inline-block;width:auto;height:34px;line-height:34px;transition:all .2s linear;padding:0 14px;color:#666!important;font-weight:400}.um-members-pagi a:hover{text-decoration:none!important;color:#3ba1da!important}.um-modal-overlay{background:rgba(0,0,0,.85);width:100%;height:100%;position:fixed;top:0;left:0;z-index:100000}.um-modal *{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.um-modal-hidden-content{display:none}.um-modal-close{display:block;position:fixed;right:0;top:0;font-size:24px;text-decoration:none!important;color:#fff!important;padding:0 10px}.um-modal{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:fixed;left:50%;display:none;z-index:100010;box-sizing:border-box;bottom:-50px}.um-modal.normal{width:500px;margin-left:-250px}.um-modal.large{width:730px;margin-left:-365px}.um-modal.small{width:400px;margin-left:-200px}.um-modal-body{min-height:3px;padding:20px;box-sizing:border-box;width:100%;background:#fff;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.um-modal-body.photo{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 0 0 1px rgba(255,255,255,.12)inset;background:#888;padding:0}.um-modal-body.photo img{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;display:block;overflow:hidden;opacity:0}.um-modal.loading .um-modal-body{background:#fff url(../img/loading.gif) no-repeat center;min-height:150px}.um-modal div.um{margin-bottom:20px!important}.um-modal-header{-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;height:44px;line-height:44px;color:#fff;background:#3ba1da;padding:0 20px;box-sizing:border-box;font-size:17px}.um-modal-footer{margin-top:20px}.um-modal-left{float:left}.um-modal-right{float:right}.um-modal-btn.disabled,.um-modal-btn.disabled:hover{opacity:.5;cursor:default!important;background:#3ba1da}.um-modal-btn{cursor:pointer!important;line-height:34px!important;height:34px;display:inline-block;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;padding:0 20px;text-align:center;color:#fff;background:#3ba1da;vertical-align:middle;font-size:14px;box-sizing:border-box;transition:.2s;text-decoration:none!important}.um-modal-btn:hover{background:#44b0ec;color:#fff}.um-modal-btn.alt{color:#666;background:#eee}.um-modal-btn.alt:hover{background:#e5e5e5}.um-profile{box-sizing:border-box}.um-profile .um-cover-overlay{display:none}.um-profile.um-editing .um-cover.has-cover .um-cover-overlay{display:block}.um-profile.um-viewing .um-profile-photo-overlay{display:none}.um-profile img{display:block;overflow:hidden;border-radius:0;margin:0}.um-profile a,.um-profile a:hover{text-decoration:none!important}.um-profile .um-profile-body{padding-top:15px;padding-bottom:15px;max-width:600px;margin:auto}.um-profile.um-editing{padding-bottom:15px}.um-profile.um-viewing{padding-bottom:1px}.um-profile.um-viewing .um-field-label{display:block;margin:0 0 8px;border-bottom:solid 2px #eee;padding-bottom:4px}.um-cover{background-color:#eee;box-sizing:border-box;position:relative}.um-cover-add{color:#aaa!important;font-size:36px;width:100%;display:table}.um-cover-add span{display:table-cell;vertical-align:middle}.um-cover-add:hover{color:#3ba1da!important}.um-cover-e{text-align:center;box-sizing:border-box}.um-cover-e img{width:100%!important}.um-cover-overlay{position:absolute;top:0;left:0;background:rgba(0,0,0,.5);text-align:center;box-sizing:border-box;padding:0 40px;color:#fff;text-shadow:0 1px #666;cursor:pointer!important;line-height:21px;font-size:16px;height:100%;width:100%}.um-cover-overlay:hover{background:rgba(0,0,0,.55)}.um-cover-overlay span.um-cover-overlay-s{display:table;height:100%;width:100%}.um-cover-overlay ins{display:table-cell;vertical-align:middle;height:100%;text-decoration:none!important;background:none!important;color:#fff!important;border-bottom:none!important}.um-cover-overlay i{font-size:46px;display:block;margin-bottom:6px}.um-header{position:relative;padding:0 0 25px;border-bottom:solid 2px #eee;min-height:85px;box-sizing:content-box!important}.um-profile-edit{position:absolute;top:15px;right:0;vertical-align:middle;font-size:30px;height:30px;line-height:30px;z-index:66;padding-right:10px}.um-header.no-cover .um-profile-meta{padding-left:0!important;padding-right:0!important;text-align:center!important}.um-header.no-cover .um-name{float:none!important;margin-right:0!important}.um-header.no-cover .um-profile-photo{float:none!important;margin:0 auto!important;text-align:center!important}.um-header.no-cover a.um-profile-photo-img{position:relative!important;top:auto!important;left:auto!important;float:none!important;display:inline-block!important;text-align:center!important}.um-header.no-cover .um-main-meta{padding:0}.um-profile .gravatar{position:static}.um-profile-photo{float:left;position:relative}.um-profile-photo a.um-profile-photo-img{float:left;position:absolute;background:#fff;padding:5px;left:30px}.um-profile-photo a.um-profile-photo-img img{width:100%;height:100%}.um-profile-photo-overlay{position:absolute;top:0;left:0;background:rgba(0,0,0,.5);text-align:center;box-sizing:border-box;padding:0;color:#fff;text-shadow:0 1px #666;cursor:pointer!important;line-height:21px;font-size:16px;height:100%;width:100%}.um-profile-photo-overlay:hover{background:rgba(0,0,0,.55)}.um-profile-photo-overlay span.um-profile-photo-overlay-s{display:table;height:100%;width:100%}.um-profile-photo-overlay ins{display:table-cell;vertical-align:middle;height:100%;text-decoration:none!important;background:none!important;color:#fff!important;border-bottom:none!important}.um-profile-photo-overlay i{font-size:46px;display:block}.um-profile-meta{padding-right:30px;-ms-word-break:break-all;word-break:break-word;word-wrap:break-word}.um-main-meta{padding:10px 0 0}.um-name{float:left;font-size:24px;font-weight:700;margin-right:30px;line-height:1.7em}.um-meta{font-size:15px}.um-meta span a{font-weight:400}.um-meta span:first-child{margin:0 5px 0 0}.um-meta span{margin:0 5px;font-size:14px;display:inline-block}.um-meta-text{margin:6px 0 0;color:#666}.um-profile-status{display:none}.um-profile-status.awaiting_admin_review,.um-profile-status.inactive,.um-profile-status.rejected{display:inline-block;margin:6px 0 0;border-left:3px solid #C74A4A;padding-left:10px;font-size:14px;color:#777}.um-profile-note{display:none;text-align:center;margin-top:20px;color:#666}.um-profile-note i{display:inline-block;font-size:70px;height:70px;line-height:70px}.um-profile-note span{margin-top:10px;display:block;font-size:16px;color:#888}.um-profile-note a:hover{text-decoration:underline!important}.um-profile-nav{padding:10px;background:#444;text-align:center}.um-profile-nav-item.active a{background:#3BA1DA!important;color:#FFF!important}.um-profile-nav-item.active a span.count{background:0 0}.um-profile-nav-item a{color:#fff!important;font-size:14px;font-weight:600;padding:6px 10px 6px 28px;display:block;float:left;border-radius:4px;margin-left:5px;position:relative}.um-profile-nav-item.without-icon a{padding-left:10px}.um-profile-nav-item.without-icon span.title{padding-left:0}.um-profile-nav-item.without-icon i{display:none}.um-profile-nav-item a:hover{background:#555}.um-profile-nav-item i{font-size:18px;height:18px;line-height:18px;position:absolute;display:block;top:8px;left:10px}.um-profile-nav-item span.title{padding-left:5px}.um-profile-nav-item span.count{font-size:12px;font-weight:300;background:#777;border-radius:3px;padding:2px 4px;margin-left:3px}.um-profile-subnav{background:#eee;padding:15px;text-align:center}.um-profile-subnav a{display:inline-block;color:#555;font-size:15px;font-weight:600;margin:0 20px}.um-profile-subnav a.active{color:#3BA1DA!important}.um-profile-subnav a:hover{color:#333}.um-profile-subnav span{display:inline-block;margin:0 0 0 8px;background:#ddd;padding:1px 8px;color:#aaa!important;border-radius:2px}.um-item{padding:20px 0;border-bottom:1px solid #eee;position:relative}.um-item-action{position:absolute;right:0;top:16px;width:20px;height:20px;font-size:20px;text-align:center}.um-item-action a{color:#ccc}.um-item-action a:hover{color:#999}.um-item-link{padding-right:40px}.um-item-link a{color:#333;font-size:16px;line-height:20px}.um-item-link a:hover{text-decoration:underline!important}.um-item-link i{font-size:24px;color:#ccc;margin-right:10px;position:relative;top:3px}.um-item-meta{color:#888}.um-item-meta span{font-size:13px;font-weight:400;font-style:italic}.um-item-meta span:not(:last-child):after{position:relative;padding:0 4px 0 7px;content:"•"}.um-item-meta a{font-weight:700;border-bottom:1px solid #E0E0E0;color:#3BA1DA}.um-item-meta a:hover{border-bottom-color:#bbb}.um-load-items{text-align:center;margin-top:12px;padding-top:30px}.um-load-items.loading{background:url(../img/loading-dots.gif) no-repeat top center}.um-load-items a{max-width:250px;display:inline-block;margin:0 auto}@font-face{font-family:raty;font-style:normal;font-weight:400;src:url(../font/raty.eot);src:url(../font/raty.eot?#iefix) format("embedded-opentype");src:url(../font/raty.svg#raty) format("svg");src:url(../font/raty.ttf) format("truetype");src:url(../font/raty.woff) format("woff")}.cancel-off-png,.cancel-on-png,.star-half-png,.star-off-png,.star-on-png{font-family:raty;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;margin-right:.2em;color:#ccc}.star-half-png,.star-on-png{color:#ffbe32}.cancel-on-png:before{content:"\e600"}.cancel-off-png:before{content:"\e601"}.star-on-png:before{content:"\f005"}.star-off-png:before{content:"\f006"}.star-half-png:before{content:"\f123"}.select2-container{margin:0!important;position:relative!important;display:inline-block!important;zoom:1!important;*display:inline!important;vertical-align:middle!important}.select2-container a:hover{color:#666!important}.select2-container,.select2-drop,.select2-search,.select2-search input{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.select2-container .select2-choice{display:block!important;height:36px!important;padding:0 0 0 12px!important;overflow:hidden!important;position:relative!important;white-space:nowrap!important;line-height:35px!important;color:#666!important;font-size:15px!important;text-align:left!important;text-decoration:none!important;-moz-border-radius:2px!important;-webkit-border-radius:2px!important;border-radius:2px!important;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:none!important;background-color:#fff!important}.select2-container.select2-drop-above .select2-choice{-moz-border-radius:0 0 2px 2px!important;-webkit-border-radius:0 0 2px 2px!important;border-radius:0 0 2px 2px!important}.select2-container.select2-allowclear .select2-choice .select2-chosen{margin-right:42px}.select2-container .select2-choice>.select2-chosen{margin-right:26px!important;display:block!important;overflow:hidden!important;white-space:nowrap!important;text-overflow:ellipsis!important;float:none!important;width:auto!important;font-weight:400}.select2-container .select2-choice abbr{display:none;width:20px!important;height:100%!important;right:24px!important;font-size:1px!important;text-decoration:none!important;border:0!important;background:none!important;cursor:pointer!important;outline:0!important}.select2-container.select2-allowclear .select2-choice abbr{display:inline-block!important}.select2-container .select2-choice abbr:hover{cursor:pointer!important}.select2-drop-mask{border:0!important;margin:0!important;padding:0!important;position:fixed!important;left:0!important;top:0!important;min-height:100%!important;min-width:100%!important;height:auto!important;width:auto!important;opacity:0!important;z-index:100030!important;background-color:#fff!important;filter:alpha(opacity=0)!important}.select2-drop{width:100%;margin-top:-1px;position:absolute;z-index:100040!important;top:100%;background:#fff;color:#666;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;box-shadow:none}.select2-drop.select2-drop-above{margin-top:1px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;box-shadow:none}.select2-drop-active{box-shadow:none!important}.select2-drop-auto-width{width:auto!important}.select2-drop-auto-width .select2-search{padding-top:4px}.select2-container .select2-choice .select2-arrow{display:inline-block!important;width:34px!important;height:100%!important;position:absolute!important;right:0!important;top:0!important;-moz-border-radius:0 2px 2px 0!important;-webkit-border-radius:0 2px 2px 0!important;border-radius:0 2px 2px 0!important;text-align:center!important;background:transparent!important;border-left:0!important}.select2-container .select2-choice .select2-arrow *{line-height:100%!important;vertical-align:middle!important}.select2-container .select2-choice .select2-arrow b{display:block!important;width:100%!important;height:100%!important;background:none!important}.select2-container .select2-choice .select2-arrow:before{content:"\f3d0"!important;font-size:27px!important;font-family:Ionicons!important;width:100%!important;display:block;height:100%;line-height:36px}.select2-container .select2-choice .select2-arrow:hover:before{color:#666!important}.select2-search{display:inline-block!important;width:100%!important;min-height:32px!important;height:32px!important;line-height:1em!important;margin:0!important;padding-left:4px!important;padding-right:4px!important;position:relative!important;z-index:100050!important;white-space:nowrap!important}.select2-search input[type=text]{background:none!important;width:100%!important;height:32px!important;line-height:auto!important;padding:0 38px 0 7px!important;margin:0!important;outline:0!important;border:1px solid #ddd!important;color:#666!important;-moz-border-radius:2px!important;-webkit-border-radius:2px!important;border-radius:2px!important;font-size:15px!important;box-sizing:border-box!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important;box-shadow:none!important}.select2-search:before{content:"\f4a4"!important;font-size:20px!important;height:32px!important;line-height:32px!important;font-family:Ionicons!important;top:0!important;right:10px!important;position:absolute!important}.select2-drop .select2-search{margin-top:4px!important}.select2-search input.select2-active{background:#fff!important}.select2-container-active .select2-choice,.select2-container-active .select2-choices{outline:0!important;box-shadow:none!important}.select2-dropdown-open .select2-choice{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.select2-dropdown-open .select2-choice .select2-arrow{background:transparent!important;filter:none!important;border-color:transparent!important}.select2-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.select2-results{max-height:200px;padding:0 0 0 5px;margin:4px 4px 4px 0;position:relative;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:rgba(0,0,0,0)}.select2-results ul.select2-result-sub{margin:0;padding-left:0}.select2-results li{list-style:none;display:list-item;background-image:none;font-size:15px;margin:0!important;padding:3px 0!important;color:#666!important}.select2-results li.select2-result-with-children>.select2-result-label{font-weight:700!important}.select2-results .select2-result-label{padding:3px 7px 4px!important;margin:0!important;cursor:pointer;min-height:1em!important;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.select2-results-dept-1 .select2-result-label{padding-left:20px}.select2-results-dept-2 .select2-result-label{padding-left:40px}.select2-results-dept-3 .select2-result-label{padding-left:60px}.select2-results-dept-4 .select2-result-label{padding-left:80px}.select2-results-dept-5 .select2-result-label{padding-left:100px}.select2-results-dept-6 .select2-result-label{padding-left:110px}.select2-results-dept-7 .select2-result-label{padding-left:120px}.select2-results .select2-highlighted{background:none!important;background:#f4f4f4!important;color:#666!important}.select2-results li em{background:#feffde!important;font-style:normal!important}.select2-results .select2-highlighted em{background:transparent!important}.select2-results .select2-highlighted ul{background:#fff!important;color:#666!important}.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background:#f4f4f4!important;display:list-item!important;padding:5px!important;font-size:15px!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.select2-results .select2-disabled .select2-result-label,.select2-results .select2-disabled.select2-highlighted .select2-result-label{color:#bbb!important;background:#fff!important;display:list-item!important;cursor:default!important}.select2-results .select2-selected{display:none}.select2-more-results.select2-active{background:#f4f4f4!important}.select2-more-results{background:#f4f4f4!important;display:list-item!important}.select2-container.select2-container-disabled .select2-choice{background-color:#f4f4f4!important;background-image:none!important;border:1px solid #ddd!important;cursor:default!important}.select2-container.select2-container-disabled .select2-choice .select2-arrow{background:none!important;background:#f9f9f9!important;border-left:0!important}.select2-container.select2-container-disabled .select2-choice abbr{display:none!important}.select2-container-multi .select2-choices{height:auto!important;height:1%!important;margin:0!important;padding:1px 3px!important;position:relative!important;cursor:text!important;overflow:hidden!important;-moz-border-radius:2px!important;-webkit-border-radius:2px!important;border-radius:2px!important;box-shadow:none!important}.select2-locked{padding:3px 5px!important}.select2-container-multi .select2-choices{min-height:26px;background-image:none!important}.select2-container-multi.select2-container-active .select2-choices{outline:0;box-shadow:none}.select2-container-multi .select2-choices li{float:left;list-style:none}html[dir=rtl] .select2-container-multi .select2-choices li{float:right}.select2-container-multi .select2-choices .select2-search-field{margin:0;padding:0;white-space:nowrap}.select2-container-multi .select2-choices .select2-search-field input{padding:5px!important;margin:3px 0!important;font-size:100%;height:auto!important;outline:0;border:0!important;-webkit-box-shadow:none;box-shadow:none;background:transparent!important}.select2-container-multi .select2-choices .select2-search-field input.select2-active{background:#fff!important}.select2-container-multi .select2-choices .select2-search-choice{padding:4px 20px 4px 5px!important;margin:6px 0 4px 5px!important;position:relative;line-height:14px;font-size:14px;color:#666;cursor:default;border:1px solid #ddd;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;box-shadow:none!important;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:none!important;background-color:#f9f9f9!important}html[dir=rtl] .select2-container-multi .select2-choices .select2-search-choice{margin-left:0;margin-right:5px}.select2-container-multi .select2-choices .select2-search-choice .select2-chosen{cursor:default}.select2-container-multi .select2-choices .select2-search-choice-focus{background:#f1f1f1}.select2-search-choice-close{position:absolute!important;width:18px!important;height:18px!important;right:0!important;top:0!important;left:auto!important;outline:0!important;background:none!important}.select2-search-choice-close:before{content:"\f2d7"!important;font-size:22px!important;font-family:Ionicons!important;right:4px!important;position:relative!important;display:block;height:100%;width:100%;line-height:36px}.select2-search-choice-close:hover:before{color:#666!important}.select2-container-multi .select2-search-choice-close{text-decoration:none!important;width:21px!important;height:100%!important;text-align:center!important;border-bottom:0!important}.select2-container-multi .select2-search-choice-close:before{font-size:16px!important;right:0!important;line-height:23px!important}.select2-container-multi.select2-container-disabled .select2-choices{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice{padding:3px 5px;border:1px solid #ddd;background-image:none;background-color:#f4f4f4}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close{display:none;background:0 0}.select2-result-selectable .select2-match,.select2-result-unselectable .select2-match{text-decoration:underline}.select2-offscreen,.select2-offscreen:focus{clip:rect(0 0 0 0)!important;width:1px!important;height:1px!important;border:0!important;margin:0!important;padding:0!important;overflow:hidden!important;position:absolute!important;outline:0!important;left:0!important;top:0!important}.select2-display-none{display:none}.select2-measure-scrollbar{position:absolute;top:-10000px;left:-10000px;width:100px;height:100px;overflow:scroll}.tipsy{padding:5px;position:absolute;z-index:100020}.tipsy-inner{font-size:13px!important;line-height:17px!important;background-color:#333!important;color:#fff!important;max-width:250px!important;padding:10px 12px!important;text-align:left!important;word-wrap:break-word!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.tipsy-arrow{position:absolute!important;width:0!important;height:0!important;line-height:0!important;border:5px dashed #333}.tipsy-arrow-n{border-bottom-color:#333!important}.tipsy-arrow-s{border-top-color:#333!important}.tipsy-arrow-e{border-left-color:#333!important}.tipsy-arrow-w{border-right-color:#333!important}.tipsy-n .tipsy-arrow{top:0;left:50%;margin-left:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.tipsy-nw .tipsy-arrow{top:0;left:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.tipsy-ne .tipsy-arrow{top:0;right:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.tipsy-s .tipsy-arrow{bottom:0;left:50%;margin-left:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.tipsy-sw .tipsy-arrow{bottom:0;left:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.tipsy-se .tipsy-arrow{bottom:0;right:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.tipsy-e .tipsy-arrow{right:0;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent}.tipsy-w .tipsy-arrow{left:0;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent}.um-account a:focus{outline:0!important}.um-account-side{float:left;width:35%;padding:0 30px;box-sizing:border-box}.um-account-main{float:left;width:50%;padding:0 30px;box-sizing:border-box}.um-account-tab{display:none}.um-account-main div.um-account-heading{margin:0!important;font-size:18px;line-height:18px;font-weight:700;color:#555}.um-account-main div.um-account-heading i{margin-right:10px;font-size:26px;position:relative;top:2px}.um-account-main p{margin:20px 0 0!important;padding:0!important}.um-account-main label{font-size:15px}.um-account-meta{text-align:center;margin-bottom:20px}.um-account-meta img{margin:0!important;position:static!important;float:none!important;display:inline-block}.um-account-meta.radius-1 img{-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px}.um-account-meta.radius-2 img{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.um-account-meta.radius-3 img{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-account-name a{font-weight:700;color:#555!important;text-decoration:none!important;font-size:18px;line-height:2em}.um-account-name a:hover{color:#3ba1da!important}.um-account-nav a{display:block;height:44px;line-height:44px;color:#666!important;text-decoration:none!important;position:relative;padding-left:40px;border-bottom:1px solid #eee;transition:all .2s linear;font-size:14px}.um-account-nav a.current{color:#3ba1da!important;font-weight:700}.um-account-nav span.arr{position:absolute;right:0;top:1px;font-size:28px}.um-account-nav span.ico{position:absolute;left:0;top:0;font-size:21px;width:21px;text-align:center}.um-account-side li,.um-account-side ul{margin:0!important;padding:0!important;list-style-type:none!important}.um-account-side li{margin-bottom:6px!important;background:#eee}.um-account-side li a{display:block;padding:4px 0;font-size:14px;height:30px;line-height:20px;color:#999;position:relative}.um-account-side li a span.um-account-arrow{position:absolute;right:10px;top:6px;font-size:26px}.um-account-side li a span.um-account-icon,.um-account-side li a.current span.um-account-icon,.um-account-side li a.current:hover span.um-account-icon{text-align:center;font-size:20px;width:20px;height:30px;border-right:1px solid #ccc;color:#444;float:left;padding:0 15px;font-weight:400!important}.um-account-side li a.current span.um-account-icon,.um-account-side li a.current:hover span.um-account-icon{color:#3ba1da}.um-account-side li a span.um-account-icon i{display:block;height:30px;line-height:30px}.um-account-side li a span.um-account-title{padding-left:20px;float:left;height:30px;line-height:30px;color:#555}.um-account-side li a:hover{color:#444;background:#ddd}.um-account-side li a.current,.um-account-side li a.current:hover{color:#444;font-weight:700;text-decoration:none!important}.cropper-container{position:relative;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.cropper-container img{width:100%;height:100%;min-width:0!important;min-height:0!important;max-width:none!important;max-height:none!important}.cropper-canvas,.cropper-modal{position:absolute;top:0;right:0;bottom:0;left:0}.cropper-canvas{background-color:#fff;opacity:0;filter:alpha(opacity=0)}.cropper-modal{background-color:#000;opacity:.5;filter:alpha(opacity=50)}.cropper-dragger{position:absolute;top:10%;left:10%;width:80%;height:80%}.cropper-viewer{display:block;width:100%;height:100%;overflow:hidden;outline-width:1px;outline-style:solid;outline-color:#69f;outline-color:rgba(51,102,255,.75)}.cropper-dashed{position:absolute;display:block;border:0 dashed #fff;opacity:.5;filter:alpha(opacity=50)}.cropper-dashed.dashed-h{top:33.3%;left:0;width:100%;height:33.3%;border-top-width:1px;border-bottom-width:1px}.cropper-dashed.dashed-v{top:0;left:33.3%;width:33.3%;height:100%;border-right-width:1px;border-left-width:1px}.cropper-face,.cropper-line,.cropper-point{position:absolute;display:block;width:100%;height:100%;opacity:.1;filter:alpha(opacity=10)}.cropper-face{top:0;left:0;cursor:move;background-color:#fff}.cropper-line{background-color:#69f}.cropper-line.line-e{top:0;right:-3px;width:5px;cursor:e-resize}.cropper-line.line-n{top:-3px;left:0;height:5px;cursor:n-resize}.cropper-line.line-w{top:0;left:-3px;width:5px;cursor:w-resize}.cropper-line.line-s{bottom:-3px;left:0;height:5px;cursor:s-resize}.cropper-point{width:5px;height:5px;background-color:#69f;opacity:.75;filter:alpha(opacity=75)}.cropper-point.point-e{top:50%;right:-3px;margin-top:-3px;cursor:e-resize}.cropper-point.point-n{top:-3px;left:50%;margin-left:-3px;cursor:n-resize}.cropper-point.point-w{top:50%;left:-3px;margin-top:-3px;cursor:w-resize}.cropper-point.point-s{bottom:-3px;left:50%;margin-left:-3px;cursor:s-resize}.cropper-point.point-ne{top:-3px;right:-3px;cursor:ne-resize}.cropper-point.point-nw{top:-3px;left:-3px;cursor:nw-resize}.cropper-point.point-sw{bottom:-3px;left:-3px;cursor:sw-resize}.cropper-point.point-se{right:-3px;bottom:-3px;width:20px;height:20px;cursor:se-resize;opacity:1;filter:alpha(opacity=100)}.cropper-point.point-se:before{position:absolute;right:-50%;bottom:-50%;display:block;width:200%;height:200%;content:" ";background-color:#69f;opacity:0;filter:alpha(opacity=0)}@media (min-width:768px){.cropper-point.point-se{width:15px;height:15px}}@media (min-width:992px){.cropper-point.point-se{width:10px;height:10px}}@media (min-width:1200px){.cropper-point.point-se{width:5px;height:5px;opacity:.75;filter:alpha(opacity=75)}}.cropper-hidden{display:none!important}.cropper-invisible{position:fixed;top:0;left:0;z-index:-1;width:auto!important;max-width:none!important;height:auto!important;max-height:none!important;opacity:0;filter:alpha(opacity=0)}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-canvas,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}.um .um-single-file-preview,.um .um-single-image-preview{margin-bottom:20px}.um .um-single-image-preview>img{max-height:300px;display:block;overflow:hidden;margin:auto;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.um-single-file-preview,.um-single-image-preview{display:none;text-align:center;position:relative}.um-single-file-preview.show,.um-single-image-preview.show{display:block}.um-single-image-preview>img{max-width:100%;max-height:inherit}.um-single-file-preview a.cancel,.um-single-image-preview a.cancel{position:absolute;top:-15px;right:-15px;width:30px;height:30px;-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px;background:#ddd;cursor:pointer;text-decoration:none!important;z-index:666;opacity:.75}.um-single-file-preview a.cancel i,.um-single-image-preview a.cancel i{font-size:16px;color:#888;position:relative;display:block;width:100%;height:100%;line-height:30px;overflow:hidden}.um-single-file-preview a.cancel i:before,.um-single-image-preview a.cancel i:before{line-height:inherit}.um-single-fileinfo{padding:26px 0 20px;display:inline-block}.um-single-fileinfo span.icon{font-size:40px;display:inline-block;width:100px;height:70px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#666;color:#fff!important}.um-single-fileinfo span.icon i{display:block;height:70px;line-height:70px;overflow:hidden}.um-single-fileinfo span.icon i:before{line-height:inherit}.um-single-fileinfo span.filename{display:block;font-size:16px;color:#888;padding-top:5px}.um-single-fileinfo a{text-decoration:none!important;opacity:.9}.um-single-fileinfo a:hover{opacity:1}.upload-statusbar{margin:20px 0 0}.upload-filename{display:none!important}.upload-progress{position:relative;width:100%;box-sizing:border-box}.upload-bar{width:0;height:10px;color:#666;background:#7ACF58;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.ajax-upload-dragdrop{width:100%;text-align:center;vertical-align:middle;padding:20px;box-sizing:border-box;border:2px dashed #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-size:18px;line-height:1em}.ajax-upload-dragdrop span.str{display:block;margin:0 0 15px}.ajax-upload-dragdrop span.icon{display:block;font-size:80px;line-height:80px;vertical-align:middle;margin-bottom:10px}.ajax-upload-dragdrop span.help{display:block;font-size:14px;color:#aaa;margin:0 0 12px}.upload{cursor:pointer!important;line-height:34px!important;height:34px;display:inline-block;text-decoration:none;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;padding:0 20px;color:#fff;background:#3ba1da;vertical-align:middle;font-size:14px;box-sizing:border-box;transition:.2s}.upload:hover{background:#44b0ec}.um-modal input[type=file]::-webkit-file-upload-button{cursor:pointer}.uimob340-show,.uimob500-show,.uimob800-show,.uimob960-show{display:none}div.uimob340 .uimob340-show,div.uimob500 .uimob500-show,div.uimob800 .uimob800-show,div.uimob960 .uimob960-show{display:block}div.uimob340 .uimob340-hide,div.uimob500 .uimob500-hide,div.uimob800 .uimob800-hide,div.uimob960 .uimob960-hide{display:none}div.uimob340 .um-item-link a{font-size:14px}div.uimob340 .um-item-meta span{font-size:13px}div.uimob340 .um-load-items a{width:100%!important;max-width:100%!important}div.uimob340 .um-profile-nav{padding:0}div.uimob340 .um-profile-nav-item a{padding:10px 16px;margin-left:0;border-radius:0}div.uimob340 .um-profile-nav-item i{display:block;position:static;top:auto;left:auto}div.uimob340 .um-profile-subnav{padding:8px 15px}div.uimob340 .um-profile-subnav a{display:block;text-align:left;font-size:13px;margin:0;padding:6px 0}div.uimob340 .um-profile-subnav span{font-size:12px;padding:1px 6px}div.uimob340 .um-cover-overlay span.um-cover-overlay-t{display:none!important}div.uimob340 .um-cover-overlay{padding:0}div.uimob340 .um-cover-overlay i,div.uimob340 .um-profile-photo-overlay i{margin-bottom:0;font-size:30px}.um-modal.uimob340{width:100%!important;margin:0!important;left:0!important;height:100%;background:#fff}.um-modal.uimob340,.um-modal.uimob340 .um-modal-body,.um-modal.uimob340 .um-modal-header{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-modal.uimob340 .um-modal-header{text-align:center}.um-modal.uimob340 .um-modal-footer{position:absolute;bottom:0;left:0;width:100%;box-sizing:border-box;padding:10px;border-top:1px solid #ddd}.um-modal.uimob340 .um-modal-right{width:100%;float:none}.um-modal.uimob340 .um-modal-footer a.um-modal-btn{width:48%;margin:0 1%;float:left;display:block;line-height:44px!important;height:44px}.um-modal.uimob340 .ajax-upload-dragdrop span.icon{font-size:40px;line-height:40px}div.uimob340 .um-profile-body{padding-left:0;padding-right:0}div.uimob340 .um-profile-photo{width:100%!important;text-align:center!important;position:absolute;top:-40px;left:0}div.uimob340 .um-header.no-cover .um-profile-photo{position:static;top:auto;left:auto}div.uimob340 .um-profile-photo a.um-profile-photo-img{width:100px!important;height:100px!important;margin:0 auto!important;float:none!important;display:inline-block!important;position:relative!important;top:auto!important;left:auto!important}div.uimob340 .um-header.no-cover .um-profile-photo a.um-profile-photo-img{width:120px!important;height:120px!important}div.uimob340 .um-header .um-profile-meta{padding-left:0!important;padding-right:0!important;text-align:center!important;padding-top:60px!important}div.uimob340 .um-header.no-cover .um-profile-meta{padding-top:0!important}div.uimob340 .um-header .um-name{float:none!important;margin-right:0!important;font-size:18px}div.uimob340 .um-header .um-meta,div.uimob340 .um-header .um-meta-text{padding:0 20px}div.uimob340 .um-header .um-meta span:first-child{display:block}div.uimob340 .um-header .um-meta span{display:none}div.uimob340 .um-col-121,div.uimob340 .um-col-122,div.uimob340 .um-col-131,div.uimob340 .um-col-132,div.uimob340 .um-col-133{float:none;width:100%;margin:0}div.uimob340 .um-field-half{float:none;width:100%}div.uimob340 .um-search{padding:20px 0!important;width:100%!important;box-sizing:border-box}div.uimob340 .um-search .um-search-filter{width:100%!important;float:none!important;padding:0 0 15px!important}div.uimob340 .um-search .um-search-submit .um-button{display:block!important;min-width:100%!important;margin:0 0 15px!important}div.uimob340 .um-member{width:100%}div.uimob340 .um-gutter-sizer{width:0}div.uimob340 .um-account-main{float:none;width:100%;padding:0;box-sizing:border-box}div.uimob340 .um-account-tab{padding-bottom:20px;border-bottom:1px solid #eee}div.uimob340 .um-account-meta{margin-bottom:0}.uimob340 .um-half{float:none;width:100%;margin:0 0 10px}.uimob340 .um-button.um-btn-auto-width{min-width:auto;max-width:auto;width:100%}div.uimob500 .um-profile-nav{padding:0}div.uimob500 .um-profile-nav-item a{padding:10px 16px;margin-left:0;border-radius:0}div.uimob500 .um-profile-nav-item i{display:block;position:static;top:auto;left:auto;font-size:22px;height:22px;line-height:22px}div.uimob500 .um-profile-subnav{padding:8px 15px}div.uimob500 .um-profile-subnav a{display:block;text-align:left;font-size:13px;margin:0;padding:6px 0}div.uimob500 .um-profile-subnav span{font-size:12px;padding:1px 6px}div.uimob500 .um-cover-overlay span.um-cover-overlay-t{display:none!important}div.uimob500 .um-cover-overlay{padding:0}div.uimob500 .um-cover-overlay i,div.uimob500 .um-profile-photo-overlay i{margin-bottom:0;font-size:30px}.um-modal.uimob500{width:100%!important;margin:0!important;left:0!important;height:100%;background:#fff}.um-modal.uimob500,.um-modal.uimob500 .um-modal-body,.um-modal.uimob500 .um-modal-header{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-modal.uimob500 .um-modal-header{text-align:center}.um-modal.uimob500 .um-modal-footer{position:absolute;bottom:0;left:0;width:100%;box-sizing:border-box;padding:10px;border-top:1px solid #ddd}.um-modal.uimob500 .um-modal-right{width:100%;float:none}.um-modal.uimob500 .um-modal-footer a.um-modal-btn{width:48%;margin:0 1%;float:left;display:block;line-height:44px!important;height:44px}.um-modal.uimob500 .ajax-upload-dragdrop span.icon{font-size:40px;line-height:40px}div.uimob500 .um-profile-body{padding-left:0;padding-right:0}div.uimob500 .um-profile-photo{width:100%!important;text-align:center!important;position:absolute;top:-40px;left:0}div.uimob500 .um-header.no-cover .um-profile-photo{position:static;top:auto;left:auto}div.uimob500 .um-profile-photo a.um-profile-photo-img{width:100px!important;height:100px!important;margin:0 auto!important;float:none!important;display:inline-block!important;position:relative!important;top:auto!important;left:auto!important}div.uimob500 .um-header.no-cover .um-profile-photo a.um-profile-photo-img{width:120px!important;height:120px!important}div.uimob500 .um-header .um-profile-meta{padding-left:0!important;padding-right:0!important;text-align:center!important;padding-top:60px!important}div.uimob500 .um-header.no-cover .um-profile-meta{padding-top:0!important}div.uimob500 .um-header .um-name{float:none!important;margin-right:0!important;font-size:21px}div.uimob500 .um-header .um-meta,div.uimob500 .um-header .um-meta-text{padding:0 20px}div.uimob500 .um-header .um-meta span:first-child{display:block}div.uimob500 .um-header .um-meta span{display:none}div.uimob500 .um-col-121,div.uimob500 .um-col-122,div.uimob500 .um-col-131,div.uimob500 .um-col-132,div.uimob500 .um-col-133{float:none;width:100%;margin:0}div.uimob500 .um-field-half{float:none;width:100%}div.uimob500 .um-search{padding:20px 0!important;width:100%!important;box-sizing:border-box}div.uimob500 .um-search .um-search-filter{width:100%!important;float:none!important;padding:0 0 15px!important}div.uimob500 .um-search .um-search-submit .um-button{display:block!important;min-width:100%!important;margin:0 0 15px!important}div.uimob500 .um-member{width:100%}div.uimob500 .um-gutter-sizer{width:0}div.uimob500 .um-account-main{float:none;width:100%;padding:0;box-sizing:border-box}div.uimob500 .um-account-tab{padding-bottom:20px;border-bottom:1px solid #eee}div.uimob500 .um-account-meta{margin-bottom:0}div.uimob800 .um-profile-nav{padding:0}div.uimob800 .um-profile-nav-item a{padding:10px 20px;margin-left:0;border-radius:0}div.uimob800 .um-profile-nav-item i{display:block;position:static;top:auto;left:auto;font-size:26px;height:26px;line-height:26px}div.uimob800 .um-profile-subnav{padding:8px 15px}div.uimob800 .um-profile-subnav a{display:block;text-align:left;font-size:14px;margin:0;padding:6px 0}div.uimob800 .um-profile-subnav span{font-size:12px;padding:2px 8px}div.uimob800 .um-account-main{width:90%;max-width:450px}div.uimob800 .um-account-side{padding:0;width:10%}div.uimob800 .um-account-side ul{border:1px solid #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}div.uimob800 .um-account-side li{margin-bottom:0!important;background:0 0}div.uimob800 .um-account-side li a{display:block;padding:0!important;height:44px;line-height:44px;color:#666!important;text-align:center;text-decoration:none!important;background:0 0;transition:all .2s linear}div.uimob800 .um-account-side li:first-child a{-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}div.uimob800 .um-account-side li:last-child a{-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}div.uimob800 .um-account-side li a span.um-account-icontip{display:block;float:left;text-align:center;width:100%;height:100%;font-size:22px;line-height:44px}div.uimob800 .um-account-side li a span.um-account-icontip i{position:relative;text-align:center;width:100%}div.uimob800 .um-account-side li a.current,div.uimob800 .um-account-side li a.current:hover{background:#3ba1da!important;color:#fff!important}div.uimob800 .um-account-meta a{border:1px solid #ddd}div.uimob800 .um-account-meta a,div.uimob800 .um-account-meta img{display:block;overflow:hidden;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}div.uimob800 .um-profile-photo{width:200px!important}div.uimob800 .um-profile-photo a.um-profile-photo-img{width:140px!important;height:140px!important;top:-70px!important}div.uimob800 .um-header.no-cover .um-profile-photo a.um-profile-photo-img{top:auto!important}div.uimob800 .um-header .um-profile-meta{padding-left:200px}div.uimob800 .um-cover-overlay{padding:0}div.uimob800 .um-search{padding:20px 0!important;width:100%!important;box-sizing:border-box}div.uimob800 .um-search .um-search-filter{width:48%!important;float:left!important;padding:0 0 15px!important}div.uimob800 .um-search .um-search-filter-2{margin-left:4%}div.uimob800 .um-search .um-search-submit .um-button{display:block!important;width:48%!important;margin:0 0 15px!important;box-sizing:border-box;float:left}div.uimob800 .um-search .um-search-submit .um-button.um-alt{float:right}div.uimob800 .um-member{width:48%}div.uimob800 .um-gutter-sizer{width:4%}div.uimob960 .um-col-131,div.uimob960 .um-col-132,div.uimob960 .um-col-133{float:none;width:100%;margin:0}div.uimob960 .um-search{padding:20px 0!important;width:100%!important;box-sizing:border-box}div.uimob960 .um-search .um-search-filter{width:48%!important;float:left!important;padding:0 0 15px!important}div.uimob960 .um-search .um-search-filter-2{margin-left:4%}div.uimob960 .um-search .um-search-submit .um-button{display:block!important;width:48%!important;margin:0 0 15px!important;box-sizing:border-box;float:left}div.uimob960 .um-search .um-search-submit .um-button.um-alt{float:right}div.uimob960 .um-member{width:48%}div.uimob960 .um-gutter-sizer{width:4%}@media screen and (max-height:400px){.ajax-upload-dragdrop span.icon{display:none}.um-modal.no-photo{width:100%!important;margin:0!important;left:0!important;height:100%;background:#fff}.um-modal.no-photo,.um-modal.no-photo .um-modal-body,.um-modal.no-photo .um-modal-header{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-modal.no-photo .um-modal-header{text-align:center;font-size:14px}.um-modal.no-photo .um-modal-footer{position:absolute;bottom:0;left:0;width:100%;box-sizing:border-box;padding:10px;border-top:1px solid #ddd}.um-modal.no-photo .um-modal-right{width:100%;float:none}.um-modal.no-photo .um-modal-footer a.um-modal-btn{width:48%;margin:0 1%;float:left;display:block;line-height:44px!important;height:44px}}@media screen and (max-height:300px){.ajax-upload-dragdrop span.icon,.ajax-upload-dragdrop span.str,.um-modal.no-photo .um-modal-header{display:none}}
1
+ @charset "UTF-8";@font-face{font-family:FontAwesome;src:url(../font/fontawesome-webfont.eot?v=4.2.0);src:url(../font/fontawesome-webfont.eot?v=4.2.0#iefix) format("embedded-opentype"),url(../font/fontawesome-webfont.woff?v=4.2.0) format("woff"),url(../font/fontawesome-webfont.ttf?v=4.2.0) format("truetype"),url(../font/fontawesome-webfont.svg?v=4.2.0#fontawesomeregular) format("svg");font-weight:400;font-style:normal}[class*=" um-faicon-"]:before,[class^=um-faicon-]:before{font-family:FontAwesome!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.um-faicon-glass:before{content:"\f000"}.um-faicon-music:before{content:"\f001"}.um-faicon-search:before{content:"\f002"}.um-faicon-envelope-o:before{content:"\f003"}.um-faicon-heart:before{content:"\f004"}.um-faicon-star:before{content:"\f005"}.um-faicon-star-o:before{content:"\f006"}.um-faicon-user:before{content:"\f007"}.um-faicon-film:before{content:"\f008"}.um-faicon-th-large:before{content:"\f009"}.um-faicon-th:before{content:"\f00a"}.um-faicon-th-list:before{content:"\f00b"}.um-faicon-check:before{content:"\f00c"}.um-faicon-close:before,.um-faicon-remove:before,.um-faicon-times:before{content:"\f00d"}.um-faicon-search-plus:before{content:"\f00e"}.um-faicon-search-minus:before{content:"\f010"}.um-faicon-power-off:before{content:"\f011"}.um-faicon-signal:before{content:"\f012"}.um-faicon-cog:before,.um-faicon-gear:before{content:"\f013"}.um-faicon-trash-o:before{content:"\f014"}.um-faicon-home:before{content:"\f015"}.um-faicon-file-o:before{content:"\f016"}.um-faicon-clock-o:before{content:"\f017"}.um-faicon-road:before{content:"\f018"}.um-faicon-download:before{content:"\f019"}.um-faicon-arrow-circle-o-down:before{content:"\f01a"}.um-faicon-arrow-circle-o-up:before{content:"\f01b"}.um-faicon-inbox:before{content:"\f01c"}.um-faicon-play-circle-o:before{content:"\f01d"}.um-faicon-repeat:before,.um-faicon-rotate-right:before{content:"\f01e"}.um-faicon-refresh:before{content:"\f021"}.um-faicon-list-alt:before{content:"\f022"}.um-faicon-lock:before{content:"\f023"}.um-faicon-flag:before{content:"\f024"}.um-faicon-headphones:before{content:"\f025"}.um-faicon-volume-off:before{content:"\f026"}.um-faicon-volume-down:before{content:"\f027"}.um-faicon-volume-up:before{content:"\f028"}.um-faicon-qrcode:before{content:"\f029"}.um-faicon-barcode:before{content:"\f02a"}.um-faicon-tag:before{content:"\f02b"}.um-faicon-tags:before{content:"\f02c"}.um-faicon-book:before{content:"\f02d"}.um-faicon-bookmark:before{content:"\f02e"}.um-faicon-print:before{content:"\f02f"}.um-faicon-camera:before{content:"\f030"}.um-faicon-font:before{content:"\f031"}.um-faicon-bold:before{content:"\f032"}.um-faicon-italic:before{content:"\f033"}.um-faicon-text-height:before{content:"\f034"}.um-faicon-text-width:before{content:"\f035"}.um-faicon-align-left:before{content:"\f036"}.um-faicon-align-center:before{content:"\f037"}.um-faicon-align-right:before{content:"\f038"}.um-faicon-align-justify:before{content:"\f039"}.um-faicon-list:before{content:"\f03a"}.um-faicon-dedent:before,.um-faicon-outdent:before{content:"\f03b"}.um-faicon-indent:before{content:"\f03c"}.um-faicon-video-camera:before{content:"\f03d"}.um-faicon-image:before,.um-faicon-photo:before,.um-faicon-picture-o:before{content:"\f03e"}.um-faicon-pencil:before{content:"\f040"}.um-faicon-map-marker:before{content:"\f041"}.um-faicon-adjust:before{content:"\f042"}.um-faicon-tint:before{content:"\f043"}.um-faicon-edit:before,.um-faicon-pencil-square-o:before{content:"\f044"}.um-faicon-share-square-o:before{content:"\f045"}.um-faicon-check-square-o:before{content:"\f046"}.um-faicon-arrows:before{content:"\f047"}.um-faicon-step-backward:before{content:"\f048"}.um-faicon-fast-backward:before{content:"\f049"}.um-faicon-backward:before{content:"\f04a"}.um-faicon-play:before{content:"\f04b"}.um-faicon-pause:before{content:"\f04c"}.um-faicon-stop:before{content:"\f04d"}.um-faicon-forward:before{content:"\f04e"}.um-faicon-fast-forward:before{content:"\f050"}.um-faicon-step-forward:before{content:"\f051"}.um-faicon-eject:before{content:"\f052"}.um-faicon-chevron-left:before{content:"\f053"}.um-faicon-chevron-right:before{content:"\f054"}.um-faicon-plus-circle:before{content:"\f055"}.um-faicon-minus-circle:before{content:"\f056"}.um-faicon-times-circle:before{content:"\f057"}.um-faicon-check-circle:before{content:"\f058"}.um-faicon-question-circle:before{content:"\f059"}.um-faicon-info-circle:before{content:"\f05a"}.um-faicon-crosshairs:before{content:"\f05b"}.um-faicon-times-circle-o:before{content:"\f05c"}.um-faicon-check-circle-o:before{content:"\f05d"}.um-faicon-ban:before{content:"\f05e"}.um-faicon-arrow-left:before{content:"\f060"}.um-faicon-arrow-right:before{content:"\f061"}.um-faicon-arrow-up:before{content:"\f062"}.um-faicon-arrow-down:before{content:"\f063"}.um-faicon-mail-forward:before,.um-faicon-share:before{content:"\f064"}.um-faicon-expand:before{content:"\f065"}.um-faicon-compress:before{content:"\f066"}.um-faicon-plus:before{content:"\f067"}.um-faicon-minus:before{content:"\f068"}.um-faicon-asterisk:before{content:"\f069"}.um-faicon-exclamation-circle:before{content:"\f06a"}.um-faicon-gift:before{content:"\f06b"}.um-faicon-leaf:before{content:"\f06c"}.um-faicon-fire:before{content:"\f06d"}.um-faicon-eye:before{content:"\f06e"}.um-faicon-eye-slash:before{content:"\f070"}.um-faicon-exclamation-triangle:before,.um-faicon-warning:before{content:"\f071"}.um-faicon-plane:before{content:"\f072"}.um-faicon-calendar:before{content:"\f073"}.um-faicon-random:before{content:"\f074"}.um-faicon-comment:before{content:"\f075"}.um-faicon-magnet:before{content:"\f076"}.um-faicon-chevron-up:before{content:"\f077"}.um-faicon-chevron-down:before{content:"\f078"}.um-faicon-retweet:before{content:"\f079"}.um-faicon-shopping-cart:before{content:"\f07a"}.um-faicon-folder:before{content:"\f07b"}.um-faicon-folder-open:before{content:"\f07c"}.um-faicon-arrows-v:before{content:"\f07d"}.um-faicon-arrows-h:before{content:"\f07e"}.um-faicon-bar-chart-o:before,.um-faicon-bar-chart:before{content:"\f080"}.um-faicon-twitter-square:before{content:"\f081"}.um-faicon-facebook-square:before{content:"\f082"}.um-faicon-camera-retro:before{content:"\f083"}.um-faicon-key:before{content:"\f084"}.um-faicon-cogs:before,.um-faicon-gears:before{content:"\f085"}.um-faicon-comments:before{content:"\f086"}.um-faicon-thumbs-o-up:before{content:"\f087"}.um-faicon-thumbs-o-down:before{content:"\f088"}.um-faicon-star-half:before{content:"\f089"}.um-faicon-heart-o:before{content:"\f08a"}.um-faicon-sign-out:before{content:"\f08b"}.um-faicon-linkedin-square:before{content:"\f08c"}.um-faicon-thumb-tack:before{content:"\f08d"}.um-faicon-external-link:before{content:"\f08e"}.um-faicon-sign-in:before{content:"\f090"}.um-faicon-trophy:before{content:"\f091"}.um-faicon-github-square:before{content:"\f092"}.um-faicon-upload:before{content:"\f093"}.um-faicon-lemon-o:before{content:"\f094"}.um-faicon-phone:before{content:"\f095"}.um-faicon-square-o:before{content:"\f096"}.um-faicon-bookmark-o:before{content:"\f097"}.um-faicon-phone-square:before{content:"\f098"}.um-faicon-twitter:before{content:"\f099"}.um-faicon-facebook:before{content:"\f09a"}.um-faicon-github:before{content:"\f09b"}.um-faicon-unlock:before{content:"\f09c"}.um-faicon-credit-card:before{content:"\f09d"}.um-faicon-rss:before{content:"\f09e"}.um-faicon-hdd-o:before{content:"\f0a0"}.um-faicon-bullhorn:before{content:"\f0a1"}.um-faicon-bell:before{content:"\f0f3"}.um-faicon-certificate:before{content:"\f0a3"}.um-faicon-hand-o-right:before{content:"\f0a4"}.um-faicon-hand-o-left:before{content:"\f0a5"}.um-faicon-hand-o-up:before{content:"\f0a6"}.um-faicon-hand-o-down:before{content:"\f0a7"}.um-faicon-arrow-circle-left:before{content:"\f0a8"}.um-faicon-arrow-circle-right:before{content:"\f0a9"}.um-faicon-arrow-circle-up:before{content:"\f0aa"}.um-faicon-arrow-circle-down:before{content:"\f0ab"}.um-faicon-globe:before{content:"\f0ac"}.um-faicon-wrench:before{content:"\f0ad"}.um-faicon-tasks:before{content:"\f0ae"}.um-faicon-filter:before{content:"\f0b0"}.um-faicon-briefcase:before{content:"\f0b1"}.um-faicon-arrows-alt:before{content:"\f0b2"}.um-faicon-group:before,.um-faicon-users:before{content:"\f0c0"}.um-faicon-chain:before,.um-faicon-link:before{content:"\f0c1"}.um-faicon-cloud:before{content:"\f0c2"}.um-faicon-flask:before{content:"\f0c3"}.um-faicon-cut:before,.um-faicon-scissors:before{content:"\f0c4"}.um-faicon-copy:before,.um-faicon-files-o:before{content:"\f0c5"}.um-faicon-paperclip:before{content:"\f0c6"}.um-faicon-floppy-o:before,.um-faicon-save:before{content:"\f0c7"}.um-faicon-square:before{content:"\f0c8"}.um-faicon-bars:before,.um-faicon-navicon:before,.um-faicon-reorder:before{content:"\f0c9"}.um-faicon-list-ul:before{content:"\f0ca"}.um-faicon-list-ol:before{content:"\f0cb"}.um-faicon-strikethrough:before{content:"\f0cc"}.um-faicon-underline:before{content:"\f0cd"}.um-faicon-table:before{content:"\f0ce"}.um-faicon-magic:before{content:"\f0d0"}.um-faicon-truck:before{content:"\f0d1"}.um-faicon-pinterest:before{content:"\f0d2"}.um-faicon-pinterest-square:before{content:"\f0d3"}.um-faicon-google-plus-square:before{content:"\f0d4"}.um-faicon-google-plus:before{content:"\f0d5"}.um-faicon-money:before{content:"\f0d6"}.um-faicon-caret-down:before{content:"\f0d7"}.um-faicon-caret-up:before{content:"\f0d8"}.um-faicon-caret-left:before{content:"\f0d9"}.um-faicon-caret-right:before{content:"\f0da"}.um-faicon-columns:before{content:"\f0db"}.um-faicon-sort:before,.um-faicon-unsorted:before{content:"\f0dc"}.um-faicon-sort-desc:before,.um-faicon-sort-down:before{content:"\f0dd"}.um-faicon-sort-asc:before,.um-faicon-sort-up:before{content:"\f0de"}.um-faicon-envelope:before{content:"\f0e0"}.um-faicon-linkedin:before{content:"\f0e1"}.um-faicon-rotate-left:before,.um-faicon-undo:before{content:"\f0e2"}.um-faicon-gavel:before,.um-faicon-legal:before{content:"\f0e3"}.um-faicon-dashboard:before,.um-faicon-tachometer:before{content:"\f0e4"}.um-faicon-comment-o:before{content:"\f0e5"}.um-faicon-comments-o:before{content:"\f0e6"}.um-faicon-bolt:before,.um-faicon-flash:before{content:"\f0e7"}.um-faicon-sitemap:before{content:"\f0e8"}.um-faicon-umbrella:before{content:"\f0e9"}.um-faicon-clipboard:before,.um-faicon-paste:before{content:"\f0ea"}.um-faicon-lightbulb-o:before{content:"\f0eb"}.um-faicon-exchange:before{content:"\f0ec"}.um-faicon-cloud-download:before{content:"\f0ed"}.um-faicon-cloud-upload:before{content:"\f0ee"}.um-faicon-user-md:before{content:"\f0f0"}.um-faicon-stethoscope:before{content:"\f0f1"}.um-faicon-suitcase:before{content:"\f0f2"}.um-faicon-bell-o:before{content:"\f0a2"}.um-faicon-coffee:before{content:"\f0f4"}.um-faicon-cutlery:before{content:"\f0f5"}.um-faicon-file-text-o:before{content:"\f0f6"}.um-faicon-building-o:before{content:"\f0f7"}.um-faicon-hospital-o:before{content:"\f0f8"}.um-faicon-ambulance:before{content:"\f0f9"}.um-faicon-medkit:before{content:"\f0fa"}.um-faicon-fighter-jet:before{content:"\f0fb"}.um-faicon-beer:before{content:"\f0fc"}.um-faicon-h-square:before{content:"\f0fd"}.um-faicon-plus-square:before{content:"\f0fe"}.um-faicon-angle-double-left:before{content:"\f100"}.um-faicon-angle-double-right:before{content:"\f101"}.um-faicon-angle-double-up:before{content:"\f102"}.um-faicon-angle-double-down:before{content:"\f103"}.um-faicon-angle-left:before{content:"\f104"}.um-faicon-angle-right:before{content:"\f105"}.um-faicon-angle-up:before{content:"\f106"}.um-faicon-angle-down:before{content:"\f107"}.um-faicon-desktop:before{content:"\f108"}.um-faicon-laptop:before{content:"\f109"}.um-faicon-tablet:before{content:"\f10a"}.um-faicon-mobile-phone:before,.um-faicon-mobile:before{content:"\f10b"}.um-faicon-circle-o:before{content:"\f10c"}.um-faicon-quote-left:before{content:"\f10d"}.um-faicon-quote-right:before{content:"\f10e"}.um-faicon-spinner:before{content:"\f110"}.um-faicon-circle:before{content:"\f111"}.um-faicon-mail-reply:before,.um-faicon-reply:before{content:"\f112"}.um-faicon-github-alt:before{content:"\f113"}.um-faicon-folder-o:before{content:"\f114"}.um-faicon-folder-open-o:before{content:"\f115"}.um-faicon-smile-o:before{content:"\f118"}.um-faicon-frown-o:before{content:"\f119"}.um-faicon-meh-o:before{content:"\f11a"}.um-faicon-gamepad:before{content:"\f11b"}.um-faicon-keyboard-o:before{content:"\f11c"}.um-faicon-flag-o:before{content:"\f11d"}.um-faicon-flag-checkered:before{content:"\f11e"}.um-faicon-terminal:before{content:"\f120"}.um-faicon-code:before{content:"\f121"}.um-faicon-mail-reply-all:before,.um-faicon-reply-all:before{content:"\f122"}.um-faicon-star-half-empty:before,.um-faicon-star-half-full:before,.um-faicon-star-half-o:before{content:"\f123"}.um-faicon-location-arrow:before{content:"\f124"}.um-faicon-crop:before{content:"\f125"}.um-faicon-code-fork:before{content:"\f126"}.um-faicon-chain-broken:before,.um-faicon-unlink:before{content:"\f127"}.um-faicon-question:before{content:"\f128"}.um-faicon-info:before{content:"\f129"}.um-faicon-exclamation:before{content:"\f12a"}.um-faicon-superscript:before{content:"\f12b"}.um-faicon-subscript:before{content:"\f12c"}.um-faicon-eraser:before{content:"\f12d"}.um-faicon-puzzle-piece:before{content:"\f12e"}.um-faicon-microphone:before{content:"\f130"}.um-faicon-microphone-slash:before{content:"\f131"}.um-faicon-shield:before{content:"\f132"}.um-faicon-calendar-o:before{content:"\f133"}.um-faicon-fire-extinguisher:before{content:"\f134"}.um-faicon-rocket:before{content:"\f135"}.um-faicon-maxcdn:before{content:"\f136"}.um-faicon-chevron-circle-left:before{content:"\f137"}.um-faicon-chevron-circle-right:before{content:"\f138"}.um-faicon-chevron-circle-up:before{content:"\f139"}.um-faicon-chevron-circle-down:before{content:"\f13a"}.um-faicon-html5:before{content:"\f13b"}.um-faicon-css3:before{content:"\f13c"}.um-faicon-anchor:before{content:"\f13d"}.um-faicon-unlock-alt:before{content:"\f13e"}.um-faicon-bullseye:before{content:"\f140"}.um-faicon-ellipsis-h:before{content:"\f141"}.um-faicon-ellipsis-v:before{content:"\f142"}.um-faicon-rss-square:before{content:"\f143"}.um-faicon-play-circle:before{content:"\f144"}.um-faicon-ticket:before{content:"\f145"}.um-faicon-minus-square:before{content:"\f146"}.um-faicon-minus-square-o:before{content:"\f147"}.um-faicon-level-up:before{content:"\f148"}.um-faicon-level-down:before{content:"\f149"}.um-faicon-check-square:before{content:"\f14a"}.um-faicon-pencil-square:before{content:"\f14b"}.um-faicon-external-link-square:before{content:"\f14c"}.um-faicon-share-square:before{content:"\f14d"}.um-faicon-compass:before{content:"\f14e"}.um-faicon-caret-square-o-down:before,.um-faicon-toggle-down:before{content:"\f150"}.um-faicon-caret-square-o-up:before,.um-faicon-toggle-up:before{content:"\f151"}.um-faicon-caret-square-o-right:before,.um-faicon-toggle-right:before{content:"\f152"}.um-faicon-eur:before,.um-faicon-euro:before{content:"\f153"}.um-faicon-gbp:before{content:"\f154"}.um-faicon-dollar:before,.um-faicon-usd:before{content:"\f155"}.um-faicon-inr:before,.um-faicon-rupee:before{content:"\f156"}.um-faicon-cny:before,.um-faicon-jpy:before,.um-faicon-rmb:before,.um-faicon-yen:before{content:"\f157"}.um-faicon-rouble:before,.um-faicon-rub:before,.um-faicon-ruble:before{content:"\f158"}.um-faicon-krw:before,.um-faicon-won:before{content:"\f159"}.um-faicon-bitcoin:before,.um-faicon-btc:before{content:"\f15a"}.um-faicon-file:before{content:"\f15b"}.um-faicon-file-text:before{content:"\f15c"}.um-faicon-sort-alpha-asc:before{content:"\f15d"}.um-faicon-sort-alpha-desc:before{content:"\f15e"}.um-faicon-sort-amount-asc:before{content:"\f160"}.um-faicon-sort-amount-desc:before{content:"\f161"}.um-faicon-sort-numeric-asc:before{content:"\f162"}.um-faicon-sort-numeric-desc:before{content:"\f163"}.um-faicon-thumbs-up:before{content:"\f164"}.um-faicon-thumbs-down:before{content:"\f165"}.um-faicon-youtube-square:before{content:"\f166"}.um-faicon-youtube:before{content:"\f167"}.um-faicon-xing:before{content:"\f168"}.um-faicon-xing-square:before{content:"\f169"}.um-faicon-youtube-play:before{content:"\f16a"}.um-faicon-dropbox:before{content:"\f16b"}.um-faicon-stack-overflow:before{content:"\f16c"}.um-faicon-instagram:before{content:"\f16d"}.um-faicon-flickr:before{content:"\f16e"}.um-faicon-adn:before{content:"\f170"}.um-faicon-bitbucket:before{content:"\f171"}.um-faicon-bitbucket-square:before{content:"\f172"}.um-faicon-tumblr:before{content:"\f173"}.um-faicon-tumblr-square:before{content:"\f174"}.um-faicon-long-arrow-down:before{content:"\f175"}.um-faicon-long-arrow-up:before{content:"\f176"}.um-faicon-long-arrow-left:before{content:"\f177"}.um-faicon-long-arrow-right:before{content:"\f178"}.um-faicon-apple:before{content:"\f179"}.um-faicon-windows:before{content:"\f17a"}.um-faicon-android:before{content:"\f17b"}.um-faicon-linux:before{content:"\f17c"}.um-faicon-dribbble:before{content:"\f17d"}.um-faicon-skype:before{content:"\f17e"}.um-faicon-foursquare:before{content:"\f180"}.um-faicon-trello:before{content:"\f181"}.um-faicon-female:before{content:"\f182"}.um-faicon-male:before{content:"\f183"}.um-faicon-gittip:before{content:"\f184"}.um-faicon-sun-o:before{content:"\f185"}.um-faicon-moon-o:before{content:"\f186"}.um-faicon-archive:before{content:"\f187"}.um-faicon-bug:before{content:"\f188"}.um-faicon-vk:before{content:"\f189"}.um-faicon-weibo:before{content:"\f18a"}.um-faicon-renren:before{content:"\f18b"}.um-faicon-pagelines:before{content:"\f18c"}.um-faicon-stack-exchange:before{content:"\f18d"}.um-faicon-arrow-circle-o-right:before{content:"\f18e"}.um-faicon-arrow-circle-o-left:before{content:"\f190"}.um-faicon-caret-square-o-left:before,.um-faicon-toggle-left:before{content:"\f191"}.um-faicon-dot-circle-o:before{content:"\f192"}.um-faicon-wheelchair:before{content:"\f193"}.um-faicon-vimeo-square:before{content:"\f194"}.um-faicon-try:before,.um-faicon-turkish-lira:before{content:"\f195"}.um-faicon-plus-square-o:before{content:"\f196"}.um-faicon-space-shuttle:before{content:"\f197"}.um-faicon-slack:before{content:"\f198"}.um-faicon-envelope-square:before{content:"\f199"}.um-faicon-wordpress:before{content:"\f19a"}.um-faicon-openid:before{content:"\f19b"}.um-faicon-bank:before,.um-faicon-institution:before,.um-faicon-university:before{content:"\f19c"}.um-faicon-graduation-cap:before,.um-faicon-mortar-board:before{content:"\f19d"}.um-faicon-yahoo:before{content:"\f19e"}.um-faicon-google:before{content:"\f1a0"}.um-faicon-reddit:before{content:"\f1a1"}.um-faicon-reddit-square:before{content:"\f1a2"}.um-faicon-stumbleupon-circle:before{content:"\f1a3"}.um-faicon-stumbleupon:before{content:"\f1a4"}.um-faicon-delicious:before{content:"\f1a5"}.um-faicon-digg:before{content:"\f1a6"}.um-faicon-pied-piper:before{content:"\f1a7"}.um-faicon-pied-piper-alt:before{content:"\f1a8"}.um-faicon-drupal:before{content:"\f1a9"}.um-faicon-joomla:before{content:"\f1aa"}.um-faicon-language:before{content:"\f1ab"}.um-faicon-fax:before{content:"\f1ac"}.um-faicon-building:before{content:"\f1ad"}.um-faicon-child:before{content:"\f1ae"}.um-faicon-paw:before{content:"\f1b0"}.um-faicon-spoon:before{content:"\f1b1"}.um-faicon-cube:before{content:"\f1b2"}.um-faicon-cubes:before{content:"\f1b3"}.um-faicon-behance:before{content:"\f1b4"}.um-faicon-behance-square:before{content:"\f1b5"}.um-faicon-steam:before{content:"\f1b6"}.um-faicon-steam-square:before{content:"\f1b7"}.um-faicon-recycle:before{content:"\f1b8"}.um-faicon-automobile:before,.um-faicon-car:before{content:"\f1b9"}.um-faicon-cab:before,.um-faicon-taxi:before{content:"\f1ba"}.um-faicon-tree:before{content:"\f1bb"}.um-faicon-spotify:before{content:"\f1bc"}.um-faicon-deviantart:before{content:"\f1bd"}.um-faicon-soundcloud:before{content:"\f1be"}.um-faicon-database:before{content:"\f1c0"}.um-faicon-file-pdf-o:before{content:"\f1c1"}.um-faicon-file-word-o:before{content:"\f1c2"}.um-faicon-file-excel-o:before{content:"\f1c3"}.um-faicon-file-powerpoint-o:before{content:"\f1c4"}.um-faicon-file-image-o:before,.um-faicon-file-photo-o:before,.um-faicon-file-picture-o:before{content:"\f1c5"}.um-faicon-file-archive-o:before,.um-faicon-file-zip-o:before{content:"\f1c6"}.um-faicon-file-audio-o:before,.um-faicon-file-sound-o:before{content:"\f1c7"}.um-faicon-file-movie-o:before,.um-faicon-file-video-o:before{content:"\f1c8"}.um-faicon-file-code-o:before{content:"\f1c9"}.um-faicon-vine:before{content:"\f1ca"}.um-faicon-codepen:before{content:"\f1cb"}.um-faicon-jsfiddle:before{content:"\f1cc"}.um-faicon-life-bouy:before,.um-faicon-life-buoy:before,.um-faicon-life-ring:before,.um-faicon-life-saver:before,.um-faicon-support:before{content:"\f1cd"}.um-faicon-circle-o-notch:before{content:"\f1ce"}.um-faicon-ra:before,.um-faicon-rebel:before{content:"\f1d0"}.um-faicon-empire:before,.um-faicon-ge:before{content:"\f1d1"}.um-faicon-git-square:before{content:"\f1d2"}.um-faicon-git:before{content:"\f1d3"}.um-faicon-hacker-news:before{content:"\f1d4"}.um-faicon-tencent-weibo:before{content:"\f1d5"}.um-faicon-qq:before{content:"\f1d6"}.um-faicon-wechat:before,.um-faicon-weixin:before{content:"\f1d7"}.um-faicon-paper-plane:before,.um-faicon-send:before{content:"\f1d8"}.um-faicon-paper-plane-o:before,.um-faicon-send-o:before{content:"\f1d9"}.um-faicon-history:before{content:"\f1da"}.um-faicon-circle-thin:before{content:"\f1db"}.um-faicon-header:before{content:"\f1dc"}.um-faicon-paragraph:before{content:"\f1dd"}.um-faicon-sliders:before{content:"\f1de"}.um-faicon-share-alt:before{content:"\f1e0"}.um-faicon-share-alt-square:before{content:"\f1e1"}.um-faicon-bomb:before{content:"\f1e2"}.um-faicon-futbol-o:before,.um-faicon-soccer-ball-o:before{content:"\f1e3"}.um-faicon-tty:before{content:"\f1e4"}.um-faicon-binoculars:before{content:"\f1e5"}.um-faicon-plug:before{content:"\f1e6"}.um-faicon-slideshare:before{content:"\f1e7"}.um-faicon-twitch:before{content:"\f1e8"}.um-faicon-yelp:before{content:"\f1e9"}.um-faicon-newspaper-o:before{content:"\f1ea"}.um-faicon-wifi:before{content:"\f1eb"}.um-faicon-calculator:before{content:"\f1ec"}.um-faicon-paypal:before{content:"\f1ed"}.um-faicon-google-wallet:before{content:"\f1ee"}.um-faicon-cc-visa:before{content:"\f1f0"}.um-faicon-cc-mastercard:before{content:"\f1f1"}.um-faicon-cc-discover:before{content:"\f1f2"}.um-faicon-cc-amex:before{content:"\f1f3"}.um-faicon-cc-paypal:before{content:"\f1f4"}.um-faicon-cc-stripe:before{content:"\f1f5"}.um-faicon-bell-slash:before{content:"\f1f6"}.um-faicon-bell-slash-o:before{content:"\f1f7"}.um-faicon-trash:before{content:"\f1f8"}.um-faicon-copyright:before{content:"\f1f9"}.um-faicon-at:before{content:"\f1fa"}.um-faicon-eyedropper:before{content:"\f1fb"}.um-faicon-paint-brush:before{content:"\f1fc"}.um-faicon-birthday-cake:before{content:"\f1fd"}.um-faicon-area-chart:before{content:"\f1fe"}.um-faicon-pie-chart:before{content:"\f200"}.um-faicon-line-chart:before{content:"\f201"}.um-faicon-lastfm:before{content:"\f202"}.um-faicon-lastfm-square:before{content:"\f203"}.um-faicon-toggle-off:before{content:"\f204"}.um-faicon-toggle-on:before{content:"\f205"}.um-faicon-bicycle:before{content:"\f206"}.um-faicon-bus:before{content:"\f207"}.um-faicon-ioxhost:before{content:"\f208"}.um-faicon-angellist:before{content:"\f209"}.um-faicon-cc:before{content:"\f20a"}.um-faicon-ils:before,.um-faicon-shekel:before,.um-faicon-sheqel:before{content:"\f20b"}.um-faicon-meanpath:before{content:"\f20c"}@font-face{font-family:Ionicons;src:url(../font/ionicons.eot?v=2.0.0);src:url(../font/ionicons.eot?v=2.0.0#iefix) format("embedded-opentype"),url(../font/ionicons.woff?v=2.0.0) format("woff"),url(../font/ionicons.ttf?v=2.0.0) format("truetype"),url(../font/ionicons.svg?v=2.0.0#Ionicons) format("svg");font-weight:400;font-style:normal}[class*=" um-icon-"]:before,[class^=um-icon-]:before{font-family:Ionicons!important;font-style:normal!important;font-weight:400!important;font-variant:normal!important;text-transform:none!important;speak:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.um-icon-alert:before{content:"\f101"}.um-icon-alert-circled:before{content:"\f100"}.um-icon-android-add:before{content:"\f2c7"}.um-icon-android-add-circle:before{content:"\f359"}.um-icon-android-alarm-clock:before{content:"\f35a"}.um-icon-android-alert:before{content:"\f35b"}.um-icon-android-apps:before{content:"\f35c"}.um-icon-android-archive:before{content:"\f2c9"}.um-icon-android-arrow-back:before{content:"\f2ca"}.um-icon-android-arrow-down:before{content:"\f35d"}.um-icon-android-arrow-dropdown:before{content:"\f35f"}.um-icon-android-arrow-dropdown-circle:before{content:"\f35e"}.um-icon-android-arrow-dropleft:before{content:"\f361"}.um-icon-android-arrow-dropleft-circle:before{content:"\f360"}.um-icon-android-arrow-dropright:before{content:"\f363"}.um-icon-android-arrow-dropright-circle:before{content:"\f362"}.um-icon-android-arrow-dropup:before{content:"\f365"}.um-icon-android-arrow-dropup-circle:before{content:"\f364"}.um-icon-android-arrow-forward:before{content:"\f30f"}.um-icon-android-arrow-up:before{content:"\f366"}.um-icon-android-attach:before{content:"\f367"}.um-icon-android-bar:before{content:"\f368"}.um-icon-android-bicycle:before{content:"\f369"}.um-icon-android-boat:before{content:"\f36a"}.um-icon-android-bookmark:before{content:"\f36b"}.um-icon-android-bulb:before{content:"\f36c"}.um-icon-android-bus:before{content:"\f36d"}.um-icon-android-calendar:before{content:"\f2d1"}.um-icon-android-call:before{content:"\f2d2"}.um-icon-android-camera:before{content:"\f2d3"}.um-icon-android-cancel:before{content:"\f36e"}.um-icon-android-car:before{content:"\f36f"}.um-icon-android-cart:before{content:"\f370"}.um-icon-android-chat:before{content:"\f2d4"}.um-icon-android-checkbox:before{content:"\f374"}.um-icon-android-checkbox-blank:before{content:"\f371"}.um-icon-android-checkbox-outline:before{content:"\f373"}.um-icon-android-checkbox-outline-blank:before{content:"\f372"}.um-icon-android-checkmark-circle:before{content:"\f375"}.um-icon-android-clipboard:before{content:"\f376"}.um-icon-android-close:before{content:"\f2d7"}.um-icon-android-cloud:before{content:"\f37a"}.um-icon-android-cloud-circle:before{content:"\f377"}.um-icon-android-cloud-done:before{content:"\f378"}.um-icon-android-cloud-outline:before{content:"\f379"}.um-icon-android-color-palette:before{content:"\f37b"}.um-icon-android-compass:before{content:"\f37c"}.um-icon-android-contact:before{content:"\f2d8"}.um-icon-android-contacts:before{content:"\f2d9"}.um-icon-android-contract:before{content:"\f37d"}.um-icon-android-create:before{content:"\f37e"}.um-icon-android-delete:before{content:"\f37f"}.um-icon-android-desktop:before{content:"\f380"}.um-icon-android-document:before{content:"\f381"}.um-icon-android-done:before{content:"\f383"}.um-icon-android-done-all:before{content:"\f382"}.um-icon-android-download:before{content:"\f2dd"}.um-icon-android-drafts:before{content:"\f384"}.um-icon-android-exit:before{content:"\f385"}.um-icon-android-expand:before{content:"\f386"}.um-icon-android-favorite:before{content:"\f388"}.um-icon-android-favorite-outline:before{content:"\f387"}.um-icon-android-film:before{content:"\f389"}.um-icon-android-folder:before{content:"\f2e0"}.um-icon-android-folder-open:before{content:"\f38a"}.um-icon-android-funnel:before{content:"\f38b"}.um-icon-android-globe:before{content:"\f38c"}.um-icon-android-hand:before{content:"\f2e3"}.um-icon-android-hangout:before{content:"\f38d"}.um-icon-android-happy:before{content:"\f38e"}.um-icon-android-home:before{content:"\f38f"}.um-icon-android-image:before{content:"\f2e4"}.um-icon-android-laptop:before{content:"\f390"}.um-icon-android-list:before{content:"\f391"}.um-icon-android-locate:before{content:"\f2e9"}.um-icon-android-lock:before{content:"\f392"}.um-icon-android-mail:before{content:"\f2eb"}.um-icon-android-map:before{content:"\f393"}.um-icon-android-menu:before{content:"\f394"}.um-icon-android-microphone:before{content:"\f2ec"}.um-icon-android-microphone-off:before{content:"\f395"}.um-icon-android-more-horizontal:before{content:"\f396"}.um-icon-android-more-vertical:before{content:"\f397"}.um-icon-android-navigate:before{content:"\f398"}.um-icon-android-notifications:before{content:"\f39b"}.um-icon-android-notifications-none:before{content:"\f399"}.um-icon-android-notifications-off:before{content:"\f39a"}.um-icon-android-open:before{content:"\f39c"}.um-icon-android-options:before{content:"\f39d"}.um-icon-android-people:before{content:"\f39e"}.um-icon-android-person:before{content:"\f3a0"}.um-icon-android-person-add:before{content:"\f39f"}.um-icon-android-phone-landscape:before{content:"\f3a1"}.um-icon-android-phone-portrait:before{content:"\f3a2"}.um-icon-android-pin:before{content:"\f3a3"}.um-icon-android-plane:before{content:"\f3a4"}.um-icon-android-playstore:before{content:"\f2f0"}.um-icon-android-print:before{content:"\f3a5"}.um-icon-android-radio-button-off:before{content:"\f3a6"}.um-icon-android-radio-button-on:before{content:"\f3a7"}.um-icon-android-refresh:before{content:"\f3a8"}.um-icon-android-remove:before{content:"\f2f4"}.um-icon-android-remove-circle:before{content:"\f3a9"}.um-icon-android-restaurant:before{content:"\f3aa"}.um-icon-android-sad:before{content:"\f3ab"}.um-icon-android-search:before{content:"\f2f5"}.um-icon-android-send:before{content:"\f2f6"}.um-icon-android-settings:before{content:"\f2f7"}.um-icon-android-share:before{content:"\f2f8"}.um-icon-android-share-alt:before{content:"\f3ac"}.um-icon-android-star:before{content:"\f2fc"}.um-icon-android-star-half:before{content:"\f3ad"}.um-icon-android-star-outline:before{content:"\f3ae"}.um-icon-android-stopwatch:before{content:"\f2fd"}.um-icon-android-subway:before{content:"\f3af"}.um-icon-android-sunny:before{content:"\f3b0"}.um-icon-android-sync:before{content:"\f3b1"}.um-icon-android-textsms:before{content:"\f3b2"}.um-icon-android-time:before{content:"\f3b3"}.um-icon-android-train:before{content:"\f3b4"}.um-icon-android-unlock:before{content:"\f3b5"}.um-icon-android-upload:before{content:"\f3b6"}.um-icon-android-volume-down:before{content:"\f3b7"}.um-icon-android-volume-mute:before{content:"\f3b8"}.um-icon-android-volume-off:before{content:"\f3b9"}.um-icon-android-volume-up:before{content:"\f3ba"}.um-icon-android-walk:before{content:"\f3bb"}.um-icon-android-warning:before{content:"\f3bc"}.um-icon-android-watch:before{content:"\f3bd"}.um-icon-android-wifi:before{content:"\f305"}.um-icon-aperture:before{content:"\f313"}.um-icon-archive:before{content:"\f102"}.um-icon-arrow-down-a:before{content:"\f103"}.um-icon-arrow-down-b:before{content:"\f104"}.um-icon-arrow-down-c:before{content:"\f105"}.um-icon-arrow-expand:before{content:"\f25e"}.um-icon-arrow-graph-down-left:before{content:"\f25f"}.um-icon-arrow-graph-down-right:before{content:"\f260"}.um-icon-arrow-graph-up-left:before{content:"\f261"}.um-icon-arrow-graph-up-right:before{content:"\f262"}.um-icon-arrow-left-a:before{content:"\f106"}.um-icon-arrow-left-b:before{content:"\f107"}.um-icon-arrow-left-c:before{content:"\f108"}.um-icon-arrow-move:before{content:"\f263"}.um-icon-arrow-resize:before{content:"\f264"}.um-icon-arrow-return-left:before{content:"\f265"}.um-icon-arrow-return-right:before{content:"\f266"}.um-icon-arrow-right-a:before{content:"\f109"}.um-icon-arrow-right-b:before{content:"\f10a"}.um-icon-arrow-right-c:before{content:"\f10b"}.um-icon-arrow-shrink:before{content:"\f267"}.um-icon-arrow-swap:before{content:"\f268"}.um-icon-arrow-up-a:before{content:"\f10c"}.um-icon-arrow-up-b:before{content:"\f10d"}.um-icon-arrow-up-c:before{content:"\f10e"}.um-icon-asterisk:before{content:"\f314"}.um-icon-at:before{content:"\f10f"}.um-icon-backspace:before{content:"\f3bf"}.um-icon-backspace-outline:before{content:"\f3be"}.um-icon-bag:before{content:"\f110"}.um-icon-battery-charging:before{content:"\f111"}.um-icon-battery-empty:before{content:"\f112"}.um-icon-battery-full:before{content:"\f113"}.um-icon-battery-half:before{content:"\f114"}.um-icon-battery-low:before{content:"\f115"}.um-icon-beaker:before{content:"\f269"}.um-icon-beer:before{content:"\f26a"}.um-icon-bluetooth:before{content:"\f116"}.um-icon-bonfire:before{content:"\f315"}.um-icon-bookmark:before{content:"\f26b"}.um-icon-bowtie:before{content:"\f3c0"}.um-icon-briefcase:before{content:"\f26c"}.um-icon-bug:before{content:"\f2be"}.um-icon-calculator:before{content:"\f26d"}.um-icon-calendar:before{content:"\f117"}.um-icon-camera:before{content:"\f118"}.um-icon-card:before{content:"\f119"}.um-icon-cash:before{content:"\f316"}.um-icon-chatbox:before{content:"\f11b"}.um-icon-chatbox-working:before{content:"\f11a"}.um-icon-chatboxes:before{content:"\f11c"}.um-icon-chatbubble:before{content:"\f11e"}.um-icon-chatbubble-working:before{content:"\f11d"}.um-icon-chatbubbles:before{content:"\f11f"}.um-icon-checkmark:before{content:"\f122"}.um-icon-checkmark-circled:before{content:"\f120"}.um-icon-checkmark-round:before{content:"\f121"}.um-icon-chevron-down:before{content:"\f123"}.um-icon-chevron-left:before{content:"\f124"}.um-icon-chevron-right:before{content:"\f125"}.um-icon-chevron-up:before{content:"\f126"}.um-icon-clipboard:before{content:"\f127"}.um-icon-clock:before{content:"\f26e"}.um-icon-close:before{content:"\f12a"}.um-icon-close-circled:before{content:"\f128"}.um-icon-close-round:before{content:"\f129"}.um-icon-closed-captioning:before{content:"\f317"}.um-icon-cloud:before{content:"\f12b"}.um-icon-code:before{content:"\f271"}.um-icon-code-download:before{content:"\f26f"}.um-icon-code-working:before{content:"\f270"}.um-icon-coffee:before{content:"\f272"}.um-icon-compass:before{content:"\f273"}.um-icon-compose:before{content:"\f12c"}.um-icon-connection-bars:before{content:"\f274"}.um-icon-contrast:before{content:"\f275"}.um-icon-crop:before{content:"\f3c1"}.um-icon-cube:before{content:"\f318"}.um-icon-disc:before{content:"\f12d"}.um-icon-document:before{content:"\f12f"}.um-icon-document-text:before{content:"\f12e"}.um-icon-drag:before{content:"\f130"}.um-icon-earth:before{content:"\f276"}.um-icon-easel:before{content:"\f3c2"}.um-icon-edit:before{content:"\f2bf"}.um-icon-egg:before{content:"\f277"}.um-icon-eject:before{content:"\f131"}.um-icon-email:before{content:"\f132"}.um-icon-email-unread:before{content:"\f3c3"}.um-icon-erlenmeyer-flask:before{content:"\f3c5"}.um-icon-erlenmeyer-flask-bubbles:before{content:"\f3c4"}.um-icon-eye:before{content:"\f133"}.um-icon-eye-disabled:before{content:"\f306"}.um-icon-female:before{content:"\f278"}.um-icon-filing:before{content:"\f134"}.um-icon-film-marker:before{content:"\f135"}.um-icon-fireball:before{content:"\f319"}.um-icon-flag:before{content:"\f279"}.um-icon-flame:before{content:"\f31a"}.um-icon-flash:before{content:"\f137"}.um-icon-flash-off:before{content:"\f136"}.um-icon-folder:before{content:"\f139"}.um-icon-fork:before{content:"\f27a"}.um-icon-fork-repo:before{content:"\f2c0"}.um-icon-forward:before{content:"\f13a"}.um-icon-funnel:before{content:"\f31b"}.um-icon-gear-a:before{content:"\f13d"}.um-icon-gear-b:before{content:"\f13e"}.um-icon-grid:before{content:"\f13f"}.um-icon-hammer:before{content:"\f27b"}.um-icon-happy:before{content:"\f31c"}.um-icon-happy-outline:before{content:"\f3c6"}.um-icon-headphone:before{content:"\f140"}.um-icon-heart:before{content:"\f141"}.um-icon-heart-broken:before{content:"\f31d"}.um-icon-help:before{content:"\f143"}.um-icon-help-buoy:before{content:"\f27c"}.um-icon-help-circled:before{content:"\f142"}.um-icon-home:before{content:"\f144"}.um-icon-icecream:before{content:"\f27d"}.um-icon-image:before{content:"\f147"}.um-icon-images:before{content:"\f148"}.um-icon-information:before{content:"\f14a"}.um-icon-information-circled:before{content:"\f149"}.um-icon-ionic:before{content:"\f14b"}.um-icon-ios-alarm:before{content:"\f3c8"}.um-icon-ios-alarm-outline:before{content:"\f3c7"}.um-icon-ios-albums:before{content:"\f3ca"}.um-icon-ios-albums-outline:before{content:"\f3c9"}.um-icon-ios-americanfootball:before{content:"\f3cc"}.um-icon-ios-americanfootball-outline:before{content:"\f3cb"}.um-icon-ios-analytics:before{content:"\f3ce"}.um-icon-ios-analytics-outline:before{content:"\f3cd"}.um-icon-ios-arrow-back:before{content:"\f3cf"}.um-icon-ios-arrow-down:before{content:"\f3d0"}.um-icon-ios-arrow-forward:before{content:"\f3d1"}.um-icon-ios-arrow-left:before{content:"\f3d2"}.um-icon-ios-arrow-right:before{content:"\f3d3"}.um-icon-ios-arrow-thin-down:before{content:"\f3d4"}.um-icon-ios-arrow-thin-left:before{content:"\f3d5"}.um-icon-ios-arrow-thin-right:before{content:"\f3d6"}.um-icon-ios-arrow-thin-up:before{content:"\f3d7"}.um-icon-ios-arrow-up:before{content:"\f3d8"}.um-icon-ios-at:before{content:"\f3da"}.um-icon-ios-at-outline:before{content:"\f3d9"}.um-icon-ios-barcode:before{content:"\f3dc"}.um-icon-ios-barcode-outline:before{content:"\f3db"}.um-icon-ios-baseball:before{content:"\f3de"}.um-icon-ios-baseball-outline:before{content:"\f3dd"}.um-icon-ios-basketball:before{content:"\f3e0"}.um-icon-ios-basketball-outline:before{content:"\f3df"}.um-icon-ios-bell:before{content:"\f3e2"}.um-icon-ios-bell-outline:before{content:"\f3e1"}.um-icon-ios-body:before{content:"\f3e4"}.um-icon-ios-body-outline:before{content:"\f3e3"}.um-icon-ios-bolt:before{content:"\f3e6"}.um-icon-ios-bolt-outline:before{content:"\f3e5"}.um-icon-ios-book:before{content:"\f3e8"}.um-icon-ios-book-outline:before{content:"\f3e7"}.um-icon-ios-bookmarks:before{content:"\f3ea"}.um-icon-ios-bookmarks-outline:before{content:"\f3e9"}.um-icon-ios-box:before{content:"\f3ec"}.um-icon-ios-box-outline:before{content:"\f3eb"}.um-icon-ios-briefcase:before{content:"\f3ee"}.um-icon-ios-briefcase-outline:before{content:"\f3ed"}.um-icon-ios-browsers:before{content:"\f3f0"}.um-icon-ios-browsers-outline:before{content:"\f3ef"}.um-icon-ios-calculator:before{content:"\f3f2"}.um-icon-ios-calculator-outline:before{content:"\f3f1"}.um-icon-ios-calendar:before{content:"\f3f4"}.um-icon-ios-calendar-outline:before{content:"\f3f3"}.um-icon-ios-camera:before{content:"\f3f6"}.um-icon-ios-camera-outline:before{content:"\f3f5"}.um-icon-ios-cart:before{content:"\f3f8"}.um-icon-ios-cart-outline:before{content:"\f3f7"}.um-icon-ios-chatboxes:before{content:"\f3fa"}.um-icon-ios-chatboxes-outline:before{content:"\f3f9"}.um-icon-ios-chatbubble:before{content:"\f3fc"}.um-icon-ios-chatbubble-outline:before{content:"\f3fb"}.um-icon-ios-checkmark:before{content:"\f3ff"}.um-icon-ios-checkmark-empty:before{content:"\f3fd"}.um-icon-ios-checkmark-outline:before{content:"\f3fe"}.um-icon-ios-circle-filled:before{content:"\f400"}.um-icon-ios-circle-outline:before{content:"\f401"}.um-icon-ios-clock:before{content:"\f403"}.um-icon-ios-clock-outline:before{content:"\f402"}.um-icon-ios-close:before{content:"\f406"}.um-icon-ios-close-empty:before{content:"\f404"}.um-icon-ios-close-outline:before{content:"\f405"}.um-icon-ios-cloud:before{content:"\f40c"}.um-icon-ios-cloud-download:before{content:"\f408"}.um-icon-ios-cloud-download-outline:before{content:"\f407"}.um-icon-ios-cloud-outline:before{content:"\f409"}.um-icon-ios-cloud-upload:before{content:"\f40b"}.um-icon-ios-cloud-upload-outline:before{content:"\f40a"}.um-icon-ios-cloudy:before{content:"\f410"}.um-icon-ios-cloudy-night:before{content:"\f40e"}.um-icon-ios-cloudy-night-outline:before{content:"\f40d"}.um-icon-ios-cloudy-outline:before{content:"\f40f"}.um-icon-ios-cog:before{content:"\f412"}.um-icon-ios-cog-outline:before{content:"\f411"}.um-icon-ios-color-filter:before{content:"\f414"}.um-icon-ios-color-filter-outline:before{content:"\f413"}.um-icon-ios-color-wand:before{content:"\f416"}.um-icon-ios-color-wand-outline:before{content:"\f415"}.um-icon-ios-compose:before{content:"\f418"}.um-icon-ios-compose-outline:before{content:"\f417"}.um-icon-ios-contact:before{content:"\f41a"}.um-icon-ios-contact-outline:before{content:"\f419"}.um-icon-ios-copy:before{content:"\f41c"}.um-icon-ios-copy-outline:before{content:"\f41b"}.um-icon-ios-crop:before{content:"\f41e"}.um-icon-ios-crop-strong:before{content:"\f41d"}.um-icon-ios-download:before{content:"\f420"}.um-icon-ios-download-outline:before{content:"\f41f"}.um-icon-ios-drag:before{content:"\f421"}.um-icon-ios-email:before{content:"\f423"}.um-icon-ios-email-outline:before{content:"\f422"}.um-icon-ios-eye:before{content:"\f425"}.um-icon-ios-eye-outline:before{content:"\f424"}.um-icon-ios-fastforward:before{content:"\f427"}.um-icon-ios-fastforward-outline:before{content:"\f426"}.um-icon-ios-filing:before{content:"\f429"}.um-icon-ios-filing-outline:before{content:"\f428"}.um-icon-ios-film:before{content:"\f42b"}.um-icon-ios-film-outline:before{content:"\f42a"}.um-icon-ios-flag:before{content:"\f42d"}.um-icon-ios-flag-outline:before{content:"\f42c"}.um-icon-ios-flame:before{content:"\f42f"}.um-icon-ios-flame-outline:before{content:"\f42e"}.um-icon-ios-flask:before{content:"\f431"}.um-icon-ios-flask-outline:before{content:"\f430"}.um-icon-ios-flower:before{content:"\f433"}.um-icon-ios-flower-outline:before{content:"\f432"}.um-icon-ios-folder:before{content:"\f435"}.um-icon-ios-folder-outline:before{content:"\f434"}.um-icon-ios-football:before{content:"\f437"}.um-icon-ios-football-outline:before{content:"\f436"}.um-icon-ios-game-controller-a:before{content:"\f439"}.um-icon-ios-game-controller-a-outline:before{content:"\f438"}.um-icon-ios-game-controller-b:before{content:"\f43b"}.um-icon-ios-game-controller-b-outline:before{content:"\f43a"}.um-icon-ios-gear:before{content:"\f43d"}.um-icon-ios-gear-outline:before{content:"\f43c"}.um-icon-ios-glasses:before{content:"\f43f"}.um-icon-ios-glasses-outline:before{content:"\f43e"}.um-icon-ios-grid-view:before{content:"\f441"}.um-icon-ios-grid-view-outline:before{content:"\f440"}.um-icon-ios-heart:before{content:"\f443"}.um-icon-ios-heart-outline:before{content:"\f442"}.um-icon-ios-help:before{content:"\f446"}.um-icon-ios-help-empty:before{content:"\f444"}.um-icon-ios-help-outline:before{content:"\f445"}.um-icon-ios-home:before{content:"\f448"}.um-icon-ios-home-outline:before{content:"\f447"}.um-icon-ios-infinite:before{content:"\f44a"}.um-icon-ios-infinite-outline:before{content:"\f449"}.um-icon-ios-information:before{content:"\f44d"}.um-icon-ios-information-empty:before{content:"\f44b"}.um-icon-ios-information-outline:before{content:"\f44c"}.um-icon-ios-ionic-outline:before{content:"\f44e"}.um-icon-ios-keypad:before{content:"\f450"}.um-icon-ios-keypad-outline:before{content:"\f44f"}.um-icon-ios-lightbulb:before{content:"\f452"}.um-icon-ios-lightbulb-outline:before{content:"\f451"}.um-icon-ios-list:before{content:"\f454"}.um-icon-ios-list-outline:before{content:"\f453"}.um-icon-ios-location:before{content:"\f456"}.um-icon-ios-location-outline:before{content:"\f455"}.um-icon-ios-locked:before{content:"\f458"}.um-icon-ios-locked-outline:before{content:"\f457"}.um-icon-ios-loop:before{content:"\f45a"}.um-icon-ios-loop-strong:before{content:"\f459"}.um-icon-ios-medical:before{content:"\f45c"}.um-icon-ios-medical-outline:before{content:"\f45b"}.um-icon-ios-medkit:before{content:"\f45e"}.um-icon-ios-medkit-outline:before{content:"\f45d"}.um-icon-ios-mic:before{content:"\f461"}.um-icon-ios-mic-off:before{content:"\f45f"}.um-icon-ios-mic-outline:before{content:"\f460"}.um-icon-ios-minus:before{content:"\f464"}.um-icon-ios-minus-empty:before{content:"\f462"}.um-icon-ios-minus-outline:before{content:"\f463"}.um-icon-ios-monitor:before{content:"\f466"}.um-icon-ios-monitor-outline:before{content:"\f465"}.um-icon-ios-moon:before{content:"\f468"}.um-icon-ios-moon-outline:before{content:"\f467"}.um-icon-ios-more:before{content:"\f46a"}.um-icon-ios-more-outline:before{content:"\f469"}.um-icon-ios-musical-note:before{content:"\f46b"}.um-icon-ios-musical-notes:before{content:"\f46c"}.um-icon-ios-navigate:before{content:"\f46e"}.um-icon-ios-navigate-outline:before{content:"\f46d"}.um-icon-ios-nutrition:before{content:"\f470"}.um-icon-ios-nutrition-outline:before{content:"\f46f"}.um-icon-ios-paper:before{content:"\f472"}.um-icon-ios-paper-outline:before{content:"\f471"}.um-icon-ios-paperplane:before{content:"\f474"}.um-icon-ios-paperplane-outline:before{content:"\f473"}.um-icon-ios-partlysunny:before{content:"\f476"}.um-icon-ios-partlysunny-outline:before{content:"\f475"}.um-icon-ios-pause:before{content:"\f478"}.um-icon-ios-pause-outline:before{content:"\f477"}.um-icon-ios-paw:before{content:"\f47a"}.um-icon-ios-paw-outline:before{content:"\f479"}.um-icon-ios-people:before{content:"\f47c"}.um-icon-ios-people-outline:before{content:"\f47b"}.um-icon-ios-person:before{content:"\f47e"}.um-icon-ios-person-outline:before{content:"\f47d"}.um-icon-ios-personadd:before{content:"\f480"}.um-icon-ios-personadd-outline:before{content:"\f47f"}.um-icon-ios-photos:before{content:"\f482"}.um-icon-ios-photos-outline:before{content:"\f481"}.um-icon-ios-pie:before{content:"\f484"}.um-icon-ios-pie-outline:before{content:"\f483"}.um-icon-ios-pint:before{content:"\f486"}.um-icon-ios-pint-outline:before{content:"\f485"}.um-icon-ios-play:before{content:"\f488"}.um-icon-ios-play-outline:before{content:"\f487"}.um-icon-ios-plus:before{content:"\f48b"}.um-icon-ios-plus-empty:before{content:"\f489"}.um-icon-ios-plus-outline:before{content:"\f48a"}.um-icon-ios-pricetag:before{content:"\f48d"}.um-icon-ios-pricetag-outline:before{content:"\f48c"}.um-icon-ios-pricetags:before{content:"\f48f"}.um-icon-ios-pricetags-outline:before{content:"\f48e"}.um-icon-ios-printer:before{content:"\f491"}.um-icon-ios-printer-outline:before{content:"\f490"}.um-icon-ios-pulse:before{content:"\f493"}.um-icon-ios-pulse-strong:before{content:"\f492"}.um-icon-ios-rainy:before{content:"\f495"}.um-icon-ios-rainy-outline:before{content:"\f494"}.um-icon-ios-recording:before{content:"\f497"}.um-icon-ios-recording-outline:before{content:"\f496"}.um-icon-ios-redo:before{content:"\f499"}.um-icon-ios-redo-outline:before{content:"\f498"}.um-icon-ios-refresh:before{content:"\f49c"}.um-icon-ios-refresh-empty:before{content:"\f49a"}.um-icon-ios-refresh-outline:before{content:"\f49b"}.um-icon-ios-reload:before{content:"\f49d"}.um-icon-ios-reverse-camera:before{content:"\f49f"}.um-icon-ios-reverse-camera-outline:before{content:"\f49e"}.um-icon-ios-rewind:before{content:"\f4a1"}.um-icon-ios-rewind-outline:before{content:"\f4a0"}.um-icon-ios-rose:before{content:"\f4a3"}.um-icon-ios-rose-outline:before{content:"\f4a2"}.um-icon-ios-search:before{content:"\f4a5"}.um-icon-ios-search-strong:before{content:"\f4a4"}.um-icon-ios-settings:before{content:"\f4a7"}.um-icon-ios-settings-strong:before{content:"\f4a6"}.um-icon-ios-shuffle:before{content:"\f4a9"}.um-icon-ios-shuffle-strong:before{content:"\f4a8"}.um-icon-ios-skipbackward:before{content:"\f4ab"}.um-icon-ios-skipbackward-outline:before{content:"\f4aa"}.um-icon-ios-skipforward:before{content:"\f4ad"}.um-icon-ios-skipforward-outline:before{content:"\f4ac"}.um-icon-ios-snowy:before{content:"\f4ae"}.um-icon-ios-speedometer:before{content:"\f4b0"}.um-icon-ios-speedometer-outline:before{content:"\f4af"}.um-icon-ios-star:before{content:"\f4b3"}.um-icon-ios-star-half:before{content:"\f4b1"}.um-icon-ios-star-outline:before{content:"\f4b2"}.um-icon-ios-stopwatch:before{content:"\f4b5"}.um-icon-ios-stopwatch-outline:before{content:"\f4b4"}.um-icon-ios-sunny:before{content:"\f4b7"}.um-icon-ios-sunny-outline:before{content:"\f4b6"}.um-icon-ios-telephone:before{content:"\f4b9"}.um-icon-ios-telephone-outline:before{content:"\f4b8"}.um-icon-ios-tennisball:before{content:"\f4bb"}.um-icon-ios-tennisball-outline:before{content:"\f4ba"}.um-icon-ios-thunderstorm:before{content:"\f4bd"}.um-icon-ios-thunderstorm-outline:before{content:"\f4bc"}.um-icon-ios-time:before{content:"\f4bf"}.um-icon-ios-time-outline:before{content:"\f4be"}.um-icon-ios-timer:before{content:"\f4c1"}.um-icon-ios-timer-outline:before{content:"\f4c0"}.um-icon-ios-toggle:before{content:"\f4c3"}.um-icon-ios-toggle-outline:before{content:"\f4c2"}.um-icon-ios-trash:before{content:"\f4c5"}.um-icon-ios-trash-outline:before{content:"\f4c4"}.um-icon-ios-undo:before{content:"\f4c7"}.um-icon-ios-undo-outline:before{content:"\f4c6"}.um-icon-ios-unlocked:before{content:"\f4c9"}.um-icon-ios-unlocked-outline:before{content:"\f4c8"}.um-icon-ios-upload:before{content:"\f4cb"}.um-icon-ios-upload-outline:before{content:"\f4ca"}.um-icon-ios-videocam:before{content:"\f4cd"}.um-icon-ios-videocam-outline:before{content:"\f4cc"}.um-icon-ios-volume-high:before{content:"\f4ce"}.um-icon-ios-volume-low:before{content:"\f4cf"}.um-icon-ios-wineglass:before{content:"\f4d1"}.um-icon-ios-wineglass-outline:before{content:"\f4d0"}.um-icon-ios-world:before{content:"\f4d3"}.um-icon-ios-world-outline:before{content:"\f4d2"}.um-icon-ipad:before{content:"\f1f9"}.um-icon-iphone:before{content:"\f1fa"}.um-icon-ipod:before{content:"\f1fb"}.um-icon-jet:before{content:"\f295"}.um-icon-key:before{content:"\f296"}.um-icon-knife:before{content:"\f297"}.um-icon-laptop:before{content:"\f1fc"}.um-icon-leaf:before{content:"\f1fd"}.um-icon-levels:before{content:"\f298"}.um-icon-lightbulb:before{content:"\f299"}.um-icon-link:before{content:"\f1fe"}.um-icon-load-a:before{content:"\f29a"}.um-icon-load-b:before{content:"\f29b"}.um-icon-load-c:before{content:"\f29c"}.um-icon-load-d:before{content:"\f29d"}.um-icon-location:before{content:"\f1ff"}.um-icon-lock-combination:before{content:"\f4d4"}.um-icon-locked:before{content:"\f200"}.um-icon-log-in:before{content:"\f29e"}.um-icon-log-out:before{content:"\f29f"}.um-icon-loop:before{content:"\f201"}.um-icon-magnet:before{content:"\f2a0"}.um-icon-male:before{content:"\f2a1"}.um-icon-man:before{content:"\f202"}.um-icon-map:before{content:"\f203"}.um-icon-medkit:before{content:"\f2a2"}.um-icon-merge:before{content:"\f33f"}.um-icon-mic-a:before{content:"\f204"}.um-icon-mic-b:before{content:"\f205"}.um-icon-mic-c:before{content:"\f206"}.um-icon-minus:before{content:"\f209"}.um-icon-minus-circled:before{content:"\f207"}.um-icon-minus-round:before{content:"\f208"}.um-icon-model-s:before{content:"\f2c1"}.um-icon-monitor:before{content:"\f20a"}.um-icon-more:before{content:"\f20b"}.um-icon-mouse:before{content:"\f340"}.um-icon-music-note:before{content:"\f20c"}.um-icon-navicon:before{content:"\f20e"}.um-icon-navicon-round:before{content:"\f20d"}.um-icon-navigate:before{content:"\f2a3"}.um-icon-network:before{content:"\f341"}.um-icon-no-smoking:before{content:"\f2c2"}.um-icon-nuclear:before{content:"\f2a4"}.um-icon-outlet:before{content:"\f342"}.um-icon-paintbrush:before{content:"\f4d5"}.um-icon-paintbucket:before{content:"\f4d6"}.um-icon-paper-airplane:before{content:"\f2c3"}.um-icon-paperclip:before{content:"\f20f"}.um-icon-pause:before{content:"\f210"}.um-icon-person:before{content:"\f213"}.um-icon-person-add:before{content:"\f211"}.um-icon-person-stalker:before{content:"\f212"}.um-icon-pie-graph:before{content:"\f2a5"}.um-icon-pin:before{content:"\f2a6"}.um-icon-pinpoint:before{content:"\f2a7"}.um-icon-pizza:before{content:"\f2a8"}.um-icon-plane:before{content:"\f214"}.um-icon-planet:before{content:"\f343"}.um-icon-play:before{content:"\f215"}.um-icon-playstation:before{content:"\f30a"}.um-icon-plus:before{content:"\f218"}.um-icon-plus-circled:before{content:"\f216"}.um-icon-plus-round:before{content:"\f217"}.um-icon-podium:before{content:"\f344"}.um-icon-pound:before{content:"\f219"}.um-icon-power:before{content:"\f2a9"}.um-icon-pricetag:before{content:"\f2aa"}.um-icon-pricetags:before{content:"\f2ab"}.um-icon-printer:before{content:"\f21a"}.um-icon-pull-request:before{content:"\f345"}.um-icon-qr-scanner:before{content:"\f346"}.um-icon-quote:before{content:"\f347"}.um-icon-radio-waves:before{content:"\f2ac"}.um-icon-record:before{content:"\f21b"}.um-icon-refresh:before{content:"\f21c"}.um-icon-reply:before{content:"\f21e"}.um-icon-reply-all:before{content:"\f21d"}.um-icon-ribbon-a:before{content:"\f348"}.um-icon-ribbon-b:before{content:"\f349"}.um-icon-sad:before{content:"\f34a"}.um-icon-sad-outline:before{content:"\f4d7"}.um-icon-scissors:before{content:"\f34b"}.um-icon-search:before{content:"\f21f"}.um-icon-settings:before{content:"\f2ad"}.um-icon-share:before{content:"\f220"}.um-icon-shuffle:before{content:"\f221"}.um-icon-skip-backward:before{content:"\f222"}.um-icon-skip-forward:before{content:"\f223"}.um-icon-social-android:before{content:"\f225"}.um-icon-social-android-outline:before{content:"\f224"}.um-icon-social-angular:before{content:"\f4d9"}.um-icon-social-angular-outline:before{content:"\f4d8"}.um-icon-social-apple:before{content:"\f227"}.um-icon-social-apple-outline:before{content:"\f226"}.um-icon-social-bitcoin:before{content:"\f2af"}.um-icon-social-bitcoin-outline:before{content:"\f2ae"}.um-icon-social-buffer:before{content:"\f229"}.um-icon-social-buffer-outline:before{content:"\f228"}.um-icon-social-chrome:before{content:"\f4db"}.um-icon-social-chrome-outline:before{content:"\f4da"}.um-icon-social-codepen:before{content:"\f4dd"}.um-icon-social-codepen-outline:before{content:"\f4dc"}.um-icon-social-css3:before{content:"\f4df"}.um-icon-social-css3-outline:before{content:"\f4de"}.um-icon-social-designernews:before{content:"\f22b"}.um-icon-social-designernews-outline:before{content:"\f22a"}.um-icon-social-dribbble:before{content:"\f22d"}.um-icon-social-dribbble-outline:before{content:"\f22c"}.um-icon-social-dropbox:before{content:"\f22f"}.um-icon-social-dropbox-outline:before{content:"\f22e"}.um-icon-social-euro:before{content:"\f4e1"}.um-icon-social-euro-outline:before{content:"\f4e0"}.um-icon-social-facebook:before{content:"\f231"}.um-icon-social-facebook-outline:before{content:"\f230"}.um-icon-social-foursquare:before{content:"\f34d"}.um-icon-social-foursquare-outline:before{content:"\f34c"}.um-icon-social-freebsd-devil:before{content:"\f2c4"}.um-icon-social-github:before{content:"\f233"}.um-icon-social-github-outline:before{content:"\f232"}.um-icon-social-google:before{content:"\f34f"}.um-icon-social-google-outline:before{content:"\f34e"}.um-icon-social-googleplus:before{content:"\f235"}.um-icon-social-googleplus-outline:before{content:"\f234"}.um-icon-social-hackernews:before{content:"\f237"}.um-icon-social-hackernews-outline:before{content:"\f236"}.um-icon-social-html5:before{content:"\f4e3"}.um-icon-social-html5-outline:before{content:"\f4e2"}.um-icon-social-instagram:before{content:"\f351"}.um-icon-social-instagram-outline:before{content:"\f350"}.um-icon-social-javascript:before{content:"\f4e5"}.um-icon-social-javascript-outline:before{content:"\f4e4"}.um-icon-social-linkedin:before{content:"\f239"}.um-icon-social-linkedin-outline:before{content:"\f238"}.um-icon-social-markdown:before{content:"\f4e6"}.um-icon-social-nodejs:before{content:"\f4e7"}.um-icon-social-octocat:before{content:"\f4e8"}.um-icon-social-pinterest:before{content:"\f2b1"}.um-icon-social-pinterest-outline:before{content:"\f2b0"}.um-icon-social-python:before{content:"\f4e9"}.um-icon-social-reddit:before{content:"\f23b"}.um-icon-social-reddit-outline:before{content:"\f23a"}.um-icon-social-rss:before{content:"\f23d"}.um-icon-social-rss-outline:before{content:"\f23c"}.um-icon-social-sass:before{content:"\f4ea"}.um-icon-social-skype:before{content:"\f23f"}.um-icon-social-skype-outline:before{content:"\f23e"}.um-icon-social-snapchat:before{content:"\f4ec"}.um-icon-social-snapchat-outline:before{content:"\f4eb"}.um-icon-social-tumblr:before{content:"\f241"}.um-icon-social-tumblr-outline:before{content:"\f240"}.um-icon-social-tux:before{content:"\f2c5"}.um-icon-social-twitch:before{content:"\f4ee"}.um-icon-social-twitch-outline:before{content:"\f4ed"}.um-icon-social-twitter:before{content:"\f243"}.um-icon-social-twitter-outline:before{content:"\f242"}.um-icon-social-usd:before{content:"\f353"}.um-icon-social-usd-outline:before{content:"\f352"}.um-icon-social-vimeo:before{content:"\f245"}.um-icon-social-vimeo-outline:before{content:"\f244"}.um-icon-social-whatsapp:before{content:"\f4f0"}.um-icon-social-whatsapp-outline:before{content:"\f4ef"}.um-icon-social-windows:before{content:"\f247"}.um-icon-social-windows-outline:before{content:"\f246"}.um-icon-social-wordpress:before{content:"\f249"}.um-icon-social-wordpress-outline:before{content:"\f248"}.um-icon-social-yahoo:before{content:"\f24b"}.um-icon-social-yahoo-outline:before{content:"\f24a"}.um-icon-social-yen:before{content:"\f4f2"}.um-icon-social-yen-outline:before{content:"\f4f1"}.um-icon-social-youtube:before{content:"\f24d"}.um-icon-social-youtube-outline:before{content:"\f24c"}.um-icon-soup-can:before{content:"\f4f4"}.um-icon-soup-can-outline:before{content:"\f4f3"}.um-icon-speakerphone:before{content:"\f2b2"}.um-icon-speedometer:before{content:"\f2b3"}.um-icon-spoon:before{content:"\f2b4"}.um-icon-star:before{content:"\f24e"}.um-icon-stats-bars:before{content:"\f2b5"}.um-icon-steam:before{content:"\f30b"}.um-icon-stop:before{content:"\f24f"}.um-icon-thermometer:before{content:"\f2b6"}.um-icon-thumbsdown:before{content:"\f250"}.um-icon-thumbsup:before{content:"\f251"}.um-icon-toggle:before{content:"\f355"}.um-icon-toggle-filled:before{content:"\f354"}.um-icon-transgender:before{content:"\f4f5"}.um-icon-trash-a:before{content:"\f252"}.um-icon-trash-b:before{content:"\f253"}.um-icon-trophy:before{content:"\f356"}.um-icon-tshirt:before{content:"\f4f7"}.um-icon-tshirt-outline:before{content:"\f4f6"}.um-icon-umbrella:before{content:"\f2b7"}.um-icon-university:before{content:"\f357"}.um-icon-unlocked:before{content:"\f254"}.um-icon-upload:before{content:"\f255"}.um-icon-usb:before{content:"\f2b8"}.um-icon-videocamera:before{content:"\f256"}.um-icon-volume-high:before{content:"\f257"}.um-icon-volume-low:before{content:"\f258"}.um-icon-volume-medium:before{content:"\f259"}.um-icon-volume-mute:before{content:"\f25a"}.um-icon-wand:before{content:"\f358"}.um-icon-waterdrop:before{content:"\f25b"}.um-icon-wifi:before{content:"\f25c"}.um-icon-wineglass:before{content:"\f2b9"}.um-icon-woman:before{content:"\f25d"}.um-icon-wrench:before{content:"\f2ba"}.um-icon-xbox:before{content:"\f30c"}.um{width:100%;text-align:left;box-sizing:border-box;color:#666;font-size:15px;margin-bottom:30px!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important;opacity:0}.um-s1,.um-s2{display:none}.um *,.um :after,.um :before{box-sizing:content-box}.um-account-side li a,.um-cover a,.um-field-value a,.um-header a,.um-member-less a,.um-member-more a,.um-member-name a,.um-member-photo a,.um-members a,.um-members-pagi a,.um-members-pagi span{border-bottom:0!important}.um a:focus,.um-modal a:focus{outline:0!important}.um a .image-overlay,.um a:hover .image-overlay,.um a:hover .image-overlay *{display:none!important;width:0!important;height:0!important;position:static!important}.um.um-in-admin{padding-top:0}.um.um-in-admin .um-tip{display:none!important}.um input,.um select,.um textarea{font-size:15px}.um *{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.um-left{float:left}.um-right{float:right}.um-clear{clear:both}.um-center{text-align:center}.um-center .um-button{display:inline-block!important;width:auto!important;min-width:250px!important}.um-half{width:48%}.um-field-half{width:48%;float:left}.um-field-half.right{float:right}.um-field-tri{width:30%;float:left;margin-right:3%}.um img{box-shadow:none!important}.um-col{padding-bottom:20px}.um-col-alt{margin:0 0 5px}.um-col-alt-b{padding-top:20px}.um-col-121{float:left;width:48%}.um-col-122{float:right;width:48%}.um-col-131{float:left;width:30%}.um-col-132{float:left;width:30%;margin:0 5%}.um-col-133{float:left;width:30%}.um-raty i{font-size:26px}.um-field-half .um-raty i,.um-field-tri .um-raty i{font-size:21px}.um-button i{font-size:22px;position:absolute;left:20px;top:14px}.um-row-heading{padding:5px 0;font-size:16px}.um-row-heading i{font-size:24px;height:24px;line-height:24px;margin:0 12px 0 0;display:inline-block;width:30px;text-align:center}.um-row-heading i:before{vertical-align:middle!important}p.um-notice{width:auto;color:#fff;box-sizing:border-box;font-size:15px;padding:12px!important;margin:12px 0 0!important;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}p.um-notice.success{background:#7ACF58}p.um-notice.err{background:#C74A4A}.um-field-error{width:auto;max-width:100%;background:#C74A4A;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;box-sizing:border-box;position:relative;padding:12px;font-size:14px;line-height:20px!important;margin:12px 0 0}.um-field-error a{color:#fff!important;text-decoration:underline!important}.um-field-arrow{top:-17px;left:10px;position:absolute;z-index:900;color:#C74A4A;font-size:28px;line-height:1em!important}.um-error-block{width:auto;max-width:100%;background:#C74A4A;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;color:#fff;box-sizing:border-box;position:relative;padding:12px;font-size:14px;line-height:1em!important;margin:12px 0 0}.um-tip{margin:0 0 0 8px;cursor:pointer;display:inline-block;vertical-align:middle}.um-tip i{font-size:22px;height:22px;line-height:22px;display:block;position:relative;top:-2px}.um-tip-text{display:block;font-size:13px;line-height:15px;color:#999}.um-form button::-moz-focus-inner,.um-form input::-moz-focus-inner{border:0!important;padding:0!important}.um-field{position:relative;padding:15px 0 0}.um-field.um-is-conditional{display:none}.um-field-label{display:block;margin:0 0 8px}.um-field-label .um-field-label-icon{float:left;margin:0 8px 0 0;height:22px;line-height:22px;display:inline-block}.um-field-label .um-field-label-icon i{font-size:22px;height:22px;line-height:22px;vertical-align:middle}.um-field-label label{display:inline-block!important;height:22px;font-size:15px!important;line-height:22px!important;font-weight:700;font-weight:600}.um-field-area{position:relative}.um-field-block{color:#777;font-size:17px}.um-field-spacing{width:100%}.um-field-divider{width:100%;margin:0 0 20px;height:15px}.um-field-icon{position:absolute;cursor:default;text-align:center!important;top:2px;left:0;width:44px;font-size:22px;line-height:1.7em}.um-form input[type=password],.um-form input[type=text]{padding:0 12px!important;width:100%!important;display:block!important;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;cursor:text!important;font-size:15px!important;height:40px!important;box-sizing:border-box!important;box-shadow:none!important;margin:0!important;position:static;outline:0!important}.um-form input[type=password]:focus,.um-form input[type=text]:focus,.um-form textarea:focus{border-color:#ccc;background-color:#fff!important;box-shadow:none!important;outline:0!important}.um-form input[type=password].um-iconed,.um-form input[type=text].um-iconed{padding-left:44px!important}.um-form input[type=password].um-error,.um-form input[type=text].um-error{border-color:#C74A4A!important}.um-form textarea{width:100%;padding:8px 12px!important;display:block;font-size:15px!important;line-height:22px!important;background:#fff;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;box-sizing:border-box;min-height:80px!important;box-shadow:none;outline:0!important}.um-field-checkbox,.um-field-radio{display:block;margin:8px 0;position:relative;cursor:pointer}.um-field-checkbox:hover i,.um-field-radio:hover i{color:#666}.um-field-checkbox input,.um-field-radio input{display:none!important}.um-field-checkbox-state,.um-field-radio-state{position:absolute;top:0;left:1px;width:24px;height:24px}.um-field-checkbox-state i,.um-field-radio-state i{font-size:24px;line-height:24px;height:24px;color:#aaa;transition:all .2s linear}.um-field-checkbox-option,.um-field-radio-option{margin:0 0 0 36px;line-height:24px;color:#888!important}.um-field-group{margin-top:20px}.um-field-group-head{cursor:pointer;color:#fff;font-size:16px;line-height:22px;padding:10px 20px;transition:.25s;box-sizing:border-box;-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important;border-top:1px solid rgba(0,0,0,0)!important;border-bottom:2px solid rgba(0,0,0,.1)!important}.um-field-group-head i{font-size:20px;margin:0 8px 0 0}.um-field-group-head i:before{vertical-align:middle!important}.um-field-group-body{display:none;margin:15px 0 0;padding:15px 20px 5px;background:#f9f9f9;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:relative;box-sizing:border-box;width:100%}.um-field-group-body div.um-field{padding:0 0 15px}.um-field-group-cancel{font-size:18px;position:absolute;z-index:800;right:8px;top:8px;color:#ccc!important;text-decoration:none!important}.um-field-group-cancel:hover{color:#777!important}.um div.disabled,.um input[type=submit]:disabled,.um input[type=text]:disabled{opacity:.6!important;cursor:default!important}input[type=submit].um-button,input[type=submit].um-button:focus{vertical-align:middle!important;height:auto!important;font-size:15px;cursor:pointer!important;width:100%;box-shadow:none;text-shadow:none;font-family:inherit;outline:0!important;margin:0;opacity:1}input[type=submit].um-button:hover{opacity:1}.um-button{font-size:15px;border:none!important;display:block;width:100%;line-height:1em!important;padding:16px 20px!important;text-decoration:none!important;text-align:center;text-transform:none!important;font-weight:400!important;overflow:hidden;position:relative;transition:.25s;box-sizing:border-box;-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important;border-top:1px solid rgba(0,0,0,0)!important;border-bottom:2px solid rgba(0,0,0,.1)!important;opacity:1}.um-button.um-btn-auto-width{width:auto;display:inline-block;padding:14px 20px!important;min-width:200px;max-width:450px}a.um-link-alt{line-height:22px;color:#888!important;display:block!important;text-decoration:none!important;font-weight:400;text-align:center;border-bottom:none!important}a.um-link-alt:hover{text-decoration:underline!important}.um-dropdown{position:absolute;height:auto;background:#fff;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;z-index:10;display:none;border:1px solid #e5e5e5;box-sizing:border-box;-webkit-box-shadow:0 0 2px rgba(0,0,0,.1);box-shadow:0 0 1px rgba(0,0,0,.1)}.um-dropdown li,.um-dropdown ul{list-style-type:none!important;padding:0!important;margin:0!important}.um-dropdown li a{display:block;padding:8px 12px;color:#666;font-size:14px;line-height:18px}.um-dropdown li:last-child a{border-top:1px solid #e5e5e5;padding:12px}.um-dropdown li a:hover{color:#3ba1da}.um-dropdown-b{position:relative}.um-dropdown-arr{position:absolute;font-size:24px;width:24px;height:24px;overflow:hidden;z-index:15;color:#eee}.um-dropdown-arr *{display:block!important;width:24px!important;height:24px!important;vertical-align:bottom!important;overflow:hidden!important;line-height:24px!important}div.um-photo{margin:20px auto 0;text-align:center;box-sizing:border-box;max-width:100%}div.um-photo,div.um-photo a,div.um-photo img{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}div.um-photo a{border:1px solid #e5e5e5;padding:5px;box-sizing:border-box;display:inline-block;box-shadow:0 1px 1px #eee;margin:0 auto;max-width:100%}div.um-photo img{max-height:300px;max-width:100%}.um-modal-overlay{background:rgba(0,0,0,.85);width:100%;height:100%;position:fixed;top:0;left:0;z-index:100000}.um-modal *{-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.um-modal-hidden-content{display:none}.um-modal-close{display:block;position:fixed;right:0;top:0;font-size:24px;text-decoration:none!important;color:#fff!important;padding:0 10px}.um-modal{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;position:fixed;left:50%;display:none;z-index:100010;box-sizing:border-box;bottom:-50px}.um-modal.normal{width:500px;margin-left:-250px}.um-modal.large{width:730px;margin-left:-365px}.um-modal.small{width:400px;margin-left:-200px}.um-modal-body{min-height:3px;padding:20px;box-sizing:border-box;width:100%;background:#fff;-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}.um-modal-body.photo{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;box-shadow:0 0 0 1px rgba(0,0,0,.1),0 0 0 1px rgba(255,255,255,.12)inset;background:#888;padding:0}.um-modal-body.photo img{-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;display:block;overflow:hidden;opacity:0}.um-modal.loading .um-modal-body{background:#fff url(../img/loading.gif) no-repeat center;min-height:150px}.um-modal div.um{margin-bottom:20px!important}.um-modal-header{-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0;height:44px;line-height:44px;color:#fff;background:#3ba1da;padding:0 20px;box-sizing:border-box;font-size:17px}.um-modal-footer{margin-top:20px}.um-modal-left{float:left}.um-modal-right{float:right}.um-modal-btn.disabled,.um-modal-btn.disabled:hover{opacity:.5;cursor:default!important;background:#3ba1da}.um-modal-btn{cursor:pointer!important;line-height:34px!important;height:34px;display:inline-block;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;padding:0 20px;text-align:center;color:#fff;background:#3ba1da;vertical-align:middle;font-size:14px;box-sizing:border-box;transition:.2s;text-decoration:none!important}.um-modal-btn:hover{background:#44b0ec;color:#fff}.um-modal-btn.alt{color:#666;background:#eee}.um-modal-btn.alt:hover{background:#e5e5e5}.um-profile{box-sizing:border-box}.um-profile .um-cover-overlay{display:none}.um-profile.um-editing .um-cover.has-cover .um-cover-overlay{display:block}.um-profile.um-viewing .um-profile-photo-overlay{display:none}.um-profile img{display:block;overflow:hidden;border-radius:0;margin:0}.um-profile a,.um-profile a:hover{text-decoration:none!important}.um-profile .um-profile-body{padding-top:15px;padding-bottom:15px;max-width:600px;margin:auto}.um-profile.um-editing{padding-bottom:15px}.um-profile.um-viewing{padding-bottom:1px}.um-profile.um-viewing .um-field-label{display:block;margin:0 0 8px;border-bottom:solid 2px #eee;padding-bottom:4px}.um-cover{background-color:#eee;box-sizing:border-box;position:relative}.um-cover-add{color:#aaa!important;font-size:36px;width:100%;display:table}.um-cover-add span{display:table-cell;vertical-align:middle}.um-cover-add:hover{color:#3ba1da!important}.um-cover-e{text-align:center;box-sizing:border-box}.um-cover-e img{width:100%!important}.um-cover-overlay{position:absolute;top:0;left:0;background:rgba(0,0,0,.5);text-align:center;box-sizing:border-box;padding:0 40px;color:#fff;text-shadow:0 1px #666;cursor:pointer!important;line-height:21px;font-size:16px;height:100%;width:100%}.um-cover-overlay:hover{background:rgba(0,0,0,.55)}.um-cover-overlay span.um-cover-overlay-s{display:table;height:100%;width:100%}.um-cover-overlay ins{display:table-cell;vertical-align:middle;height:100%;text-decoration:none!important;background:none!important;color:#fff!important;border-bottom:none!important}.um-cover-overlay i{font-size:46px;display:block;margin-bottom:6px}.um-header{position:relative;padding:0 0 25px;border-bottom:solid 2px #eee;min-height:85px;box-sizing:content-box!important}.um-profile-edit{position:absolute;top:15px;right:0;vertical-align:middle;font-size:30px;height:30px;line-height:30px;z-index:66;padding-right:10px}.um-header.no-cover .um-profile-meta{padding-left:0!important;padding-right:0!important;text-align:center!important}.um-header.no-cover .um-name{float:none!important;margin-right:0!important}.um-header.no-cover .um-profile-photo{float:none!important;margin:0 auto!important;text-align:center!important}.um-header.no-cover a.um-profile-photo-img{position:relative!important;top:auto!important;left:auto!important;float:none!important;display:inline-block!important;text-align:center!important}.um-header.no-cover .um-main-meta{padding:0}.um-profile .gravatar{position:static}.um-profile-photo{float:left;position:relative}.um-profile-photo a.um-profile-photo-img{float:left;position:absolute;background:#fff;padding:5px;left:30px}.um-profile-photo a.um-profile-photo-img img{width:100%;height:100%}.um-profile-photo-overlay{position:absolute;top:0;left:0;background:rgba(0,0,0,.5);text-align:center;box-sizing:border-box;padding:0;color:#fff;text-shadow:0 1px #666;cursor:pointer!important;line-height:21px;font-size:16px;height:100%;width:100%}.um-profile-photo-overlay:hover{background:rgba(0,0,0,.55)}.um-profile-photo-overlay span.um-profile-photo-overlay-s{display:table;height:100%;width:100%}.um-profile-photo-overlay ins{display:table-cell;vertical-align:middle;height:100%;text-decoration:none!important;background:none!important;color:#fff!important;border-bottom:none!important}.um-profile-photo-overlay i{font-size:46px;display:block}.um-profile-meta{padding-right:30px;-ms-word-break:break-all;word-break:break-word;word-wrap:break-word}.um-main-meta{padding:10px 0 0}.um-name{float:left;font-size:24px;font-weight:700;margin-right:30px;line-height:1.7em}.um-meta{font-size:15px}.um-meta span a{font-weight:400}.um-meta span:first-child{margin:0 5px 0 0}.um-meta span{margin:0 5px;font-size:14px;display:inline-block}.um-meta-text{margin:6px 0 0;color:#666}.um-profile-status{display:none}.um-profile-status.awaiting_admin_review,.um-profile-status.inactive,.um-profile-status.rejected{display:inline-block;margin:6px 0 0;border-left:3px solid #C74A4A;padding-left:10px;font-size:14px;color:#777}.um-profile-note{display:none;text-align:center;margin-top:20px;color:#666}.um-profile-note i{display:inline-block;font-size:70px;height:70px;line-height:70px}.um-profile-note span{margin-top:10px;display:block;font-size:16px;color:#888}.um-profile-note a:hover{text-decoration:underline!important}.um-profile-nav{padding:10px;background:#444;text-align:center}.um-profile-nav-item.active a{background:#3BA1DA!important;color:#FFF!important}.um-profile-nav-item a{color:#fff!important;font-size:15px;font-weight:600;padding:7px 20px;display:block;float:left;border-radius:4px;margin-left:10px}.um-profile-nav-item a:hover{background:#555}.um-profile-nav-item i{font-size:20px;width:20px;text-align:center}.um-profile-subnav{background:#eee;padding:15px;text-align:center}.um-profile-subnav a{display:inline-block;color:#555;font-size:15px;font-weight:600;margin:0 20px}.um-profile-subnav a.active{color:#3BA1DA!important}.um-profile-subnav a:hover{color:#333}.um-profile-subnav span{display:inline-block;margin:0 0 0 8px;background:#ddd;padding:1px 8px;color:#aaa!important;border-radius:2px}.um-item{padding:20px 0;border-bottom:1px solid #eee;position:relative}.um-item-action{position:absolute;right:0;top:16px;width:20px;height:20px;font-size:20px;text-align:center}.um-item-action a{color:#ccc}.um-item-action a:hover{color:#999}.um-item-link{padding-right:40px}.um-item-link a{color:#333;font-size:16px}.um-item-link a:hover{text-decoration:underline!important}.um-item-meta{color:#999}.um-item-meta span{font-size:14px;font-weight:500;font-style:italic}.um-item-meta span:not(:last-child):after{position:relative;padding:0 4px 0 7px;content:"•"}.um-item-meta a{border-bottom:1px solid #E0E0E0;color:#3BA1DA}.um-item-meta a:hover{border-bottom-color:#bbb}.um-load-items{text-align:center;margin-top:12px;padding-top:30px}.um-load-items.loading{background:url(../img/loading-dots.gif) no-repeat top center}.um-load-items a{max-width:250px;display:inline-block;margin:0 auto}@font-face{font-family:raty;font-style:normal;font-weight:400;src:url(../font/raty.eot);src:url(../font/raty.eot?#iefix) format("embedded-opentype");src:url(../font/raty.svg#raty) format("svg");src:url(../font/raty.ttf) format("truetype");src:url(../font/raty.woff) format("woff")}.cancel-off-png,.cancel-on-png,.star-half-png,.star-off-png,.star-on-png{font-family:raty;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;margin-right:.2em;color:#ccc}.star-half-png,.star-on-png{color:#ffbe32}.cancel-on-png:before{content:"\e600"}.cancel-off-png:before{content:"\e601"}.star-on-png:before{content:"\f005"}.star-off-png:before{content:"\f006"}.star-half-png:before{content:"\f123"}.select2-container{margin:0!important;position:relative!important;display:inline-block!important;zoom:1!important;*display:inline!important;vertical-align:middle!important}.select2-container a:hover{color:#666!important}.select2-container,.select2-drop,.select2-search,.select2-search input{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.select2-container .select2-choice{display:block!important;height:36px!important;padding:0 0 0 12px!important;overflow:hidden!important;position:relative!important;white-space:nowrap!important;line-height:35px!important;color:#666!important;font-size:15px!important;text-align:left!important;text-decoration:none!important;-moz-border-radius:2px!important;-webkit-border-radius:2px!important;border-radius:2px!important;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:none!important;background-color:#fff!important}.select2-container.select2-drop-above .select2-choice{-moz-border-radius:0 0 2px 2px!important;-webkit-border-radius:0 0 2px 2px!important;border-radius:0 0 2px 2px!important}.select2-container.select2-allowclear .select2-choice .select2-chosen{margin-right:42px}.select2-container .select2-choice>.select2-chosen{margin-right:26px!important;display:block!important;overflow:hidden!important;white-space:nowrap!important;text-overflow:ellipsis!important;float:none!important;width:auto!important;font-weight:400}.select2-container .select2-choice abbr{display:none;width:20px!important;height:100%!important;right:24px!important;font-size:1px!important;text-decoration:none!important;border:0!important;background:none!important;cursor:pointer!important;outline:0!important}.select2-container.select2-allowclear .select2-choice abbr{display:inline-block!important}.select2-container .select2-choice abbr:hover{cursor:pointer!important}.select2-drop-mask{border:0!important;margin:0!important;padding:0!important;position:fixed!important;left:0!important;top:0!important;min-height:100%!important;min-width:100%!important;height:auto!important;width:auto!important;opacity:0!important;z-index:100030!important;background-color:#fff!important;filter:alpha(opacity=0)!important}.select2-drop{width:100%;margin-top:-1px;position:absolute;z-index:100040!important;top:100%;background:#fff;color:#666;-moz-border-radius:0 0 2px 2px;-webkit-border-radius:0 0 2px 2px;border-radius:0 0 2px 2px;box-shadow:none}.select2-drop.select2-drop-above{margin-top:1px;-moz-border-radius:2px 2px 0 0;-webkit-border-radius:2px 2px 0 0;border-radius:2px 2px 0 0;box-shadow:none}.select2-drop-active{box-shadow:none!important}.select2-drop-auto-width{width:auto!important}.select2-drop-auto-width .select2-search{padding-top:4px}.select2-container .select2-choice .select2-arrow{display:inline-block!important;width:34px!important;height:100%!important;position:absolute!important;right:0!important;top:0!important;-moz-border-radius:0 2px 2px 0!important;-webkit-border-radius:0 2px 2px 0!important;border-radius:0 2px 2px 0!important;text-align:center!important;background:transparent!important;border-left:0!important}.select2-container .select2-choice .select2-arrow *{line-height:100%!important;vertical-align:middle!important}.select2-container .select2-choice .select2-arrow b{display:block!important;width:100%!important;height:100%!important;background:none!important}.select2-container .select2-choice .select2-arrow:before{content:"\f3d0"!important;font-size:27px!important;font-family:Ionicons!important;width:100%!important;display:block;height:100%;line-height:36px}.select2-container .select2-choice .select2-arrow:hover:before{color:#666!important}.select2-search{display:inline-block!important;width:100%!important;min-height:32px!important;height:32px!important;line-height:1em!important;margin:0!important;padding-left:4px!important;padding-right:4px!important;position:relative!important;z-index:100050!important;white-space:nowrap!important}.select2-search input[type=text]{background:none!important;width:100%!important;height:32px!important;line-height:auto!important;padding:0 38px 0 7px!important;margin:0!important;outline:0!important;border:1px solid #ddd!important;color:#666!important;-moz-border-radius:2px!important;-webkit-border-radius:2px!important;border-radius:2px!important;font-size:15px!important;box-sizing:border-box!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important;box-shadow:none!important}.select2-search:before{content:"\f4a4"!important;font-size:20px!important;height:32px!important;line-height:32px!important;font-family:Ionicons!important;top:0!important;right:10px!important;position:absolute!important}.select2-drop .select2-search{margin-top:4px!important}.select2-search input.select2-active{background:#fff!important}.select2-container-active .select2-choice,.select2-container-active .select2-choices{outline:0!important;box-shadow:none!important}.select2-dropdown-open .select2-choice{border-bottom-left-radius:0!important;border-bottom-right-radius:0!important}.select2-dropdown-open .select2-choice .select2-arrow{background:transparent!important;filter:none!important;border-color:transparent!important}.select2-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.select2-results{max-height:200px;padding:0 0 0 5px;margin:4px 4px 4px 0;position:relative;overflow-x:hidden;overflow-y:auto;-webkit-tap-highlight-color:rgba(0,0,0,0)}.select2-results ul.select2-result-sub{margin:0;padding-left:0}.select2-results li{list-style:none;display:list-item;background-image:none;font-size:15px;margin:0!important;padding:3px 0!important;color:#666!important}.select2-results li.select2-result-with-children>.select2-result-label{font-weight:700!important}.select2-results .select2-result-label{padding:3px 7px 4px!important;margin:0!important;cursor:pointer;min-height:1em!important;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.select2-results-dept-1 .select2-result-label{padding-left:20px}.select2-results-dept-2 .select2-result-label{padding-left:40px}.select2-results-dept-3 .select2-result-label{padding-left:60px}.select2-results-dept-4 .select2-result-label{padding-left:80px}.select2-results-dept-5 .select2-result-label{padding-left:100px}.select2-results-dept-6 .select2-result-label{padding-left:110px}.select2-results-dept-7 .select2-result-label{padding-left:120px}.select2-results .select2-highlighted{background:none!important;background:#f4f4f4!important;color:#666!important}.select2-results li em{background:#feffde!important;font-style:normal!important}.select2-results .select2-highlighted em{background:transparent!important}.select2-results .select2-highlighted ul{background:#fff!important;color:#666!important}.select2-results .select2-no-results,.select2-results .select2-searching,.select2-results .select2-selection-limit{background:#f4f4f4!important;display:list-item!important;padding:5px!important;font-size:15px!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important}.select2-results .select2-disabled .select2-result-label,.select2-results .select2-disabled.select2-highlighted .select2-result-label{color:#bbb!important;background:#fff!important;display:list-item!important;cursor:default!important}.select2-results .select2-selected{display:none}.select2-more-results.select2-active{background:#f4f4f4!important}.select2-more-results{background:#f4f4f4!important;display:list-item!important}.select2-container.select2-container-disabled .select2-choice{background-color:#f4f4f4!important;background-image:none!important;border:1px solid #ddd!important;cursor:default!important}.select2-container.select2-container-disabled .select2-choice .select2-arrow{background:none!important;background:#f9f9f9!important;border-left:0!important}.select2-container.select2-container-disabled .select2-choice abbr{display:none!important}.select2-container-multi .select2-choices{height:auto!important;height:1%!important;margin:0!important;padding:1px 3px!important;position:relative!important;cursor:text!important;overflow:hidden!important;-moz-border-radius:2px!important;-webkit-border-radius:2px!important;border-radius:2px!important;box-shadow:none!important}.select2-locked{padding:3px 5px!important}.select2-container-multi .select2-choices{min-height:26px;background-image:none!important}.select2-container-multi.select2-container-active .select2-choices{outline:0;box-shadow:none}.select2-container-multi .select2-choices li{float:left;list-style:none}html[dir=rtl] .select2-container-multi .select2-choices li{float:right}.select2-container-multi .select2-choices .select2-search-field{margin:0;padding:0;white-space:nowrap}.select2-container-multi .select2-choices .select2-search-field input{padding:5px!important;margin:3px 0!important;font-size:100%;height:auto!important;outline:0;border:0!important;-webkit-box-shadow:none;box-shadow:none;background:transparent!important}.select2-container-multi .select2-choices .select2-search-field input.select2-active{background:#fff!important}.select2-container-multi .select2-choices .select2-search-choice{padding:4px 20px 4px 5px!important;margin:6px 0 4px 5px!important;position:relative;line-height:14px;font-size:14px;color:#666;cursor:default;border:1px solid #ddd;-moz-border-radius:2px;-webkit-border-radius:2px;border-radius:2px;box-shadow:none!important;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:none!important;background-color:#f9f9f9!important}html[dir=rtl] .select2-container-multi .select2-choices .select2-search-choice{margin-left:0;margin-right:5px}.select2-container-multi .select2-choices .select2-search-choice .select2-chosen{cursor:default}.select2-container-multi .select2-choices .select2-search-choice-focus{background:#f1f1f1}.select2-search-choice-close{position:absolute!important;width:18px!important;height:18px!important;right:0!important;top:0!important;left:auto!important;outline:0!important;background:none!important}.select2-search-choice-close:before{content:"\f2d7"!important;font-size:22px!important;font-family:Ionicons!important;right:4px!important;position:relative!important;display:block;height:100%;width:100%;line-height:36px}.select2-search-choice-close:hover:before{color:#666!important}.select2-container-multi .select2-search-choice-close{text-decoration:none!important;width:21px!important;height:100%!important;text-align:center!important;border-bottom:0!important}.select2-container-multi .select2-search-choice-close:before{font-size:16px!important;right:0!important;line-height:23px!important}.select2-container-multi.select2-container-disabled .select2-choices{background-color:#f4f4f4;background-image:none;border:1px solid #ddd;cursor:default}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice{padding:3px 5px;border:1px solid #ddd;background-image:none;background-color:#f4f4f4}.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close{display:none;background:0 0}.select2-result-selectable .select2-match,.select2-result-unselectable .select2-match{text-decoration:underline}.select2-offscreen,.select2-offscreen:focus{clip:rect(0 0 0 0)!important;width:1px!important;height:1px!important;border:0!important;margin:0!important;padding:0!important;overflow:hidden!important;position:absolute!important;outline:0!important;left:0!important;top:0!important}.select2-display-none{display:none}.select2-measure-scrollbar{position:absolute;top:-10000px;left:-10000px;width:100px;height:100px;overflow:scroll}.tipsy{padding:5px;position:absolute;z-index:100020}.tipsy-inner{font-size:13px!important;line-height:17px!important;background-color:#333!important;color:#fff!important;max-width:250px!important;padding:10px 12px!important;text-align:left!important;word-wrap:break-word!important;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale!important;border-radius:3px;-moz-border-radius:3px;-webkit-border-radius:3px}.tipsy-arrow{position:absolute!important;width:0!important;height:0!important;line-height:0!important;border:5px dashed #333}.tipsy-arrow-n{border-bottom-color:#333!important}.tipsy-arrow-s{border-top-color:#333!important}.tipsy-arrow-e{border-left-color:#333!important}.tipsy-arrow-w{border-right-color:#333!important}.tipsy-n .tipsy-arrow{top:0;left:50%;margin-left:-5px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.tipsy-nw .tipsy-arrow{top:0;left:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.tipsy-ne .tipsy-arrow{top:0;right:10px;border-bottom-style:solid;border-top:none;border-left-color:transparent;border-right-color:transparent}.tipsy-s .tipsy-arrow{bottom:0;left:50%;margin-left:-5px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.tipsy-sw .tipsy-arrow{bottom:0;left:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.tipsy-se .tipsy-arrow{bottom:0;right:10px;border-top-style:solid;border-bottom:none;border-left-color:transparent;border-right-color:transparent}.tipsy-e .tipsy-arrow{right:0;top:50%;margin-top:-5px;border-left-style:solid;border-right:none;border-top-color:transparent;border-bottom-color:transparent}.tipsy-w .tipsy-arrow{left:0;top:50%;margin-top:-5px;border-right-style:solid;border-left:none;border-top-color:transparent;border-bottom-color:transparent}.um-account a:focus{outline:0!important}.um-account-side{float:left;width:35%;padding:0 30px;box-sizing:border-box}.um-account-main{float:left;width:50%;padding:0 30px;box-sizing:border-box}.um-account-tab{display:none}.um-account-main div.um-account-heading{margin:0!important;font-size:18px;line-height:18px;font-weight:700;color:#555}.um-account-main div.um-account-heading i{margin-right:10px;font-size:26px;position:relative;top:2px}.um-account-main p{margin:20px 0 0!important;padding:0!important}.um-account-main label{font-size:15px}.um-account-meta{text-align:center;margin-bottom:20px}.um-account-meta img{margin:0!important;position:static!important;float:none!important;display:inline-block}.um-account-meta.radius-1 img{-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px}.um-account-meta.radius-2 img{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.um-account-meta.radius-3 img{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-account-name a{font-weight:700;color:#555!important;text-decoration:none!important;font-size:18px;line-height:2em}.um-account-name a:hover{color:#3ba1da!important}.um-account-nav a{display:block;height:44px;line-height:44px;color:#666!important;text-decoration:none!important;position:relative;padding-left:40px;border-bottom:1px solid #eee;transition:all .2s linear;font-size:14px}.um-account-nav a.current{color:#3ba1da!important;font-weight:700}.um-account-nav span.arr{position:absolute;right:0;top:1px;font-size:28px}.um-account-nav span.ico{position:absolute;left:0;top:0;font-size:21px;width:21px;text-align:center}.um-account-side li,.um-account-side ul{margin:0!important;padding:0!important;list-style-type:none!important}.um-account-side li{margin-bottom:6px!important;background:#eee}.um-account-side li a{display:block;padding:4px 0;font-size:14px;height:30px;line-height:20px;color:#999;position:relative}.um-account-side li a span.um-account-arrow{position:absolute;right:10px;top:6px;font-size:26px}.um-account-side li a span.um-account-icon,.um-account-side li a.current span.um-account-icon,.um-account-side li a.current:hover span.um-account-icon{text-align:center;font-size:20px;width:20px;height:30px;border-right:1px solid #ccc;color:#444;float:left;padding:0 15px;font-weight:400!important}.um-account-side li a.current span.um-account-icon,.um-account-side li a.current:hover span.um-account-icon{color:#3ba1da}.um-account-side li a span.um-account-icon i{display:block;height:30px;line-height:30px}.um-account-side li a span.um-account-title{padding-left:20px;float:left;height:30px;line-height:30px;color:#555}.um-account-side li a:hover{color:#444;background:#ddd}.um-account-side li a.current,.um-account-side li a.current:hover{color:#444;font-weight:700;text-decoration:none!important}.cropper-container{position:relative;overflow:hidden;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none}.cropper-container img{width:100%;height:100%;min-width:0!important;min-height:0!important;max-width:none!important;max-height:none!important}.cropper-canvas,.cropper-modal{position:absolute;top:0;right:0;bottom:0;left:0}.cropper-canvas{background-color:#fff;opacity:0;filter:alpha(opacity=0)}.cropper-modal{background-color:#000;opacity:.5;filter:alpha(opacity=50)}.cropper-dragger{position:absolute;top:10%;left:10%;width:80%;height:80%}.cropper-viewer{display:block;width:100%;height:100%;overflow:hidden;outline-width:1px;outline-style:solid;outline-color:#69f;outline-color:rgba(51,102,255,.75)}.cropper-dashed{position:absolute;display:block;border:0 dashed #fff;opacity:.5;filter:alpha(opacity=50)}.cropper-dashed.dashed-h{top:33.3%;left:0;width:100%;height:33.3%;border-top-width:1px;border-bottom-width:1px}.cropper-dashed.dashed-v{top:0;left:33.3%;width:33.3%;height:100%;border-right-width:1px;border-left-width:1px}.cropper-face,.cropper-line,.cropper-point{position:absolute;display:block;width:100%;height:100%;opacity:.1;filter:alpha(opacity=10)}.cropper-face{top:0;left:0;cursor:move;background-color:#fff}.cropper-line{background-color:#69f}.cropper-line.line-e{top:0;right:-3px;width:5px;cursor:e-resize}.cropper-line.line-n{top:-3px;left:0;height:5px;cursor:n-resize}.cropper-line.line-w{top:0;left:-3px;width:5px;cursor:w-resize}.cropper-line.line-s{bottom:-3px;left:0;height:5px;cursor:s-resize}.cropper-point{width:5px;height:5px;background-color:#69f;opacity:.75;filter:alpha(opacity=75)}.cropper-point.point-e{top:50%;right:-3px;margin-top:-3px;cursor:e-resize}.cropper-point.point-n{top:-3px;left:50%;margin-left:-3px;cursor:n-resize}.cropper-point.point-w{top:50%;left:-3px;margin-top:-3px;cursor:w-resize}.cropper-point.point-s{bottom:-3px;left:50%;margin-left:-3px;cursor:s-resize}.cropper-point.point-ne{top:-3px;right:-3px;cursor:ne-resize}.cropper-point.point-nw{top:-3px;left:-3px;cursor:nw-resize}.cropper-point.point-sw{bottom:-3px;left:-3px;cursor:sw-resize}.cropper-point.point-se{right:-3px;bottom:-3px;width:20px;height:20px;cursor:se-resize;opacity:1;filter:alpha(opacity=100)}.cropper-point.point-se:before{position:absolute;right:-50%;bottom:-50%;display:block;width:200%;height:200%;content:" ";background-color:#69f;opacity:0;filter:alpha(opacity=0)}@media (min-width:768px){.cropper-point.point-se{width:15px;height:15px}}@media (min-width:992px){.cropper-point.point-se{width:10px;height:10px}}@media (min-width:1200px){.cropper-point.point-se{width:5px;height:5px;opacity:.75;filter:alpha(opacity=75)}}.cropper-hidden{display:none!important}.cropper-invisible{position:fixed;top:0;left:0;z-index:-1;width:auto!important;max-width:none!important;height:auto!important;max-height:none!important;opacity:0;filter:alpha(opacity=0)}.cropper-move{cursor:move}.cropper-crop{cursor:crosshair}.cropper-disabled .cropper-canvas,.cropper-disabled .cropper-face,.cropper-disabled .cropper-line,.cropper-disabled .cropper-point{cursor:not-allowed}.um .um-single-file-preview,.um .um-single-image-preview{margin-bottom:20px}.um .um-single-image-preview>img{max-height:300px;display:block;overflow:hidden;margin:auto;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.um-single-file-preview,.um-single-image-preview{display:none;text-align:center;position:relative}.um-single-file-preview.show,.um-single-image-preview.show{display:block}.um-single-image-preview>img{max-width:100%;max-height:inherit}.um-single-file-preview a.cancel,.um-single-image-preview a.cancel{position:absolute;top:-15px;right:-15px;width:30px;height:30px;-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px;background:#ddd;cursor:pointer;text-decoration:none!important;z-index:666;opacity:.75}.um-single-file-preview a.cancel i,.um-single-image-preview a.cancel i{font-size:16px;color:#888;position:relative;display:block;width:100%;height:100%;line-height:30px;overflow:hidden}.um-single-file-preview a.cancel i:before,.um-single-image-preview a.cancel i:before{line-height:inherit}.um-single-fileinfo{padding:26px 0 20px;display:inline-block}.um-single-fileinfo span.icon{font-size:40px;display:inline-block;width:100px;height:70px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;background-color:#666;color:#fff!important}.um-single-fileinfo span.icon i{display:block;height:70px;line-height:70px;overflow:hidden}.um-single-fileinfo span.icon i:before{line-height:inherit}.um-single-fileinfo span.filename{display:block;font-size:16px;color:#888;padding-top:5px}.um-single-fileinfo a{text-decoration:none!important;opacity:.9}.um-single-fileinfo a:hover{opacity:1}.upload-statusbar{margin:20px 0 0}.upload-filename{display:none!important}.upload-progress{position:relative;width:100%;box-sizing:border-box}.upload-bar{width:0;height:10px;color:#666;background:#7ACF58;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}.ajax-upload-dragdrop{width:100%;text-align:center;vertical-align:middle;padding:20px;box-sizing:border-box;border:2px dashed #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;font-size:18px;line-height:1em}.ajax-upload-dragdrop span.str{display:block;margin:0 0 15px}.ajax-upload-dragdrop span.icon{display:block;font-size:80px;line-height:80px;vertical-align:middle;margin-bottom:10px}.ajax-upload-dragdrop span.help{display:block;font-size:14px;color:#aaa;margin:0 0 12px}.upload{cursor:pointer!important;line-height:34px!important;height:34px;display:inline-block;text-decoration:none;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;padding:0 20px;color:#fff;background:#3ba1da;vertical-align:middle;font-size:14px;box-sizing:border-box;transition:.2s}.upload:hover{background:#44b0ec}.um-modal input[type=file]::-webkit-file-upload-button{cursor:pointer}.um-members img{display:block;overflow:hidden;-moz-border-radius:0!important;-webkit-border-radius:0!important;border-radius:0!important;margin:0!important;padding:0!important}.um-members a,.um-members a:hover{text-decoration:none!important}.um-members-intro{text-align:center;margin:0 0 20px}.um-members-total{font-size:30px;font-weight:300}.um-members-none{text-align:center;font-size:18px}.um-search{text-align:center;padding:20px 50px}.um-search.um-search-2{padding-left:20%;padding-right:20%;width:100%;box-sizing:border-box}.um-search.um-search-1{padding-left:32%;padding-right:32%;width:100%;box-sizing:border-box}.um-search.um-search-1 .um-search-submit .um-button{display:block!important;min-width:100%!important;margin:0 0 10px!important}.um-search.um-search-1 .um-search-filter{width:100%;padding:0 0 10px;float:none}.um-search.um-search-2 .um-search-filter{width:50%}.um-search-filter{padding:0 15px 30px;display:block;float:left;width:33%;box-sizing:border-box}.um-search-submit .um-button{display:inline-block!important;width:auto!important;padding:12px 20px!important;margin:0 10px!important;min-width:150px!important}.um-members{-ms-word-break:break-all;word-break:break-word;word-wrap:break-word}.um-member{float:left;width:30%;background:#fff;text-align:center;border:1px solid #eee;box-sizing:border-box;margin-bottom:40px;position:relative}.um-member.awaiting_admin_review,.um-member.inactive,.um-member.rejected{opacity:.7}.um-member-status{display:none}.um-member-status.awaiting_admin_review,.um-member-status.inactive,.um-member-status.rejected{display:block;position:absolute;top:0;left:0;width:100%;padding:7px 15px;background:#C74A4A;color:#fff;z-index:10;font-size:13px;box-sizing:border-box}.um-member-status.inactive,.um-member-status.rejected{background:#999}.um-gutter-sizer{width:5%}.um-member-cover{background-color:#eee;box-sizing:border-box;position:relative}.um-member-cover-e{text-align:center;box-sizing:border-box}.um-member-cover-e img{width:100%!important}.um-member-photo{padding:40px 0 20px;text-align:center}.um-member-photo a{display:inline!important}.um-member-photo img{display:inline!important;border:5px solid #fff;background:#fff;width:140px;height:140px}.um-member.with-cover .um-member-photo{padding-top:0}.um-member.with-cover .um-member-photo img{width:90px;height:90px;position:relative;top:-35px;margin-bottom:-45px!important;float:none;opacity:1}.um-member-photo.radius-1 img{-moz-border-radius:999px!important;-webkit-border-radius:999px!important;border-radius:999px!important}.um-member-photo.radius-2 img{-moz-border-radius:4px!important;-webkit-border-radius:4px!important;border-radius:4px!important}.um-member-photo.radius-3 img{-moz-border-radius:0!important;-webkit-border-radius:0!important;border-radius:0!important}.um-member-card.no-photo{padding-top:30px}.um-member-card{padding-bottom:15px}.um-member-name{margin:0 0 4px}.um-member-name a{font-size:16px;line-height:26px;color:#444!important;font-weight:700}.um-member-name a:hover{color:#3ba1da!important}.um-member-tagline{font-size:13px;line-height:22px;color:#999;padding:0 15px}.um-member-less{display:none}.um-member-less a,.um-member-more a{color:#666;display:inline-block}.um-member-less i,.um-member-more i{display:block;font-size:32px;height:32px;line-height:32px}.um-member-less a:hover,.um-member-more a:hover{color:#3ba1da}.um-member-meta{display:none;margin:20px 15px 0;padding:15px 0;border-top:1px solid #e5e5e5}.um-member-meta.no-animate{display:block}.um-member-metaline{font-size:14px;color:#888;padding:12px 0 0;line-height:16px;vertical-align:middle}.um-member-metaline span{display:block;text-align:center}.um-member-connect{padding-top:20px}.um-member-connect a{display:inline-block;width:40px;line-height:40px;height:40px;-moz-border-radius:999px;-webkit-border-radius:999px;border-radius:999px;color:#fff!important;opacity:.85;margin:0 1px;font-size:16px;transition:.25s}.um-member-connect a:hover{opacity:1;color:#fff}.um-members-pagi,.um-members-pagidrop{text-align:center;padding:5px 0;font-size:15px}.um-members-pagi span.current,.um-members-pagi span.current:hover{background:#3ba1da!important;color:#fff!important}.um-members-pagi i:before{font-size:20px;vertical-align:middle!important;height:34px;line-height:34px;top:-2px;position:relative}.um-members-pagi span.disabled{opacity:.4;cursor:default}.um-members-pagi span.none{color:#aaa!important}.um-members-pagi span{cursor:default}.um-members-pagi a,.um-members-pagi span{display:inline-block;width:auto;height:34px;line-height:34px;transition:all .2s linear;padding:0 14px;color:#666!important;font-weight:400}.um-members-pagi a:hover{text-decoration:none!important;color:#3ba1da!important}.picker{font-size:16px;text-align:left;line-height:1.2;color:#fff;position:absolute;z-index:10000;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.picker__input{cursor:default}.picker__input.picker__input--active{border-color:#0089ec}.picker__holder{width:100%;overflow-y:auto;-webkit-overflow-scrolling:touch}.picker__frame,.picker__holder{bottom:0;left:0;right:0;top:100%}.picker__holder{position:fixed;-webkit-transition:background .15s ease-out,top 0s .15s;-moz-transition:background .15s ease-out,top 0s .15s;transition:background .15s ease-out,top 0s .15s}.picker__frame{position:absolute;margin:0 auto;min-width:256px;max-width:400px;width:100%;-ms-filter:"alpha(Opacity=0)";filter:alpha(opacity=0);-moz-opacity:0;opacity:0;-webkit-transition:all .15s ease-out;-moz-transition:all .15s ease-out;transition:all .15s ease-out}@media (min-height:33.875em){.picker__frame{overflow:visible;top:auto;bottom:-100%;max-height:80%}}@media (min-height:40.125em){.picker__frame{margin-bottom:15%!important}}.picker__wrap{display:table;width:100%;height:100%}@media (min-height:33.875em){.picker__wrap{display:block}}.picker__box{display:table-cell;vertical-align:middle}@media (min-height:33.875em){.picker__box{display:block;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}}@media (min-height:40.125em){.picker__box{border-bottom-width:1px;-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}}.picker--opened .picker__holder{top:0;zoom:1;background:rgba(0,0,0,.7);-webkit-transition:background .15s ease-out;-moz-transition:background .15s ease-out;transition:background .15s ease-out}.picker--opened .picker__frame{top:0;-ms-filter:"alpha(Opacity=100)";filter:alpha(opacity=100);-moz-opacity:1;opacity:1}@media (min-height:33.875em){.picker--opened .picker__frame{top:auto;bottom:0}}.picker__header{text-align:center;position:relative;margin-top:.75em;border-radius:2px 2px 0 0;padding:15px 0;font-size:18px}.picker__month,.picker__year{display:inline-block;margin-left:10px;margin-right:10px}.picker__select--month,.picker__select--year{margin-left:.25em;margin-right:.25em;font-size:16px;color:#999;background:#fff!important;outline:0!important;border:0!important}@media (min-width:24.5em){.picker__select--month,.picker__select--year{margin-top:-.5em}}.picker__select--month{width:35%}.picker__select--year{width:22.5%}.picker__nav--next,.picker__nav--prev{position:absolute;padding:.5em 1.25em;width:1em;height:1em;box-sizing:content-box!important;top:8px;color:#fff}.picker__nav--prev{left:0;padding-right:1.25em}@media (min-width:24.5em){.picker__nav--prev{padding-right:1.5em}}.picker__nav--next{right:0;padding-left:1.25em}@media (min-width:24.5em){.picker__nav--next{padding-left:1.5em}}.picker__nav--next:before,.picker__nav--prev:before{content:" ";border-top:.5em solid transparent;border-bottom:.5em solid transparent;border-right:.5em solid #fff;width:0;height:0;display:block;margin:0 auto}.picker__nav--next:before{border-right:0;border-left:.5em solid #fff}.picker__nav--next:hover,.picker__nav--prev:hover{cursor:pointer;color:#fff}.picker__nav--disabled,.picker__nav--disabled:before,.picker__nav--disabled:before:hover,.picker__nav--disabled:hover{cursor:default;background:0 0}.picker__table{text-align:center;border-collapse:collapse;border-spacing:0;table-layout:fixed;font-size:inherit;width:100%;margin-top:5px;border:none;margin-bottom:0}.picker__table td{margin:0;padding:0 10px;text-align:center;border:0}.picker__weekday{width:14.285714286%;color:#fff;text-align:center;padding:5px 0!important}.picker__day{padding:10px 0;line-height:1em!important}.picker__day--today{position:relative}.picker__day--outfocus{opacity:.75}.picker__day--infocus:hover,.picker__day--outfocus:hover{border-radius:2px;cursor:pointer}.picker--focused .picker__day--highlighted,.picker__day--highlighted:hover{border-radius:2px}.picker__day--disabled,.picker__day--disabled:hover{cursor:default;background:transparent!important;opacity:.3}.picker__footer{text-align:center;height:50px!important;line-height:50px!important;margin-top:5px;border-radius:0 0 2px 2px}.picker__button--clear,.picker__button--today{width:50%;display:inline-block;background:none!important;box-shadow:none!important;border:0!important;outline:0!important;box-sizing:border-box!important}.picker__button--clear:focus,.picker__button--clear:hover,.picker__button--today:focus,.picker__button--today:hover{cursor:pointer}.picker__list{list-style:none;list-style:none!important;padding:5px!important;margin:0!important}.picker__list-item{position:relative;border-radius:2px;display:inline-block;width:25%;text-align:center;box-sizing:border-box;padding:6px 0!important;margin:5px 0!important}.picker__list-item:hover{cursor:pointer;z-index:10}.picker__list-item--highlighted{z-index:10}.picker--focused .picker__list-item--highlighted,.picker__list-item--highlighted:hover{cursor:pointer;font-weight:700}.picker--focused .picker__list-item--selected,.picker__list-item--selected,.picker__list-item--selected:hover{z-index:10}.picker--focused .picker__list-item--disabled,.picker__list-item--disabled,.picker__list-item--disabled:hover{color:#a9e792;cursor:default;background:0 0;z-index:auto}.picker--time .picker__button--clear{width:100%;display:inline-block;box-shadow:none!important;border:0!important;outline:0!important;background:none!important;border-radius:0 0 2px 2px;color:#fff!important}.picker--time .picker__button--clear:focus,.picker--time .picker__button--clear:hover{cursor:pointer}.picker--time .picker__frame{min-width:256px;max-width:400px}.picker--time .picker__box{font-size:15px;padding:0;border-radius:2px!important}@media (min-height:40.125em){.picker--time .picker__frame{margin-bottom:10%!important}}.uimob340-show,.uimob500-show,.uimob800-show,.uimob960-show{display:none}div.uimob340 .uimob340-show,div.uimob500 .uimob500-show,div.uimob800 .uimob800-show,div.uimob960 .uimob960-show{display:block}div.uimob340 .uimob340-hide,div.uimob500 .uimob500-hide,div.uimob800 .uimob800-hide,div.uimob960 .uimob960-hide{display:none}div.uimob340 .um-item-link a{font-size:14px}div.uimob340 .um-item-meta span{font-size:13px}div.uimob340 .um-load-items a{width:100%!important;max-width:100%!important}div.uimob340 .um-profile-nav{padding:0}div.uimob340 .um-profile-nav-item a{padding:1px 12px;margin-left:0;border-radius:0}div.uimob340 .um-profile-subnav{padding:8px 15px}div.uimob340 .um-profile-subnav a{display:block;text-align:left;font-size:13px;margin:0;padding:6px 0}div.uimob340 .um-profile-subnav span{font-size:12px;padding:1px 6px}div.uimob340 .um-cover-overlay span.um-cover-overlay-t{display:none!important}div.uimob340 .um-cover-overlay{padding:0}div.uimob340 .um-cover-overlay i,div.uimob340 .um-profile-photo-overlay i{margin-bottom:0;font-size:30px}.um-modal.uimob340{width:100%!important;margin:0!important;left:0!important;height:100%;background:#fff}.um-modal.uimob340,.um-modal.uimob340 .um-modal-body,.um-modal.uimob340 .um-modal-header{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-modal.uimob340 .um-modal-header{text-align:center}.um-modal.uimob340 .um-modal-footer{position:absolute;bottom:0;left:0;width:100%;box-sizing:border-box;padding:10px;border-top:1px solid #ddd}.um-modal.uimob340 .um-modal-right{width:100%;float:none}.um-modal.uimob340 .um-modal-footer a.um-modal-btn{width:48%;margin:0 1%;float:left;display:block;line-height:44px!important;height:44px}.um-modal.uimob340 .ajax-upload-dragdrop span.icon{font-size:40px;line-height:40px}div.uimob340 .um-profile-body{padding-left:0;padding-right:0}div.uimob340 .um-profile-photo{width:100%!important;text-align:center!important;position:absolute;top:-40px;left:0}div.uimob340 .um-header.no-cover .um-profile-photo{position:static;top:auto;left:auto}div.uimob340 .um-profile-photo a.um-profile-photo-img{width:100px!important;height:100px!important;margin:0 auto!important;float:none!important;display:inline-block!important;position:relative!important;top:auto!important;left:auto!important}div.uimob340 .um-header.no-cover .um-profile-photo a.um-profile-photo-img{width:120px!important;height:120px!important}div.uimob340 .um-header .um-profile-meta{padding-left:0!important;padding-right:0!important;text-align:center!important;padding-top:60px!important}div.uimob340 .um-header.no-cover .um-profile-meta{padding-top:0!important}div.uimob340 .um-header .um-name{float:none!important;margin-right:0!important;font-size:18px}div.uimob340 .um-header .um-meta,div.uimob340 .um-header .um-meta-text{padding:0 20px}div.uimob340 .um-header .um-meta span:first-child{display:block}div.uimob340 .um-header .um-meta span{display:none}div.uimob340 .um-col-121,div.uimob340 .um-col-122,div.uimob340 .um-col-131,div.uimob340 .um-col-132,div.uimob340 .um-col-133{float:none;width:100%;margin:0}div.uimob340 .um-field-half{float:none;width:100%}div.uimob340 .um-search{padding:20px 0!important;width:100%!important;box-sizing:border-box}div.uimob340 .um-search .um-search-filter{width:100%!important;float:none!important;padding:0 0 15px!important}div.uimob340 .um-search .um-search-submit .um-button{display:block!important;min-width:100%!important;margin:0 0 15px!important}div.uimob340 .um-member{width:100%}div.uimob340 .um-gutter-sizer{width:0}div.uimob340 .um-account-main{float:none;width:100%;padding:0;box-sizing:border-box}div.uimob340 .um-account-tab{padding-bottom:20px;border-bottom:1px solid #eee}div.uimob340 .um-account-meta{margin-bottom:0}.uimob340 .um-half{float:none;width:100%;margin:0 0 10px}.uimob340 .um-button.um-btn-auto-width{min-width:auto;max-width:auto;width:100%}div.uimob500 .um-profile-nav{padding:6px}div.uimob500 .um-profile-nav-item a{padding:1px 12px;margin-left:6px}div.uimob500 .um-profile-subnav{padding:8px 15px}div.uimob500 .um-profile-subnav a{display:block;text-align:left;font-size:13px;margin:0;padding:6px 0}div.uimob500 .um-profile-subnav span{font-size:12px;padding:1px 6px}div.uimob500 .um-cover-overlay span.um-cover-overlay-t{display:none!important}div.uimob500 .um-cover-overlay{padding:0}div.uimob500 .um-cover-overlay i,div.uimob500 .um-profile-photo-overlay i{margin-bottom:0;font-size:30px}.um-modal.uimob500{width:100%!important;margin:0!important;left:0!important;height:100%;background:#fff}.um-modal.uimob500,.um-modal.uimob500 .um-modal-body,.um-modal.uimob500 .um-modal-header{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-modal.uimob500 .um-modal-header{text-align:center}.um-modal.uimob500 .um-modal-footer{position:absolute;bottom:0;left:0;width:100%;box-sizing:border-box;padding:10px;border-top:1px solid #ddd}.um-modal.uimob500 .um-modal-right{width:100%;float:none}.um-modal.uimob500 .um-modal-footer a.um-modal-btn{width:48%;margin:0 1%;float:left;display:block;line-height:44px!important;height:44px}.um-modal.uimob500 .ajax-upload-dragdrop span.icon{font-size:40px;line-height:40px}div.uimob500 .um-profile-body{padding-left:0;padding-right:0}div.uimob500 .um-profile-photo{width:100%!important;text-align:center!important;position:absolute;top:-40px;left:0}div.uimob500 .um-header.no-cover .um-profile-photo{position:static;top:auto;left:auto}div.uimob500 .um-profile-photo a.um-profile-photo-img{width:100px!important;height:100px!important;margin:0 auto!important;float:none!important;display:inline-block!important;position:relative!important;top:auto!important;left:auto!important}div.uimob500 .um-header.no-cover .um-profile-photo a.um-profile-photo-img{width:120px!important;height:120px!important}div.uimob500 .um-header .um-profile-meta{padding-left:0!important;padding-right:0!important;text-align:center!important;padding-top:60px!important}div.uimob500 .um-header.no-cover .um-profile-meta{padding-top:0!important}div.uimob500 .um-header .um-name{float:none!important;margin-right:0!important;font-size:21px}div.uimob500 .um-header .um-meta,div.uimob500 .um-header .um-meta-text{padding:0 20px}div.uimob500 .um-header .um-meta span:first-child{display:block}div.uimob500 .um-header .um-meta span{display:none}div.uimob500 .um-col-121,div.uimob500 .um-col-122,div.uimob500 .um-col-131,div.uimob500 .um-col-132,div.uimob500 .um-col-133{float:none;width:100%;margin:0}div.uimob500 .um-field-half{float:none;width:100%}div.uimob500 .um-search{padding:20px 0!important;width:100%!important;box-sizing:border-box}div.uimob500 .um-search .um-search-filter{width:100%!important;float:none!important;padding:0 0 15px!important}div.uimob500 .um-search .um-search-submit .um-button{display:block!important;min-width:100%!important;margin:0 0 15px!important}div.uimob500 .um-member{width:100%}div.uimob500 .um-gutter-sizer{width:0}div.uimob500 .um-account-main{float:none;width:100%;padding:0;box-sizing:border-box}div.uimob500 .um-account-tab{padding-bottom:20px;border-bottom:1px solid #eee}div.uimob500 .um-account-meta{margin-bottom:0}div.uimob800 .um-profile-nav-item a{padding:1px 12px;margin-left:6px}div.uimob800 .um-profile-nav-item i{font-size:25px;width:25px}div.uimob800 .um-profile-subnav{padding:8px 15px}div.uimob800 .um-profile-subnav a{display:block;text-align:left;font-size:14px;margin:0;padding:6px 0}div.uimob800 .um-profile-subnav span{font-size:12px;padding:2px 8px}div.uimob800 .um-account-main{width:90%;max-width:450px}div.uimob800 .um-account-side{padding:0;width:10%}div.uimob800 .um-account-side ul{border:1px solid #ddd;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}div.uimob800 .um-account-side li{margin-bottom:0!important;background:0 0}div.uimob800 .um-account-side li a{display:block;padding:0!important;height:44px;line-height:44px;color:#666!important;text-align:center;text-decoration:none!important;background:0 0;transition:all .2s linear}div.uimob800 .um-account-side li:first-child a{-moz-border-radius:3px 3px 0 0;-webkit-border-radius:3px 3px 0 0;border-radius:3px 3px 0 0}div.uimob800 .um-account-side li:last-child a{-moz-border-radius:0 0 3px 3px;-webkit-border-radius:0 0 3px 3px;border-radius:0 0 3px 3px}div.uimob800 .um-account-side li a span.um-account-icontip{display:block;float:left;text-align:center;width:100%;height:100%;font-size:22px;line-height:44px}div.uimob800 .um-account-side li a span.um-account-icontip i{position:relative;text-align:center;width:100%}div.uimob800 .um-account-side li a.current,div.uimob800 .um-account-side li a.current:hover{background:#3ba1da!important;color:#fff!important}div.uimob800 .um-account-meta a{border:1px solid #ddd}div.uimob800 .um-account-meta a,div.uimob800 .um-account-meta img{display:block;overflow:hidden;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px}div.uimob800 .um-profile-photo{width:200px!important}div.uimob800 .um-profile-photo a.um-profile-photo-img{width:140px!important;height:140px!important;top:-70px!important}div.uimob800 .um-header.no-cover .um-profile-photo a.um-profile-photo-img{top:auto!important}div.uimob800 .um-header .um-profile-meta{padding-left:200px}div.uimob800 .um-cover-overlay{padding:0}div.uimob800 .um-search{padding:20px 0!important;width:100%!important;box-sizing:border-box}div.uimob800 .um-search .um-search-filter{width:48%!important;float:left!important;padding:0 0 15px!important}div.uimob800 .um-search .um-search-filter-2{margin-left:4%}div.uimob800 .um-search .um-search-submit .um-button{display:block!important;width:48%!important;margin:0 0 15px!important;box-sizing:border-box;float:left}div.uimob800 .um-search .um-search-submit .um-button.um-alt{float:right}div.uimob800 .um-member{width:48%}div.uimob800 .um-gutter-sizer{width:4%}div.uimob960 .um-col-131,div.uimob960 .um-col-132,div.uimob960 .um-col-133{float:none;width:100%;margin:0}div.uimob960 .um-search{padding:20px 0!important;width:100%!important;box-sizing:border-box}div.uimob960 .um-search .um-search-filter{width:48%!important;float:left!important;padding:0 0 15px!important}div.uimob960 .um-search .um-search-filter-2{margin-left:4%}div.uimob960 .um-search .um-search-submit .um-button{display:block!important;width:48%!important;margin:0 0 15px!important;box-sizing:border-box;float:left}div.uimob960 .um-search .um-search-submit .um-button.um-alt{float:right}div.uimob960 .um-member{width:48%}div.uimob960 .um-gutter-sizer{width:4%}@media screen and (max-height:400px){.ajax-upload-dragdrop span.icon{display:none}.um-modal.no-photo{width:100%!important;margin:0!important;left:0!important;height:100%;background:#fff}.um-modal.no-photo,.um-modal.no-photo .um-modal-body,.um-modal.no-photo .um-modal-header{-moz-border-radius:0;-webkit-border-radius:0;border-radius:0}.um-modal.no-photo .um-modal-header{text-align:center;font-size:14px}.um-modal.no-photo .um-modal-footer{position:absolute;bottom:0;left:0;width:100%;box-sizing:border-box;padding:10px;border-top:1px solid #ddd}.um-modal.no-photo .um-modal-right{width:100%;float:none}.um-modal.no-photo .um-modal-footer a.um-modal-btn{width:48%;margin:0 1%;float:left;display:block;line-height:44px!important;height:44px}}@media screen and (max-height:300px){.ajax-upload-dragdrop span.icon,.ajax-upload-dragdrop span.str,.um-modal.no-photo .um-modal-header{display:none}}
assets/js/um-functions.js CHANGED
@@ -65,7 +65,7 @@ function um_conditional(){
65
  }
66
 
67
  if ( operator0 == 'contains' ) {
68
- if ( live_value && live_value.indexOf( value0 ) >= 0 ) {
69
  jQuery(this).fadeIn();
70
  } else {
71
  jQuery(this).hide();
@@ -127,7 +127,7 @@ function um_conditional(){
127
  }
128
 
129
  if ( operator0 == 'contains' ) {
130
- if ( live_value && live_value.indexOf( value0 ) >= 0 ) {
131
  jQuery(this).hide();
132
  } else {
133
  jQuery(this).fadeIn();
65
  }
66
 
67
  if ( operator0 == 'contains' ) {
68
+ if ( live_value.indexOf( value0 ) >= 0 ) {
69
  jQuery(this).fadeIn();
70
  } else {
71
  jQuery(this).hide();
127
  }
128
 
129
  if ( operator0 == 'contains' ) {
130
+ if ( live_value.indexOf( value0 ) >= 0 ) {
131
  jQuery(this).hide();
132
  } else {
133
  jQuery(this).fadeIn();
assets/js/um.min.js CHANGED
@@ -111,7 +111,7 @@ this.data("tipsy");if(f)f[a]();return this}a=b.extend({},b.fn.tipsy.defaults,a);
111
  b.data(this,"tipsy-pointee"),c;if(!(c=!a)){a:{for(;a=a.parentNode;)if(a==document){a=true;break a}a=false}c=!a}c&&b(this).remove()})};b.fn.tipsy.elementOptions=function(a,c){return b.metadata?b.extend({},c,b(a).metadata()):c};b.fn.tipsy.autoNS=function(){return b(this).offset().top>b(document).scrollTop()+b(window).height()/2?"s":"n"};b.fn.tipsy.autoWE=function(){return b(this).offset().left>b(document).scrollLeft()+b(window).width()/2?"e":"w"};b.fn.tipsy.autoBounds=function(a,c){return function(){var d=
112
  {ns:c[0],ew:c.length>1?c[1]:false},h=b(document).scrollTop()+a,f=b(document).scrollLeft()+a,g=b(this);if(g.offset().top<h)d.ns="n";if(g.offset().left<f)d.ew="w";if(b(window).width()+b(document).scrollLeft()-g.offset().left<a)d.ew="e";if(b(window).height()+b(document).scrollTop()-g.offset().top<a)d.ns="s";return d.ns+(d.ew?d.ew:"")}}})(jQuery);
113
 
114
- var live_field;var live_value;function um_conditional(){jQuery('.um-field.um-is-conditional').each(function(){for(var i = 0;i < 5;i++){var action0 = jQuery(this).data('cond-'+i+'-action');var field0 = jQuery(this).data('cond-'+i+'-field');var operator0 = jQuery(this).data('cond-'+i+'-operator');var value0 = jQuery(this).data('cond-'+i+'-value');if(action0 == 'show' && field0 == live_field){if(operator0 == 'empty'){if(live_value == ''){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'not empty'){if(live_value!= ''){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'equals to'){if(value0 == live_value){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'not equals'){if(jQuery.isNumeric(value0) && parseInt(live_value)!= parseInt(value0) && live_value){jQuery(this).fadeIn()}else if(!jQuery.isNumeric(value0) && value0!= live_value){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'greater than'){if(jQuery.isNumeric(value0) && parseInt(live_value)>parseInt(value0)){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'less than'){if(jQuery.isNumeric(value0) && parseInt(live_value) < parseInt(value0) && live_value){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'contains'){if(live_value && live_value.indexOf(value0)>= 0){jQuery(this).fadeIn()}else{jQuery(this).hide()}}}if(action0 == 'hide' && field0 == live_field){if(operator0 == 'empty'){if(live_value == ''){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'not empty'){if(live_value!= ''){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'equals to'){if(value0 == live_value){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'not equals'){if(jQuery.isNumeric(value0) && parseInt(live_value)!= parseInt(value0) && live_value){jQuery(this).hide()}else if(!jQuery.isNumeric(value0) && value0!= live_value){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'greater than'){if(jQuery.isNumeric(value0) && parseInt(live_value)>parseInt(value0)){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'less than'){if(jQuery.isNumeric(value0) && parseInt(live_value) < parseInt(value0) && live_value){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'contains'){if(live_value && live_value.indexOf(value0)>= 0){jQuery(this).hide()}else{jQuery(this).fadeIn()}}}}})}function UM_hide_menus(){menu = jQuery('.um-dropdown');menu.parents('div').find('a').removeClass('active');menu.hide()}function UM_domenus(){jQuery('.um-dropdown').each(function(){var menu = jQuery(this);var element = jQuery(this).attr('data-element');var position = jQuery(this).attr('data-position');jQuery(element).addClass('um-trigger-menu-on-'+menu.attr('data-trigger'));if(jQuery(window).width() <= 1200 && element == 'div.um-profile-edit'){position = 'lc'}if(position == 'lc'){if(200>jQuery(element).find('img').width()){left_p =((jQuery(element).width() - jQuery(element).find('img').width()) / 2)+((jQuery(element).find('img').width() - 200) / 2)}else{left_p =((jQuery(element).width() - jQuery(element).find('img').width()) / 2)}top_ = parseInt(jQuery(element).find('a').css('top'));if(top_){top_p = jQuery(element).find('img').height()+4+top_;left_gap = 4}else{top_p = jQuery(element).find('img').height()+4;left_gap = 0}if(top_p == 4 && element == 'div.um-cover'){top_p = jQuery(element).height() / 2+(menu.height() / 2)}else if(top_p == 4){top_p = jQuery(element).height()+20}gap_right = jQuery(element).width()+17;menu.css({'top':0,'width':200,'left':'auto','right':gap_right+'px','text-align':'center'});menu.find('.um-dropdown-arr').find('i').removeClass().addClass('um-icon-arrow-right-b');menu.find('.um-dropdown-arr').css({'top':'4px','left':'auto','right':'-17px'})}if(position == 'bc'){if(200>jQuery(element).find('img').width()){left_p =((jQuery(element).width() - jQuery(element).find('img').width()) / 2)+((jQuery(element).find('img').width() - 200) / 2)}else{left_p =((jQuery(element).width() - jQuery(element).find('img').width()) / 2)}top_ = parseInt(jQuery(element).find('a').css('top'));if(top_){top_p = jQuery(element).find('img').height()+4+top_;left_gap = 4}else{top_p = jQuery(element).find('img').height()+4;left_gap = 0}if(top_p == 4 && element == 'div.um-cover'){top_p = jQuery(element).height() / 2+(menu.height() / 2)}else if(top_p == 4){top_p = jQuery(element).height()+20}menu.css({'top':top_p,'width':200,'left':left_p+left_gap,'right':'auto','text-align':'center'});menu.find('.um-dropdown-arr').find('i').removeClass().addClass('um-icon-arrow-up-b');menu.find('.um-dropdown-arr').css({'top':'-17px','left':(menu.width() / 2) - 12,'right':'auto'})}})}function um_responsive(){jQuery('.um').each(function(){element_width = jQuery(this).width();if(element_width <= 340){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960');jQuery(this).addClass('uimob340')}else if(element_width <= 500){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960');jQuery(this).addClass('uimob500')}else if(element_width <= 800){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960');jQuery(this).addClass('uimob800')}else if(element_width <= 960){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960');jQuery(this).addClass('uimob960')}else if(element_width>960){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960')}if(jQuery('.um-account-nav').length>0 && jQuery('.um-account-side').is(':visible') && jQuery('.um-account-tab:visible').length == 0){jQuery('.um-account-side li a.current').trigger('click')}jQuery(this).css('opacity',1)});jQuery('.um-cover,.um-member-cover').each(function(){var elem = jQuery(this);var ratio = elem.data('ratio');var width = elem.width();var ratios = ratio.split(':');calcHeight = Math.round(width / ratios[0])+'px';elem.height(calcHeight);elem.find('.um-cover-add').height(calcHeight)});jQuery('.um-members').each(function(){UM_Member_Grid(jQuery(this))});UM_domenus()}function UM_Member_Grid(container){container.masonry({itemSelector:'.um-member',columnWidth:'.um-member',gutter:'.um-gutter-sizer'})}function initImageUpload_UM(trigger){if(trigger.data('upload_help_text')){upload_help_text = '<span class="help">'+trigger.data('upload_help_text')+'</span>'}else{upload_help_text = ''}if(trigger.data('icon')){icon = '<span class="icon"><i class="'+trigger.data('icon')+'"></i></span>'}else{icon = ''}if(trigger.data('upload_text')){upload_text = '<span class="str">'+trigger.data('upload_text')+'</span>'}else{upload_text = ''}trigger.uploadFile({url:ultimatemember_image_upload_url,method:"POST",multiple:false,formData:{key:trigger.data('key'),set_id:trigger.data('set_id'),set_mode:trigger.data('set_mode')},fileName:trigger.data('key'),allowedTypes:trigger.data('allowed_types'),maxFileSize:trigger.data('max_size'),dragDropStr:icon+upload_text+upload_help_text,sizeErrorStr:trigger.data('max_size_error'),extErrorStr:trigger.data('extension_error'),maxFileCountErrorStr:trigger.data('max_files_error'),maxFileCount:1,showDelete:false,showAbort:false,showDone:false,showFileCounter:false,showStatusAfterSuccess:true,onSubmit:function(files){trigger.parents('.um-modal-body').find('.um-error-block').remove()},onSuccess:function(files,data,xhr){trigger.selectedFiles = 0;data = jQuery.parseJSON(data);if(data.error && data.error!= ''){trigger.parents('.um-modal-body').append('<div class="um-error-block">'+data.error+'</div>');trigger.parents('.um-modal-body').find('.upload-statusbar').hide(0);um_modal_responsive()}else{jQuery.each(data,function(key,value){var img_id = trigger.parents('.um-modal-body').find('.um-single-image-preview img');var img_id_h = trigger.parents('.um-modal-body').find('.um-single-image-preview');img_id.attr("src",value);img_id.load(function(){trigger.parents('.um-modal-body').find('.um-modal-btn.um-finish-upload.disabled').removeClass('disabled');trigger.parents('.um-modal-body').find('.ajax-upload-dragdrop,.upload-statusbar').hide(0);img_id_h.show(0);um_modal_responsive()})})}}})}function initFileUpload_UM(trigger){if(trigger.data('upload_help_text')){upload_help_text = '<span class="help">'+trigger.data('upload_help_text')+'</span>'}else{upload_help_text = ''}if(trigger.data('icon')){icon = '<span class="icon"><i class="'+trigger.data('icon')+'"></i></span>'}else{icon = ''}if(trigger.data('upload_text')){upload_text = '<span class="str">'+trigger.data('upload_text')+'</span>'}else{upload_text = ''}trigger.uploadFile({url:ultimatemember_file_upload_url,method:"POST",multiple:false,formData:{key:trigger.data('key'),set_id:trigger.data('set_id'),set_mode:trigger.data('set_mode')},fileName:trigger.data('key'),allowedTypes:trigger.data('allowed_types'),maxFileSize:trigger.data('max_size'),dragDropStr:icon+upload_text+upload_help_text,sizeErrorStr:trigger.data('max_size_error'),extErrorStr:trigger.data('extension_error'),maxFileCountErrorStr:trigger.data('max_files_error'),maxFileCount:1,showDelete:false,showAbort:false,showDone:false,showFileCounter:false,showStatusAfterSuccess:true,onSubmit:function(files){trigger.parents('.um-modal-body').find('.um-error-block').remove()},onSuccess:function(files,data,xhr){trigger.selectedFiles = 0;data = jQuery.parseJSON(data);if(data.error && data.error!= ''){trigger.parents('.um-modal-body').append('<div class="um-error-block">'+data.error+'</div>');trigger.parents('.um-modal-body').find('.upload-statusbar').hide(0);um_modal_responsive()}else{jQuery.each(data,function(key,value){trigger.parents('.um-modal-body').find('.um-modal-btn.um-finish-upload.disabled').removeClass('disabled');trigger.parents('.um-modal-body').find('.ajax-upload-dragdrop,.upload-statusbar').hide(0);trigger.parents('.um-modal-body').find('.um-single-file-preview').show(0);if(key == 'icon'){trigger.parents('.um-modal-body').find('.um-single-fileinfo i').removeClass().addClass(value)}else if(key == 'icon_bg'){trigger.parents('.um-modal-body').find('.um-single-fileinfo span.icon').css({'background-color':value})}else if(key == 'filename'){trigger.parents('.um-modal-body').find('.um-single-fileinfo span.filename').html(value)}else{trigger.parents('.um-modal-body').find('.um-single-fileinfo a').attr('href',value)}});um_modal_responsive()}}})}function initCrop_UM(){var target_img = jQuery('.um-modal:visible .um-single-image-preview img');var target_img_parent = jQuery('.um-modal:visible .um-single-image-preview');var crop_data = target_img.parent().attr('data-crop');var min_width = target_img.parent().attr('data-min_width');var min_height = target_img.parent().attr('data-min_height');var ratio = target_img.parent().attr('data-ratio');if(jQuery('.um-modal').find('#um_upload_single').attr('data-ratio')){var ratio = jQuery('.um-modal').find('#um_upload_single').attr('data-ratio');var ratio_split = ratio.split(':');var ratio = ratio_split[0]}if(target_img.length){if(target_img.attr('src')!= ''){var max_height = jQuery(window).height() -(jQuery('.um-modal-footer a').height()+20) - 50 -(jQuery('.um-modal-header:visible').height());target_img.css({'height':'auto'});target_img_parent.css({'height':'auto'});if(jQuery(window).height() <= 400){target_img_parent.css({'height':max_height+'px','max-height':max_height+'px'});target_img.css({'height':'auto'})}else{target_img.css({'height':'auto','max-height':max_height+'px'});target_img_parent.css({'height':target_img.height(),'max-height':max_height+'px'})}if(crop_data == 'square'){var opts ={minWidth:min_width,minHeight:min_height,dragCrop:false,aspectRatio:1.0,zoomable:false,rotatable:false,dashed:false,done:function(data){target_img.parent().attr('data-coord',Math.round(data.x)+','+Math.round(data.y)+','+Math.round(data.width)+','+Math.round(data.height))}}}else if(crop_data == 'cover'){var opts ={minWidth:min_width,minHeight:Math.round(min_width / ratio),dragCrop:false,aspectRatio:ratio,zoomable:false,rotatable:false,dashed:false,done:function(data){target_img.parent().attr('data-coord',Math.round(data.x)+','+Math.round(data.y)+','+Math.round(data.width)+','+Math.round(data.height))}}}else if(crop_data == 'user'){var opts ={minWidth:min_width,minHeight:min_height,dragCrop:true,aspectRatio:"auto",zoomable:false,rotatable:false,dashed:false,done:function(data){target_img.parent().attr('data-coord',Math.round(data.x)+','+Math.round(data.y)+','+Math.round(data.width)+','+Math.round(data.height))}}}if(crop_data!= 0){target_img.cropper(opts)}}}}function um_new_modal(id,size,isPhoto,source){var modal = jQuery('body').find('.um-modal-overlay');if(modal.length == 0){jQuery('.tipsy').hide();UM_hide_menus();jQuery('body,html,textarea').css("overflow","hidden");jQuery(document).bind("touchmove",function(e){e.preventDefault()});jQuery('.um-modal').on('touchmove',function(e){e.stopPropagation()});if(isPhoto){jQuery('body').append('<div class="um-modal-overlay" ></div><div class="um-modal is-photo" ></div>')}else{jQuery('body').append('<div class="um-modal-overlay" ></div><div class="um-modal no-photo" ></div>')}jQuery('#'+id).prependTo('.um-modal');if(isPhoto){jQuery('.um-modal').find('.um-modal-photo').html('<img />');var photo_ = jQuery('.um-modal-photo img');var photo_maxw = jQuery(window).width() - 60;var photo_maxh = jQuery(window).height() -(jQuery(window).height() * .25);photo_.attr("src",source);photo_.load(function(){jQuery('#'+id).show();jQuery('.um-modal').show();photo_.css({'opacity':0});photo_.css({'max-width':photo_maxw});photo_.css({'max-height':photo_maxh});jQuery('.um-modal').css({'width':photo_.width(),'margin-left':'-'+photo_.width() / 2+'px'});photo_.animate({'opacity':1},1000);um_modal_responsive()})}else{jQuery('#'+id).show();jQuery('.um-modal').show();um_modal_size(size);initImageUpload_UM(jQuery('.um-modal:visible').find('.um-single-image-upload'));initFileUpload_UM(jQuery('.um-modal:visible').find('.um-single-file-upload'));um_modal_responsive()}}}function um_modal_responsive(){var modal = jQuery('.um-modal:visible');var photo_modal = jQuery('.um-modal-body.photo:visible');if(photo_modal.length){modal.removeClass('uimob340');modal.removeClass('uimob500');var photo_ = jQuery('.um-modal-photo img');var photo_maxw = jQuery(window).width() - 60;var photo_maxh = jQuery(window).height() -(jQuery(window).height() * .25);photo_.css({'opacity':0});photo_.css({'max-width':photo_maxw});photo_.css({'max-height':photo_maxh});jQuery('.um-modal').css({'width':photo_.width(),'margin-left':'-'+photo_.width() / 2+'px'});photo_.animate({'opacity':1},1000);var half_gap =(jQuery(window).height() - modal.innerHeight()) / 2+'px';modal.animate({'bottom':half_gap},300)}else if(modal.length){var element_width = jQuery(window).width();modal.removeClass('uimob340');modal.removeClass('uimob500');if(element_width <= 340){modal.addClass('uimob340');initCrop_UM();modal.animate({'bottom':0},300)}else if(element_width <= 500){modal.addClass('uimob500');initCrop_UM();modal.animate({'bottom':0},300)}else if(element_width <= 800){initCrop_UM();var half_gap =(jQuery(window).height() - modal.innerHeight()) / 2+'px';modal.animate({'bottom':half_gap},300)}else if(element_width <= 960){initCrop_UM();var half_gap =(jQuery(window).height() - modal.innerHeight()) / 2+'px';modal.animate({'bottom':half_gap},300)}else if(element_width>960){initCrop_UM();var half_gap =(jQuery(window).height() - modal.innerHeight()) / 2+'px';modal.animate({'bottom':half_gap},300)}}}function um_remove_modal(){jQuery('.um-modal .um-single-image-preview img').cropper("destroy");jQuery('body,html,textarea').css("overflow","auto");jQuery(document).unbind('touchmove');jQuery('.um-modal div[id^="um_"]').hide().appendTo('body');jQuery('.um-modal,.um-modal-overlay').remove()}function um_modal_size(aclass){jQuery('.um-modal:visible').addClass(aclass)}function um_modal_add_attr(id,value){jQuery('.um-modal:visible').data(id,value)}
115
 
116
  jQuery(window).load(function(){um_responsive();um_modal_responsive()});jQuery(window).resize(function(){jQuery(".um-modal .um-single-image-preview.crop:visible img").cropper("destroy");um_responsive();um_modal_responsive()});jQuery(document).ready(function(){jQuery(document).on("click",'.um-modal-overlay, a[data-action="um_remove_modal"]',function(){um_remove_modal()});jQuery(document).on("click",'a[data-modal^="um_"], span[data-modal^="um_"], .um-modal a',function(a){a.preventDefault();return false});jQuery(document).on("click",".um-modal .um-single-file-preview a.cancel",function(a){a.preventDefault();a=jQuery(this).parents(".um-modal-body");var b=jQuery(this).parents(".um-modal-body").find(".um-single-fileinfo a").attr("href");
117
  a.find(".um-single-file-preview").hide();a.find(".ajax-upload-dragdrop").show();a.find(".um-modal-btn.um-finish-upload").addClass("disabled");um_modal_responsive();jQuery.ajax({url:ultimatemember_ajax_url,type:"post",data:{action:"ultimatemember_remove_file",src:b}});return false});jQuery(document).on("click",".um-modal .um-single-image-preview a.cancel",function(a){a.preventDefault();a=jQuery(this).parents(".um-modal-body");var b=jQuery(this).parents(".um-modal-body").find(".um-single-image-preview img").attr("src");
111
  b.data(this,"tipsy-pointee"),c;if(!(c=!a)){a:{for(;a=a.parentNode;)if(a==document){a=true;break a}a=false}c=!a}c&&b(this).remove()})};b.fn.tipsy.elementOptions=function(a,c){return b.metadata?b.extend({},c,b(a).metadata()):c};b.fn.tipsy.autoNS=function(){return b(this).offset().top>b(document).scrollTop()+b(window).height()/2?"s":"n"};b.fn.tipsy.autoWE=function(){return b(this).offset().left>b(document).scrollLeft()+b(window).width()/2?"e":"w"};b.fn.tipsy.autoBounds=function(a,c){return function(){var d=
112
  {ns:c[0],ew:c.length>1?c[1]:false},h=b(document).scrollTop()+a,f=b(document).scrollLeft()+a,g=b(this);if(g.offset().top<h)d.ns="n";if(g.offset().left<f)d.ew="w";if(b(window).width()+b(document).scrollLeft()-g.offset().left<a)d.ew="e";if(b(window).height()+b(document).scrollTop()-g.offset().top<a)d.ns="s";return d.ns+(d.ew?d.ew:"")}}})(jQuery);
113
 
114
+ var live_field;var live_value;function um_conditional(){jQuery('.um-field.um-is-conditional').each(function(){for(var i = 0;i < 5;i++){var action0 = jQuery(this).data('cond-'+i+'-action');var field0 = jQuery(this).data('cond-'+i+'-field');var operator0 = jQuery(this).data('cond-'+i+'-operator');var value0 = jQuery(this).data('cond-'+i+'-value');if(action0 == 'show' && field0 == live_field){if(operator0 == 'empty'){if(live_value == ''){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'not empty'){if(live_value!= ''){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'equals to'){if(value0 == live_value){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'not equals'){if(jQuery.isNumeric(value0) && parseInt(live_value)!= parseInt(value0) && live_value){jQuery(this).fadeIn()}else if(!jQuery.isNumeric(value0) && value0!= live_value){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'greater than'){if(jQuery.isNumeric(value0) && parseInt(live_value)>parseInt(value0)){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'less than'){if(jQuery.isNumeric(value0) && parseInt(live_value) < parseInt(value0) && live_value){jQuery(this).fadeIn()}else{jQuery(this).hide()}}if(operator0 == 'contains'){if(live_value.indexOf(value0)>= 0){jQuery(this).fadeIn()}else{jQuery(this).hide()}}}if(action0 == 'hide' && field0 == live_field){if(operator0 == 'empty'){if(live_value == ''){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'not empty'){if(live_value!= ''){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'equals to'){if(value0 == live_value){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'not equals'){if(jQuery.isNumeric(value0) && parseInt(live_value)!= parseInt(value0) && live_value){jQuery(this).hide()}else if(!jQuery.isNumeric(value0) && value0!= live_value){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'greater than'){if(jQuery.isNumeric(value0) && parseInt(live_value)>parseInt(value0)){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'less than'){if(jQuery.isNumeric(value0) && parseInt(live_value) < parseInt(value0) && live_value){jQuery(this).hide()}else{jQuery(this).fadeIn()}}if(operator0 == 'contains'){if(live_value.indexOf(value0)>= 0){jQuery(this).hide()}else{jQuery(this).fadeIn()}}}}})}function UM_hide_menus(){menu = jQuery('.um-dropdown');menu.parents('div').find('a').removeClass('active');menu.hide()}function UM_domenus(){jQuery('.um-dropdown').each(function(){var menu = jQuery(this);var element = jQuery(this).attr('data-element');var position = jQuery(this).attr('data-position');jQuery(element).addClass('um-trigger-menu-on-'+menu.attr('data-trigger'));if(jQuery(window).width() <= 1200 && element == 'div.um-profile-edit'){position = 'lc'}if(position == 'lc'){if(200>jQuery(element).find('img').width()){left_p =((jQuery(element).width() - jQuery(element).find('img').width()) / 2)+((jQuery(element).find('img').width() - 200) / 2)}else{left_p =((jQuery(element).width() - jQuery(element).find('img').width()) / 2)}top_ = parseInt(jQuery(element).find('a').css('top'));if(top_){top_p = jQuery(element).find('img').height()+4+top_;left_gap = 4}else{top_p = jQuery(element).find('img').height()+4;left_gap = 0}if(top_p == 4 && element == 'div.um-cover'){top_p = jQuery(element).height() / 2+(menu.height() / 2)}else if(top_p == 4){top_p = jQuery(element).height()+20}gap_right = jQuery(element).width()+17;menu.css({'top':0,'width':200,'left':'auto','right':gap_right+'px','text-align':'center'});menu.find('.um-dropdown-arr').find('i').removeClass().addClass('um-icon-arrow-right-b');menu.find('.um-dropdown-arr').css({'top':'4px','left':'auto','right':'-17px'})}if(position == 'bc'){if(200>jQuery(element).find('img').width()){left_p =((jQuery(element).width() - jQuery(element).find('img').width()) / 2)+((jQuery(element).find('img').width() - 200) / 2)}else{left_p =((jQuery(element).width() - jQuery(element).find('img').width()) / 2)}top_ = parseInt(jQuery(element).find('a').css('top'));if(top_){top_p = jQuery(element).find('img').height()+4+top_;left_gap = 4}else{top_p = jQuery(element).find('img').height()+4;left_gap = 0}if(top_p == 4 && element == 'div.um-cover'){top_p = jQuery(element).height() / 2+(menu.height() / 2)}else if(top_p == 4){top_p = jQuery(element).height()+20}menu.css({'top':top_p,'width':200,'left':left_p+left_gap,'right':'auto','text-align':'center'});menu.find('.um-dropdown-arr').find('i').removeClass().addClass('um-icon-arrow-up-b');menu.find('.um-dropdown-arr').css({'top':'-17px','left':(menu.width() / 2) - 12,'right':'auto'})}})}function um_responsive(){jQuery('.um').each(function(){element_width = jQuery(this).width();if(element_width <= 340){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960');jQuery(this).addClass('uimob340')}else if(element_width <= 500){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960');jQuery(this).addClass('uimob500')}else if(element_width <= 800){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960');jQuery(this).addClass('uimob800')}else if(element_width <= 960){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960');jQuery(this).addClass('uimob960')}else if(element_width>960){jQuery(this).removeClass('uimob340');jQuery(this).removeClass('uimob500');jQuery(this).removeClass('uimob800');jQuery(this).removeClass('uimob960')}if(jQuery('.um-account-nav').length>0 && jQuery('.um-account-side').is(':visible') && jQuery('.um-account-tab:visible').length == 0){jQuery('.um-account-side li a.current').trigger('click')}jQuery(this).css('opacity',1)});jQuery('.um-cover,.um-member-cover').each(function(){var elem = jQuery(this);var ratio = elem.data('ratio');var width = elem.width();var ratios = ratio.split(':');calcHeight = Math.round(width / ratios[0])+'px';elem.height(calcHeight);elem.find('.um-cover-add').height(calcHeight)});jQuery('.um-members').each(function(){UM_Member_Grid(jQuery(this))});UM_domenus()}function UM_Member_Grid(container){container.masonry({itemSelector:'.um-member',columnWidth:'.um-member',gutter:'.um-gutter-sizer'})}function initImageUpload_UM(trigger){if(trigger.data('upload_help_text')){upload_help_text = '<span class="help">'+trigger.data('upload_help_text')+'</span>'}else{upload_help_text = ''}if(trigger.data('icon')){icon = '<span class="icon"><i class="'+trigger.data('icon')+'"></i></span>'}else{icon = ''}if(trigger.data('upload_text')){upload_text = '<span class="str">'+trigger.data('upload_text')+'</span>'}else{upload_text = ''}trigger.uploadFile({url:ultimatemember_image_upload_url,method:"POST",multiple:false,formData:{key:trigger.data('key'),set_id:trigger.data('set_id'),set_mode:trigger.data('set_mode')},fileName:trigger.data('key'),allowedTypes:trigger.data('allowed_types'),maxFileSize:trigger.data('max_size'),dragDropStr:icon+upload_text+upload_help_text,sizeErrorStr:trigger.data('max_size_error'),extErrorStr:trigger.data('extension_error'),maxFileCountErrorStr:trigger.data('max_files_error'),maxFileCount:1,showDelete:false,showAbort:false,showDone:false,showFileCounter:false,showStatusAfterSuccess:true,onSubmit:function(files){trigger.parents('.um-modal-body').find('.um-error-block').remove()},onSuccess:function(files,data,xhr){trigger.selectedFiles = 0;data = jQuery.parseJSON(data);if(data.error && data.error!= ''){trigger.parents('.um-modal-body').append('<div class="um-error-block">'+data.error+'</div>');trigger.parents('.um-modal-body').find('.upload-statusbar').hide(0);um_modal_responsive()}else{jQuery.each(data,function(key,value){var img_id = trigger.parents('.um-modal-body').find('.um-single-image-preview img');var img_id_h = trigger.parents('.um-modal-body').find('.um-single-image-preview');img_id.attr("src",value);img_id.load(function(){trigger.parents('.um-modal-body').find('.um-modal-btn.um-finish-upload.disabled').removeClass('disabled');trigger.parents('.um-modal-body').find('.ajax-upload-dragdrop,.upload-statusbar').hide(0);img_id_h.show(0);um_modal_responsive()})})}}})}function initFileUpload_UM(trigger){if(trigger.data('upload_help_text')){upload_help_text = '<span class="help">'+trigger.data('upload_help_text')+'</span>'}else{upload_help_text = ''}if(trigger.data('icon')){icon = '<span class="icon"><i class="'+trigger.data('icon')+'"></i></span>'}else{icon = ''}if(trigger.data('upload_text')){upload_text = '<span class="str">'+trigger.data('upload_text')+'</span>'}else{upload_text = ''}trigger.uploadFile({url:ultimatemember_file_upload_url,method:"POST",multiple:false,formData:{key:trigger.data('key'),set_id:trigger.data('set_id'),set_mode:trigger.data('set_mode')},fileName:trigger.data('key'),allowedTypes:trigger.data('allowed_types'),maxFileSize:trigger.data('max_size'),dragDropStr:icon+upload_text+upload_help_text,sizeErrorStr:trigger.data('max_size_error'),extErrorStr:trigger.data('extension_error'),maxFileCountErrorStr:trigger.data('max_files_error'),maxFileCount:1,showDelete:false,showAbort:false,showDone:false,showFileCounter:false,showStatusAfterSuccess:true,onSubmit:function(files){trigger.parents('.um-modal-body').find('.um-error-block').remove()},onSuccess:function(files,data,xhr){trigger.selectedFiles = 0;data = jQuery.parseJSON(data);if(data.error && data.error!= ''){trigger.parents('.um-modal-body').append('<div class="um-error-block">'+data.error+'</div>');trigger.parents('.um-modal-body').find('.upload-statusbar').hide(0);um_modal_responsive()}else{jQuery.each(data,function(key,value){trigger.parents('.um-modal-body').find('.um-modal-btn.um-finish-upload.disabled').removeClass('disabled');trigger.parents('.um-modal-body').find('.ajax-upload-dragdrop,.upload-statusbar').hide(0);trigger.parents('.um-modal-body').find('.um-single-file-preview').show(0);if(key == 'icon'){trigger.parents('.um-modal-body').find('.um-single-fileinfo i').removeClass().addClass(value)}else if(key == 'icon_bg'){trigger.parents('.um-modal-body').find('.um-single-fileinfo span.icon').css({'background-color':value})}else if(key == 'filename'){trigger.parents('.um-modal-body').find('.um-single-fileinfo span.filename').html(value)}else{trigger.parents('.um-modal-body').find('.um-single-fileinfo a').attr('href',value)}});um_modal_responsive()}}})}function initCrop_UM(){var target_img = jQuery('.um-modal:visible .um-single-image-preview img');var target_img_parent = jQuery('.um-modal:visible .um-single-image-preview');var crop_data = target_img.parent().attr('data-crop');var min_width = target_img.parent().attr('data-min_width');var min_height = target_img.parent().attr('data-min_height');var ratio = target_img.parent().attr('data-ratio');if(jQuery('.um-modal').find('#um_upload_single').attr('data-ratio')){var ratio = jQuery('.um-modal').find('#um_upload_single').attr('data-ratio');var ratio_split = ratio.split(':');var ratio = ratio_split[0]}if(target_img.length){if(target_img.attr('src')!= ''){var max_height = jQuery(window).height() -(jQuery('.um-modal-footer a').height()+20) - 50 -(jQuery('.um-modal-header:visible').height());target_img.css({'height':'auto'});target_img_parent.css({'height':'auto'});if(jQuery(window).height() <= 400){target_img_parent.css({'height':max_height+'px','max-height':max_height+'px'});target_img.css({'height':'auto'})}else{target_img.css({'height':'auto','max-height':max_height+'px'});target_img_parent.css({'height':target_img.height(),'max-height':max_height+'px'})}if(crop_data == 'square'){var opts ={minWidth:min_width,minHeight:min_height,dragCrop:false,aspectRatio:1.0,zoomable:false,rotatable:false,dashed:false,done:function(data){target_img.parent().attr('data-coord',Math.round(data.x)+','+Math.round(data.y)+','+Math.round(data.width)+','+Math.round(data.height))}}}else if(crop_data == 'cover'){var opts ={minWidth:min_width,minHeight:Math.round(min_width / ratio),dragCrop:false,aspectRatio:ratio,zoomable:false,rotatable:false,dashed:false,done:function(data){target_img.parent().attr('data-coord',Math.round(data.x)+','+Math.round(data.y)+','+Math.round(data.width)+','+Math.round(data.height))}}}else if(crop_data == 'user'){var opts ={minWidth:min_width,minHeight:min_height,dragCrop:true,aspectRatio:"auto",zoomable:false,rotatable:false,dashed:false,done:function(data){target_img.parent().attr('data-coord',Math.round(data.x)+','+Math.round(data.y)+','+Math.round(data.width)+','+Math.round(data.height))}}}if(crop_data!= 0){target_img.cropper(opts)}}}}function um_new_modal(id,size,isPhoto,source){var modal = jQuery('body').find('.um-modal-overlay');if(modal.length == 0){jQuery('.tipsy').hide();UM_hide_menus();jQuery('body,html,textarea').css("overflow","hidden");jQuery(document).bind("touchmove",function(e){e.preventDefault()});jQuery('.um-modal').on('touchmove',function(e){e.stopPropagation()});if(isPhoto){jQuery('body').append('<div class="um-modal-overlay" ></div><div class="um-modal is-photo" ></div>')}else{jQuery('body').append('<div class="um-modal-overlay" ></div><div class="um-modal no-photo" ></div>')}jQuery('#'+id).prependTo('.um-modal');if(isPhoto){jQuery('.um-modal').find('.um-modal-photo').html('<img />');var photo_ = jQuery('.um-modal-photo img');var photo_maxw = jQuery(window).width() - 60;var photo_maxh = jQuery(window).height() -(jQuery(window).height() * .25);photo_.attr("src",source);photo_.load(function(){jQuery('#'+id).show();jQuery('.um-modal').show();photo_.css({'opacity':0});photo_.css({'max-width':photo_maxw});photo_.css({'max-height':photo_maxh});jQuery('.um-modal').css({'width':photo_.width(),'margin-left':'-'+photo_.width() / 2+'px'});photo_.animate({'opacity':1},1000);um_modal_responsive()})}else{jQuery('#'+id).show();jQuery('.um-modal').show();um_modal_size(size);initImageUpload_UM(jQuery('.um-modal:visible').find('.um-single-image-upload'));initFileUpload_UM(jQuery('.um-modal:visible').find('.um-single-file-upload'));um_modal_responsive()}}}function um_modal_responsive(){var modal = jQuery('.um-modal:visible');var photo_modal = jQuery('.um-modal-body.photo:visible');if(photo_modal.length){modal.removeClass('uimob340');modal.removeClass('uimob500');var photo_ = jQuery('.um-modal-photo img');var photo_maxw = jQuery(window).width() - 60;var photo_maxh = jQuery(window).height() -(jQuery(window).height() * .25);photo_.css({'opacity':0});photo_.css({'max-width':photo_maxw});photo_.css({'max-height':photo_maxh});jQuery('.um-modal').css({'width':photo_.width(),'margin-left':'-'+photo_.width() / 2+'px'});photo_.animate({'opacity':1},1000);var half_gap =(jQuery(window).height() - modal.innerHeight()) / 2+'px';modal.animate({'bottom':half_gap},300)}else if(modal.length){var element_width = jQuery(window).width();modal.removeClass('uimob340');modal.removeClass('uimob500');if(element_width <= 340){modal.addClass('uimob340');initCrop_UM();modal.animate({'bottom':0},300)}else if(element_width <= 500){modal.addClass('uimob500');initCrop_UM();modal.animate({'bottom':0},300)}else if(element_width <= 800){initCrop_UM();var half_gap =(jQuery(window).height() - modal.innerHeight()) / 2+'px';modal.animate({'bottom':half_gap},300)}else if(element_width <= 960){initCrop_UM();var half_gap =(jQuery(window).height() - modal.innerHeight()) / 2+'px';modal.animate({'bottom':half_gap},300)}else if(element_width>960){initCrop_UM();var half_gap =(jQuery(window).height() - modal.innerHeight()) / 2+'px';modal.animate({'bottom':half_gap},300)}}}function um_remove_modal(){jQuery('.um-modal .um-single-image-preview img').cropper("destroy");jQuery('body,html,textarea').css("overflow","auto");jQuery(document).unbind('touchmove');jQuery('.um-modal div[id^="um_"]').hide().appendTo('body');jQuery('.um-modal,.um-modal-overlay').remove()}function um_modal_size(aclass){jQuery('.um-modal:visible').addClass(aclass)}function um_modal_add_attr(id,value){jQuery('.um-modal:visible').data(id,value)}
115
 
116
  jQuery(window).load(function(){um_responsive();um_modal_responsive()});jQuery(window).resize(function(){jQuery(".um-modal .um-single-image-preview.crop:visible img").cropper("destroy");um_responsive();um_modal_responsive()});jQuery(document).ready(function(){jQuery(document).on("click",'.um-modal-overlay, a[data-action="um_remove_modal"]',function(){um_remove_modal()});jQuery(document).on("click",'a[data-modal^="um_"], span[data-modal^="um_"], .um-modal a',function(a){a.preventDefault();return false});jQuery(document).on("click",".um-modal .um-single-file-preview a.cancel",function(a){a.preventDefault();a=jQuery(this).parents(".um-modal-body");var b=jQuery(this).parents(".um-modal-body").find(".um-single-fileinfo a").attr("href");
117
  a.find(".um-single-file-preview").hide();a.find(".ajax-upload-dragdrop").show();a.find(".um-modal-btn.um-finish-upload").addClass("disabled");um_modal_responsive();jQuery.ajax({url:ultimatemember_ajax_url,type:"post",data:{action:"ultimatemember_remove_file",src:b}});return false});jQuery(document).on("click",".um-modal .um-single-image-preview a.cancel",function(a){a.preventDefault();a=jQuery(this).parents(".um-modal-body");var b=jQuery(this).parents(".um-modal-body").find(".um-single-image-preview img").attr("src");
core/um-actions-access.php CHANGED
@@ -29,8 +29,8 @@
29
 
30
  $redirect = um_get_option('access_redirect');
31
 
32
- $redirects[] = um_get_core_page('login');
33
- $redirects[] = um_get_option('access_redirect');
34
 
35
  $exclude_uris = um_get_option('access_exclude_uris');
36
 
@@ -38,7 +38,7 @@
38
  $redirects = array_merge( $redirects, $exclude_uris );
39
  }
40
 
41
- $current_url = $ultimatemember->permalinks->get_current_url( get_option('permalink_structure') );
42
 
43
  if ( isset( $post->ID ) && in_array( $current_url, $redirects ) ) {
44
  // allow
29
 
30
  $redirect = um_get_option('access_redirect');
31
 
32
+ $redirects[] = trailingslashit( um_get_core_page('login') );
33
+ $redirects[] = trailingslashit( um_get_option('access_redirect') );
34
 
35
  $exclude_uris = um_get_option('access_exclude_uris');
36
 
38
  $redirects = array_merge( $redirects, $exclude_uris );
39
  }
40
 
41
+ $current_url = trailingslashit( $ultimatemember->permalinks->get_current_url(true) );
42
 
43
  if ( isset( $post->ID ) && in_array( $current_url, $redirects ) ) {
44
  // allow
core/um-actions-account.php CHANGED
@@ -162,7 +162,7 @@
162
 
163
  <?php echo $output; ?>
164
 
165
- <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="<?php _e('Update Privacy','ultimatemember'); ?>" class="um-button" /></div><div class="um-clear"></div></div>
166
 
167
  <?php
168
 
@@ -185,7 +185,7 @@
185
 
186
  <?php echo $output; ?>
187
 
188
- <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="<?php _e('Update Account','ultimatemember'); ?>" class="um-button" /></div><div class="um-clear"></div></div>
189
 
190
  <?php
191
 
@@ -209,7 +209,7 @@
209
 
210
  <?php echo $output; ?>
211
 
212
- <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="<?php _e('Update Password','ultimatemember'); ?>" class="um-button" /></div><div class="um-clear"></div></div>
213
 
214
  <?php
215
 
@@ -279,19 +279,19 @@
279
  extract( $args );
280
 
281
  $tabs[100]['general']['icon'] = 'um-faicon-user';
282
- $tabs[100]['general']['title'] = __('Account','ultimatemember');
283
 
284
  $tabs[200]['password']['icon'] = 'um-faicon-asterisk';
285
- $tabs[200]['password']['title'] = __('Change Password','ultimatemember');
286
 
287
  $tabs[300]['privacy']['icon'] = 'um-faicon-lock';
288
- $tabs[300]['privacy']['title'] = __('Privacy','ultimatemember');
289
 
290
  $tabs[400]['notifications']['icon'] = 'um-icon-ios-bell';
291
- $tabs[400]['notifications']['title'] = __('Notifications','ultimatemember');
292
 
293
  $tabs[500]['delete']['icon'] = 'um-faicon-trash-o';
294
- $tabs[500]['delete']['title'] = __('Delete Account','ultimatemember');
295
 
296
  $ultimatemember->account->tabs = apply_filters('um_account_page_default_tabs_hook', $tabs );
297
 
162
 
163
  <?php echo $output; ?>
164
 
165
+ <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="Update Privacy" class="um-button" /></div><div class="um-clear"></div></div>
166
 
167
  <?php
168
 
185
 
186
  <?php echo $output; ?>
187
 
188
+ <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="Update Account" class="um-button" /></div><div class="um-clear"></div></div>
189
 
190
  <?php
191
 
209
 
210
  <?php echo $output; ?>
211
 
212
+ <div class="um-col-alt um-col-alt-b"><div class="um-left"><input type="submit" name="um_account_submit" id="um_account_submit" value="Update Password" class="um-button" /></div><div class="um-clear"></div></div>
213
 
214
  <?php
215
 
279
  extract( $args );
280
 
281
  $tabs[100]['general']['icon'] = 'um-faicon-user';
282
+ $tabs[100]['general']['title'] = 'Account';
283
 
284
  $tabs[200]['password']['icon'] = 'um-faicon-asterisk';
285
+ $tabs[200]['password']['title'] = 'Change Password';
286
 
287
  $tabs[300]['privacy']['icon'] = 'um-faicon-lock';
288
+ $tabs[300]['privacy']['title'] = 'Privacy';
289
 
290
  $tabs[400]['notifications']['icon'] = 'um-icon-ios-bell';
291
+ $tabs[400]['notifications']['title'] = 'Notifications';
292
 
293
  $tabs[500]['delete']['icon'] = 'um-faicon-trash-o';
294
+ $tabs[500]['delete']['title'] = 'Delete Account';
295
 
296
  $ultimatemember->account->tabs = apply_filters('um_account_page_default_tabs_hook', $tabs );
297
 
core/um-actions-form.php CHANGED
@@ -51,7 +51,7 @@
51
  return;
52
 
53
  $ips = array_map("rtrim", explode("\n", $ips));
54
- $user_ip = um_user_ip();
55
 
56
  foreach($ips as $ip) {
57
  $ip = str_replace('*','',$ip);
51
  return;
52
 
53
  $ips = array_map("rtrim", explode("\n", $ips));
54
+ $user_ip = $_SERVER['REMOTE_ADDR'];
55
 
56
  foreach($ips as $ip) {
57
  $ip = str_replace('*','',$ip);
core/um-actions-members.php CHANGED
@@ -94,7 +94,7 @@
94
 
95
  <div class="um-members-intro">
96
 
97
- <div class="um-members-total"><?php echo ( um_members('total_users') > 1 ) ? um_members('header') : um_members('header_single'); ?></div>
98
 
99
  </div>
100
 
@@ -227,13 +227,13 @@
227
  $default_size = str_replace( 'px', '', um_get_option('profile_photosize') );
228
  $corner = um_get_option('profile_photocorner');
229
  ?>
230
- <div class="um-member-photo radius-<?php echo $corner; ?>"><a href="<?php echo um_user_profile_url(); ?>" title="<?php echo um_cap_initials( um_user('display_name') ); ?>"><?php echo get_avatar( um_user('ID'), $default_size ); ?></a></div>
231
  <?php } ?>
232
 
233
  <div class="um-member-card <?php if (!$profile_photo) { echo 'no-photo'; } ?>">
234
 
235
  <?php if ( $show_name ) { ?>
236
- <div class="um-member-name"><a href="<?php echo um_user_profile_url(); ?>" title="<?php echo um_cap_initials( um_user('display_name') ); ?>"><?php echo um_cap_initials( um_user('display_name') ); ?></a></div>
237
  <?php } ?>
238
 
239
  <?php
94
 
95
  <div class="um-members-intro">
96
 
97
+ <div class="um-members-total"><?php echo um_members('header'); ?></div>
98
 
99
  </div>
100
 
227
  $default_size = str_replace( 'px', '', um_get_option('profile_photosize') );
228
  $corner = um_get_option('profile_photocorner');
229
  ?>
230
+ <div class="um-member-photo radius-<?php echo $corner; ?>"><a href="<?php echo um_user_profile_url(); ?>"><?php echo get_avatar( um_user('ID'), $default_size ); ?></a></div>
231
  <?php } ?>
232
 
233
  <div class="um-member-card <?php if (!$profile_photo) { echo 'no-photo'; } ?>">
234
 
235
  <?php if ( $show_name ) { ?>
236
+ <div class="um-member-name"><a href="<?php echo um_user_profile_url(); ?>"><?php echo um_cap_initials( um_user('display_name') ); ?></a></div>
237
  <?php } ?>
238
 
239
  <?php
core/um-actions-misc.php CHANGED
@@ -65,10 +65,6 @@
65
  $success = __('You have successfully changed your password.','ultimatemember');
66
  break;
67
 
68
- case 'account_active':
69
- $success = __('Your account is now active! You can login.','ultimatemember');
70
- break;
71
-
72
  }
73
  }
74
 
65
  $success = __('You have successfully changed your password.','ultimatemember');
66
  break;
67
 
 
 
 
 
68
  }
69
  }
70
 
core/um-actions-profile.php CHANGED
@@ -244,7 +244,7 @@
244
 
245
  <div class="um-profile-photo" data-user_id="<?php echo um_profile_id(); ?>">
246
 
247
- <a href="<?php echo um_user_profile_url(); ?>" class="um-profile-photo-img" title="<?php echo um_user('display_name'); ?>"><?php echo $overlay . get_avatar( um_user('ID'), $default_size ); ?></a>
248
 
249
  <?php
250
 
@@ -283,7 +283,7 @@
283
 
284
  <div class="um-main-meta">
285
  <?php if ( $args['show_name'] ) { ?>
286
- <div class="um-name"><a href="<?php echo um_user_profile_url(); ?>" title="<?php echo um_user('display_name'); ?>"><?php echo um_user('display_name'); ?></a></div>
287
  <?php } ?>
288
  <div class="um-clear"></div>
289
  </div>
@@ -505,49 +505,32 @@
505
  function um_profile_navbar( $args ) {
506
  global $ultimatemember;
507
 
508
- $tabs = $ultimatemember->profile->tabs_active();
509
 
510
  if ( count( $tabs ) == 1 ) return;
511
 
512
- $active_tab = $ultimatemember->profile->active_tab();
513
-
514
- if ( !isset( $tabs[$active_tab] ) )
515
- $active_tab = 'main';
516
- $ultimatemember->profile->active_tab = $active_tab;
517
- $ultimatemember->profile->active_subnav = null;
518
-
519
  ?>
520
 
521
  <div class="um-profile-nav">
522
 
523
  <?php foreach( $tabs as $id => $tab ) {
524
 
525
- $nav_link = $ultimatemember->permalinks->get_current_url( get_option('permalink_structure') );
526
- $nav_link = remove_query_arg( 'um_action', $nav_link );
527
- $nav_link = remove_query_arg( 'subnav', $nav_link );
528
  $nav_link = add_query_arg('profiletab', $id, $nav_link )
529
  ?>
530
 
531
- <div class="um-profile-nav-item <?php if ( !um_get_option('profile_menu_counts') ) { echo 'without-icon'; } ?> <?php if ( $id == $active_tab ) { echo 'active'; } ?>">
532
- <a href="<?php echo $nav_link; ?>" title="<?php echo $tab['name']; ?>">
533
-
534
- <i class="<?php echo $tab['icon']; ?>"></i>
535
-
536
- <span class="uimob500-hide uimob340-hide uimob800-hide title"><?php echo $tab['name']; ?></span>
537
-
538
- <?php if ( um_get_option('profile_menu_counts') && isset( $tab['count'] ) ) { ?>
539
- <span class="uimob500-hide uimob340-hide uimob800-hide count"><?php echo $tab['count']; ?></span>
540
- <?php } ?>
541
-
542
- </a>
543
- </div>
544
 
545
  <?php } ?>
546
 
547
  <div class="um-clear"></div>
548
  </div>
549
 
550
- <?php foreach( $tabs as $id => $tab ) {
 
 
551
 
552
  if ( isset( $tab['subnav'] ) && $active_tab == $id ) {
553
 
244
 
245
  <div class="um-profile-photo" data-user_id="<?php echo um_profile_id(); ?>">
246
 
247
+ <a href="<?php echo um_user_profile_url(); ?>" class="um-profile-photo-img"><?php echo $overlay . get_avatar( um_user('ID'), $default_size ); ?></a>
248
 
249
  <?php
250
 
283
 
284
  <div class="um-main-meta">
285
  <?php if ( $args['show_name'] ) { ?>
286
+ <div class="um-name"><a href="<?php echo um_user_profile_url(); ?>"><?php echo um_user('display_name'); ?></a></div>
287
  <?php } ?>
288
  <div class="um-clear"></div>
289
  </div>
505
  function um_profile_navbar( $args ) {
506
  global $ultimatemember;
507
 
508
+ $tabs = $ultimatemember->profile->tabs();
509
 
510
  if ( count( $tabs ) == 1 ) return;
511
 
512
+ $active_tab = $ultimatemember->profile->active_tab;
513
+
 
 
 
 
 
514
  ?>
515
 
516
  <div class="um-profile-nav">
517
 
518
  <?php foreach( $tabs as $id => $tab ) {
519
 
520
+ $nav_link = $ultimatemember->permalinks->get_current_url(true);
 
 
521
  $nav_link = add_query_arg('profiletab', $id, $nav_link )
522
  ?>
523
 
524
+ <div class="um-profile-nav-item <?php if ( $id == $active_tab ) echo 'active'; ?>"><a href="<?php echo $nav_link; ?>" title="<?php echo $tab['name']; ?>"><i class="<?php echo $tab['icon']; ?> uimob500-show uimob340-show uimob800-show"></i><span class="uimob500-hide uimob340-hide uimob800-hide"><?php echo $tab['name']; ?></span></a></div>
 
 
 
 
 
 
 
 
 
 
 
 
525
 
526
  <?php } ?>
527
 
528
  <div class="um-clear"></div>
529
  </div>
530
 
531
+ <?php
532
+
533
+ foreach( $tabs as $id => $tab ) {
534
 
535
  if ( isset( $tab['subnav'] ) && $active_tab == $id ) {
536
 
core/um-actions-wpadmin.php CHANGED
@@ -9,10 +9,8 @@
9
 
10
  // Login screen
11
  if ( isset( $pagenow ) && $pagenow == 'wp-login.php' && !is_user_logged_in() && !isset( $_REQUEST['action'] ) ) {
12
-
13
- $allowed = um_get_option('wpadmin_login');
14
- $allowed = apply_filters('um_whitelisted_wpadmin_access', $allowed );
15
 
 
16
  if ( !$allowed ) {
17
 
18
  $act = um_get_option('wpadmin_login_redirect');
@@ -31,8 +29,6 @@
31
  if ( isset( $pagenow ) && $pagenow == 'wp-login.php' && !is_user_logged_in() && isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'register' ) {
32
 
33
  $allowed = um_get_option('wpadmin_register');
34
- $allowed = apply_filters('um_whitelisted_wpadmin_access', $allowed );
35
-
36
  if ( !$allowed ) {
37
 
38
  $act = um_get_option('wpadmin_register_redirect');
@@ -64,22 +60,10 @@
64
  *** @hide admin bar appropriately
65
  ***/
66
  function um_control_admin_bar(){
67
- if ( um_user('can_not_see_adminbar') )
68
- return false;
69
-
70
- if( !is_admin() && !um_user('can_access_wpadmin') ) {
71
  return false;
72
  } else {
73
- um_fetch_user( get_current_user_id() );
74
  return true;
75
  }
76
  }
77
- add_filter( 'show_admin_bar' , 'um_control_admin_bar');
78
-
79
- /***
80
- *** @fix permission for admin bar
81
- ***/
82
- function um_force_admin_bar() {
83
- um_reset_user();
84
- }
85
- add_action( 'wp_footer', 'um_force_admin_bar' );
9
 
10
  // Login screen
11
  if ( isset( $pagenow ) && $pagenow == 'wp-login.php' && !is_user_logged_in() && !isset( $_REQUEST['action'] ) ) {
 
 
 
12
 
13
+ $allowed = um_get_option('wpadmin_login');
14
  if ( !$allowed ) {
15
 
16
  $act = um_get_option('wpadmin_login_redirect');
29
  if ( isset( $pagenow ) && $pagenow == 'wp-login.php' && !is_user_logged_in() && isset( $_REQUEST['action'] ) && $_REQUEST['action'] == 'register' ) {
30
 
31
  $allowed = um_get_option('wpadmin_register');
 
 
32
  if ( !$allowed ) {
33
 
34
  $act = um_get_option('wpadmin_register_redirect');
60
  *** @hide admin bar appropriately
61
  ***/
62
  function um_control_admin_bar(){
63
+ if( !is_admin() && !um_user('can_access_wpadmin')) {
 
 
 
64
  return false;
65
  } else {
 
66
  return true;
67
  }
68
  }
69
+ add_filter( 'show_admin_bar' , 'um_control_admin_bar');
 
 
 
 
 
 
 
 
core/um-builtin.php CHANGED
@@ -398,7 +398,7 @@ class UM_Builtin {
398
 
399
  'divider' => array(
400
  'name' => 'Divider',
401
- 'col1' => array('_title','_width','_divider_text','_visibility'),
402
  'col2' => array('_style','_color'),
403
  'form_only' => true,
404
  'validate' => array(
398
 
399
  'divider' => array(
400
  'name' => 'Divider',
401
+ 'col1' => array('_title','_width','_visibility'),
402
  'col2' => array('_style','_color'),
403
  'form_only' => true,
404
  'validate' => array(
core/um-enqueue.php CHANGED
@@ -3,45 +3,22 @@
3
  class UM_Enqueue {
4
 
5
  function __construct() {
6
-
7
- add_action('wp_head', array(&$this, 'wp_head'), 999); // high-priority
8
 
9
  add_action('wp_enqueue_scripts', array(&$this, 'wp_enqueue_scripts'), 0);
10
 
11
  }
12
 
13
- /***
14
- *** @Enqueue inline css globally
15
- ***/
16
- function wp_head() {
17
- $css = um_get_option('custom_css');
18
- if ( !$css ) return; ?><!-- ULTIMATE MEMBER INLINE CSS BEGIN --><style type="text/css"><?php print $this->minify( $css ); ?></style><!-- ULTIMATE MEMBER INLINE CSS END --><?php
19
- }
20
-
21
- /***
22
- *** @Minify css string
23
- ***/
24
- function minify( $css ) {
25
- $css = str_replace(array("\r", "\n"), '', $css);
26
- $css = str_replace(' {','{', $css );
27
- $css = str_replace('{ ','{', $css );
28
- $css = str_replace('; ',';', $css );
29
- $css = str_replace(';}','}', $css );
30
- $css = str_replace(': ',':', $css );
31
- return $css;
32
- }
33
-
34
  /***
35
  *** @Enqueue scripts and styles
36
  ***/
37
- function wp_enqueue_scripts() {
38
 
39
  global $ultimatemember;
40
 
41
  $exclude = um_get_option('js_css_exclude');
42
  if ( $exclude && is_array( $exclude ) ) {
43
 
44
- $c_url = $ultimatemember->permalinks->get_current_url( get_option('permalink_structure') );
45
 
46
  foreach( $exclude as $match ) {
47
  if ( strstr( $c_url, $match ) )
3
  class UM_Enqueue {
4
 
5
  function __construct() {
 
 
6
 
7
  add_action('wp_enqueue_scripts', array(&$this, 'wp_enqueue_scripts'), 0);
8
 
9
  }
10
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11
  /***
12
  *** @Enqueue scripts and styles
13
  ***/
14
+ function wp_enqueue_scripts(){
15
 
16
  global $ultimatemember;
17
 
18
  $exclude = um_get_option('js_css_exclude');
19
  if ( $exclude && is_array( $exclude ) ) {
20
 
21
+ $c_url = trailingslashit( $ultimatemember->permalinks->get_current_url(true) );
22
 
23
  foreach( $exclude as $match ) {
24
  if ( strstr( $c_url, $match ) )
core/um-fields.php CHANGED
@@ -607,7 +607,6 @@ class UM_Fields {
607
  $array['disabled_weekdays'] = '[' . implode(',',$array['disabled_weekdays']) . ']';
608
  }
609
 
610
- // When date range is strictly defined
611
  if ( $array['range'] == 'date_range' ) {
612
 
613
  $array['date_min'] = str_replace('/',',',$array['range_start']);
@@ -616,31 +615,14 @@ class UM_Fields {
616
  } else {
617
 
618
  if ( $array['years_x'] == 'past' ) {
619
-
620
- $date = new DateTime( date('Y-n-d') );
621
- $past = $date->modify('-'.$array['years'].' years')->format('Y,n,d');
622
-
623
- $array['date_min'] = $past;
624
  $array['date_max'] = date('Y,n,d');
625
-
626
  } else if ( $array['years_x'] == 'future' ) {
627
-
628
- $date = new DateTime( date('Y-n-d') );
629
- $future = $date->modify('+'.$array['years'].' years')->format('Y,n,d');
630
-
631
  $array['date_min'] = date('Y,n,d');
632
- $array['date_max'] = $future;
633
-
634
  } else {
635
-
636
- $date = new DateTime( date('Y-n-d') );
637
- $date_f = new DateTime( date('Y-n-d') );
638
- $past = $date->modify('-'. ( $array['years'] / 2 ).' years')->format('Y,n,d');
639
- $future = $date_f->modify('+'. ( $array['years'] / 2 ).' years')->format('Y,n,d');
640
-
641
- $array['date_min'] = $past;
642
- $array['date_max'] = $future;
643
-
644
  }
645
 
646
  }
@@ -715,10 +697,6 @@ class UM_Fields {
715
  $array['borderstyle'] = 'solid';
716
  }
717
 
718
- if ( !isset( $array['divider_text'] ) ) {
719
- $array['divider_text'] = '';
720
- }
721
-
722
  break;
723
 
724
  case 'image':
@@ -1157,11 +1135,7 @@ class UM_Fields {
1157
 
1158
  /* A line divider */
1159
  case 'divider':
1160
- $output .= '<div class="um-field-divider" style="border-bottom: '.$borderwidth.'px '.$borderstyle.' '.$bordercolor.'">';
1161
- if ( $divider_text ) {
1162
- $output .= '<div class="um-field-divider-text"><span>' . $divider_text . '</span></div>';
1163
- }
1164
- $output .= '</div>';
1165
  break;
1166
 
1167
  /* Single Image Upload */
@@ -1883,11 +1857,7 @@ class UM_Fields {
1883
 
1884
  /* A line divider */
1885
  case 'divider':
1886
- $output .= '<div class="um-field-divider" style="border-bottom: '.$borderwidth.'px '.$borderstyle.' '.$bordercolor.'">';
1887
- if ( $divider_text ) {
1888
- $output .= '<div class="um-field-divider-text"><span>' . $divider_text . '</span></div>';
1889
- }
1890
- $output .= '</div>';
1891
  break;
1892
 
1893
  /* Rating */
@@ -1938,20 +1908,10 @@ class UM_Fields {
1938
  // start output here
1939
  $this->get_fields = $this->get_fields();
1940
 
1941
- if ( um_get_option('profile_empty_text') ) {
1942
-
1943
- $emo = um_get_option('profile_empty_text_emo');
1944
- if ( $emo ) {
1945
- $emo = '<i class="um-faicon-frown-o"></i>';
1946
- } else {
1947
- $emo = false;
1948
- }
1949
-
1950
- if ( um_is_myprofile() ) {
1951
- $output .= '<p class="um-profile-note">' . $emo .'<span>' . sprintf(__('Your profile is looking a little empty. Why not <a href="%s">add</a> some information!','ultimatemember'), add_query_arg('um_action','edit') ) . '</span></p>';
1952
- } else {
1953
- $output .= '<p class="um-profile-note">'. $emo . '<span>' . __('This user has not added any information to their profile yet.','ultimatemember') . '</span></p>';
1954
- }
1955
  }
1956
 
1957
  if ( !empty( $this->get_fields ) ) {
607
  $array['disabled_weekdays'] = '[' . implode(',',$array['disabled_weekdays']) . ']';
608
  }
609
 
 
610
  if ( $array['range'] == 'date_range' ) {
611
 
612
  $array['date_min'] = str_replace('/',',',$array['range_start']);
615
  } else {
616
 
617
  if ( $array['years_x'] == 'past' ) {
618
+ $array['date_min'] = date('Y,n,d', mktime(0, 0, 0, date("n") , date("d"), date("Y") - $array['years'] ) );
 
 
 
 
619
  $array['date_max'] = date('Y,n,d');
 
620
  } else if ( $array['years_x'] == 'future' ) {
 
 
 
 
621
  $array['date_min'] = date('Y,n,d');
622
+ $array['date_max'] = date('Y,n,d', mktime(0, 0, 0, date("n") , date("d"), date("Y") + $array['years'] ) );
 
623
  } else {
624
+ $array['date_min'] = date('Y,n,d', mktime(0, 0, 0, date("n") , date("d"), date("Y") - ( $array['years'] / 2 ) ) );
625
+ $array['date_max'] = date('Y,n,d', mktime(0, 0, 0, date("n") , date("d"), date("Y") + ( $array['years'] / 2 ) ) );
 
 
 
 
 
 
 
626
  }
627
 
628
  }
697
  $array['borderstyle'] = 'solid';
698
  }
699
 
 
 
 
 
700
  break;
701
 
702
  case 'image':
1135
 
1136
  /* A line divider */
1137
  case 'divider':
1138
+ $output .= '<div class="um-field-divider" style="border-bottom: '.$borderwidth.'px '.$borderstyle.' '.$bordercolor.'"></div>';
 
 
 
 
1139
  break;
1140
 
1141
  /* Single Image Upload */
1857
 
1858
  /* A line divider */
1859
  case 'divider':
1860
+ $output .= '<div class="um-field-divider" style="border-bottom: '.$borderwidth.'px '.$borderstyle.' '.$bordercolor.'"></div>';
 
 
 
 
1861
  break;
1862
 
1863
  /* Rating */
1908
  // start output here
1909
  $this->get_fields = $this->get_fields();
1910
 
1911
+ if ( um_is_myprofile() ) {
1912
+ $output .= '<p class="um-profile-note"><i class="um-faicon-frown-o"></i><span>' . sprintf(__('Your profile is looking a little empty. Why not <a href="%s">add</a> some information!','ultimatemember'), add_query_arg('um_action','edit') ) . '</span></p>';
1913
+ } else {
1914
+ $output .= '<p class="um-profile-note"><i class="um-faicon-frown-o"></i><span>' . __('This user has not added any information to their profile yet.','ultimatemember') . '</span></p>';
 
 
 
 
 
 
 
 
 
 
1915
  }
1916
 
1917
  if ( !empty( $this->get_fields ) ) {
core/um-filters-fields.php CHANGED
@@ -108,12 +108,12 @@
108
  if ( strpos($value, 'http://') !== 0 ) {
109
  $value = 'http://' . $value;
110
  }
111
- $value = '<a href="'. $value .'" title="'.$alt.'" target="'.$data['url_target'].'" ' . $url_rel . '>'.$alt.'</a>';
112
  }
113
 
114
  if ( !is_array( $value ) ) {
115
  if ( is_email( $value ) )
116
- $value = '<a href="mailto:'. $value.'" title="'.$value.'">'.$value.'</a>';
117
  } else {
118
  $value = implode(', ', $value);
119
  }
108
  if ( strpos($value, 'http://') !== 0 ) {
109
  $value = 'http://' . $value;
110
  }
111
+ $value = '<a href="'. $value .'" target="'.$data['url_target'].'" ' . $url_rel . '>'.$alt.'</a>';
112
  }
113
 
114
  if ( !is_array( $value ) ) {
115
  if ( is_email( $value ) )
116
+ $value = '<a href="mailto:'. $value.'">'.$value.'</a>';
117
  } else {
118
  $value = implode(', ', $value);
119
  }
core/um-filters-login.php CHANGED
@@ -1,31 +1,10 @@
1
  <?php
2
 
3
- /***
4
- *** @filter to allow whitelisted IP to access the wp-admin login
5
- ***/
6
- add_filter('um_whitelisted_wpadmin_access', 'um_whitelisted_wpadmin_access');
7
- function um_whitelisted_wpadmin_access( $allowed ) {
8
-
9
- $ips = um_get_option('wpadmin_allow_ips');
10
-
11
- if ( !$ips )
12
- return $allowed;
13
-
14
- $ips = array_map("rtrim", explode("\n", $ips));
15
- $user_ip = um_user_ip();
16
-
17
- if ( in_array( $user_ip, $ips ) )
18
- $allowed = 1;
19
-
20
- return $allowed;
21
-
22
- }
23
-
24
  /***
25
  *** @filter to customize errors
26
  ***/
27
  add_filter('login_message', 'um_custom_wp_err_messages');
28
- function um_custom_wp_err_messages( $message ) {
29
 
30
  if ( isset( $_REQUEST['err'] ) && !empty( $_REQUEST['err'] ) ) {
31
  switch( $_REQUEST['err'] ) {
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  /***
4
  *** @filter to customize errors
5
  ***/
6
  add_filter('login_message', 'um_custom_wp_err_messages');
7
+ function um_custom_wp_err_messages( $message) {
8
 
9
  if ( isset( $_REQUEST['err'] ) && !empty( $_REQUEST['err'] ) ) {
10
  switch( $_REQUEST['err'] ) {
core/um-filters-members.php CHANGED
@@ -66,16 +66,12 @@
66
 
67
  foreach( $query as $field => $value ) {
68
 
69
- if ( in_array( $field, array('gender') ) ) {
70
- $operator = '=';
71
- } else {
72
- $operator = 'LIKE';
73
- }
74
-
75
  if ( in_array( $ultimatemember->fields->get_field_type( $field ), array('checkbox','multiselect') ) ) {
76
  $operator = 'LIKE';
77
  }
78
-
79
  if ( $value && $field != 'um_search' ) {
80
 
81
  if ( !in_array( $field, $ultimatemember->members->core_search_fields ) ) {
@@ -181,7 +177,7 @@
181
  ***/
182
  add_filter('um_prepare_user_results_array', 'um_prepare_user_results_array', 50, 2);
183
  function um_prepare_user_results_array($result){
184
-
185
  if ( empty( $result['users_per_page'] ) ) {
186
  $result['no_users'] = 1;
187
  } else {
66
 
67
  foreach( $query as $field => $value ) {
68
 
69
+ $operator = 'LIKE';
70
+
 
 
 
 
71
  if ( in_array( $ultimatemember->fields->get_field_type( $field ), array('checkbox','multiselect') ) ) {
72
  $operator = 'LIKE';
73
  }
74
+
75
  if ( $value && $field != 'um_search' ) {
76
 
77
  if ( !in_array( $field, $ultimatemember->members->core_search_fields ) ) {
177
  ***/
178
  add_filter('um_prepare_user_results_array', 'um_prepare_user_results_array', 50, 2);
179
  function um_prepare_user_results_array($result){
180
+
181
  if ( empty( $result['users_per_page'] ) ) {
182
  $result['no_users'] = 1;
183
  } else {
core/um-filters-misc.php DELETED
@@ -1,10 +0,0 @@
1
- <?php
2
-
3
- /***
4
- *** @formats numbers nicely
5
- ***/
6
- add_filter('um_pretty_number_formatting', 'um_pretty_number_formatting');
7
- function um_pretty_number_formatting( $count ) {
8
- $count = (int)$count;
9
- return number_format( $count );
10
- }
 
 
 
 
 
 
 
 
 
 
core/um-filters-navmenu.php CHANGED
@@ -1,19 +1,7 @@
1
  <?php
2
 
3
  /***
4
- *** @add dynamic profile headers
5
- ***/
6
- add_filter( 'wp_nav_menu_items', 'um_add_custom_message_to_menu', 10, 2 );
7
- function um_add_custom_message_to_menu( $items, $args ) {
8
- global $ultimatemember;
9
- if ( !is_user_logged_in() )
10
- return $items;
11
- $items = $ultimatemember->shortcodes->convert_user_tags( $items );
12
- return $items;
13
- }
14
-
15
- /***
16
- *** @conditional menu items
17
  ***/
18
  if ( ! is_admin() ) {
19
 
@@ -40,7 +28,7 @@
40
  switch( $mode ) {
41
 
42
  case 2:
43
- if ( is_user_logged_in() && isset($roles) && !empty($roles)) {
44
  if ( in_array( um_user('role'), (array)$roles) ) {
45
  $visible = true;
46
  } else {
1
  <?php
2
 
3
  /***
4
+ *** @Excludes menu items
 
 
 
 
 
 
 
 
 
 
 
 
5
  ***/
6
  if ( ! is_admin() ) {
7
 
28
  switch( $mode ) {
29
 
30
  case 2:
31
+ if (isset($roles) && !empty($roles)) {
32
  if ( in_array( um_user('role'), (array)$roles) ) {
33
  $visible = true;
34
  } else {
core/um-mail.php CHANGED
@@ -3,21 +3,7 @@
3
  class UM_Mail {
4
 
5
  function __construct() {
6
-
7
- add_filter('mandrill_nl2br', array(&$this, 'mandrill_nl2br') );
8
-
9
- }
10
 
11
- /***
12
- *** @mandrill compatibility
13
- ***/
14
- function mandrill_nl2br($nl2br, $message) {
15
-
16
- // text emails
17
- $nl2br = true;
18
-
19
- return $nl2br;
20
-
21
  }
22
 
23
  /***
@@ -50,9 +36,6 @@ class UM_Mail {
50
 
51
  $search = array(
52
  '{display_name}',
53
- '{first_name}',
54
- '{last_name}',
55
- '{gender}',
56
  '{username}',
57
  '{email}',
58
  '{password}',
@@ -69,9 +52,6 @@ class UM_Mail {
69
 
70
  $replace = array(
71
  um_user('display_name'),
72
- um_user('first_name'),
73
- um_user('last_name'),
74
- um_user('gender'),
75
  um_user('user_login'),
76
  um_user('user_email'),
77
  um_user('_um_cool_but_hard_to_guess_plain_pw'),
3
  class UM_Mail {
4
 
5
  function __construct() {
 
 
 
 
6
 
 
 
 
 
 
 
 
 
 
 
7
  }
8
 
9
  /***
36
 
37
  $search = array(
38
  '{display_name}',
 
 
 
39
  '{username}',
40
  '{email}',
41
  '{password}',
52
 
53
  $replace = array(
54
  um_user('display_name'),
 
 
 
55
  um_user('user_login'),
56
  um_user('user_email'),
57
  um_user('_um_cool_but_hard_to_guess_plain_pw'),
core/um-members.php CHANGED
@@ -109,20 +109,18 @@ class UM_Members {
109
  *** @Generate a loop of results
110
  ***/
111
  function get_members($args){
112
-
113
- global $ultimatemember;
114
-
115
  extract($args);
116
 
117
  $query_args = array();
 
118
  $query_args = apply_filters( 'um_prepare_user_query_args', $query_args, $args );
119
 
120
  $users = new WP_User_Query( $query_args );
121
 
122
- // number of profiles for mobile
123
- if ( $ultimatemember->mobile->isMobile() && isset( $profiles_per_page_mobile ) )
124
- $profiles_per_page = $profiles_per_page_mobile;
125
-
126
  $array['users'] = $users->results;
127
 
128
  $array['total_users'] = (isset( $max_users ) && $max_users && $max_users <= $users->total_users ) ? $max_users : $users->total_users;
@@ -132,8 +130,7 @@ class UM_Members {
132
  $array['total_pages'] = ceil( $array['total_users'] / $profiles_per_page );
133
 
134
  $array['header'] = $this->convert_tags( $header, $array );
135
- $array['header_single'] = $this->convert_tags( $header_single, $array );
136
-
137
  $array['users_per_page'] = array_slice($array['users'], ( ( $profiles_per_page * $array['page'] ) - $profiles_per_page ), $profiles_per_page );
138
 
139
  for( $i = $array['page']; $i <= $array['page'] + 2; $i++ ) {
109
  *** @Generate a loop of results
110
  ***/
111
  function get_members($args){
 
 
 
112
  extract($args);
113
 
114
  $query_args = array();
115
+
116
  $query_args = apply_filters( 'um_prepare_user_query_args', $query_args, $args );
117
 
118
  $users = new WP_User_Query( $query_args );
119
 
120
+ /**
121
+ Getting the final array
122
+ **/
123
+
124
  $array['users'] = $users->results;
125
 
126
  $array['total_users'] = (isset( $max_users ) && $max_users && $max_users <= $users->total_users ) ? $max_users : $users->total_users;
130
  $array['total_pages'] = ceil( $array['total_users'] / $profiles_per_page );
131
 
132
  $array['header'] = $this->convert_tags( $header, $array );
133
+
 
134
  $array['users_per_page'] = array_slice($array['users'], ( ( $profiles_per_page * $array['page'] ) - $profiles_per_page ), $profiles_per_page );
135
 
136
  for( $i = $array['page']; $i <= $array['page'] + 2; $i++ ) {
core/um-navmenu.php CHANGED
@@ -5,7 +5,7 @@ if ( ! class_exists( 'UM_Menu_Item_Custom_Fields' ) ) :
5
  class UM_Menu_Item_Custom_Fields {
6
 
7
  public static function load() {
8
- add_filter( 'wp_edit_nav_menu_walker', array( __CLASS__, '_filter_walker' ), 200 );
9
  }
10
 
11
  public static function _filter_walker( $walker ) {
5
  class UM_Menu_Item_Custom_Fields {
6
 
7
  public static function load() {
8
+ add_filter( 'wp_edit_nav_menu_walker', array( __CLASS__, '_filter_walker' ), 99 );
9
  }
10
 
11
  public static function _filter_walker( $walker ) {
core/um-permalinks.php CHANGED
@@ -73,8 +73,6 @@ class UM_Permalinks {
73
 
74
  um_reset_user();
75
 
76
- exit( wp_redirect( um_get_core_page('login', 'account_active') ) );
77
-
78
  }
79
 
80
  }
73
 
74
  um_reset_user();
75
 
 
 
76
  }
77
 
78
  }
core/um-profile.php CHANGED
@@ -6,45 +6,22 @@ class UM_Profile {
6
 
7
  add_action('template_redirect', array(&$this, 'active_tab'), 10002);
8
 
 
 
9
  }
10
 
11
  /***
12
- *** @all tab data
13
  ***/
14
  function tabs(){
15
  return apply_filters('um_profile_tabs', $tabs = array() );
16
  }
17
 
18
- /***
19
- *** @tabs that are active
20
- ***/
21
- function tabs_active(){
22
- $tabs = $this->tabs();
23
- foreach( $tabs as $id => $info ) {
24
- if ( !um_get_option('profile_tab_'.$id) )
25
- unset( $tabs[$id] );
26
- }
27
- return $tabs;
28
- }
29
-
30
- /***
31
- *** @primary tabs only
32
- ***/
33
- function tabs_primary(){
34
- $tabs = $this->tabs();
35
- foreach( $tabs as $id => $info ){
36
- $primary[$id] = $info['name'];
37
- }
38
- return $primary;
39
- }
40
-
41
  /***
42
  *** @Get active tab
43
  ***/
44
  function active_tab() {
45
 
46
- $this->active_tab = um_get_option('profile_menu_default_tab');
47
-
48
  if ( get_query_var('profiletab') ) {
49
  $this->active_tab = get_query_var('profiletab');
50
  }
@@ -53,7 +30,6 @@ class UM_Profile {
53
  $this->active_subnav = get_query_var('subnav');
54
  }
55
 
56
- return $this->active_tab;
57
  }
58
 
59
  /***
6
 
7
  add_action('template_redirect', array(&$this, 'active_tab'), 10002);
8
 
9
+ $this->active_tab = 'main';
10
+
11
  }
12
 
13
  /***
14
+ *** @Global tabs
15
  ***/
16
  function tabs(){
17
  return apply_filters('um_profile_tabs', $tabs = array() );
18
  }
19
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
20
  /***
21
  *** @Get active tab
22
  ***/
23
  function active_tab() {
24
 
 
 
25
  if ( get_query_var('profiletab') ) {
26
  $this->active_tab = get_query_var('profiletab');
27
  }
30
  $this->active_subnav = get_query_var('subnav');
31
  }
32
 
 
33
  }
34
 
35
  /***
core/um-query.php CHANGED
@@ -21,20 +21,9 @@ class UM_Query {
21
 
22
  extract( $args );
23
 
24
- if ( $post_type == 'comment' ) { // comments
25
-
26
- unset( $args['post_type'] );
27
- $comments = get_comments($args);
28
- return $comments;
29
-
30
- } else {
31
-
32
- $custom_posts = new WP_Query();
33
- $custom_posts->query( $args );
34
- return $custom_posts;
35
-
36
- }
37
-
38
  }
39
 
40
  /***
21
 
22
  extract( $args );
23
 
24
+ $custom_posts = new WP_Query();
25
+ $custom_posts->query( $args );
26
+ return $custom_posts;
 
 
 
 
 
 
 
 
 
 
 
27
  }
28
 
29
  /***
core/um-rewrite.php CHANGED
@@ -34,22 +34,17 @@ class UM_Rewrite {
34
  if ( isset( $ultimatemember->permalinks->core['user'] ) ) {
35
 
36
  $user_page_id = $ultimatemember->permalinks->core['user'];
37
- $account_page_id = $ultimatemember->permalinks->core['account'];
38
 
39
- $user = get_post($user_page_id);
40
- $user_slug = $user->post_name;
41
-
42
- $account = get_post($account_page_id);
43
- $account_slug = $account->post_name;
44
 
45
  add_rewrite_rule(
46
- '^'.$user_slug.'/([^/]*)$',
47
  'index.php?page_id='.$user_page_id.'&um_user=$matches[1]',
48
  'top'
49
  );
50
 
51
  add_rewrite_rule(
52
- '^'.$account_slug.'/([^/]*)$',
53
  'index.php?page_id='.$account_page_id.'&um_tab=$matches[1]',
54
  'top'
55
  );
34
  if ( isset( $ultimatemember->permalinks->core['user'] ) ) {
35
 
36
  $user_page_id = $ultimatemember->permalinks->core['user'];
 
37
 
38
+ $account_page_id = $ultimatemember->permalinks->core['account'];
 
 
 
 
39
 
40
  add_rewrite_rule(
41
+ '^user/([^/]*)$',
42
  'index.php?page_id='.$user_page_id.'&um_user=$matches[1]',
43
  'top'
44
  );
45
 
46
  add_rewrite_rule(
47
+ '^account/([^/]*)$',
48
  'index.php?page_id='.$account_page_id.'&um_tab=$matches[1]',
49
  'top'
50
  );
core/um-setup.php CHANGED
@@ -45,10 +45,8 @@ class UM_Setup {
45
  '_um_cover_photos' => '1',
46
  '_um_show_name' => '1',
47
  '_um_directory_header' => __('{total_users} Members','ultimatemember'),
48
- '_um_directory_header_single' => __('{total_users} Member','ultimatemember'),
49
  '_um_directory_no_users' => __('We are sorry. We cannot find any users who match your search criteria.','ultimatemember'),
50
- '_um_profiles_per_page' => 12,
51
- '_um_profiles_per_page_mobile' => 6,
52
  '_um_core' => 'members',
53
  );
54
 
@@ -90,8 +88,6 @@ class UM_Setup {
90
  '_um_profile_show_bio' => 1,
91
  '_um_profile_bio_maxchars' => 180,
92
  '_um_profile_header_menu' => 'bc',
93
- '_um_profile_empty_text' => 1,
94
- '_um_profile_empty_text_emo' => 1,
95
  '_um_profile_role' => '0',
96
  '_um_profile_template' => 'profile',
97
  '_um_profile_max_width' => '1000px',
@@ -147,8 +143,6 @@ class UM_Setup {
147
  '_um_login_secondary_btn_hover' => '#e5e5e5',
148
  '_um_login_secondary_btn_text' => '#666',
149
  '_um_directory_template' => 'members',
150
- '_um_directory_header' => __('{total_users} Members','ultimatemember'),
151
- '_um_directory_header_single' => __('{total_users} Member','ultimatemember'),
152
  );
153
 
154
  $this->core_form_meta_all = apply_filters('um_core_form_meta_all', $this->core_form_meta_all );
@@ -178,7 +172,6 @@ class UM_Setup {
178
  $this->perms = array(
179
  'core' => 'admin',
180
  'can_access_wpadmin' => 1,
181
- 'can_not_see_adminbar' => 0,
182
  'can_edit_everyone' => 1,
183
  'can_delete_everyone' => 1,
184
  'can_edit_profile' => 1,
@@ -197,7 +190,6 @@ class UM_Setup {
197
  $this->nonadmin_perms = array(
198
  'core' => 'member',
199
  'can_access_wpadmin' => 0,
200
- 'can_not_see_adminbar' => 1,
201
  'can_edit_everyone' => 0,
202
  'can_delete_everyone' => 0,
203
  'can_make_private_profile' => 0,
45
  '_um_cover_photos' => '1',
46
  '_um_show_name' => '1',
47
  '_um_directory_header' => __('{total_users} Members','ultimatemember'),
 
48
  '_um_directory_no_users' => __('We are sorry. We cannot find any users who match your search criteria.','ultimatemember'),
49
+ '_um_profiles_per_page' => '12',
 
50
  '_um_core' => 'members',
51
  );
52
 
88
  '_um_profile_show_bio' => 1,
89
  '_um_profile_bio_maxchars' => 180,
90
  '_um_profile_header_menu' => 'bc',
 
 
91
  '_um_profile_role' => '0',
92
  '_um_profile_template' => 'profile',
93
  '_um_profile_max_width' => '1000px',
143
  '_um_login_secondary_btn_hover' => '#e5e5e5',
144
  '_um_login_secondary_btn_text' => '#666',
145
  '_um_directory_template' => 'members',
 
 
146
  );
147
 
148
  $this->core_form_meta_all = apply_filters('um_core_form_meta_all', $this->core_form_meta_all );
172
  $this->perms = array(
173
  'core' => 'admin',
174
  'can_access_wpadmin' => 1,
 
175
  'can_edit_everyone' => 1,
176
  'can_delete_everyone' => 1,
177
  'can_edit_profile' => 1,
190
  $this->nonadmin_perms = array(
191
  'core' => 'member',
192
  'can_access_wpadmin' => 0,
 
193
  'can_edit_everyone' => 0,
194
  'can_delete_everyone' => 0,
195
  'can_make_private_profile' => 0,
core/um-short-functions.php CHANGED
@@ -1,18 +1,5 @@
1
  <?php
2
 
3
- /***
4
- *** @Get user IP
5
- ***/
6
- function um_user_ip() {
7
- if (!empty($_SERVER['HTTP_CLIENT_IP'])) {
8
- return $_SERVER['HTTP_CLIENT_IP'];
9
-
10
- } else if (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
11
- return $_SERVER['HTTP_X_FORWARDED_FOR'];
12
- }
13
- return $_SERVER['REMOTE_ADDR'];
14
- }
15
-
16
  /***
17
  *** @If conditions are met return true;
18
  ***/
@@ -224,12 +211,12 @@
224
  function um_is_core_uri() {
225
  global $ultimatemember;
226
  $array = $ultimatemember->permalinks->core;
227
- $current_url = $ultimatemember->permalinks->get_current_url( get_option('permalink_structure') );
228
-
229
  if ( !isset( $array ) || !is_array( $array ) ) return false;
230
 
231
  foreach( $array as $k => $id ) {
232
- $page_url = get_permalink( $id );
233
  if ( strstr( $current_url, $page_url ) )
234
  return true;
235
  }
@@ -390,9 +377,7 @@
390
  ***/
391
  function um_edit_my_profile_uri() {
392
  global $ultimatemember;
393
- $url = $ultimatemember->permalinks->get_current_url( get_option('permalink_structure') );
394
- $url = remove_query_arg( 'profiletab', $url );
395
- $url = remove_query_arg( 'subnav', $url );
396
  $url = add_query_arg( 'um_action', 'edit', $url );
397
  return $url;
398
  }
@@ -498,7 +483,6 @@
498
  $user_id = get_current_user_id();
499
  $role = get_user_meta( $user_id, 'role', true );
500
  $permissions = $ultimatemember->query->role_data( $role );
501
- $permissions = apply_filters('um_user_permissions_filter', $permissions, $user_id);
502
  if ( $permissions[ $permission ] == 1 )
503
  return true;
504
  return false;
@@ -530,14 +514,14 @@
530
 
531
  case 'edit':
532
  if ( get_current_user_id() == $user_id && um_user('can_edit_profile') ) $return = 1;
533
- elseif ( !um_user('can_edit_everyone') ) $return = 0;
534
- elseif ( get_current_user_id() == $user_id && !um_user('can_edit_profile') ) $return = 0;
535
- elseif ( um_user('can_edit_roles') && !in_array( $ultimatemember->query->get_role_by_userid( $user_id ), um_user('can_edit_roles') ) ) $return = 0;
536
  break;
537
 
538
  case 'delete':
539
  if ( !um_user('can_delete_everyone') ) $return = 0;
540
- elseif ( um_user('can_delete_roles') && !in_array( $ultimatemember->query->get_role_by_userid( $user_id ), um_user('can_delete_roles') ) ) $return = 0;
541
  break;
542
 
543
  }
1
  <?php
2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  /***
4
  *** @If conditions are met return true;
5
  ***/
211
  function um_is_core_uri() {
212
  global $ultimatemember;
213
  $array = $ultimatemember->permalinks->core;
214
+ $current_url = trailingslashit( $ultimatemember->permalinks->get_current_url(true) );
215
+
216
  if ( !isset( $array ) || !is_array( $array ) ) return false;
217
 
218
  foreach( $array as $k => $id ) {
219
+ $page_url = trailingslashit( get_permalink( $id ) );
220
  if ( strstr( $current_url, $page_url ) )
221
  return true;
222
  }
377
  ***/
378
  function um_edit_my_profile_uri() {
379
  global $ultimatemember;
380
+ $url = $ultimatemember->permalinks->get_current_url(true);
 
 
381
  $url = add_query_arg( 'um_action', 'edit', $url );
382
  return $url;
383
  }
483
  $user_id = get_current_user_id();
484
  $role = get_user_meta( $user_id, 'role', true );
485
  $permissions = $ultimatemember->query->role_data( $role );
 
486
  if ( $permissions[ $permission ] == 1 )
487
  return true;
488
  return false;
514
 
515
  case 'edit':
516
  if ( get_current_user_id() == $user_id && um_user('can_edit_profile') ) $return = 1;
517
+ if ( !um_user('can_edit_everyone') ) $return = 0;
518
+ if ( get_current_user_id() == $user_id && !um_user('can_edit_profile') ) $return = 0;
519
+ if ( um_user('can_edit_roles') && !in_array( $ultimatemember->query->get_role_by_userid( $user_id ), um_user('can_edit_roles') ) ) $return = 0;
520
  break;
521
 
522
  case 'delete':
523
  if ( !um_user('can_delete_everyone') ) $return = 0;
524
+ if ( um_user('can_delete_roles') && !in_array( $ultimatemember->query->get_role_by_userid( $user_id ), um_user('can_delete_roles') ) ) $return = 0;
525
  break;
526
 
527
  }
core/um-shortcodes.php CHANGED
@@ -113,21 +113,12 @@ class UM_Shortcodes {
113
  *** @Load dynamic css
114
  ***/
115
  function dynamic_css( $args=array() ) {
116
- global $ultimatemember;
117
  extract($args);
118
-
119
  $global = um_path . 'assets/dynamic_css/dynamic_global.php';
120
  $file = um_path . 'assets/dynamic_css/dynamic_'.$mode.'.php';
121
-
122
  include $global;
123
  if ( file_exists( $file ) )
124
  include $file;
125
-
126
- if ( isset( $args['custom_css'] ) ) {
127
- $css = $args['custom_css'];
128
- ?><!-- ULTIMATE MEMBER FORM INLINE CSS BEGIN --><style type="text/css"><?php print $ultimatemember->styles->minify( $css ); ?></style><!-- ULTIMATE MEMBER FORM INLINE CSS END --><?php
129
- }
130
-
131
  }
132
 
133
  /***
@@ -204,43 +195,5 @@ class UM_Shortcodes {
204
  $shortcode = '[ultimatemember form_id='.$post_id.']';
205
  return $shortcode;
206
  }
207
-
208
- /***
209
- *** @convert user tags in a string
210
- ***/
211
- function convert_user_tags( $str ) {
212
-
213
- $pattern_array = array(
214
- '{first_name}',
215
- '{last_name}',
216
- '{display_name}'
217
- );
218
-
219
- $pattern_array = apply_filters('um_allowed_user_tags_patterns', $pattern_array);
220
-
221
- $matches = false;
222
- foreach ( $pattern_array as $pattern ) {
223
-
224
- if (preg_match($pattern, $str)) {
225
-
226
- $usermeta = str_replace('{','',$pattern);
227
- $usermeta = str_replace('}','',$usermeta);
228
-
229
- if ( um_user( $usermeta ) ){
230
- $str = preg_replace('/'.$pattern.'/', um_user($usermeta) , $str );
231
- }
232
-
233
- if ( get_option('permalink_structure') ) {
234
- $str = str_replace( untrailingslashit( um_get_core_page('user') ), untrailingslashit( um_user_profile_url() ), $str );
235
- } else {
236
- $str = str_replace( um_get_core_page('user'), um_user_profile_url(), $str );
237
- }
238
-
239
- }
240
-
241
- }
242
-
243
- return $str;
244
- }
245
 
246
  }
113
  *** @Load dynamic css
114
  ***/
115
  function dynamic_css( $args=array() ) {
 
116
  extract($args);
 
117
  $global = um_path . 'assets/dynamic_css/dynamic_global.php';
118
  $file = um_path . 'assets/dynamic_css/dynamic_'.$mode.'.php';
 
119
  include $global;
120
  if ( file_exists( $file ) )
121
  include $file;
 
 
 
 
 
 
122
  }
123
 
124
  /***
195
  $shortcode = '[ultimatemember form_id='.$post_id.']';
196
  return $shortcode;
197
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
198
 
199
  }
core/um-user-posts.php DELETED
@@ -1,125 +0,0 @@
1
- <?php
2
-
3
- class UM_User_posts {
4
-
5
- function __construct() {
6
-
7
- add_filter('um_profile_tabs', array(&$this, 'add_tab'), 100);
8
-
9
- add_action('um_profile_content_posts', array(&$this, 'add_posts') );
10
- add_action('um_profile_content_comments', array(&$this, 'add_comments') );
11
-
12
- add_action('um_ajax_load_posts__um_load_posts', array(&$this, 'load_posts') );
13
- add_action('um_ajax_load_posts__um_load_comments', array(&$this, 'load_comments') );
14
-
15
- }
16
-
17
- /***
18
- *** @dynamic load of posts
19
- ***/
20
- function load_posts( $args ) {
21
- global $ultimatemember;
22
-
23
- $array = explode(',', $args );
24
- $post_type = $array[0];
25
- $posts_per_page = $array[1];
26
- $offset = $array[2];
27
- $author = $array[3];
28
-
29
- $offset_n = $posts_per_page + $offset;
30
- $modified_args = "$post_type,$posts_per_page,$offset_n,$author";
31
-
32
- $loop = $ultimatemember->query->make("post_type=$post_type&posts_per_page=$posts_per_page&offset=$offset&author=$author");
33
-
34
- include_once um_path . 'templates/profile/posts-single.php';
35
-
36
- }
37
-
38
- /***
39
- *** @dynamic load of comments
40
- ***/
41
- function load_comments( $args ) {
42
- global $ultimatemember;
43
-
44
- $array = explode(',', $args );
45
- $post_type = $array[0];
46
- $posts_per_page = $array[1];
47
- $offset = $array[2];
48
- $author = $array[3];
49
-
50
- $offset_n = $posts_per_page + $offset;
51
- $modified_args = "$post_type,$posts_per_page,$offset_n,$author";
52
-
53
- $loop = $ultimatemember->query->make("post_type=$post_type&number=$posts_per_page&offset=$offset&author_email=$author");
54
-
55
- include_once um_path . 'templates/profile/comments-single.php';
56
-
57
- }
58
-
59
- /***
60
- *** @adds a tab
61
- ***/
62
- function add_tab( $tabs ){
63
-
64
- $tabs['posts'] = array(
65
- 'name' => __('Posts','ultimatemember'),
66
- 'icon' => 'um-faicon-pencil',
67
- 'count' => $this->count_user_posts_by_type(),
68
- );
69
-
70
- $tabs['comments'] = array(
71
- 'name' => __('Comments','ultimatemember'),
72
- 'icon' => 'um-faicon-comment',
73
- 'count' => $this->count_user_comments(),
74
- );
75
-
76
- return $tabs;
77
- }
78
-
79
- /***
80
- *** @add posts
81
- ***/
82
- function add_posts() {
83
- global $ultimatemember;
84
-
85
- include_once um_path . 'templates/profile/posts.php';
86
-
87
- }
88
-
89
- /***
90
- *** @add comments
91
- ***/
92
- function add_comments() {
93
- global $ultimatemember;
94
-
95
- include_once um_path . 'templates/profile/comments.php';
96
-
97
- }
98
-
99
- /***
100
- *** @count posts
101
- ***/
102
- function count_user_posts_by_type( $user_id= '', $post_type = 'post' ) {
103
- global $wpdb;
104
- if ( !$user_id )
105
- $user_id = um_user('ID');
106
- $where = get_posts_by_author_sql( $post_type, true, $user_id );
107
- $count = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->posts $where" );
108
- return apply_filters('um_pretty_number_formatting', $count);
109
- }
110
-
111
- /***
112
- *** @count comments
113
- ***/
114
- function count_user_comments( $user_id = null ) {
115
- global $wpdb;
116
- if ( !$user_id )
117
- $user_id = um_user('ID');
118
- $count = $wpdb->get_var('
119
- SELECT COUNT(comment_ID)
120
- FROM ' . $wpdb->comments. '
121
- WHERE user_id = "' . $user_id . '"');
122
- return apply_filters('um_pretty_number_formatting', $count);
123
- }
124
-
125
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
core/um-user.php CHANGED
@@ -135,7 +135,7 @@ class UM_User {
135
  $user_role = $this->get_role();
136
  $this->role_meta = $ultimatemember->query->role_data( $user_role );
137
  $this->role_meta = apply_filters('um_user_permissions_filter', $this->role_meta, $this->id);
138
-
139
  $this->profile = array_merge( $this->profile, (array)$this->role_meta);
140
 
141
  $this->profile['super_admin'] = ( is_super_admin( $this->id ) ) ? 1 : 0;
135
  $user_role = $this->get_role();
136
  $this->role_meta = $ultimatemember->query->role_data( $user_role );
137
  $this->role_meta = apply_filters('um_user_permissions_filter', $this->role_meta, $this->id);
138
+
139
  $this->profile = array_merge( $this->profile, (array)$this->role_meta);
140
 
141
  $this->profile['super_admin'] = ( is_super_admin( $this->id ) ) ? 1 : 0;
index.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
6
- Version: 1.0.33
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
3
  Plugin Name: Ultimate Member
4
  Plugin URI: http://ultimatemember.com/
5
  Description: Ultimate Member is a powerful community and membership plugin that allows you to create beautiful community and membership sites with WordPress
6
+ Version: 1.0.26
7
  Author: Ultimate Member
8
  Author URI: http://ultimatemember.com/
9
  */
languages/ultimatemember-en_US.mo CHANGED
Binary file
languages/ultimatemember-en_US.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Ultimate Member\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2015-01-30 22:04+0200\n"
6
- "PO-Revision-Date: 2015-01-30 22:04+0200\n"
7
  "Last-Translator: Calum Allison <umplugin@gmail.com>\n"
8
  "Language-Team: Ultimate Member <umplugin@gmail.com>\n"
9
  "Language: en_US\n"
@@ -54,7 +54,7 @@ msgid "Redux Framework"
54
  msgstr ""
55
 
56
  #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:217
57
- #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:221 admin/core/um-admin-metabox.php:292
58
  msgid "Options"
59
  msgstr ""
60
 
@@ -240,8 +240,8 @@ msgstr ""
240
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:314
241
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:193
242
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:126
243
- #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:188 core/um-fields.php:746
244
- #: core/um-fields.php:767
245
  msgid "Upload"
246
  msgstr ""
247
 
@@ -579,7 +579,7 @@ msgid ""
579
  msgstr ""
580
 
581
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:135 admin/core/um-admin-tracking.php:153
582
- #: um-config.php:1575
583
  msgid "Allow tracking"
584
  msgstr ""
585
 
@@ -1540,10 +1540,7 @@ msgstr ""
1540
  msgid "Specify the body font properties."
1541
  msgstr ""
1542
 
1543
- #: admin/core/lib/ReduxFramework/sample/sample-config.php:796 admin/core/um-admin-metabox.php:281
1544
- #: admin/core/um-admin-metabox.php:287 admin/core/um-admin-metabox.php:293
1545
- #: admin/templates/form/login_css.php:4 admin/templates/form/profile_css.php:4
1546
- #: admin/templates/form/register_css.php:4 um-config.php:1527 um-config.php:1533
1547
  msgid "Custom CSS"
1548
  msgstr ""
1549
 
@@ -2013,7 +2010,7 @@ msgstr ""
2013
  msgid "Extensions"
2014
  msgstr ""
2015
 
2016
- #: admin/core/um-admin-access.php:95
2017
  msgid "Access Control"
2018
  msgstr ""
2019
 
@@ -2083,8 +2080,8 @@ msgstr ""
2083
  msgid "Type"
2084
  msgstr ""
2085
 
2086
- #: admin/core/um-admin-columns.php:28 admin/core/um-admin-columns.php:45 admin/core/um-admin-metabox.php:238
2087
- #: admin/core/um-admin-metabox.php:278
2088
  msgid "Shortcode"
2089
  msgstr ""
2090
 
@@ -2156,113 +2153,109 @@ msgstr ""
2156
  msgid "Role draft updated."
2157
  msgstr ""
2158
 
2159
- #: admin/core/um-admin-metabox.php:112 core/um-builtin.php:812 core/um-builtin.php:827 um-config.php:216
2160
- #: um-config.php:248
2161
  msgid "Yes"
2162
  msgstr ""
2163
 
2164
  #: admin/core/um-admin-metabox.php:113 admin/core/um-admin-roles.php:48 core/um-builtin.php:811
2165
- #: core/um-builtin.php:812 core/um-builtin.php:826 core/um-builtin.php:827 um-config.php:217 um-config.php:249
2166
  msgid "No"
2167
  msgstr ""
2168
 
2169
- #: admin/core/um-admin-metabox.php:233
2170
  msgid "General Options"
2171
  msgstr ""
2172
 
2173
- #: admin/core/um-admin-metabox.php:234
2174
  msgid "Profile Card"
2175
  msgstr ""
2176
 
2177
- #: admin/core/um-admin-metabox.php:235
2178
  msgid "Search Options"
2179
  msgstr ""
2180
 
2181
- #: admin/core/um-admin-metabox.php:236
2182
  msgid "Results &amp; Pagination"
2183
  msgstr ""
2184
 
2185
- #: admin/core/um-admin-metabox.php:240
2186
  msgid "Styling: General"
2187
  msgstr ""
2188
 
2189
- #: admin/core/um-admin-metabox.php:242
2190
  msgid "Styling: Profile Card"
2191
  msgstr ""
2192
 
2193
- #: admin/core/um-admin-metabox.php:251
2194
  msgid "Administrative Permissions"
2195
  msgstr ""
2196
 
2197
- #: admin/core/um-admin-metabox.php:253
2198
  msgid "General Permissions"
2199
  msgstr ""
2200
 
2201
- #: admin/core/um-admin-metabox.php:255
2202
  msgid "Profile Access"
2203
  msgstr ""
2204
 
2205
- #: admin/core/um-admin-metabox.php:257
2206
  msgid "Homepage Options"
2207
  msgstr ""
2208
 
2209
- #: admin/core/um-admin-metabox.php:259
2210
  msgid "Registration Options"
2211
  msgstr ""
2212
 
2213
- #: admin/core/um-admin-metabox.php:261
2214
  msgid "Login Options"
2215
  msgstr ""
2216
 
2217
- #: admin/core/um-admin-metabox.php:263
2218
  msgid "Logout Options"
2219
  msgstr ""
2220
 
2221
- #: admin/core/um-admin-metabox.php:265
2222
  msgid "Delete Options"
2223
  msgstr ""
2224
 
2225
- #: admin/core/um-admin-metabox.php:276
2226
  msgid "Select Form Type"
2227
  msgstr ""
2228
 
2229
- #: admin/core/um-admin-metabox.php:277
2230
  msgid "Form Builder"
2231
  msgstr ""
2232
 
2233
- #: admin/core/um-admin-metabox.php:280 admin/core/um-admin-metabox.php:285 admin/core/um-admin-metabox.php:291
2234
  msgid "Customize this form"
2235
  msgstr ""
2236
 
2237
- #: admin/core/um-admin-metabox.php:286
2238
  msgid "User Meta"
2239
  msgstr ""
2240
 
2241
- #: admin/core/um-admin-metabox.php:444
2242
  msgid ""
2243
  "Select where this field should appear. This option should only be changed on the profile form and allows you "
2244
  "to show a field in one mode only (edit or view) or in both modes."
2245
  msgstr ""
2246
 
2247
- #: admin/core/um-admin-metabox.php:478
2248
  msgid "If"
2249
  msgstr ""
2250
 
2251
- #: admin/core/um-admin-metabox.php:547
2252
  msgid "Value"
2253
  msgstr ""
2254
 
2255
- #: admin/core/um-admin-metabox.php:665
2256
- msgid "Optional text to include with the divider"
2257
- msgstr ""
2258
-
2259
- #: admin/core/um-admin-metabox.php:856
2260
  msgid ""
2261
- "Turn on to force users to create a strong password (A combination of one lowercase letter, one uppercase "
2262
- "letter, and one number). If turned on this option is only applied to register forms and not to login forms."
2263
  msgstr ""
2264
 
2265
- #: admin/core/um-admin-metabox.php:866
2266
  msgid ""
2267
  "Turn on to add a confirm password field. If turned on the confirm password field will only show on register "
2268
  "forms and not on login forms."
@@ -2354,7 +2347,7 @@ msgstr ""
2354
  msgid "Take Action"
2355
  msgstr ""
2356
 
2357
- #: admin/core/um-admin-users.php:199 core/um-fields.php:1201
2358
  msgid "Apply"
2359
  msgstr ""
2360
 
@@ -2471,32 +2464,14 @@ msgstr ""
2471
  msgid "Meta key"
2472
  msgstr ""
2473
 
2474
- #: admin/templates/directory/pagination.php:6
2475
  msgid "Number of profiles per page"
2476
  msgstr ""
2477
 
2478
- #: admin/templates/directory/pagination.php:6
2479
- msgid "Number of profiles to appear on page for standard users"
2480
- msgstr ""
2481
-
2482
- #: admin/templates/directory/pagination.php:15
2483
- msgid "Number of profiles per page (for Mobiles & Tablets)"
2484
- msgstr ""
2485
-
2486
- #: admin/templates/directory/pagination.php:15
2487
- msgid "Number of profiles to appear on page for mobile users"
2488
- msgstr ""
2489
-
2490
- #: admin/templates/directory/pagination.php:24
2491
  msgid "Maximum number of profiles"
2492
  msgstr ""
2493
 
2494
- #: admin/templates/directory/pagination.php:24
2495
- msgid ""
2496
- "Use this setting to control the maximum number of profiles to appear in this directory. Leave blank to "
2497
- "disable this limit"
2498
- msgstr ""
2499
-
2500
  #: admin/templates/directory/profile.php:6
2501
  msgid "Enable Profile Photo"
2502
  msgstr ""
@@ -2569,31 +2544,15 @@ msgstr ""
2569
  msgid "Results Text"
2570
  msgstr ""
2571
 
2572
- #: admin/templates/directory/search.php:76
2573
- msgid "Customize the search result text . e.g. Found 3,000 Members. Leave this blank to not show result text"
2574
- msgstr ""
2575
-
2576
- #: admin/templates/directory/search.php:79 core/um-setup.php:47 core/um-setup.php:150
2577
  msgid "{total_users} Members"
2578
  msgstr ""
2579
 
2580
  #: admin/templates/directory/search.php:85
2581
- msgid "Single Result Text"
2582
  msgstr ""
2583
 
2584
- #: admin/templates/directory/search.php:85
2585
- msgid "Same as above but in case of 1 user found only"
2586
- msgstr ""
2587
-
2588
- #: admin/templates/directory/search.php:88 core/um-setup.php:48 core/um-setup.php:151
2589
- msgid "{total_users} Member"
2590
- msgstr ""
2591
-
2592
- #: admin/templates/directory/search.php:94
2593
- msgid "Custom text if no users were found"
2594
- msgstr ""
2595
-
2596
- #: admin/templates/directory/search.php:97 core/um-setup.php:49
2597
  msgid "We are sorry. We cannot find any users who match your search criteria."
2598
  msgstr ""
2599
 
@@ -2605,11 +2564,6 @@ msgstr ""
2605
  msgid "Add Master Row"
2606
  msgstr ""
2607
 
2608
- #: admin/templates/form/login_css.php:4 admin/templates/form/profile_css.php:4
2609
- #: admin/templates/form/register_css.php:4
2610
- msgid "Enter custom css that will be applied to this form only"
2611
- msgstr ""
2612
-
2613
  #: admin/templates/form/login_customize.php:4 admin/templates/form/profile_customize.php:4
2614
  #: admin/templates/form/register_customize.php:4
2615
  msgid "Use global settings?"
@@ -2620,57 +2574,57 @@ msgstr ""
2620
  msgid "Max. Width (px)"
2621
  msgstr ""
2622
 
2623
- #: admin/templates/form/login_customize.php:30 admin/templates/form/profile_customize.php:46
2624
  #: admin/templates/form/register_customize.php:42
2625
  msgid "Alignment"
2626
  msgstr ""
2627
 
2628
- #: admin/templates/form/login_customize.php:40 admin/templates/form/profile_customize.php:56
2629
  #: admin/templates/form/register_customize.php:52
2630
  msgid "Field Icons"
2631
  msgstr ""
2632
 
2633
- #: admin/templates/form/login_customize.php:50 admin/templates/form/profile_customize.php:66
2634
  #: admin/templates/form/register_customize.php:62
2635
  msgid "Primary Button Text"
2636
  msgstr ""
2637
 
2638
- #: admin/templates/form/login_customize.php:54 admin/templates/form/profile_customize.php:70
2639
  #: admin/templates/form/register_customize.php:66
2640
  msgid "Primary Button Color"
2641
  msgstr ""
2642
 
2643
- #: admin/templates/form/login_customize.php:58 admin/templates/form/profile_customize.php:74
2644
  #: admin/templates/form/register_customize.php:70
2645
  msgid "Primary Button Hover Color"
2646
  msgstr ""
2647
 
2648
- #: admin/templates/form/login_customize.php:62 admin/templates/form/profile_customize.php:78
2649
  #: admin/templates/form/register_customize.php:74
2650
  msgid "Primary Button Text Color"
2651
  msgstr ""
2652
 
2653
- #: admin/templates/form/login_customize.php:67 admin/templates/form/profile_customize.php:83
2654
  #: admin/templates/form/register_customize.php:79
2655
  msgid "Show Secondary Button"
2656
  msgstr ""
2657
 
2658
- #: admin/templates/form/login_customize.php:75 admin/templates/form/profile_customize.php:91
2659
  #: admin/templates/form/register_customize.php:87
2660
  msgid "Secondary Button Text"
2661
  msgstr ""
2662
 
2663
- #: admin/templates/form/login_customize.php:79 admin/templates/form/profile_customize.php:95
2664
  #: admin/templates/form/register_customize.php:91
2665
  msgid "Secondary Button Color"
2666
  msgstr ""
2667
 
2668
- #: admin/templates/form/login_customize.php:83 admin/templates/form/profile_customize.php:99
2669
  #: admin/templates/form/register_customize.php:95
2670
  msgid "Secondary Button Hover Color"
2671
  msgstr ""
2672
 
2673
- #: admin/templates/form/login_customize.php:87 admin/templates/form/profile_customize.php:103
2674
  #: admin/templates/form/register_customize.php:99
2675
  msgid "Secondary Button Text Color"
2676
  msgstr ""
@@ -2693,7 +2647,7 @@ msgstr ""
2693
  msgid "<strong>Note:</strong> Form type cannot be changed for the default forms."
2694
  msgstr ""
2695
 
2696
- #: admin/templates/form/mode.php:9 um-config.php:1347
2697
  msgid "Registration Form"
2698
  msgstr ""
2699
 
@@ -2701,7 +2655,7 @@ msgstr ""
2701
  msgid "Profile Form"
2702
  msgstr ""
2703
 
2704
- #: admin/templates/form/mode.php:13 um-config.php:1438
2705
  msgid "Login Form"
2706
  msgstr ""
2707
 
@@ -2709,71 +2663,67 @@ msgstr ""
2709
  msgid "Make this profile role-specific"
2710
  msgstr ""
2711
 
2712
- #: admin/templates/form/profile_customize.php:42
2713
- msgid "Profile Area Max. Width (px)"
2714
- msgstr ""
2715
-
2716
- #: admin/templates/form/profile_customize.php:107
2717
  msgid "Base Background Color"
2718
  msgstr ""
2719
 
2720
- #: admin/templates/form/profile_customize.php:111
2721
  msgid "Enable Cover Photos"
2722
  msgstr ""
2723
 
2724
- #: admin/templates/form/profile_customize.php:119
2725
  msgid "Cover photo ratio"
2726
  msgstr ""
2727
 
2728
- #: admin/templates/form/profile_customize.php:129 um-config.php:1143
2729
  msgid "Profile Photo Size"
2730
  msgstr ""
2731
 
2732
- #: admin/templates/form/profile_customize.php:133 um-config.php:1152
2733
  msgid "Profile Photo Style"
2734
  msgstr ""
2735
 
2736
- #: admin/templates/form/profile_customize.php:136 um-config.php:1156
2737
  msgid "Circle"
2738
  msgstr ""
2739
 
2740
- #: admin/templates/form/profile_customize.php:137 um-config.php:1157
2741
  msgid "Rounded Corners"
2742
  msgstr ""
2743
 
2744
- #: admin/templates/form/profile_customize.php:138 um-config.php:1158
2745
  msgid "Square"
2746
  msgstr ""
2747
 
2748
- #: admin/templates/form/profile_customize.php:143
2749
  msgid "Header Background Color"
2750
  msgstr ""
2751
 
2752
- #: admin/templates/form/profile_customize.php:147
2753
  msgid "Header Meta Text Color"
2754
  msgstr ""
2755
 
2756
- #: admin/templates/form/profile_customize.php:151
2757
  msgid "Header Link Color"
2758
  msgstr ""
2759
 
2760
- #: admin/templates/form/profile_customize.php:155
2761
  msgid "Header Link Hover"
2762
  msgstr ""
2763
 
2764
- #: admin/templates/form/profile_customize.php:159
2765
  msgid "Header Icon Link Color"
2766
  msgstr ""
2767
 
2768
- #: admin/templates/form/profile_customize.php:163
2769
  msgid "Header Icon Link Hover"
2770
  msgstr ""
2771
 
2772
- #: admin/templates/form/profile_customize.php:168
2773
  msgid "Show display name in profile header?"
2774
  msgstr ""
2775
 
2776
- #: admin/templates/form/profile_customize.php:177
2777
  msgid "Show user description in profile header?"
2778
  msgstr ""
2779
 
@@ -2789,7 +2739,7 @@ msgstr ""
2789
  msgid "Assign role to form"
2790
  msgstr ""
2791
 
2792
- #: admin/templates/form/register_customize.php:42 um-config.php:1052 um-config.php:1373 um-config.php:1464
2793
  msgid "The shortcode is centered by default unless you specify otherwise here"
2794
  msgstr ""
2795
 
@@ -2837,7 +2787,7 @@ msgstr ""
2837
  #: admin/templates/modal/dynamic_new_divider.php:15 admin/templates/modal/dynamic_new_field.php:15
2838
  #: admin/templates/modal/dynamic_new_group.php:15 core/um-actions-profile.php:167
2839
  #: core/um-actions-profile.php:259 core/um-actions-profile.php:269 core/um-actions-profile.php:394
2840
- #: core/um-fields.php:1202 core/um-fields.php:1287
2841
  msgid "Cancel"
2842
  msgstr ""
2843
 
@@ -2883,7 +2833,7 @@ msgstr ""
2883
  msgid "Choose from %s available icons"
2884
  msgstr ""
2885
 
2886
- #: admin/templates/role/admin.php:7 admin/templates/role/admin.php:16
2887
  msgid "Can access wp-admin?"
2888
  msgstr ""
2889
 
@@ -2891,49 +2841,41 @@ msgstr ""
2891
  msgid "The core admin role must always have access to wp-admin / WordPress backend"
2892
  msgstr ""
2893
 
2894
- #: admin/templates/role/admin.php:11 admin/templates/role/admin.php:20
2895
- msgid "Force hiding adminbar in frontend?"
2896
- msgstr ""
2897
-
2898
- #: admin/templates/role/admin.php:11 admin/templates/role/admin.php:20
2899
- msgid "Show/hide the adminbar on frontend"
2900
- msgstr ""
2901
-
2902
- #: admin/templates/role/admin.php:16
2903
  msgid ""
2904
  "Allow this role to access the admin dashboard. If turned on the WordPress toolbar will appear at top of the "
2905
  "page."
2906
  msgstr ""
2907
 
2908
- #: admin/templates/role/admin.php:26
2909
  msgid "Can edit other member accounts?"
2910
  msgstr ""
2911
 
2912
- #: admin/templates/role/admin.php:26
2913
  msgid "Allow this role to edit accounts of other members"
2914
  msgstr ""
2915
 
2916
- #: admin/templates/role/admin.php:31
2917
  msgid "Can edit these user roles only"
2918
  msgstr ""
2919
 
2920
- #: admin/templates/role/admin.php:31
2921
  msgid "Which roles that role can edit, choose none to allow role to edit all member roles"
2922
  msgstr ""
2923
 
2924
- #: admin/templates/role/admin.php:44
2925
  msgid "Can delete other member accounts?"
2926
  msgstr ""
2927
 
2928
- #: admin/templates/role/admin.php:44
2929
  msgid "Allow this role to edit the profile fields of certain roles only"
2930
  msgstr ""
2931
 
2932
- #: admin/templates/role/admin.php:49
2933
  msgid "Can delete these user roles only"
2934
  msgstr ""
2935
 
2936
- #: admin/templates/role/admin.php:49
2937
  msgid "Which roles that role can delete, choose none to allow role to delete all member roles"
2938
  msgstr ""
2939
 
@@ -3139,12 +3081,12 @@ msgstr ""
3139
  msgid "Member Directories"
3140
  msgstr ""
3141
 
3142
- #: admin/um-admin-init.php:82
3143
  msgid "Please create a team.php template in admin templates."
3144
  msgstr ""
3145
 
3146
  #: core/um-actions-account.php:28 core/um-actions-account.php:97 core/um-actions-account.php:142
3147
- #: core/um-actions-account.php:294 core/um-builtin.php:818 core/um-builtin.php:821
3148
  msgid "Delete Account"
3149
  msgstr ""
3150
 
@@ -3156,38 +3098,6 @@ msgstr ""
3156
  msgid "Your password must contain less than 30 characters"
3157
  msgstr ""
3158
 
3159
- #: core/um-actions-account.php:90 core/um-actions-form.php:176 core/um-actions-password.php:129
3160
- msgid "Your password must contain at least one lowercase letter, one capital letter and one number"
3161
- msgstr ""
3162
-
3163
- #: core/um-actions-account.php:165
3164
- msgid "Update Privacy"
3165
- msgstr ""
3166
-
3167
- #: core/um-actions-account.php:188
3168
- msgid "Update Account"
3169
- msgstr ""
3170
-
3171
- #: core/um-actions-account.php:212
3172
- msgid "Update Password"
3173
- msgstr ""
3174
-
3175
- #: core/um-actions-account.php:282 um-config.php:100
3176
- msgid "Account"
3177
- msgstr ""
3178
-
3179
- #: core/um-actions-account.php:285
3180
- msgid "Change Password"
3181
- msgstr ""
3182
-
3183
- #: core/um-actions-account.php:288
3184
- msgid "Privacy"
3185
- msgstr ""
3186
-
3187
- #: core/um-actions-account.php:291 um-config.php:636
3188
- msgid "Notifications"
3189
- msgstr ""
3190
-
3191
  #: core/um-actions-ajax.php:41 core/um-actions-ajax.php:56 core/um-actions-ajax.php:106
3192
  msgid "You can not edit this user"
3193
  msgstr ""
@@ -3236,6 +3146,10 @@ msgstr ""
3236
  msgid "You can not use HTML tags here"
3237
  msgstr ""
3238
 
 
 
 
 
3239
  #: core/um-actions-form.php:182
3240
  msgid "Please confirm your password"
3241
  msgstr ""
@@ -3354,7 +3268,7 @@ msgstr ""
3354
  msgid "%s of %d"
3355
  msgstr ""
3356
 
3357
- #: core/um-actions-misc.php:58 core/um-actions-misc.php:85
3358
  msgid "Registration is currently disabled"
3359
  msgstr ""
3360
 
@@ -3362,35 +3276,31 @@ msgstr ""
3362
  msgid "You have successfully changed your password."
3363
  msgstr ""
3364
 
3365
- #: core/um-actions-misc.php:69
3366
- msgid "Your account is now active! You can login."
3367
- msgstr ""
3368
-
3369
- #: core/um-actions-misc.php:81
3370
  msgid "An error has been encountered"
3371
  msgstr ""
3372
 
3373
- #: core/um-actions-misc.php:89 core/um-filters-login.php:33
3374
  msgid "This email address has been blocked."
3375
  msgstr ""
3376
 
3377
- #: core/um-actions-misc.php:93 core/um-filters-login.php:36
3378
  msgid "Your IP address has been blocked."
3379
  msgstr ""
3380
 
3381
- #: core/um-actions-misc.php:97 core/um-filters-login.php:78
3382
  msgid "Your account has been disabled."
3383
  msgstr ""
3384
 
3385
- #: core/um-actions-misc.php:101 core/um-filters-login.php:81
3386
  msgid "Your account has not been approved yet."
3387
  msgstr ""
3388
 
3389
- #: core/um-actions-misc.php:105 core/um-filters-login.php:84
3390
  msgid "Your account is awaiting e-mail verifications."
3391
  msgstr ""
3392
 
3393
- #: core/um-actions-misc.php:109 core/um-filters-login.php:87
3394
  msgid "Your membership request has been rejected."
3395
  msgstr ""
3396
 
@@ -3441,7 +3351,7 @@ msgstr ""
3441
  msgid "Upload photo"
3442
  msgstr ""
3443
 
3444
- #: core/um-actions-profile.php:267 core/um-fields.php:1168 core/um-fields.php:1201
3445
  msgid "Change photo"
3446
  msgstr ""
3447
 
@@ -3610,7 +3520,7 @@ msgstr ""
3610
  msgid "Everyone"
3611
  msgstr ""
3612
 
3613
- #: core/um-builtin.php:796 core/um-user.php:407
3614
  msgid "Only me"
3615
  msgstr ""
3616
 
@@ -3644,37 +3554,37 @@ msgstr ""
3644
  msgid "Less than 1 year old"
3645
  msgstr ""
3646
 
3647
- #: core/um-fields.php:919
3648
  msgid "Current Password"
3649
  msgstr ""
3650
 
3651
- #: core/um-fields.php:980
3652
  #, php-format
3653
  msgid "Confirm New %s"
3654
  msgstr ""
3655
 
3656
- #: core/um-fields.php:1159 core/um-fields.php:1231
3657
  msgid "Upload Photo"
3658
  msgstr ""
3659
 
3660
- #: core/um-fields.php:1201 core/um-fields.php:1286
3661
  msgid "Processing..."
3662
  msgstr ""
3663
 
3664
- #: core/um-fields.php:1247 core/um-fields.php:1286
3665
  msgid "Change file"
3666
  msgstr ""
3667
 
3668
- #: core/um-fields.php:1286
3669
  msgid "Save"
3670
  msgstr ""
3671
 
3672
- #: core/um-fields.php:1933
3673
  #, php-format
3674
  msgid "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some information!"
3675
  msgstr ""
3676
 
3677
- #: core/um-fields.php:1935
3678
  msgid "This user has not added any information to their profile yet."
3679
  msgstr ""
3680
 
@@ -3827,14 +3737,6 @@ msgstr ""
3827
  msgid "Search Member Directories"
3828
  msgstr ""
3829
 
3830
- #: core/um-user-posts.php:65
3831
- msgid "Posts"
3832
- msgstr ""
3833
-
3834
- #: core/um-user-posts.php:71
3835
- msgid "Comments"
3836
- msgstr ""
3837
-
3838
  #: index.php:57
3839
  msgid "Docs"
3840
  msgstr ""
@@ -3847,53 +3749,6 @@ msgstr ""
3847
  msgid "Uninstall"
3848
  msgstr ""
3849
 
3850
- #: templates/profile/comments-single.php:6
3851
- #, php-format
3852
- msgid "On <a href=\"%1$s\">%2$s</a>"
3853
- msgstr ""
3854
-
3855
- #: templates/profile/comments-single.php:15 templates/profile/comments.php:14
3856
- msgid "load more comments"
3857
- msgstr ""
3858
-
3859
- #: templates/profile/comments.php:23
3860
- msgid "You have not made any comments."
3861
- msgstr ""
3862
-
3863
- #: templates/profile/comments.php:23
3864
- msgid "This user has not made any comments."
3865
- msgstr ""
3866
-
3867
- #: templates/profile/posts-single.php:6
3868
- #, php-format
3869
- msgid "%s ago"
3870
- msgstr ""
3871
-
3872
- #: templates/profile/posts-single.php:8
3873
- msgid "no comments"
3874
- msgstr ""
3875
-
3876
- #: templates/profile/posts-single.php:8
3877
- msgid "1 comment"
3878
- msgstr ""
3879
-
3880
- #: templates/profile/posts-single.php:8
3881
- #, php-format
3882
- msgid "% comments"
3883
- msgstr ""
3884
-
3885
- #: templates/profile/posts-single.php:17 templates/profile/posts.php:14
3886
- msgid "load more posts"
3887
- msgstr ""
3888
-
3889
- #: templates/profile/posts.php:23
3890
- msgid "You have not created any posts."
3891
- msgstr ""
3892
-
3893
- #: templates/profile/posts.php:23
3894
- msgid "This user has not created any posts."
3895
- msgstr ""
3896
-
3897
  #: um-config.php:13
3898
  msgid "Users"
3899
  msgstr ""
@@ -3942,688 +3797,643 @@ msgstr ""
3942
  msgid "Members Directory"
3943
  msgstr ""
3944
 
3945
- #: um-config.php:84
3946
- msgid "Use Gravatars?"
3947
- msgstr ""
3948
-
3949
- #: um-config.php:86
3950
- msgid ""
3951
- "Do you want to use gravatars instead of the default plugin profile photo (If the user did not upload a "
3952
- "custom profile photo / avatar)"
3953
  msgstr ""
3954
 
3955
- #: um-config.php:106
3956
  msgid "Password Account Tab"
3957
  msgstr ""
3958
 
3959
- #: um-config.php:116
3960
  msgid "Privacy Account Tab"
3961
  msgstr ""
3962
 
3963
- #: um-config.php:126
3964
  msgid "Notifications Account Tab"
3965
  msgstr ""
3966
 
3967
- #: um-config.php:136
3968
  msgid "Delete Account Tab"
3969
  msgstr ""
3970
 
3971
- #: um-config.php:146
3972
  msgid "Account Deletion Custom Text"
3973
  msgstr ""
3974
 
3975
- #: um-config.php:148
3976
  msgid "This is custom text that will be displayed to users before they delete their accounts from your site"
3977
  msgstr ""
3978
 
3979
- #: um-config.php:167
3980
  msgid "Access"
3981
  msgstr ""
3982
 
3983
- #: um-config.php:174
3984
  msgid "Global Site Access"
3985
  msgstr ""
3986
 
3987
- #: um-config.php:186
3988
  msgid "Custom Redirect URL"
3989
  msgstr ""
3990
 
3991
- #: um-config.php:195
3992
  msgid "Exclude the following URLs"
3993
  msgstr ""
3994
 
3995
- #: um-config.php:196
3996
  msgid "Here you can exclude URLs beside the redirect URI to be accessible to everyone"
3997
  msgstr ""
3998
 
3999
- #: um-config.php:197
4000
  msgid "Add New URL"
4001
  msgstr ""
4002
 
4003
- #: um-config.php:204
4004
  msgid "Panic Key"
4005
  msgstr ""
4006
 
4007
- #: um-config.php:213
4008
  msgid "Allow Backend Login Screen for Guests"
4009
  msgstr ""
4010
 
4011
- #: um-config.php:224
4012
  msgid "Redirect to alternative login page"
4013
  msgstr ""
4014
 
4015
- #: um-config.php:225
4016
  msgid "If you disable backend access to login screen, specify here where a user will be redirected"
4017
  msgstr ""
4018
 
4019
- #: um-config.php:237 um-config.php:269
4020
  msgid "Custom URL"
4021
  msgstr ""
4022
 
4023
- #: um-config.php:245
4024
  msgid "Allow Backend Register Screen for Guests"
4025
  msgstr ""
4026
 
4027
- #: um-config.php:256
4028
  msgid "Redirect to alternative register page"
4029
  msgstr ""
4030
 
4031
- #: um-config.php:257
4032
  msgid "If you disable backend access to register screen, specify here where a user will be redirected"
4033
  msgstr ""
4034
 
4035
- #: um-config.php:277
4036
- msgid "Whitelisted Backend IPs"
4037
- msgstr ""
4038
-
4039
- #: um-config.php:278
4040
- msgid ""
4041
- "Always allow the specified IP addresses to access the backend login screen and WP-admin to avoid being "
4042
- "locked from site backend."
4043
  msgstr ""
4044
 
4045
- #: um-config.php:284
4046
- msgid "Blocked IP Addresses"
4047
  msgstr ""
4048
 
4049
- #: um-config.php:285
4050
  msgid ""
4051
  "This will block the listed IPs from signing up or signing in to the site, you can use full IP numbers or "
4052
  "target specific range with a wildcard"
4053
  msgstr ""
4054
 
4055
- #: um-config.php:291
4056
  msgid "Blocked Email Addresses"
4057
  msgstr ""
4058
 
4059
- #: um-config.php:292
 
 
 
 
 
 
4060
  msgid "This will block the specified e-mail addresses from being able to sign up or sign in to your site."
4061
  msgstr ""
4062
 
4063
- #: um-config.php:298
4064
  msgid "Blacklist Words"
4065
  msgstr ""
4066
 
4067
- #: um-config.php:299
 
 
 
 
 
 
4068
  msgid ""
4069
  "This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their "
4070
  "username"
4071
  msgstr ""
4072
 
4073
- #: um-config.php:314
4074
  msgid "Emails"
4075
  msgstr ""
4076
 
4077
- #: um-config.php:320
4078
  msgid "Mail appears from"
4079
  msgstr ""
4080
 
4081
- #: um-config.php:321
4082
  msgid "e.g. Site Name"
4083
  msgstr ""
4084
 
4085
- #: um-config.php:328
4086
  msgid "Mail appears from address"
4087
  msgstr ""
4088
 
4089
- #: um-config.php:329 um-config.php:644
4090
  msgid "e.g. admin@companyname.com"
4091
  msgstr ""
4092
 
4093
- #: um-config.php:336 um-config.php:344 um-config.php:354
4094
  msgid "Account Welcome Email"
4095
  msgstr ""
4096
 
4097
- #: um-config.php:345 um-config.php:381 um-config.php:413 um-config.php:445 um-config.php:481 um-config.php:512
4098
- #: um-config.php:543 um-config.php:574 um-config.php:606 um-config.php:659 um-config.php:690 um-config.php:722
4099
  msgid "Subject Line"
4100
  msgstr ""
4101
 
4102
- #: um-config.php:355 um-config.php:391 um-config.php:423 um-config.php:455 um-config.php:491 um-config.php:522
4103
- #: um-config.php:553 um-config.php:584 um-config.php:616 um-config.php:669 um-config.php:700 um-config.php:732
4104
  msgid "Message Body"
4105
  msgstr ""
4106
 
4107
- #: um-config.php:372 um-config.php:380 um-config.php:390
4108
  msgid "Account Activation Email"
4109
  msgstr ""
4110
 
4111
- #: um-config.php:404 um-config.php:412 um-config.php:422
4112
  msgid "Pending Review Email"
4113
  msgstr ""
4114
 
4115
- #: um-config.php:436 um-config.php:444 um-config.php:454
4116
  msgid "Account Approved Email"
4117
  msgstr ""
4118
 
4119
- #: um-config.php:472 um-config.php:480 um-config.php:490
4120
  msgid "Account Rejected Email"
4121
  msgstr ""
4122
 
4123
- #: um-config.php:503 um-config.php:511 um-config.php:521
4124
  msgid "Account Deactivated Email"
4125
  msgstr ""
4126
 
4127
- #: um-config.php:534 um-config.php:542 um-config.php:552
4128
  msgid "Account Deleted Email"
4129
  msgstr ""
4130
 
4131
- #: um-config.php:565 um-config.php:573 um-config.php:583
4132
  msgid "Password Reset Email"
4133
  msgstr ""
4134
 
4135
- #: um-config.php:597 um-config.php:605 um-config.php:615
4136
  msgid "Password Changed Email"
4137
  msgstr ""
4138
 
4139
- #: um-config.php:642
 
 
 
 
4140
  msgid "Admin E-mail Address"
4141
  msgstr ""
4142
 
4143
- #: um-config.php:650 um-config.php:658 um-config.php:668
4144
  msgid "New User Notification"
4145
  msgstr ""
4146
 
4147
- #: um-config.php:681 um-config.php:689 um-config.php:699
4148
  msgid "Account Needs Review Notification"
4149
  msgstr ""
4150
 
4151
- #: um-config.php:713 um-config.php:721 um-config.php:731
4152
  msgid "Account Deletion Notification"
4153
  msgstr ""
4154
 
4155
- #: um-config.php:749
4156
  msgid "Uploads"
4157
  msgstr ""
4158
 
4159
- #: um-config.php:755
4160
  msgid "Profile Photo Thumbnail Sizes"
4161
  msgstr ""
4162
 
4163
- #: um-config.php:756
4164
  msgid "Here you can define which thumbnail sizes will be created for each profile photo upload."
4165
  msgstr ""
4166
 
4167
- #: um-config.php:759 um-config.php:769
4168
  msgid "Add New Size"
4169
  msgstr ""
4170
 
4171
- #: um-config.php:765
4172
  msgid "Cover Photo Thumbnail Sizes"
4173
  msgstr ""
4174
 
4175
- #: um-config.php:766
4176
  msgid "Here you can define which thumbnail sizes will be created for each cover photo upload."
4177
  msgstr ""
4178
 
4179
- #: um-config.php:775
4180
  msgid "Image Quality"
4181
  msgstr ""
4182
 
4183
- #: um-config.php:776
4184
  msgid ""
4185
  "Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to "
4186
  "100 (best quality, biggest file). The default range is 60."
4187
  msgstr ""
4188
 
4189
- #: um-config.php:784
4190
  msgid "Image Upload Maximum Width"
4191
  msgstr ""
4192
 
4193
- #: um-config.php:785
4194
  msgid "Any image upload above this width will be resized to this limit automatically."
4195
  msgstr ""
4196
 
4197
- #: um-config.php:793
4198
  msgid "Cover Photo Minimum Width"
4199
  msgstr ""
4200
 
4201
- #: um-config.php:794
4202
  msgid "This will be the minimum width for cover photo uploads"
4203
  msgstr ""
4204
 
4205
- #: um-config.php:810
4206
  msgid "SEO"
4207
  msgstr ""
4208
 
4209
- #: um-config.php:816
4210
  msgid "User Profile Title"
4211
  msgstr ""
4212
 
4213
- #: um-config.php:825
4214
  msgid "User Profile Dynamic Meta Description"
4215
  msgstr ""
4216
 
4217
- #: um-config.php:826
4218
  msgid "You can use dynamic tags to display dynamic user profile data in this field."
4219
  msgstr ""
4220
 
4221
- #: um-config.php:827
4222
  msgid "This will be used in the meta description that is available for search-engines."
4223
  msgstr ""
4224
 
4225
- #: um-config.php:841
4226
  msgid "Appearance"
4227
  msgstr ""
4228
 
4229
- #: um-config.php:851
4230
  msgid "General"
4231
  msgstr ""
4232
 
4233
- #: um-config.php:858
4234
  msgid "Members Default Template"
4235
  msgstr ""
4236
 
4237
- #: um-config.php:859
4238
  msgid "This will be the default template to output member directory"
4239
  msgstr ""
4240
 
4241
- #: um-config.php:869
4242
  msgid "General Active Color"
4243
  msgstr ""
4244
 
4245
- #: um-config.php:871
4246
  msgid ""
4247
  "Active color is used commonly with many plugin elements as highlighted color or active selection for "
4248
  "example. This color demonstrates the primary active color of the plugin"
4249
  msgstr ""
4250
 
4251
- #: um-config.php:879
4252
  msgid "General Secondary Color"
4253
  msgstr ""
4254
 
4255
- #: um-config.php:881
4256
  msgid "Secondary color is used for hovers, or active state for some elements of the plugin"
4257
  msgstr ""
4258
 
4259
- #: um-config.php:889
4260
  msgid "Default Primary Button Color"
4261
  msgstr ""
4262
 
4263
- #: um-config.php:898
4264
  msgid "Default Primary Button Hover Color"
4265
  msgstr ""
4266
 
4267
- #: um-config.php:907
4268
  msgid "Default Primary Button Text Color"
4269
  msgstr ""
4270
 
4271
- #: um-config.php:916
4272
  msgid "Default Secondary Button Color"
4273
  msgstr ""
4274
 
4275
- #: um-config.php:925
4276
  msgid "Default Secondary Button Hover Color"
4277
  msgstr ""
4278
 
4279
- #: um-config.php:934
4280
  msgid "Default Secondary Button Text Color"
4281
  msgstr ""
4282
 
4283
- #: um-config.php:943
4284
  msgid "Default Help Icon Color"
4285
  msgstr ""
4286
 
4287
- #: um-config.php:955
4288
  msgid "Form Inputs"
4289
  msgstr ""
4290
 
4291
- #: um-config.php:962
4292
  msgid "Field Label Color"
4293
  msgstr ""
4294
 
4295
- #: um-config.php:970
4296
  msgid "Field Border Style"
4297
  msgstr ""
4298
 
4299
- #: um-config.php:979
4300
  msgid "Field Background Color"
4301
  msgstr ""
4302
 
4303
- #: um-config.php:988
4304
  msgid "Field Text Color"
4305
  msgstr ""
4306
 
4307
- #: um-config.php:997
4308
  msgid "Field Placeholder Color"
4309
  msgstr ""
4310
 
4311
- #: um-config.php:1006
4312
  msgid "Field Font Icon Color"
4313
  msgstr ""
4314
 
4315
- #: um-config.php:1018
4316
  msgid "Profile"
4317
  msgstr ""
4318
 
4319
- #: um-config.php:1025
4320
  msgid "Profile Default Template"
4321
  msgstr ""
4322
 
4323
- #: um-config.php:1026
4324
  msgid "This will be the default template to output profile"
4325
  msgstr ""
4326
 
4327
- #: um-config.php:1034
4328
  msgid "Profile Maximum Width"
4329
  msgstr ""
4330
 
4331
- #: um-config.php:1042
4332
  msgid "Profile Area Maximum Width"
4333
  msgstr ""
4334
 
4335
- #: um-config.php:1051
4336
  msgid "Profile Shortcode Alignment"
4337
  msgstr ""
4338
 
4339
- #: um-config.php:1055 um-config.php:1376 um-config.php:1467
4340
  msgid "Centered"
4341
  msgstr ""
4342
 
4343
- #: um-config.php:1056 um-config.php:1377 um-config.php:1468
4344
  msgid "Left aligned"
4345
  msgstr ""
4346
 
4347
- #: um-config.php:1057 um-config.php:1378 um-config.php:1469
4348
  msgid "Right aligned"
4349
  msgstr ""
4350
 
4351
- #: um-config.php:1065
4352
  msgid "Profile Field Icons"
4353
  msgstr ""
4354
 
4355
- #: um-config.php:1066
4356
  msgid "This is applicable for edit mode only"
4357
  msgstr ""
4358
 
4359
- #: um-config.php:1069 um-config.php:1390 um-config.php:1481
4360
  msgid "Show inside text field"
4361
  msgstr ""
4362
 
4363
- #: um-config.php:1070 um-config.php:1391 um-config.php:1482
4364
  msgid "Show with label"
4365
  msgstr ""
4366
 
4367
- #: um-config.php:1071 um-config.php:1392 um-config.php:1483
4368
  msgid "Turn off"
4369
  msgstr ""
4370
 
4371
- #: um-config.php:1078
4372
  msgid "Profile Primary Button Text"
4373
  msgstr ""
4374
 
4375
- #: um-config.php:1086
4376
  msgid "Profile Secondary Button"
4377
  msgstr ""
4378
 
4379
- #: um-config.php:1094
4380
  msgid "Profile Secondary Button Text"
4381
  msgstr ""
4382
 
4383
- #: um-config.php:1104
4384
  msgid "Profile Associated Role"
4385
  msgstr ""
4386
 
4387
- #: um-config.php:1105
4388
  msgid "Normally, you can leave this to default as this restricts the profile per specified role only"
4389
  msgstr ""
4390
 
4391
- #: um-config.php:1114
4392
  msgid "Profile Base Background Color"
4393
  msgstr ""
4394
 
4395
- #: um-config.php:1123
4396
  msgid "Profile Header Background Color"
4397
  msgstr ""
4398
 
4399
- #: um-config.php:1133
4400
  msgid "Default Profile Photo"
4401
  msgstr ""
4402
 
4403
- #: um-config.php:1134
4404
  msgid "You can change the default profile picture globally here. Please make sure that the photo is 300x300px."
4405
  msgstr ""
4406
 
4407
- #: um-config.php:1153
4408
  msgid "Whether to have rounded profile images, rounded corners, or none for the profile photo"
4409
  msgstr ""
4410
 
4411
- #: um-config.php:1165
4412
  msgid "Profile Cover Photos"
4413
  msgstr ""
4414
 
4415
- #: um-config.php:1174
4416
  msgid "Profile Cover Ratio"
4417
  msgstr ""
4418
 
4419
- #: um-config.php:1175
4420
  msgid "Choose global ratio for cover photos of profiles"
4421
  msgstr ""
4422
 
4423
- #: um-config.php:1189
4424
  msgid "Profile Header Meta Text Color"
4425
  msgstr ""
4426
 
4427
- #: um-config.php:1198
4428
  msgid "Profile Header Link Color"
4429
  msgstr ""
4430
 
4431
- #: um-config.php:1207
4432
  msgid "Profile Header Link Hover"
4433
  msgstr ""
4434
 
4435
- #: um-config.php:1216
4436
  msgid "Profile Header Icon Link Color"
4437
  msgstr ""
4438
 
4439
- #: um-config.php:1225
4440
  msgid "Profile Header Icon Link Hover"
4441
  msgstr ""
4442
 
4443
- #: um-config.php:1233
4444
  msgid "Show display name in profile header"
4445
  msgstr ""
4446
 
4447
- #: um-config.php:1241
4448
  msgid "Show user description in header"
4449
  msgstr ""
4450
 
4451
- #: um-config.php:1249
4452
  msgid "User description maximum chars"
4453
  msgstr ""
4454
 
4455
- #: um-config.php:1258
4456
  msgid "Profile Header Menu Position"
4457
  msgstr ""
4458
 
4459
- #: um-config.php:1260
4460
  msgid "For incompatible themes, please make the menu open from left instead of bottom by default."
4461
  msgstr ""
4462
 
4463
- #: um-config.php:1271
4464
- msgid "Show a custom message if profile is empty"
4465
- msgstr ""
4466
-
4467
- #: um-config.php:1279
4468
- msgid "Show the emoticon"
4469
- msgstr ""
4470
-
4471
- #: um-config.php:1293
4472
- msgid "Enable profile menu"
4473
- msgstr ""
4474
-
4475
- #: um-config.php:1301
4476
- #, php-format
4477
- msgid "%s Tab"
4478
- msgstr ""
4479
-
4480
- #: um-config.php:1303
4481
- msgid "Enabled"
4482
- msgstr ""
4483
-
4484
- #: um-config.php:1304
4485
- msgid "Disabled"
4486
- msgstr ""
4487
-
4488
- #: um-config.php:1313
4489
- msgid "Profile menu default tab"
4490
- msgstr ""
4491
-
4492
- #: um-config.php:1314
4493
- msgid "This will be the default tab on user profile page"
4494
- msgstr ""
4495
-
4496
- #: um-config.php:1323
4497
- msgid "Enable menu icons in desktop view"
4498
- msgstr ""
4499
-
4500
- #: um-config.php:1331
4501
- msgid "Enable counts in menu"
4502
- msgstr ""
4503
-
4504
- #: um-config.php:1339
4505
- msgid "Profile Menu"
4506
- msgstr ""
4507
-
4508
- #: um-config.php:1354
4509
  msgid "Registration Default Template"
4510
  msgstr ""
4511
 
4512
- #: um-config.php:1355
4513
  msgid "This will be the default template to output registration"
4514
  msgstr ""
4515
 
4516
- #: um-config.php:1363
4517
  msgid "Registration Maximum Width"
4518
  msgstr ""
4519
 
4520
- #: um-config.php:1372
4521
  msgid "Registration Shortcode Alignment"
4522
  msgstr ""
4523
 
4524
- #: um-config.php:1386
4525
  msgid "Registration Field Icons"
4526
  msgstr ""
4527
 
4528
- #: um-config.php:1387
4529
  msgid "This controls the display of field icons in the registration form"
4530
  msgstr ""
4531
 
4532
- #: um-config.php:1399
4533
  msgid "Registration Primary Button Text"
4534
  msgstr ""
4535
 
4536
- #: um-config.php:1407
4537
  msgid "Registration Secondary Button"
4538
  msgstr ""
4539
 
4540
- #: um-config.php:1415
4541
  msgid "Registration Secondary Button Text"
4542
  msgstr ""
4543
 
4544
- #: um-config.php:1425
4545
  msgid "Registration Default Role"
4546
  msgstr ""
4547
 
4548
- #: um-config.php:1426
4549
  msgid "This will be the default role assigned to users registering thru registration form"
4550
  msgstr ""
4551
 
4552
- #: um-config.php:1445
4553
  msgid "Login Default Template"
4554
  msgstr ""
4555
 
4556
- #: um-config.php:1446
4557
  msgid "This will be the default template to output login"
4558
  msgstr ""
4559
 
4560
- #: um-config.php:1454
4561
  msgid "Login Maximum Width"
4562
  msgstr ""
4563
 
4564
- #: um-config.php:1463
4565
  msgid "Login Shortcode Alignment"
4566
  msgstr ""
4567
 
4568
- #: um-config.php:1477
4569
  msgid "Login Field Icons"
4570
  msgstr ""
4571
 
4572
- #: um-config.php:1478
4573
  msgid "This controls the display of field icons in the login form"
4574
  msgstr ""
4575
 
4576
- #: um-config.php:1490
4577
  msgid "Login Primary Button Text"
4578
  msgstr ""
4579
 
4580
- #: um-config.php:1498
4581
  msgid "Login Secondary Button"
4582
  msgstr ""
4583
 
4584
- #: um-config.php:1506
4585
  msgid "Login Secondary Button Text"
4586
  msgstr ""
4587
 
4588
- #: um-config.php:1515
4589
  msgid "Login Forgot Password Link"
4590
  msgstr ""
4591
 
4592
- #: um-config.php:1534
4593
- msgid "Any custom css rules that you specify here will be applied globally to the plugin."
4594
- msgstr ""
4595
-
4596
- #: um-config.php:1549
4597
  msgid "Advanced"
4598
  msgstr ""
4599
 
4600
- #: um-config.php:1555
4601
  msgid "Disable JS/CSS Compression"
4602
  msgstr ""
4603
 
4604
- #: um-config.php:1557
4605
  msgid ""
4606
  "Not recommended. This will load all plugin js and css files separately and may slow down your website. Use "
4607
  "this setting for development or debugging purposes only."
4608
  msgstr ""
4609
 
4610
- #: um-config.php:1564
4611
  msgid "Never load plugin JS and CSS on the following pages"
4612
  msgstr ""
4613
 
4614
- #: um-config.php:1565
4615
  msgid "Enter a url or page slug (e.g /about/) to disable loading the plugin's css and js on that page."
4616
  msgstr ""
4617
 
4618
- #: um-config.php:1566
4619
  msgid "Add New Page"
4620
  msgstr ""
4621
 
4622
- #: um-config.php:1572
4623
  msgid "Allow Tracking"
4624
  msgstr ""
4625
 
4626
- #: um-config.php:1576
4627
  msgid "Do not allow"
4628
  msgstr ""
4629
 
2
  msgstr ""
3
  "Project-Id-Version: Ultimate Member\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2015-01-25 21:57+0200\n"
6
+ "PO-Revision-Date: 2015-01-25 21:57+0200\n"
7
  "Last-Translator: Calum Allison <umplugin@gmail.com>\n"
8
  "Language-Team: Ultimate Member <umplugin@gmail.com>\n"
9
  "Language: en_US\n"
54
  msgstr ""
55
 
56
  #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:217
57
+ #: admin/core/lib/ReduxFramework/ReduxCore/framework.php:221 admin/core/um-admin-metabox.php:272
58
  msgid "Options"
59
  msgstr ""
60
 
240
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/background/field_background.php:314
241
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/media/field_media.php:193
242
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:126
243
+ #: admin/core/lib/ReduxFramework/ReduxCore/inc/fields/slides/field_slides.php:188 core/um-fields.php:742
244
+ #: core/um-fields.php:763
245
  msgid "Upload"
246
  msgstr ""
247
 
579
  msgstr ""
580
 
581
  #: admin/core/lib/ReduxFramework/ReduxCore/inc/tracking.php:135 admin/core/um-admin-tracking.php:153
582
+ #: um-config.php:1473
583
  msgid "Allow tracking"
584
  msgstr ""
585
 
1540
  msgid "Specify the body font properties."
1541
  msgstr ""
1542
 
1543
+ #: admin/core/lib/ReduxFramework/sample/sample-config.php:796
 
 
 
1544
  msgid "Custom CSS"
1545
  msgstr ""
1546
 
2010
  msgid "Extensions"
2011
  msgstr ""
2012
 
2013
+ #: admin/core/um-admin-access.php:70
2014
  msgid "Access Control"
2015
  msgstr ""
2016
 
2080
  msgid "Type"
2081
  msgstr ""
2082
 
2083
+ #: admin/core/um-admin-columns.php:28 admin/core/um-admin-columns.php:45 admin/core/um-admin-metabox.php:219
2084
+ #: admin/core/um-admin-metabox.php:259
2085
  msgid "Shortcode"
2086
  msgstr ""
2087
 
2153
  msgid "Role draft updated."
2154
  msgstr ""
2155
 
2156
+ #: admin/core/um-admin-metabox.php:112 core/um-builtin.php:812 core/um-builtin.php:827 um-config.php:208
2157
+ #: um-config.php:240
2158
  msgid "Yes"
2159
  msgstr ""
2160
 
2161
  #: admin/core/um-admin-metabox.php:113 admin/core/um-admin-roles.php:48 core/um-builtin.php:811
2162
+ #: core/um-builtin.php:812 core/um-builtin.php:826 core/um-builtin.php:827 um-config.php:209 um-config.php:241
2163
  msgid "No"
2164
  msgstr ""
2165
 
2166
+ #: admin/core/um-admin-metabox.php:214
2167
  msgid "General Options"
2168
  msgstr ""
2169
 
2170
+ #: admin/core/um-admin-metabox.php:215
2171
  msgid "Profile Card"
2172
  msgstr ""
2173
 
2174
+ #: admin/core/um-admin-metabox.php:216
2175
  msgid "Search Options"
2176
  msgstr ""
2177
 
2178
+ #: admin/core/um-admin-metabox.php:217
2179
  msgid "Results &amp; Pagination"
2180
  msgstr ""
2181
 
2182
+ #: admin/core/um-admin-metabox.php:221
2183
  msgid "Styling: General"
2184
  msgstr ""
2185
 
2186
+ #: admin/core/um-admin-metabox.php:223
2187
  msgid "Styling: Profile Card"
2188
  msgstr ""
2189
 
2190
+ #: admin/core/um-admin-metabox.php:232
2191
  msgid "Administrative Permissions"
2192
  msgstr ""
2193
 
2194
+ #: admin/core/um-admin-metabox.php:234
2195
  msgid "General Permissions"
2196
  msgstr ""
2197
 
2198
+ #: admin/core/um-admin-metabox.php:236
2199
  msgid "Profile Access"
2200
  msgstr ""
2201
 
2202
+ #: admin/core/um-admin-metabox.php:238
2203
  msgid "Homepage Options"
2204
  msgstr ""
2205
 
2206
+ #: admin/core/um-admin-metabox.php:240
2207
  msgid "Registration Options"
2208
  msgstr ""
2209
 
2210
+ #: admin/core/um-admin-metabox.php:242
2211
  msgid "Login Options"
2212
  msgstr ""
2213
 
2214
+ #: admin/core/um-admin-metabox.php:244
2215
  msgid "Logout Options"
2216
  msgstr ""
2217
 
2218
+ #: admin/core/um-admin-metabox.php:246
2219
  msgid "Delete Options"
2220
  msgstr ""
2221
 
2222
+ #: admin/core/um-admin-metabox.php:255
2223
  msgid "Select Form Type"
2224
  msgstr ""
2225
 
2226
+ #: admin/core/um-admin-metabox.php:257
2227
  msgid "Form Builder"
2228
  msgstr ""
2229
 
2230
+ #: admin/core/um-admin-metabox.php:261 admin/core/um-admin-metabox.php:265 admin/core/um-admin-metabox.php:267
2231
  msgid "Customize this form"
2232
  msgstr ""
2233
 
2234
+ #: admin/core/um-admin-metabox.php:271
2235
  msgid "User Meta"
2236
  msgstr ""
2237
 
2238
+ #: admin/core/um-admin-metabox.php:421
2239
  msgid ""
2240
  "Select where this field should appear. This option should only be changed on the profile form and allows you "
2241
  "to show a field in one mode only (edit or view) or in both modes."
2242
  msgstr ""
2243
 
2244
+ #: admin/core/um-admin-metabox.php:455
2245
  msgid "If"
2246
  msgstr ""
2247
 
2248
+ #: admin/core/um-admin-metabox.php:524
2249
  msgid "Value"
2250
  msgstr ""
2251
 
2252
+ #: admin/core/um-admin-metabox.php:823
 
 
 
 
2253
  msgid ""
2254
+ "Turn on to force users to create a strong password (must include 1 number and 1 uppercase character). If "
2255
+ "turned on this option is only applied to register forms and not to login forms."
2256
  msgstr ""
2257
 
2258
+ #: admin/core/um-admin-metabox.php:833
2259
  msgid ""
2260
  "Turn on to add a confirm password field. If turned on the confirm password field will only show on register "
2261
  "forms and not on login forms."
2347
  msgid "Take Action"
2348
  msgstr ""
2349
 
2350
+ #: admin/core/um-admin-users.php:199 core/um-fields.php:1193
2351
  msgid "Apply"
2352
  msgstr ""
2353
 
2464
  msgid "Meta key"
2465
  msgstr ""
2466
 
2467
+ #: admin/templates/directory/pagination.php:41
2468
  msgid "Number of profiles per page"
2469
  msgstr ""
2470
 
2471
+ #: admin/templates/directory/pagination.php:50
 
 
 
 
 
 
 
 
 
 
 
 
2472
  msgid "Maximum number of profiles"
2473
  msgstr ""
2474
 
 
 
 
 
 
 
2475
  #: admin/templates/directory/profile.php:6
2476
  msgid "Enable Profile Photo"
2477
  msgstr ""
2544
  msgid "Results Text"
2545
  msgstr ""
2546
 
2547
+ #: admin/templates/directory/search.php:79 core/um-setup.php:47
 
 
 
 
2548
  msgid "{total_users} Members"
2549
  msgstr ""
2550
 
2551
  #: admin/templates/directory/search.php:85
2552
+ msgid "Custom text If no users were found"
2553
  msgstr ""
2554
 
2555
+ #: admin/templates/directory/search.php:88 core/um-setup.php:48
 
 
 
 
 
 
 
 
 
 
 
 
2556
  msgid "We are sorry. We cannot find any users who match your search criteria."
2557
  msgstr ""
2558
 
2564
  msgid "Add Master Row"
2565
  msgstr ""
2566
 
 
 
 
 
 
2567
  #: admin/templates/form/login_customize.php:4 admin/templates/form/profile_customize.php:4
2568
  #: admin/templates/form/register_customize.php:4
2569
  msgid "Use global settings?"
2574
  msgid "Max. Width (px)"
2575
  msgstr ""
2576
 
2577
+ #: admin/templates/form/login_customize.php:30 admin/templates/form/profile_customize.php:42
2578
  #: admin/templates/form/register_customize.php:42
2579
  msgid "Alignment"
2580
  msgstr ""
2581
 
2582
+ #: admin/templates/form/login_customize.php:40 admin/templates/form/profile_customize.php:52
2583
  #: admin/templates/form/register_customize.php:52
2584
  msgid "Field Icons"
2585
  msgstr ""
2586
 
2587
+ #: admin/templates/form/login_customize.php:50 admin/templates/form/profile_customize.php:62
2588
  #: admin/templates/form/register_customize.php:62
2589
  msgid "Primary Button Text"
2590
  msgstr ""
2591
 
2592
+ #: admin/templates/form/login_customize.php:54 admin/templates/form/profile_customize.php:66
2593
  #: admin/templates/form/register_customize.php:66
2594
  msgid "Primary Button Color"
2595
  msgstr ""
2596
 
2597
+ #: admin/templates/form/login_customize.php:58 admin/templates/form/profile_customize.php:70
2598
  #: admin/templates/form/register_customize.php:70
2599
  msgid "Primary Button Hover Color"
2600
  msgstr ""
2601
 
2602
+ #: admin/templates/form/login_customize.php:62 admin/templates/form/profile_customize.php:74
2603
  #: admin/templates/form/register_customize.php:74
2604
  msgid "Primary Button Text Color"
2605
  msgstr ""
2606
 
2607
+ #: admin/templates/form/login_customize.php:67 admin/templates/form/profile_customize.php:79
2608
  #: admin/templates/form/register_customize.php:79
2609
  msgid "Show Secondary Button"
2610
  msgstr ""
2611
 
2612
+ #: admin/templates/form/login_customize.php:75 admin/templates/form/profile_customize.php:87
2613
  #: admin/templates/form/register_customize.php:87
2614
  msgid "Secondary Button Text"
2615
  msgstr ""
2616
 
2617
+ #: admin/templates/form/login_customize.php:79 admin/templates/form/profile_customize.php:91
2618
  #: admin/templates/form/register_customize.php:91
2619
  msgid "Secondary Button Color"
2620
  msgstr ""
2621
 
2622
+ #: admin/templates/form/login_customize.php:83 admin/templates/form/profile_customize.php:95
2623
  #: admin/templates/form/register_customize.php:95
2624
  msgid "Secondary Button Hover Color"
2625
  msgstr ""
2626
 
2627
+ #: admin/templates/form/login_customize.php:87 admin/templates/form/profile_customize.php:99
2628
  #: admin/templates/form/register_customize.php:99
2629
  msgid "Secondary Button Text Color"
2630
  msgstr ""
2647
  msgid "<strong>Note:</strong> Form type cannot be changed for the default forms."
2648
  msgstr ""
2649
 
2650
+ #: admin/templates/form/mode.php:9 um-config.php:1263
2651
  msgid "Registration Form"
2652
  msgstr ""
2653
 
2655
  msgid "Profile Form"
2656
  msgstr ""
2657
 
2658
+ #: admin/templates/form/mode.php:13 um-config.php:1354
2659
  msgid "Login Form"
2660
  msgstr ""
2661
 
2663
  msgid "Make this profile role-specific"
2664
  msgstr ""
2665
 
2666
+ #: admin/templates/form/profile_customize.php:103
 
 
 
 
2667
  msgid "Base Background Color"
2668
  msgstr ""
2669
 
2670
+ #: admin/templates/form/profile_customize.php:107
2671
  msgid "Enable Cover Photos"
2672
  msgstr ""
2673
 
2674
+ #: admin/templates/form/profile_customize.php:115
2675
  msgid "Cover photo ratio"
2676
  msgstr ""
2677
 
2678
+ #: admin/templates/form/profile_customize.php:125 um-config.php:1131
2679
  msgid "Profile Photo Size"
2680
  msgstr ""
2681
 
2682
+ #: admin/templates/form/profile_customize.php:129 um-config.php:1140
2683
  msgid "Profile Photo Style"
2684
  msgstr ""
2685
 
2686
+ #: admin/templates/form/profile_customize.php:132 um-config.php:1144
2687
  msgid "Circle"
2688
  msgstr ""
2689
 
2690
+ #: admin/templates/form/profile_customize.php:133 um-config.php:1145
2691
  msgid "Rounded Corners"
2692
  msgstr ""
2693
 
2694
+ #: admin/templates/form/profile_customize.php:134 um-config.php:1146
2695
  msgid "Square"
2696
  msgstr ""
2697
 
2698
+ #: admin/templates/form/profile_customize.php:139
2699
  msgid "Header Background Color"
2700
  msgstr ""
2701
 
2702
+ #: admin/templates/form/profile_customize.php:143
2703
  msgid "Header Meta Text Color"
2704
  msgstr ""
2705
 
2706
+ #: admin/templates/form/profile_customize.php:147
2707
  msgid "Header Link Color"
2708
  msgstr ""
2709
 
2710
+ #: admin/templates/form/profile_customize.php:151
2711
  msgid "Header Link Hover"
2712
  msgstr ""
2713
 
2714
+ #: admin/templates/form/profile_customize.php:155
2715
  msgid "Header Icon Link Color"
2716
  msgstr ""
2717
 
2718
+ #: admin/templates/form/profile_customize.php:159
2719
  msgid "Header Icon Link Hover"
2720
  msgstr ""
2721
 
2722
+ #: admin/templates/form/profile_customize.php:164
2723
  msgid "Show display name in profile header?"
2724
  msgstr ""
2725
 
2726
+ #: admin/templates/form/profile_customize.php:173
2727
  msgid "Show user description in profile header?"
2728
  msgstr ""
2729
 
2739
  msgid "Assign role to form"
2740
  msgstr ""
2741
 
2742
+ #: admin/templates/form/register_customize.php:42 um-config.php:1040 um-config.php:1289 um-config.php:1380
2743
  msgid "The shortcode is centered by default unless you specify otherwise here"
2744
  msgstr ""
2745
 
2787
  #: admin/templates/modal/dynamic_new_divider.php:15 admin/templates/modal/dynamic_new_field.php:15
2788
  #: admin/templates/modal/dynamic_new_group.php:15 core/um-actions-profile.php:167
2789
  #: core/um-actions-profile.php:259 core/um-actions-profile.php:269 core/um-actions-profile.php:394
2790
+ #: core/um-fields.php:1194 core/um-fields.php:1279
2791
  msgid "Cancel"
2792
  msgstr ""
2793
 
2833
  msgid "Choose from %s available icons"
2834
  msgstr ""
2835
 
2836
+ #: admin/templates/role/admin.php:7 admin/templates/role/admin.php:12
2837
  msgid "Can access wp-admin?"
2838
  msgstr ""
2839
 
2841
  msgid "The core admin role must always have access to wp-admin / WordPress backend"
2842
  msgstr ""
2843
 
2844
+ #: admin/templates/role/admin.php:12
 
 
 
 
 
 
 
 
2845
  msgid ""
2846
  "Allow this role to access the admin dashboard. If turned on the WordPress toolbar will appear at top of the "
2847
  "page."
2848
  msgstr ""
2849
 
2850
+ #: admin/templates/role/admin.php:18
2851
  msgid "Can edit other member accounts?"
2852
  msgstr ""
2853
 
2854
+ #: admin/templates/role/admin.php:18
2855
  msgid "Allow this role to edit accounts of other members"
2856
  msgstr ""
2857
 
2858
+ #: admin/templates/role/admin.php:23
2859
  msgid "Can edit these user roles only"
2860
  msgstr ""
2861
 
2862
+ #: admin/templates/role/admin.php:23
2863
  msgid "Which roles that role can edit, choose none to allow role to edit all member roles"
2864
  msgstr ""
2865
 
2866
+ #: admin/templates/role/admin.php:36
2867
  msgid "Can delete other member accounts?"
2868
  msgstr ""
2869
 
2870
+ #: admin/templates/role/admin.php:36
2871
  msgid "Allow this role to edit the profile fields of certain roles only"
2872
  msgstr ""
2873
 
2874
+ #: admin/templates/role/admin.php:41
2875
  msgid "Can delete these user roles only"
2876
  msgstr ""
2877
 
2878
+ #: admin/templates/role/admin.php:41
2879
  msgid "Which roles that role can delete, choose none to allow role to delete all member roles"
2880
  msgstr ""
2881
 
3081
  msgid "Member Directories"
3082
  msgstr ""
3083
 
3084
+ #: admin/um-admin-init.php:80
3085
  msgid "Please create a team.php template in admin templates."
3086
  msgstr ""
3087
 
3088
  #: core/um-actions-account.php:28 core/um-actions-account.php:97 core/um-actions-account.php:142
3089
+ #: core/um-builtin.php:818 core/um-builtin.php:821
3090
  msgid "Delete Account"
3091
  msgstr ""
3092
 
3098
  msgid "Your password must contain less than 30 characters"
3099
  msgstr ""
3100
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3101
  #: core/um-actions-ajax.php:41 core/um-actions-ajax.php:56 core/um-actions-ajax.php:106
3102
  msgid "You can not edit this user"
3103
  msgstr ""
3146
  msgid "You can not use HTML tags here"
3147
  msgstr ""
3148
 
3149
+ #: core/um-actions-form.php:176
3150
+ msgid "Your password must contain at least one capital letter and one number"
3151
+ msgstr ""
3152
+
3153
  #: core/um-actions-form.php:182
3154
  msgid "Please confirm your password"
3155
  msgstr ""
3268
  msgid "%s of %d"
3269
  msgstr ""
3270
 
3271
+ #: core/um-actions-misc.php:58 core/um-actions-misc.php:81
3272
  msgid "Registration is currently disabled"
3273
  msgstr ""
3274
 
3276
  msgid "You have successfully changed your password."
3277
  msgstr ""
3278
 
3279
+ #: core/um-actions-misc.php:77
 
 
 
 
3280
  msgid "An error has been encountered"
3281
  msgstr ""
3282
 
3283
+ #: core/um-actions-misc.php:85 core/um-filters-login.php:12
3284
  msgid "This email address has been blocked."
3285
  msgstr ""
3286
 
3287
+ #: core/um-actions-misc.php:89 core/um-filters-login.php:15
3288
  msgid "Your IP address has been blocked."
3289
  msgstr ""
3290
 
3291
+ #: core/um-actions-misc.php:93 core/um-filters-login.php:57
3292
  msgid "Your account has been disabled."
3293
  msgstr ""
3294
 
3295
+ #: core/um-actions-misc.php:97 core/um-filters-login.php:60
3296
  msgid "Your account has not been approved yet."
3297
  msgstr ""
3298
 
3299
+ #: core/um-actions-misc.php:101 core/um-filters-login.php:63
3300
  msgid "Your account is awaiting e-mail verifications."
3301
  msgstr ""
3302
 
3303
+ #: core/um-actions-misc.php:105 core/um-filters-login.php:66
3304
  msgid "Your membership request has been rejected."
3305
  msgstr ""
3306
 
3351
  msgid "Upload photo"
3352
  msgstr ""
3353
 
3354
+ #: core/um-actions-profile.php:267 core/um-fields.php:1160 core/um-fields.php:1193
3355
  msgid "Change photo"
3356
  msgstr ""
3357
 
3520
  msgid "Everyone"
3521
  msgstr ""
3522
 
3523
+ #: core/um-builtin.php:796 core/um-user.php:405
3524
  msgid "Only me"
3525
  msgstr ""
3526
 
3554
  msgid "Less than 1 year old"
3555
  msgstr ""
3556
 
3557
+ #: core/um-fields.php:915
3558
  msgid "Current Password"
3559
  msgstr ""
3560
 
3561
+ #: core/um-fields.php:976
3562
  #, php-format
3563
  msgid "Confirm New %s"
3564
  msgstr ""
3565
 
3566
+ #: core/um-fields.php:1151 core/um-fields.php:1223
3567
  msgid "Upload Photo"
3568
  msgstr ""
3569
 
3570
+ #: core/um-fields.php:1193 core/um-fields.php:1278
3571
  msgid "Processing..."
3572
  msgstr ""
3573
 
3574
+ #: core/um-fields.php:1239 core/um-fields.php:1278
3575
  msgid "Change file"
3576
  msgstr ""
3577
 
3578
+ #: core/um-fields.php:1278
3579
  msgid "Save"
3580
  msgstr ""
3581
 
3582
+ #: core/um-fields.php:1912
3583
  #, php-format
3584
  msgid "Your profile is looking a little empty. Why not <a href=\"%s\">add</a> some information!"
3585
  msgstr ""
3586
 
3587
+ #: core/um-fields.php:1914
3588
  msgid "This user has not added any information to their profile yet."
3589
  msgstr ""
3590
 
3737
  msgid "Search Member Directories"
3738
  msgstr ""
3739
 
 
 
 
 
 
 
 
 
3740
  #: index.php:57
3741
  msgid "Docs"
3742
  msgstr ""
3749
  msgid "Uninstall"
3750
  msgstr ""
3751
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3752
  #: um-config.php:13
3753
  msgid "Users"
3754
  msgstr ""
3797
  msgid "Members Directory"
3798
  msgstr ""
3799
 
3800
+ #: um-config.php:92
3801
+ msgid "Account"
 
 
 
 
 
 
3802
  msgstr ""
3803
 
3804
+ #: um-config.php:98
3805
  msgid "Password Account Tab"
3806
  msgstr ""
3807
 
3808
+ #: um-config.php:108
3809
  msgid "Privacy Account Tab"
3810
  msgstr ""
3811
 
3812
+ #: um-config.php:118
3813
  msgid "Notifications Account Tab"
3814
  msgstr ""
3815
 
3816
+ #: um-config.php:128
3817
  msgid "Delete Account Tab"
3818
  msgstr ""
3819
 
3820
+ #: um-config.php:138
3821
  msgid "Account Deletion Custom Text"
3822
  msgstr ""
3823
 
3824
+ #: um-config.php:140
3825
  msgid "This is custom text that will be displayed to users before they delete their accounts from your site"
3826
  msgstr ""
3827
 
3828
+ #: um-config.php:159
3829
  msgid "Access"
3830
  msgstr ""
3831
 
3832
+ #: um-config.php:166
3833
  msgid "Global Site Access"
3834
  msgstr ""
3835
 
3836
+ #: um-config.php:178
3837
  msgid "Custom Redirect URL"
3838
  msgstr ""
3839
 
3840
+ #: um-config.php:187
3841
  msgid "Exclude the following URLs"
3842
  msgstr ""
3843
 
3844
+ #: um-config.php:188
3845
  msgid "Here you can exclude URLs beside the redirect URI to be accessible to everyone"
3846
  msgstr ""
3847
 
3848
+ #: um-config.php:189
3849
  msgid "Add New URL"
3850
  msgstr ""
3851
 
3852
+ #: um-config.php:196
3853
  msgid "Panic Key"
3854
  msgstr ""
3855
 
3856
+ #: um-config.php:205
3857
  msgid "Allow Backend Login Screen for Guests"
3858
  msgstr ""
3859
 
3860
+ #: um-config.php:216
3861
  msgid "Redirect to alternative login page"
3862
  msgstr ""
3863
 
3864
+ #: um-config.php:217
3865
  msgid "If you disable backend access to login screen, specify here where a user will be redirected"
3866
  msgstr ""
3867
 
3868
+ #: um-config.php:229 um-config.php:261
3869
  msgid "Custom URL"
3870
  msgstr ""
3871
 
3872
+ #: um-config.php:237
3873
  msgid "Allow Backend Register Screen for Guests"
3874
  msgstr ""
3875
 
3876
+ #: um-config.php:248
3877
  msgid "Redirect to alternative register page"
3878
  msgstr ""
3879
 
3880
+ #: um-config.php:249
3881
  msgid "If you disable backend access to register screen, specify here where a user will be redirected"
3882
  msgstr ""
3883
 
3884
+ #: um-config.php:269
3885
+ msgid "Blocked IP Addresses"
 
 
 
 
 
 
3886
  msgstr ""
3887
 
3888
+ #: um-config.php:270
3889
+ msgid "Enter one IP per line, you can also use wildcards to block a specific range e.g. 41.83.*.*"
3890
  msgstr ""
3891
 
3892
+ #: um-config.php:271
3893
  msgid ""
3894
  "This will block the listed IPs from signing up or signing in to the site, you can use full IP numbers or "
3895
  "target specific range with a wildcard"
3896
  msgstr ""
3897
 
3898
+ #: um-config.php:277
3899
  msgid "Blocked Email Addresses"
3900
  msgstr ""
3901
 
3902
+ #: um-config.php:278
3903
+ msgid ""
3904
+ "Enter one email address per line and you can also specify all emails from specific service to be blocked by "
3905
+ "using wildcard: *@hotmail.com"
3906
+ msgstr ""
3907
+
3908
+ #: um-config.php:279
3909
  msgid "This will block the specified e-mail addresses from being able to sign up or sign in to your site."
3910
  msgstr ""
3911
 
3912
+ #: um-config.php:285
3913
  msgid "Blacklist Words"
3914
  msgstr ""
3915
 
3916
+ #: um-config.php:286
3917
+ msgid ""
3918
+ "The words specified here can not be used as username during registration, please enter one word per line to "
3919
+ "prevent the usage of this word in a username / during registration"
3920
+ msgstr ""
3921
+
3922
+ #: um-config.php:287
3923
  msgid ""
3924
  "This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their "
3925
  "username"
3926
  msgstr ""
3927
 
3928
+ #: um-config.php:302
3929
  msgid "Emails"
3930
  msgstr ""
3931
 
3932
+ #: um-config.php:308
3933
  msgid "Mail appears from"
3934
  msgstr ""
3935
 
3936
+ #: um-config.php:309
3937
  msgid "e.g. Site Name"
3938
  msgstr ""
3939
 
3940
+ #: um-config.php:316
3941
  msgid "Mail appears from address"
3942
  msgstr ""
3943
 
3944
+ #: um-config.php:317 um-config.php:632
3945
  msgid "e.g. admin@companyname.com"
3946
  msgstr ""
3947
 
3948
+ #: um-config.php:324 um-config.php:332 um-config.php:342
3949
  msgid "Account Welcome Email"
3950
  msgstr ""
3951
 
3952
+ #: um-config.php:333 um-config.php:369 um-config.php:401 um-config.php:433 um-config.php:469 um-config.php:500
3953
+ #: um-config.php:531 um-config.php:562 um-config.php:594 um-config.php:647 um-config.php:678 um-config.php:710
3954
  msgid "Subject Line"
3955
  msgstr ""
3956
 
3957
+ #: um-config.php:343 um-config.php:379 um-config.php:411 um-config.php:443 um-config.php:479 um-config.php:510
3958
+ #: um-config.php:541 um-config.php:572 um-config.php:604 um-config.php:657 um-config.php:688 um-config.php:720
3959
  msgid "Message Body"
3960
  msgstr ""
3961
 
3962
+ #: um-config.php:360 um-config.php:368 um-config.php:378
3963
  msgid "Account Activation Email"
3964
  msgstr ""
3965
 
3966
+ #: um-config.php:392 um-config.php:400 um-config.php:410
3967
  msgid "Pending Review Email"
3968
  msgstr ""
3969
 
3970
+ #: um-config.php:424 um-config.php:432 um-config.php:442
3971
  msgid "Account Approved Email"
3972
  msgstr ""
3973
 
3974
+ #: um-config.php:460 um-config.php:468 um-config.php:478
3975
  msgid "Account Rejected Email"
3976
  msgstr ""
3977
 
3978
+ #: um-config.php:491 um-config.php:499 um-config.php:509
3979
  msgid "Account Deactivated Email"
3980
  msgstr ""
3981
 
3982
+ #: um-config.php:522 um-config.php:530 um-config.php:540
3983
  msgid "Account Deleted Email"
3984
  msgstr ""
3985
 
3986
+ #: um-config.php:553 um-config.php:561 um-config.php:571
3987
  msgid "Password Reset Email"
3988
  msgstr ""
3989
 
3990
+ #: um-config.php:585 um-config.php:593 um-config.php:603
3991
  msgid "Password Changed Email"
3992
  msgstr ""
3993
 
3994
+ #: um-config.php:624
3995
+ msgid "Notifications"
3996
+ msgstr ""
3997
+
3998
+ #: um-config.php:630
3999
  msgid "Admin E-mail Address"
4000
  msgstr ""
4001
 
4002
+ #: um-config.php:638 um-config.php:646 um-config.php:656
4003
  msgid "New User Notification"
4004
  msgstr ""
4005
 
4006
+ #: um-config.php:669 um-config.php:677 um-config.php:687
4007
  msgid "Account Needs Review Notification"
4008
  msgstr ""
4009
 
4010
+ #: um-config.php:701 um-config.php:709 um-config.php:719
4011
  msgid "Account Deletion Notification"
4012
  msgstr ""
4013
 
4014
+ #: um-config.php:737
4015
  msgid "Uploads"
4016
  msgstr ""
4017
 
4018
+ #: um-config.php:743
4019
  msgid "Profile Photo Thumbnail Sizes"
4020
  msgstr ""
4021
 
4022
+ #: um-config.php:744
4023
  msgid "Here you can define which thumbnail sizes will be created for each profile photo upload."
4024
  msgstr ""
4025
 
4026
+ #: um-config.php:747 um-config.php:757
4027
  msgid "Add New Size"
4028
  msgstr ""
4029
 
4030
+ #: um-config.php:753
4031
  msgid "Cover Photo Thumbnail Sizes"
4032
  msgstr ""
4033
 
4034
+ #: um-config.php:754
4035
  msgid "Here you can define which thumbnail sizes will be created for each cover photo upload."
4036
  msgstr ""
4037
 
4038
+ #: um-config.php:763
4039
  msgid "Image Quality"
4040
  msgstr ""
4041
 
4042
+ #: um-config.php:764
4043
  msgid ""
4044
  "Quality is used to determine quality of image uploads, and ranges from 0 (worst quality, smaller file) to "
4045
  "100 (best quality, biggest file). The default range is 60."
4046
  msgstr ""
4047
 
4048
+ #: um-config.php:772
4049
  msgid "Image Upload Maximum Width"
4050
  msgstr ""
4051
 
4052
+ #: um-config.php:773
4053
  msgid "Any image upload above this width will be resized to this limit automatically."
4054
  msgstr ""
4055
 
4056
+ #: um-config.php:781
4057
  msgid "Cover Photo Minimum Width"
4058
  msgstr ""
4059
 
4060
+ #: um-config.php:782
4061
  msgid "This will be the minimum width for cover photo uploads"
4062
  msgstr ""
4063
 
4064
+ #: um-config.php:798
4065
  msgid "SEO"
4066
  msgstr ""
4067
 
4068
+ #: um-config.php:804
4069
  msgid "User Profile Title"
4070
  msgstr ""
4071
 
4072
+ #: um-config.php:813
4073
  msgid "User Profile Dynamic Meta Description"
4074
  msgstr ""
4075
 
4076
+ #: um-config.php:814
4077
  msgid "You can use dynamic tags to display dynamic user profile data in this field."
4078
  msgstr ""
4079
 
4080
+ #: um-config.php:815
4081
  msgid "This will be used in the meta description that is available for search-engines."
4082
  msgstr ""
4083
 
4084
+ #: um-config.php:829
4085
  msgid "Appearance"
4086
  msgstr ""
4087
 
4088
+ #: um-config.php:839
4089
  msgid "General"
4090
  msgstr ""
4091
 
4092
+ #: um-config.php:846
4093
  msgid "Members Default Template"
4094
  msgstr ""
4095
 
4096
+ #: um-config.php:847
4097
  msgid "This will be the default template to output member directory"
4098
  msgstr ""
4099
 
4100
+ #: um-config.php:857
4101
  msgid "General Active Color"
4102
  msgstr ""
4103
 
4104
+ #: um-config.php:859
4105
  msgid ""
4106
  "Active color is used commonly with many plugin elements as highlighted color or active selection for "
4107
  "example. This color demonstrates the primary active color of the plugin"
4108
  msgstr ""
4109
 
4110
+ #: um-config.php:867
4111
  msgid "General Secondary Color"
4112
  msgstr ""
4113
 
4114
+ #: um-config.php:869
4115
  msgid "Secondary color is used for hovers, or active state for some elements of the plugin"
4116
  msgstr ""
4117
 
4118
+ #: um-config.php:877
4119
  msgid "Default Primary Button Color"
4120
  msgstr ""
4121
 
4122
+ #: um-config.php:886
4123
  msgid "Default Primary Button Hover Color"
4124
  msgstr ""
4125
 
4126
+ #: um-config.php:895
4127
  msgid "Default Primary Button Text Color"
4128
  msgstr ""
4129
 
4130
+ #: um-config.php:904
4131
  msgid "Default Secondary Button Color"
4132
  msgstr ""
4133
 
4134
+ #: um-config.php:913
4135
  msgid "Default Secondary Button Hover Color"
4136
  msgstr ""
4137
 
4138
+ #: um-config.php:922
4139
  msgid "Default Secondary Button Text Color"
4140
  msgstr ""
4141
 
4142
+ #: um-config.php:931
4143
  msgid "Default Help Icon Color"
4144
  msgstr ""
4145
 
4146
+ #: um-config.php:943
4147
  msgid "Form Inputs"
4148
  msgstr ""
4149
 
4150
+ #: um-config.php:950
4151
  msgid "Field Label Color"
4152
  msgstr ""
4153
 
4154
+ #: um-config.php:958
4155
  msgid "Field Border Style"
4156
  msgstr ""
4157
 
4158
+ #: um-config.php:967
4159
  msgid "Field Background Color"
4160
  msgstr ""
4161
 
4162
+ #: um-config.php:976
4163
  msgid "Field Text Color"
4164
  msgstr ""
4165
 
4166
+ #: um-config.php:985
4167
  msgid "Field Placeholder Color"
4168
  msgstr ""
4169
 
4170
+ #: um-config.php:994
4171
  msgid "Field Font Icon Color"
4172
  msgstr ""
4173
 
4174
+ #: um-config.php:1006
4175
  msgid "Profile"
4176
  msgstr ""
4177
 
4178
+ #: um-config.php:1013
4179
  msgid "Profile Default Template"
4180
  msgstr ""
4181
 
4182
+ #: um-config.php:1014
4183
  msgid "This will be the default template to output profile"
4184
  msgstr ""
4185
 
4186
+ #: um-config.php:1022
4187
  msgid "Profile Maximum Width"
4188
  msgstr ""
4189
 
4190
+ #: um-config.php:1030
4191
  msgid "Profile Area Maximum Width"
4192
  msgstr ""
4193
 
4194
+ #: um-config.php:1039
4195
  msgid "Profile Shortcode Alignment"
4196
  msgstr ""
4197
 
4198
+ #: um-config.php:1043 um-config.php:1292 um-config.php:1383
4199
  msgid "Centered"
4200
  msgstr ""
4201
 
4202
+ #: um-config.php:1044 um-config.php:1293 um-config.php:1384
4203
  msgid "Left aligned"
4204
  msgstr ""
4205
 
4206
+ #: um-config.php:1045 um-config.php:1294 um-config.php:1385
4207
  msgid "Right aligned"
4208
  msgstr ""
4209
 
4210
+ #: um-config.php:1053
4211
  msgid "Profile Field Icons"
4212
  msgstr ""
4213
 
4214
+ #: um-config.php:1054
4215
  msgid "This is applicable for edit mode only"
4216
  msgstr ""
4217
 
4218
+ #: um-config.php:1057 um-config.php:1306 um-config.php:1397
4219
  msgid "Show inside text field"
4220
  msgstr ""
4221
 
4222
+ #: um-config.php:1058 um-config.php:1307 um-config.php:1398
4223
  msgid "Show with label"
4224
  msgstr ""
4225
 
4226
+ #: um-config.php:1059 um-config.php:1308 um-config.php:1399
4227
  msgid "Turn off"
4228
  msgstr ""
4229
 
4230
+ #: um-config.php:1066
4231
  msgid "Profile Primary Button Text"
4232
  msgstr ""
4233
 
4234
+ #: um-config.php:1074
4235
  msgid "Profile Secondary Button"
4236
  msgstr ""
4237
 
4238
+ #: um-config.php:1082
4239
  msgid "Profile Secondary Button Text"
4240
  msgstr ""
4241
 
4242
+ #: um-config.php:1092
4243
  msgid "Profile Associated Role"
4244
  msgstr ""
4245
 
4246
+ #: um-config.php:1093
4247
  msgid "Normally, you can leave this to default as this restricts the profile per specified role only"
4248
  msgstr ""
4249
 
4250
+ #: um-config.php:1102
4251
  msgid "Profile Base Background Color"
4252
  msgstr ""
4253
 
4254
+ #: um-config.php:1111
4255
  msgid "Profile Header Background Color"
4256
  msgstr ""
4257
 
4258
+ #: um-config.php:1121
4259
  msgid "Default Profile Photo"
4260
  msgstr ""
4261
 
4262
+ #: um-config.php:1122
4263
  msgid "You can change the default profile picture globally here. Please make sure that the photo is 300x300px."
4264
  msgstr ""
4265
 
4266
+ #: um-config.php:1141
4267
  msgid "Whether to have rounded profile images, rounded corners, or none for the profile photo"
4268
  msgstr ""
4269
 
4270
+ #: um-config.php:1153
4271
  msgid "Profile Cover Photos"
4272
  msgstr ""
4273
 
4274
+ #: um-config.php:1162
4275
  msgid "Profile Cover Ratio"
4276
  msgstr ""
4277
 
4278
+ #: um-config.php:1163
4279
  msgid "Choose global ratio for cover photos of profiles"
4280
  msgstr ""
4281
 
4282
+ #: um-config.php:1177
4283
  msgid "Profile Header Meta Text Color"
4284
  msgstr ""
4285
 
4286
+ #: um-config.php:1186
4287
  msgid "Profile Header Link Color"
4288
  msgstr ""
4289
 
4290
+ #: um-config.php:1195
4291
  msgid "Profile Header Link Hover"
4292
  msgstr ""
4293
 
4294
+ #: um-config.php:1204
4295
  msgid "Profile Header Icon Link Color"
4296
  msgstr ""
4297
 
4298
+ #: um-config.php:1213
4299
  msgid "Profile Header Icon Link Hover"
4300
  msgstr ""
4301
 
4302
+ #: um-config.php:1221
4303
  msgid "Show display name in profile header"
4304
  msgstr ""
4305
 
4306
+ #: um-config.php:1229
4307
  msgid "Show user description in header"
4308
  msgstr ""
4309
 
4310
+ #: um-config.php:1237
4311
  msgid "User description maximum chars"
4312
  msgstr ""
4313
 
4314
+ #: um-config.php:1246
4315
  msgid "Profile Header Menu Position"
4316
  msgstr ""
4317
 
4318
+ #: um-config.php:1248
4319
  msgid "For incompatible themes, please make the menu open from left instead of bottom by default."
4320
  msgstr ""
4321
 
4322
+ #: um-config.php:1270
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4323
  msgid "Registration Default Template"
4324
  msgstr ""
4325
 
4326
+ #: um-config.php:1271
4327
  msgid "This will be the default template to output registration"
4328
  msgstr ""
4329
 
4330
+ #: um-config.php:1279
4331
  msgid "Registration Maximum Width"
4332
  msgstr ""
4333
 
4334
+ #: um-config.php:1288
4335
  msgid "Registration Shortcode Alignment"
4336
  msgstr ""
4337
 
4338
+ #: um-config.php:1302
4339
  msgid "Registration Field Icons"
4340
  msgstr ""
4341
 
4342
+ #: um-config.php:1303
4343
  msgid "This controls the display of field icons in the registration form"
4344
  msgstr ""
4345
 
4346
+ #: um-config.php:1315
4347
  msgid "Registration Primary Button Text"
4348
  msgstr ""
4349
 
4350
+ #: um-config.php:1323
4351
  msgid "Registration Secondary Button"
4352
  msgstr ""
4353
 
4354
+ #: um-config.php:1331
4355
  msgid "Registration Secondary Button Text"
4356
  msgstr ""
4357
 
4358
+ #: um-config.php:1341
4359
  msgid "Registration Default Role"
4360
  msgstr ""
4361
 
4362
+ #: um-config.php:1342
4363
  msgid "This will be the default role assigned to users registering thru registration form"
4364
  msgstr ""
4365
 
4366
+ #: um-config.php:1361
4367
  msgid "Login Default Template"
4368
  msgstr ""
4369
 
4370
+ #: um-config.php:1362
4371
  msgid "This will be the default template to output login"
4372
  msgstr ""
4373
 
4374
+ #: um-config.php:1370
4375
  msgid "Login Maximum Width"
4376
  msgstr ""
4377
 
4378
+ #: um-config.php:1379
4379
  msgid "Login Shortcode Alignment"
4380
  msgstr ""
4381
 
4382
+ #: um-config.php:1393
4383
  msgid "Login Field Icons"
4384
  msgstr ""
4385
 
4386
+ #: um-config.php:1394
4387
  msgid "This controls the display of field icons in the login form"
4388
  msgstr ""
4389
 
4390
+ #: um-config.php:1406
4391
  msgid "Login Primary Button Text"
4392
  msgstr ""
4393
 
4394
+ #: um-config.php:1414
4395
  msgid "Login Secondary Button"
4396
  msgstr ""
4397
 
4398
+ #: um-config.php:1422
4399
  msgid "Login Secondary Button Text"
4400
  msgstr ""
4401
 
4402
+ #: um-config.php:1431
4403
  msgid "Login Forgot Password Link"
4404
  msgstr ""
4405
 
4406
+ #: um-config.php:1447
 
 
 
 
4407
  msgid "Advanced"
4408
  msgstr ""
4409
 
4410
+ #: um-config.php:1453
4411
  msgid "Disable JS/CSS Compression"
4412
  msgstr ""
4413
 
4414
+ #: um-config.php:1455
4415
  msgid ""
4416
  "Not recommended. This will load all plugin js and css files separately and may slow down your website. Use "
4417
  "this setting for development or debugging purposes only."
4418
  msgstr ""
4419
 
4420
+ #: um-config.php:1462
4421
  msgid "Never load plugin JS and CSS on the following pages"
4422
  msgstr ""
4423
 
4424
+ #: um-config.php:1463
4425
  msgid "Enter a url or page slug (e.g /about/) to disable loading the plugin's css and js on that page."
4426
  msgstr ""
4427
 
4428
+ #: um-config.php:1464
4429
  msgid "Add New Page"
4430
  msgstr ""
4431
 
4432
+ #: um-config.php:1470
4433
  msgid "Allow Tracking"
4434
  msgstr ""
4435
 
4436
+ #: um-config.php:1474
4437
  msgid "Do not allow"
4438
  msgstr ""
4439
 
readme.txt CHANGED
@@ -3,11 +3,11 @@ Author URI: https://ultimatemember.com/
3
  Plugin URI: https://ultimatemember.com/
4
  Contributors: ultimatemember
5
  Donate link:
6
- Tags: access control, author, authors, author profile, comments, community, communities, conditional fields, conditional logic, conditional menus, content protection, custom fields, file uploads, form builder, front-end login, front-end registration, hide wp-admin, login, login page, logged-in users, mandrill, member, members, membership, member directory, profile, profiles, profile builder, registration, restriction, restrict content, role creation, role menus, search filters, sign in, sign up, social network, star ratings, toolbar, user, users, user fields, user profiles, user roles
7
  Requires at least: 4.1
8
  Tested up to: 4.1
9
 
10
- Stable Tag: 1.0.33
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
@@ -35,12 +35,9 @@ Features of the plugin include:
35
  * Custom e-mail templates
36
  * Content restriction
37
  * Conditional menus
38
- * Show author posts & comments on user profiles
39
  * Mobile adaptive & responsive
40
  * SEO optimized
41
  * Developer friendly with dozens of actions and filters
42
- * Multi-site compatibility
43
- * Mandrill compatibility
44
 
45
  **Front-end registration**
46
 
@@ -90,10 +87,6 @@ With Ultimate Member you can restrict content on a global or per page/post basis
90
 
91
  The plugin provides a range of customizable text only email templates which are triggered depending on certain events (e.g welcome email, account activation, account deleted etc). Each email type can be turned on/off. The plugin also offers a range of optional admin notification emails so you can find out when a new user registers or if new user needs reviewed.
92
 
93
- **Show author posts & comments on user profiles**
94
-
95
- The plugin provides a fully flexible menu and tab system on user profiles that allows you to optionally display a user’s posts and comments on their profile. With this feature you can put the focus on a user’s posts by making author posts the default tab when viewing a user profile.
96
-
97
  **Mobile adaptive & responsive**
98
 
99
  Ultimate Member has been built with a focus on mobile and is fully mobile adaptive and responsive. The plugin has completely separate designs for mobiles, tablets and larger screens which means the plugin will look and function great on all devices.
@@ -134,10 +127,6 @@ No, we have built Ultimate Member to be extremely easy to use and does not requi
134
 
135
  Yes. Ultimate Member is designed to adapt nicely to any screen resolution. It includes specific designs for phones, tablets and desktops.
136
 
137
- = Is Ultimate Member multi-site compatible? =
138
-
139
- Yes. Ultimate Member works great on both single site and multi-site WordPress installs.
140
-
141
  = Where can I get support? =
142
 
143
  If you need help with Ultimate Member the best place to ask for help is via the Ultimate Member community forum where you can get answers from the Ultimate Member team and other members.
@@ -154,88 +143,30 @@ Yes. Ultimate Member will work with any properly coded theme. However, some them
154
 
155
  The plugin works with popular caching plugins by automatically excluding Ultimate Member pages from being cached. This ensures other visitors to a page will not see the private information of another user. However, if you add features of Ultimate Member to other pages you have to exclude those pages from being cached through your cache plugin settings panel.
156
 
157
- == Screenshots ==
158
-
159
- 1. Screenshot 1
160
- 2. Screenshot 2
161
- 3. Screenshot 3
162
- 4. Screenshot 4
163
- 5. Screenshot 5
164
- 6. Screenshot 6
165
- 7. Screenshot 7
166
- 8. Screenshot 8
167
- 9. Screenshot 9
168
- 10. Screenshot 10
169
- 11. Screenshot 11
170
- 12. Screenshot 12
171
- 13. Screenshot 13
172
- 14. Screenshot 14
173
- 15. Screenshot 15
174
- 16. Screenshot 16
175
-
176
- == Changelog ==
177
-
178
- = 1.0.33: January 30, 2015 =
179
-
180
- * New: Introducing profile menu / tab system (optional)
181
- * New: display user posts and comments in profile menu (optional)
182
- * New: added option to force hide adminbar on the frontend even for administrators
183
- * Tweak: added profile menu options to plugin settings panel
184
- * Tweak: added option to enable/disable profile menu and/or profile menu tabs
185
- * Tweak: added option to show or hide post and comment counts (when the tabs are active)
186
- * Tweak: account activation via e-mail redirects user to login page and displays a success message
187
- * Fixed: issue with conditional logic on profile fields has been resolved
188
- * Fixed: bug with searching members by gender
189
- * Fixed: admin nav menus conditional logic conflict with some themes
190
- * Fixed: bug with datepicker field on windows servers
191
 
192
- = 1.0.32: January 30, 2015 =
193
 
194
- * New: added 3 new tags to use in email templates {first_name}, {last_name}, and {gender}
195
- * Fixed: Issue with account page permalink resolved - [view issue](https://ultimatemember.com/forums/topic/permalink-bug/)
196
- * Fixed: Issue with conditional menu items showing for un-approved users resolved - [view issue](https://ultimatemember.com/forums/topic/registration/)
197
-
198
- = 1.0.31: January 29, 2015 =
199
-
200
- * Fixed: Issue with custom user page slug resolved [view issue](https://wordpress.org/support/topic/translate-plugin-9)
201
- * Fixed: PHP warning in members directory resolved
202
- * Fixed: Issue with hardcoded user profile URLs in menu
203
-
204
- = 1.0.30: January 29, 2015 =
205
-
206
- * New: added option to control number of profiles to display in members directory for mobile devices
207
- * New: new admin action hook 'um_extend_admin_menu' to extend plugin administration menu
208
- * New: Improved plugin accessbility e.g add alt text to links and images so people with disabilities can use screen readers
209
- * New: added option to show/hide the message that appears if profile is empty (includes emoticon show/hide)
210
- * Tweak: new translatable strings
211
- * Tweak: added option to customize single-result text for members directory
212
- * Tweak: removed unnecessary code from member directory backend
213
- * Tweak: removed unnecessary js from admin head
214
- * Fixed: Account page is now translatable
215
- * Fixed: content restriction widget css in backend
216
-
217
- = 1.0.29: January 28, 2015 =
218
-
219
- * New: added feature to show user display name in menu (e.g. Welcome, {display_name})
220
- * New: added option to add text to dividers (which can be added using the drag-and-drop form builder)
221
- * New: security improvement: added whitelisted IP(s) option to allow you to access the WP-admin screen always (prevents lockout)
222
- * New: added filter hook um_whitelisted_wpadmin_access to control access to wp-admin login screens (for developers)
223
- * New: added custom css option to apply extra css styling rules from plugin settings
224
- * New: added custom css option to each form allowing you to apply extra styling rules per form
225
- * New: added option to customize profile fields area width (per form basis) besides global option
226
- * Tweak: compatibility with default permalinks (Pretty permalinks are strongly recommended though!)
227
- * Tweak: improved the function that gets user IP address
228
- * Tweak: performance: inline css from the plugin is automatically compressed/minified
229
-
230
- = 1.0.28: January 27, 2015 =
231
-
232
- * New: added compatibility with wpMandrill to handle email delivery
233
- * Fixed: Issue with profile edit menu not appearing
234
 
235
- = 1.0.27: January 27, 2015 =
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
236
 
237
- * Fixed: WP admin bar issue with some plugins and themes
238
- * Fixed: conflict with WP Recent Comments With Avatars plugin
239
 
240
  = 1.0.26: January 26, 2015 =
241
 
@@ -303,7 +234,7 @@ The plugin works with popular caching plugins by automatically excluding Ultimat
303
 
304
  = 1.0.17: January 22, 2015 =
305
 
306
- * New: WordPress Multi-site compatibility for user uploads and photos
307
  * Fixed: Searching members by username or email in directory (partial search supported)
308
  * Fixed: Anonymous tracking
309
  * Fixed: Minor css fixes
3
  Plugin URI: https://ultimatemember.com/
4
  Contributors: ultimatemember
5
  Donate link:
6
+ Tags: access control, community, communities, conditional fields, conditional logic, conditional menus, content protection, custom fields, file uploads, form builder, front-end login, front-end registration, hide wp-admin, login, login page, logged-in users, member, members, membership, member directory, profile, profiles, profile builder, registration, restrict content, role creation, role menus, search filters, sign in, sign up, social network, star ratings, toolbar, user, users, user fields, user profiles, user roles
7
  Requires at least: 4.1
8
  Tested up to: 4.1
9
 
10
+ Stable Tag: 1.0.26
11
 
12
  License: GNU Version 2 or Any Later Version
13
 
35
  * Custom e-mail templates
36
  * Content restriction
37
  * Conditional menus
 
38
  * Mobile adaptive & responsive
39
  * SEO optimized
40
  * Developer friendly with dozens of actions and filters
 
 
41
 
42
  **Front-end registration**
43
 
87
 
88
  The plugin provides a range of customizable text only email templates which are triggered depending on certain events (e.g welcome email, account activation, account deleted etc). Each email type can be turned on/off. The plugin also offers a range of optional admin notification emails so you can find out when a new user registers or if new user needs reviewed.
89
 
 
 
 
 
90
  **Mobile adaptive & responsive**
91
 
92
  Ultimate Member has been built with a focus on mobile and is fully mobile adaptive and responsive. The plugin has completely separate designs for mobiles, tablets and larger screens which means the plugin will look and function great on all devices.
127
 
128
  Yes. Ultimate Member is designed to adapt nicely to any screen resolution. It includes specific designs for phones, tablets and desktops.
129
 
 
 
 
 
130
  = Where can I get support? =
131
 
132
  If you need help with Ultimate Member the best place to ask for help is via the Ultimate Member community forum where you can get answers from the Ultimate Member team and other members.
143
 
144
  The plugin works with popular caching plugins by automatically excluding Ultimate Member pages from being cached. This ensures other visitors to a page will not see the private information of another user. However, if you add features of Ultimate Member to other pages you have to exclude those pages from being cached through your cache plugin settings panel.
145
 
146
+ = Does the plugin work on WordPress Multisite? =
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
147
 
148
+ Yes. The plugin works fine with WordPress network / multisite now. In a recent update, we have made it possible to show the user photos network-wide.
149
 
150
+ == Screenshots ==
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
 
152
+ 1. Front-end User Profile (Edit mode)
153
+ 2. Photo / File Upload Modal
154
+ 3. Image Crop Feature
155
+ 4. Account Page
156
+ 5. Photo Modal
157
+ 6. User Profile (Cover photo turned off)
158
+ 7. Searchable Member Directory
159
+ 8. Plugin Dashboard
160
+ 9. Plugin Settings Panel
161
+ 10. Forms
162
+ 11. Custom Field Manager
163
+ 12. Adding a New Field
164
+ 13. User Roles
165
+ 14. Adding a New Role
166
+ 15. Adding a New Directory
167
+ 16. Appearance and Customization Settings
168
 
169
+ == Changelog ==
 
170
 
171
  = 1.0.26: January 26, 2015 =
172
 
234
 
235
  = 1.0.17: January 22, 2015 =
236
 
237
+ * New: WordPress Multisite compatibility for user uploads and photos
238
  * Fixed: Searching members by username or email in directory (partial search supported)
239
  * Fixed: Anonymous tracking
240
  * Fixed: Minor css fixes
templates/profile/comments-single.php DELETED
@@ -1,18 +0,0 @@
1
- <?php foreach( $loop as $comment ) { ?>
2
-
3
- <div class="um-item">
4
- <div class="um-item-link"><a href="<?php echo get_comment_link( $comment->comment_ID ); ?>"><?php echo get_comment_excerpt( $comment->comment_ID ); ?></a></div>
5
- <div class="um-item-meta">
6
- <span><?php printf(__('On <a href="%1$s">%2$s</a>','ultimatemember'), get_permalink($comment->comment_post_ID), get_the_title($comment->comment_post_ID) ); ?></span>
7
- </div>
8
- </div>
9
-
10
- <?php } ?>
11
-
12
- <?php if ( isset($modified_args) && count($loop) >= 10 ) { ?>
13
-
14
- <div class="um-load-items">
15
- <a href="#" class="um-ajax-paginate um-button" data-hook="um_load_comments" data-args="<?php echo $modified_args; ?>"><?php _e('load more comments','um-bbpress'); ?></a>
16
- </div>
17
-
18
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/profile/comments.php DELETED
@@ -1,25 +0,0 @@
1
- <?php $loop = $ultimatemember->query->make('post_type=comment&number=10&offset=0&author_email=' . um_user('user_email') ); ?>
2
-
3
- <?php if ( $loop ) { ?>
4
-
5
- <?php include_once um_path . 'templates/profile/comments-single.php'; ?>
6
-
7
- <div class="um-ajax-items">
8
-
9
- <!--Ajax output-->
10
-
11
- <?php if ( count($loop) >= 10 ) { ?>
12
-
13
- <div class="um-load-items">
14
- <a href="#" class="um-ajax-paginate um-button" data-hook="um_load_comments" data-args="comment,10,10,<?php echo um_user('user_email'); ?>"><?php _e('load more comments','um-bbpress'); ?></a>
15
- </div>
16
-
17
- <?php } ?>
18
-
19
- </div>
20
-
21
- <?php } else { ?>
22
-
23
- <?php ( um_is_myprofile() ) ? _e('You have not made any comments.') : _e('This user has not made any comments.'); ?>
24
-
25
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/profile/posts-single.php DELETED
@@ -1,20 +0,0 @@
1
- <?php while ($loop->have_posts()) { $loop->the_post(); $post_id = get_the_ID(); ?>
2
-
3
- <div class="um-item">
4
- <div class="um-item-link"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></div>
5
- <div class="um-item-meta">
6
- <span><?php echo sprintf(__('%s ago','ultimatemember'), human_time_diff( get_the_time('U'), current_time('timestamp') ) ); ?></span>
7
- <span>in: <?php the_category( ', ' ); ?></span>
8
- <span><?php comments_number( __('no comments','ultimatemember'), __('1 comment','ultimatemember'), __('% comments','ultimatemember') ); ?></span>
9
- </div>
10
- </div>
11
-
12
- <?php } ?>
13
-
14
- <?php if ( isset($modified_args) && $loop->have_posts() && $loop->found_posts >= 10 ) { ?>
15
-
16
- <div class="um-load-items">
17
- <a href="#" class="um-ajax-paginate um-button" data-hook="um_load_posts" data-args="<?php echo $modified_args; ?>"><?php _e('load more posts','um-bbpress'); ?></a>
18
- </div>
19
-
20
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
templates/profile/posts.php DELETED
@@ -1,25 +0,0 @@
1
- <?php $loop = $ultimatemember->query->make('post_type=post&posts_per_page=10&offset=0&author=' . um_user('ID') ); ?>
2
-
3
- <?php if ( $loop->have_posts()) { ?>
4
-
5
- <?php include_once um_path . 'templates/profile/posts-single.php'; ?>
6
-
7
- <div class="um-ajax-items">
8
-
9
- <!--Ajax output-->
10
-
11
- <?php if ( $loop->found_posts >= 10 ) { ?>
12
-
13
- <div class="um-load-items">
14
- <a href="#" class="um-ajax-paginate um-button" data-hook="um_load_posts" data-args="post,10,10,<?php echo um_user('ID'); ?>"><?php _e('load more posts','um-bbpress'); ?></a>
15
- </div>
16
-
17
- <?php } ?>
18
-
19
- </div>
20
-
21
- <?php } else { ?>
22
-
23
- <?php ( um_is_myprofile() ) ? _e('You have not created any posts.') : _e('This user has not created any posts.'); ?>
24
-
25
- <?php } ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
um-config.php CHANGED
@@ -271,17 +271,11 @@ $this->sections[] = array(
271
  'required' => array( 'wpadmin_register_redirect', '=', 'custom_url' ),
272
  ),
273
 
274
- array(
275
- 'id' => 'wpadmin_allow_ips',
276
- 'type' => 'textarea',
277
- 'title' => __( 'Whitelisted Backend IPs' ),
278
- 'desc' => __('Always allow the specified IP addresses to access the backend login screen and WP-admin to avoid being locked from site backend.')
279
- ),
280
-
281
  array(
282
  'id' => 'blocked_ips',
283
  'type' => 'textarea',
284
  'title' => __( 'Blocked IP Addresses' ),
 
285
  'desc' => __('This will block the listed IPs from signing up or signing in to the site, you can use full IP numbers or target specific range with a wildcard')
286
  ),
287
 
@@ -289,6 +283,7 @@ $this->sections[] = array(
289
  'id' => 'blocked_emails',
290
  'type' => 'textarea',
291
  'title' => __( 'Blocked Email Addresses' ),
 
292
  'desc' => __('This will block the specified e-mail addresses from being able to sign up or sign in to your site.')
293
  ),
294
 
@@ -296,6 +291,7 @@ $this->sections[] = array(
296
  'id' => 'blocked_words',
297
  'type' => 'textarea',
298
  'title' => __( 'Blacklist Words' ),
 
299
  'desc' => __('This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their username'),
300
  'default' => 'admin' . "\r\n" . 'administrator' . "\r\n" . 'webmaster' . "\r\n" . 'support' . "\r\n" . 'staff'
301
  ),
@@ -1265,82 +1261,10 @@ $this->sections[] = array(
1265
  ),
1266
  ),
1267
 
1268
- array(
1269
- 'id' => 'profile_empty_text',
1270
- 'type' => 'switch',
1271
- 'title' => __( 'Show a custom message if profile is empty' ),
1272
- 'default' => um_get_metadefault('profile_empty_text'),
1273
- 'desc' => 'Switch on/off the custom message that appears when the profile is empty',
1274
- ),
1275
-
1276
- array(
1277
- 'id' => 'profile_empty_text_emo',
1278
- 'type' => 'switch',
1279
- 'title' => __( 'Show the emoticon' ),
1280
- 'default' => um_get_metadefault('profile_empty_text_emo'),
1281
- 'desc' => 'Switch on/off the emoticon (sad face) that appears above the message',
1282
- 'required' => array( 'profile_empty_text', '=', 1 ),
1283
- ),
1284
-
1285
  )
1286
 
1287
  );
1288
 
1289
- $tabs = $ultimatemember->profile->tabs_primary();
1290
- $tab_options[] = array(
1291
- 'id' => 'profile_menu',
1292
- 'type' => 'switch',
1293
- 'title' => __('Enable profile menu'),
1294
- 'default' => 1,
1295
- );
1296
-
1297
- foreach( $tabs as $id => $tab ) {
1298
- $tab_options[] = array(
1299
- 'id' => 'profile_tab_' . $id,
1300
- 'type' => 'switch',
1301
- 'title' => sprintf(__('%s Tab','ultimatemember'), $tab ),
1302
- 'default' => 1,
1303
- 'on' => __('Enabled'),
1304
- 'off' => __('Disabled'),
1305
- 'required' => array( 'profile_menu', '=', 1 ),
1306
- );
1307
- }
1308
-
1309
- $tab_options[] = array(
1310
- 'id' => 'profile_menu_default_tab',
1311
- 'type' => 'select',
1312
- 'select2' => array( 'allowClear' => 0, 'minimumResultsForSearch' => -1 ),
1313
- 'title' => __( 'Profile menu default tab' ),
1314
- 'desc' => __( 'This will be the default tab on user profile page' ),
1315
- 'default' => 'main',
1316
- 'options' => $ultimatemember->profile->tabs_primary(),
1317
- 'required' => array( 'profile_menu', '=', 1 ),
1318
- );
1319
-
1320
- $tab_options[] = array(
1321
- 'id' => 'profile_menu_icons',
1322
- 'type' => 'switch',
1323
- 'title' => __('Enable menu icons in desktop view'),
1324
- 'default' => 1,
1325
- 'required' => array( 'profile_menu', '=', 1 ),
1326
- );
1327
-
1328
- $tab_options[] = array(
1329
- 'id' => 'profile_menu_counts',
1330
- 'type' => 'switch',
1331
- 'title' => __('Enable counts in menu'),
1332
- 'default' => 1,
1333
- 'required' => array( 'profile_menu', '=', 1 ),
1334
- );
1335
-
1336
- $this->sections[] = array(
1337
-
1338
- 'subsection' => true,
1339
- 'title' => __( 'Profile Menu'),
1340
- 'fields' => $tab_options
1341
-
1342
- );
1343
-
1344
  $this->sections[] = array(
1345
 
1346
  'subsection' => true,
@@ -1521,24 +1445,6 @@ $this->sections[] = array(
1521
 
1522
  );
1523
 
1524
- $this->sections[] = array(
1525
-
1526
- 'subsection' => true,
1527
- 'title' => __( 'Custom CSS'),
1528
- 'fields' => array(
1529
-
1530
- array(
1531
- 'id' => 'custom_css',
1532
- 'type' => 'textarea',
1533
- 'title' => __( 'Custom CSS' ),
1534
- 'desc' => __('Any custom css rules that you specify here will be applied globally to the plugin.'),
1535
- 'rows' => 20,
1536
- ),
1537
-
1538
- )
1539
-
1540
- );
1541
-
1542
  /***
1543
  *** @
1544
  ***/
271
  'required' => array( 'wpadmin_register_redirect', '=', 'custom_url' ),
272
  ),
273
 
 
 
 
 
 
 
 
274
  array(
275
  'id' => 'blocked_ips',
276
  'type' => 'textarea',
277
  'title' => __( 'Blocked IP Addresses' ),
278
+ 'desc' => __( 'Enter one IP per line, you can also use wildcards to block a specific range e.g. 41.83.*.*' ),
279
  'desc' => __('This will block the listed IPs from signing up or signing in to the site, you can use full IP numbers or target specific range with a wildcard')
280
  ),
281
 
283
  'id' => 'blocked_emails',
284
  'type' => 'textarea',
285
  'title' => __( 'Blocked Email Addresses' ),
286
+ 'desc' => __( 'Enter one email address per line and you can also specify all emails from specific service to be blocked by using wildcard: *@hotmail.com' ),
287
  'desc' => __('This will block the specified e-mail addresses from being able to sign up or sign in to your site.')
288
  ),
289
 
291
  'id' => 'blocked_words',
292
  'type' => 'textarea',
293
  'title' => __( 'Blacklist Words' ),
294
+ 'desc' => __( 'The words specified here can not be used as username during registration, please enter one word per line to prevent the usage of this word in a username / during registration' ),
295
  'desc' => __('This option lets you specify blacklist of words to prevent anyone from signing up with such a word as their username'),
296
  'default' => 'admin' . "\r\n" . 'administrator' . "\r\n" . 'webmaster' . "\r\n" . 'support' . "\r\n" . 'staff'
297
  ),
1261
  ),
1262
  ),
1263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1264
  )
1265
 
1266
  );
1267
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1268
  $this->sections[] = array(
1269
 
1270
  'subsection' => true,
1445
 
1446
  );
1447
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1448
  /***
1449
  *** @
1450
  ***/
um-init.php CHANGED
@@ -36,7 +36,6 @@ class UM_API {
36
  require_once um_path . 'core/um-fields.php';
37
  require_once um_path . 'core/um-form.php';
38
  require_once um_path . 'core/um-user.php';
39
- require_once um_path . 'core/um-user-posts.php';
40
  require_once um_path . 'core/um-profile.php';
41
  require_once um_path . 'core/um-query.php';
42
  require_once um_path . 'core/um-datetime.php';
@@ -87,7 +86,6 @@ class UM_API {
87
  require_once um_path . 'core/um-filters-members.php';
88
  require_once um_path . 'core/um-filters-profile.php';
89
  require_once um_path . 'core/um-filters-account.php';
90
- require_once um_path . 'core/um-filters-misc.php';
91
 
92
  /* initialize UM */
93
  $this->rewrite = new UM_Rewrite();
@@ -102,7 +100,6 @@ class UM_API {
102
  $this->register = new UM_Register();
103
  $this->fields = new UM_Fields();
104
  $this->user = new UM_User();
105
- $this->user_posts = new UM_User_Posts();
106
  $this->profile = new UM_Profile();
107
  $this->datetime = new UM_DateTime();
108
  $this->chart = new UM_Chart();
36
  require_once um_path . 'core/um-fields.php';
37
  require_once um_path . 'core/um-form.php';
38
  require_once um_path . 'core/um-user.php';
 
39
  require_once um_path . 'core/um-profile.php';
40
  require_once um_path . 'core/um-query.php';
41
  require_once um_path . 'core/um-datetime.php';
86
  require_once um_path . 'core/um-filters-members.php';
87
  require_once um_path . 'core/um-filters-profile.php';
88
  require_once um_path . 'core/um-filters-account.php';
 
89
 
90
  /* initialize UM */
91
  $this->rewrite = new UM_Rewrite();
100
  $this->register = new UM_Register();
101
  $this->fields = new UM_Fields();
102
  $this->user = new UM_User();
 
103
  $this->profile = new UM_Profile();
104
  $this->datetime = new UM_DateTime();
105
  $this->chart = new UM_Chart();