rtMedia for WordPress, BuddyPress and bbPress - Version 3.6.14

Version Description

  • Fix BuddyPress privacy issue
Download this release

Release Info

Developer rtcamp
Plugin Icon 128x128 rtMedia for WordPress, BuddyPress and bbPress
Version 3.6.14
Comparing to
See all releases

Code changes from version 3.6.13 to 3.6.14

app/assets/js/rtMedia.js CHANGED
@@ -404,10 +404,10 @@ jQuery('document').ready(function($) {
404
  }
405
 
406
  function rtmedia_disable_popup_navigation_comment_focus() {
407
- jQuery('#comment_content').live('focusin',function(){
408
  jQuery(document).unbind('keydown');
409
  });
410
- jQuery('#comment_content').live('focusout',function(){
411
  var rtm_mfp = jQuery.magnificPopup.instance;
412
  jQuery(document).on('keydown',function(e) {
413
  if (e.keyCode === 37) {
404
  }
405
 
406
  function rtmedia_disable_popup_navigation_comment_focus() {
407
+ jQuery(document).on('focusin','#comment_content', function(){
408
  jQuery(document).unbind('keydown');
409
  });
410
+ jQuery(document).on('focusout','#comment_content',function(){
411
  var rtm_mfp = jQuery.magnificPopup.instance;
412
  jQuery(document).on('keydown',function(e) {
413
  if (e.keyCode === 37) {
app/main/controllers/privacy/RTMediaPrivacy.php CHANGED
@@ -22,12 +22,24 @@ class RTMediaPrivacy {
22
  if ( is_rtmedia_privacy_enable () && $flag ) {
23
  //add_action ( 'rtmedia_after_file_upload_ui' , array ( $this , 'uploader_privacy_ui' ) ) ;
24
  //add_action ( 'rtmedia_add_edit_fields' , array ( $this , 'edit_media_privacy_ui' ),2 ) ;
25
- add_action ( 'bp_init' , array ( $this , 'add_nav' ) ) ;
26
- add_action ( 'bp_template_content' , array ( $this , 'content' ) ) ;
27
- add_filter ( 'bp_activity_get_user_join_filter' , array ( $this , 'activity_privacy' ) , 10 , 6 ) ;
 
28
  }
29
  }
30
 
 
 
 
 
 
 
 
 
 
 
 
31
  function edit_media_privacy_ui($echo = true) {
32
  $privacy = "";
33
  $privacy = $this->select_privacy_ui ($echo = false);
22
  if ( is_rtmedia_privacy_enable () && $flag ) {
23
  //add_action ( 'rtmedia_after_file_upload_ui' , array ( $this , 'uploader_privacy_ui' ) ) ;
24
  //add_action ( 'rtmedia_add_edit_fields' , array ( $this , 'edit_media_privacy_ui' ),2 ) ;
25
+ add_action ( 'bp_init' , array( $this , 'add_nav' ) ) ;
26
+ add_action ( 'bp_template_content' , array( $this , 'content' ) ) ;
27
+ add_filter ( 'bp_activity_get_user_join_filter' , array( $this , 'activity_privacy' ), 10, 6 ) ;
28
+ add_filter ( 'bp_use_legacy_activity_query' , array( $this , 'enable_buddypress_privacy' ), 10, 3 ) ;
29
  }
30
  }
31
 
32
+ function enable_buddypress_privacy( $flag, $method, $func_args ) {
33
+ global $rtmedia;
34
+ $option = $rtmedia->options;
35
+ if( isset( $option['privacy_enabled'] ) && $option['privacy_enabled'] != '0' ) {
36
+ if( $method == "BP_Activity_Activity::get" ) {
37
+ $flag = true;
38
+ }
39
+ }
40
+ return $flag;
41
+ }
42
+
43
  function edit_media_privacy_ui($echo = true) {
44
  $privacy = "";
45
  $privacy = $this->select_privacy_ui ($echo = false);
index.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: http://rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
- Version: 3.6.13
8
  Author: rtCamp
9
  Text Domain: rtmedia
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
4
  Plugin Name: rtMedia for WordPress, BuddyPress and bbPress
5
  Plugin URI: http://rtcamp.com/buddypress-media/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
6
  Description: This plugin adds missing media rich features like photos, videos and audio uploading to BuddyPress which are essential if you are building social network, seriously!
7
+ Version: 3.6.14
8
  Author: rtCamp
9
  Text Domain: rtmedia
10
  Author URI: http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media
readme.txt CHANGED
@@ -6,7 +6,7 @@ License: GPLv2 or later
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
  Tested up to: WordPress 3.9 + BuddyPress 2.0
9
- Stable tag: 3.6.13
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices.
12
 
@@ -133,6 +133,9 @@ http://www.youtube.com/watch?v=dJrykKQGDcs
133
 
134
  Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases.
135
 
 
 
 
136
  = 3.6.13 =
137
  * Media template update
138
  * New hooks added
@@ -749,8 +752,8 @@ Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_sou
749
 
750
  == Upgrade Notice ==
751
 
752
- = 3.6.13 =
753
- Requires BuddyPress 1.7 or higher, if using BuddyPress. Media template update, translation update, bug fixes
754
 
755
  == Sponsors ==
756
 
6
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
7
  Requires at least: WordPress 3.6
8
  Tested up to: WordPress 3.9 + BuddyPress 2.0
9
+ Stable tag: 3.6.14
10
 
11
  Add albums, photo, audio/video encoding, privacy, sharing, front-end uploads & more. All this works mobile/tablets devices.
12
 
133
 
134
  Please visit [rtMedia's Roadmap page](http://rtcamp.com/rtmedia/roadmap/?utm_source=readme&utm_medium=plugin&utm_campaign=buddypress-media "Visit rtMedia's Features page") to get some details about future releases.
135
 
136
+ = 3.6.14 =
137
+ * Fix BuddyPress privacy issue
138
+
139
  = 3.6.13 =
140
  * Media template update
141
  * New hooks added
752
 
753
  == Upgrade Notice ==
754
 
755
+ = 3.6.14 =
756
+ Requires BuddyPress 1.7 or higher, if using BuddyPress. Fix BuddyPress privacy issue.
757
 
758
  == Sponsors ==
759
 
trunk/CONTRIBUTING.md ADDED
@@ -0,0 +1,19 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Contribute to rtMedia
2
+
3
+ This guide details how to use issues and pull requests to improve rtMedia.
4
+
5
+ ## Closing policy for issues
6
+
7
+ Github issue-tracker is used **only** for developer & contributor discussion.
8
+
9
+ For support-request/feature-request, please use - http://rtcamp.com/rtmedia/support/
10
+
11
+ ## Translation
12
+
13
+ Please do NOT send pull-request for translations.
14
+
15
+ You can contribute translations using web-interface here - http://rtcamp.com/translate/projects/rtmedia
16
+
17
+ ## Pull Requests
18
+
19
+ Please include your wordpress.org username while sending pull-request so that we can add you to contributors list.
trunk/app/admin/RTMediaAdmin.php ADDED
@@ -0,0 +1,1396 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /**
3
+ * Description of RTMediaAdmin
4
+ *
5
+ * @package RTMedia
6
+ * @subpackage Admin
7
+ *
8
+ */
9
+ if ( ! class_exists( 'RTMediaAdmin' ) ){
10
+
11
+ class RTMediaAdmin {
12
+
13
+ public $rtmedia_upgrade;
14
+ public $rtmedia_settings;
15
+ public $rtmedia_encoding;
16
+ public $rtmedia_support;
17
+ public $rtmedia_feed;
18
+
19
+ public function __construct() {
20
+ global $rtmedia;
21
+ add_action( 'init', array( $this, 'video_transcoding_survey_response' ) );
22
+ add_action( 'admin_init', array( $this, 'presstrends_plugin' ) );
23
+
24
+ //$rtmedia_feed = new RTMediaFeed();
25
+ add_filter( "plugin_action_links_" . RTMEDIA_BASE_NAME, array( &$this, 'plugin_add_settings_link' ) );
26
+ //add_action ( 'wp_ajax_rtmedia_fetch_feed', array( $rtmedia_feed, 'fetch_feed' ), 1 );
27
+ $this->rtmedia_support = new RTMediaSupport();
28
+ add_action( 'wp_ajax_rtmedia_select_request', array( $this->rtmedia_support, 'get_form' ), 1 );
29
+ add_action( 'wp_ajax_rtmedia_cancel_request', create_function( '', 'do_settings_sections("rtmedia-support"); die();' ), 1 );
30
+ add_action( 'wp_ajax_rtmedia_submit_request', array( $this->rtmedia_support, 'submit_request' ), 1 );
31
+ //add_action ( 'wp_ajax_rtmedia_fetch_feed', array( $rtmedia_feed, 'fetch_feed' ), 1 );
32
+ add_action( 'wp_ajax_rtmedia_linkback', array( $this, 'linkback' ), 1 );
33
+ add_action( 'wp_ajax_rtmedia_rt_album_deactivate', 'BPMediaAlbumimporter::bp_album_deactivate', 1 );
34
+ add_action( 'wp_ajax_rtmedia_rt_album_import', 'BPMediaAlbumimporter::bpmedia_ajax_import_callback', 1 );
35
+ add_action( 'wp_ajax_rtmedia_rt_album_import_favorites', 'BPMediaAlbumimporter::bpmedia_ajax_import_favorites', 1 );
36
+ add_action( 'wp_ajax_rtmedia_rt_album_import_step_favorites', 'BPMediaAlbumimporter::bpmedia_ajax_import_step_favorites', 1 );
37
+ add_action( 'wp_ajax_rtmedia_rt_album_cleanup', 'BPMediaAlbumimporter::cleanup_after_install' );
38
+ add_action( 'wp_ajax_rtmedia_convert_videos_form', array( $this, 'convert_videos_mailchimp_send' ), 1 );
39
+ add_action( 'wp_ajax_rtmedia_correct_upload_filetypes', array( $this, 'correct_upload_filetypes' ), 1 );
40
+ add_filter( 'plugin_row_meta', array( $this, 'plugin_meta_premium_addon_link' ), 1, 4 );
41
+ add_action( 'wp_dashboard_setup', array( &$this, 'add_dashboard_widgets' ), 0 );
42
+ add_filter( "attachment_fields_to_edit", array( $this, "edit_video_thumbnail" ), null, 2 );
43
+ add_filter( "attachment_fields_to_save", array( $this, "save_video_thumbnail" ), null, 2 );
44
+ add_action( 'wp_ajax_rtmedia_hide_video_thumb_admin_notice', array( $this, 'rtmedia_hide_video_thumb_admin_notice' ), 1 );
45
+ add_action( 'wp_ajax_rtmedia_hide_addon_update_notice', array( $this, 'rtmedia_hide_addon_update_notice' ), 1 );
46
+ $obj_encoding = new RTMediaEncoding( true );
47
+ if ( $obj_encoding->api_key ){
48
+ add_filter( "media_row_actions", array( $this, "add_reencode_link" ), null, 2 );
49
+ add_action( 'admin_head-upload.php', array( $this, 'add_bulk_actions_regenerate' ) );
50
+ add_action( 'admin_footer', array( $this, 'rtmedia_regenerate_thumb_js' ) );
51
+ add_action( 'admin_action_bulk_video_regenerate_thumbnails', array( $this, 'bulk_action_handler' ) );
52
+ add_action( 'admin_action_-1', array( $this, 'bulk_action_handler' ) );
53
+ }
54
+ add_action( 'wp_ajax_rt_media_regeneration', array( $this, 'rt_media_regeneration' ), 1 );
55
+ if ( ! isset( $rtmedia->options ) ){
56
+ $rtmedia->options = rtmedia_get_site_option( 'rtmedia-options' );
57
+ }
58
+ if ( isset ( $_POST[ "rtmedia-options" ] ) ){
59
+ if ( isset ( $_POST[ "rtmedia-options" ][ "general_showAdminMenu" ] ) && $_POST[ "rtmedia-options" ][ "general_showAdminMenu" ] == "1" ){
60
+ add_action( 'admin_bar_menu', array( $this, 'admin_bar_menu' ), 100, 1 );
61
+ }
62
+ } else {
63
+ if ( intval( $rtmedia->options[ "general_showAdminMenu" ] ) == 1 ){
64
+ add_action( 'admin_bar_menu', array( $this, 'admin_bar_menu' ), 100, 1 );
65
+ }
66
+ }
67
+
68
+ if ( is_admin() ){
69
+ add_action( 'admin_enqueue_scripts', array( $this, 'ui' ) );
70
+ //bp_core_admin_hook();
71
+ add_action( 'admin_menu', array( $this, 'menu' ), 1 );
72
+ add_action( 'init', array( $this, 'bp_admin_tabs' ) );
73
+ if ( is_multisite() ){
74
+ add_action( 'network_admin_edit_rtmedia', array( $this, 'save_multisite_options' ) );
75
+ }
76
+ }
77
+ $this->rtmedia_settings = new RTMediaSettings();
78
+ $this->rtmedia_encoding = new RTMediaEncoding();
79
+ // show rtmedia advertisement
80
+ // if(! defined("RTMEDIA_PRO_VERSION") )
81
+ // add_action ( 'rtmedia_before_default_admin_widgets', array( $this, 'rtmedia_advertisement' ),1);
82
+ if ( ! class_exists( "BuddyPress" ) ){
83
+ add_action( 'admin_init', array( $this, 'check_permalink_admin_notice' ) );
84
+ }
85
+
86
+ add_action( 'wp_ajax_rtmedia_hide_template_override_notice', array( $this, 'rtmedia_hide_template_override_notice' ), 1 );
87
+ add_action( 'admin_init', array( $this, 'rtmedia_bp_add_update_type' ) );
88
+ add_action( 'wp_ajax_rtmedia_hide_inspirebook_release_notice', array( $this, 'rtmedia_hide_inspirebook_release_notice' ), 1 );
89
+ $rtmedia_media_import = new RTMediaMediaSizeImporter(); // do not delete this line. We only need to create object of this class if we are in admin section
90
+ add_action( 'admin_notices', array( $this, 'rtmedia_admin_notices' ) );
91
+ add_action( 'network_admin_notices', array( $this, 'rtmedia_network_admin_notices' ) );
92
+
93
+ }
94
+
95
+ function rtmedia_network_admin_notices() {
96
+ if ( is_multisite() ){
97
+ $this->upload_filetypes_error();
98
+ }
99
+ }
100
+
101
+ function rtmedia_admin_notices() {
102
+ $this->upload_filetypes_error();
103
+ $this->rtmedia_regenerate_thumbnail_notice();
104
+ $this->rtmedia_addon_update_notice();
105
+ $this->rtmedia_update_template_notice();
106
+ $this->rtmedia_inspirebook_release_notice();
107
+ }
108
+
109
+ function rtmedia_inspirebook_release_notice() {
110
+ $site_option = rtmedia_get_site_option( "rtmedia_inspirebook_release_notice" );
111
+ if ( ( ! $site_option || $site_option != "hide" ) && ( get_stylesheet() != 'inspirebook' ) ){
112
+ rtmedia_update_site_option( "rtmedia_inspirebook_release_notice", "show" );
113
+ ?>
114
+ <div class="updated rtmedia-inspire-book-notice">
115
+ <p>
116
+ <span><a href="https://rtcamp.com/store/inspirebook/" target="_blank"><b>Meet
117
+ InspireBook</b></a> - First official rtMedia premium theme.</span>
118
+ <a href="#" onclick="rtmedia_hide_template_override_notice()" style="float:right">Dismiss</a>
119
+ </p>
120
+ </div>
121
+ <script type="text/javascript">
122
+ function rtmedia_hide_template_override_notice() {
123
+ var data = {action: 'rtmedia_hide_inspirebook_release_notice'};
124
+ jQuery.post( ajaxurl, data, function ( response ) {
125
+ response = response.trim();
126
+ if ( response === "1" )
127
+ jQuery( '.rtmedia-inspire-book-notice' ).remove();
128
+ } );
129
+ }
130
+ </script>
131
+ <?php
132
+ }
133
+ }
134
+
135
+ function rtmedia_hide_inspirebook_release_notice() {
136
+ if ( rtmedia_update_site_option( "rtmedia_inspirebook_release_notice", "hide" ) ){
137
+ echo "1";
138
+ } else {
139
+ echo "0";
140
+ }
141
+ die();
142
+ }
143
+
144
+ function rtmedia_bp_add_update_type() {
145
+ if ( class_exists( 'BuddyPress' ) && function_exists( 'bp_activity_set_action' ) ){
146
+ bp_activity_set_action( 'rtmedia_update', 'rtmedia_update', 'rtMedia Update' );
147
+ }
148
+ }
149
+
150
+ function check_permalink_admin_notice() {
151
+ global $wp_rewrite;
152
+ if ( empty( $wp_rewrite->permalink_structure ) ){
153
+ add_action( 'admin_notices', array( $this, 'rtmedia_permalink_notice' ) );
154
+ }
155
+ }
156
+
157
+ function rtmedia_permalink_notice() {
158
+ echo '<div class="error rtmedia-permalink-change-notice">
159
+ <p> <b>' . __( 'rtMedia:' ) . '</b> ' . __( ' You must ' ) . '<a href="' . admin_url( 'options-permalink.php' ) . '">' . __( 'update permalink structure' ) . '</a>' . __( ' to something other than the default for it to work.', 'rtmedia' ) . ' </p>
160
+ </div>';
161
+ }
162
+
163
+ function rtmedia_addon_update_notice() {
164
+ if ( ! $this->check_for_addon_update_notice() ){
165
+ return;
166
+ }
167
+ if ( is_rt_admin() ){
168
+ $site_option = rtmedia_get_site_option( "rtmedia-addon-update-notice" );
169
+ if ( ! $site_option || $site_option != "hide" ){
170
+ rtmedia_update_site_option( "rtmedia-addon-update-notice", "show" );
171
+ echo '<div class="error rtmedia-addon-upate-notice">
172
+ <p> <b>' . __( 'rtMedia:' ) . '</b> ' . __( 'Please update all premium add-ons that you had purchased from rtCamp from your ', 'rtmedia' ) . ' <a href="https://rtcamp.com/my-account/" target="_blank">' . __( 'account', "rtmedia" ) . '</a>. <a href="#" onclick="rtmedia_hide_addon_update_notice()" style="float:right">Hide</a> </p>
173
+ </div>';
174
+ }
175
+
176
+ ?>
177
+ <script type="text/javascript">
178
+ function rtmedia_hide_addon_update_notice() {
179
+ var data = {
180
+ action: 'rtmedia_hide_addon_update_notice'
181
+ };
182
+ jQuery.post( ajaxurl, data, function ( response ) {
183
+ response = response.trim();
184
+ if ( response === "1" )
185
+ jQuery( '.rtmedia-addon-upate-notice' ).remove();
186
+ } );
187
+ }
188
+ </script>
189
+ <?php
190
+ }
191
+ }
192
+
193
+ function check_for_addon_update_notice() {
194
+ $return_falg = false;
195
+ if ( defined( 'RTMEDIA_INSTAGRAM_PATH' ) ){
196
+ $plugin_info = get_plugin_data( RTMEDIA_INSTAGRAM_PATH . 'index.php' );
197
+ if ( isset( $plugin_info[ 'Version' ] ) && $plugin_info[ 'Version' ] < "2.1.2" ){
198
+ $return_falg = true;
199
+ }
200
+ } else {
201
+ if ( defined( 'RTMEDIA_PHOTO_TAGGING_PATH' ) ){
202
+ $plugin_info = get_plugin_data( RTMEDIA_PHOTO_TAGGING_PATH . 'index.php' );
203
+ if ( isset( $plugin_info[ 'Version' ] ) && $plugin_info[ 'Version' ] < "2.2.1" ){
204
+ $return_falg = true;
205
+ }
206
+ } else {
207
+ if ( defined( 'RTMEDIA_PRO_PATH' ) ){
208
+ $plugin_info = get_plugin_data( RTMEDIA_PRO_PATH . 'index.php' );
209
+ if ( isset( $plugin_info[ 'Version' ] ) && $plugin_info[ 'Version' ] < "1.8.1" ){
210
+ $return_falg = true;
211
+ }
212
+ } else {
213
+ if ( defined( 'RTMEDIA_FFMPEG_PATH' ) ){
214
+ $plugin_info = get_plugin_data( RTMEDIA_FFMPEG_PATH . 'index.php' );
215
+ if ( isset( $plugin_info[ 'Version' ] ) && $plugin_info[ 'Version' ] < "2.1.1" ){
216
+ $return_falg = true;
217
+ }
218
+ } else {
219
+ if ( defined( 'RTMEDIA_KALTURA_PATH' ) ){
220
+ $plugin_info = get_plugin_data( RTMEDIA_KALTURA_PATH . 'index.php' );
221
+ if ( isset( $plugin_info[ 'Version' ] ) && $plugin_info[ 'Version' ] < "3.0.3" ){
222
+ $return_falg = true;
223
+ }
224
+ }
225
+ }
226
+ }
227
+ }
228
+ }
229
+
230
+ return $return_falg;
231
+ }
232
+
233
+ function bp_admin_tabs() {
234
+ if ( current_user_can( 'manage_options' ) ){
235
+ add_action( 'bp_admin_tabs', array( $this, 'tab' ) );
236
+ }
237
+ }
238
+
239
+ function rtmedia_advertisement() {
240
+ $src = RTMEDIA_URL . "app/assets/img/rtMedia-pro-ad.png"
241
+ ?>
242
+ <div class='rtmedia-admin-ad'>
243
+ <a href='http://rtcamp.com/store/rtmedia-pro/' target='_blank' title='rtMedia Pro'>
244
+ <img src='<?php echo $src; ?>' alt="<?php _e( 'rtMedia Pro is released', 'rtmedia' ); ?>"/>
245
+ </a>
246
+ </div>
247
+ <?php
248
+ }
249
+
250
+ // Create the function to output the contents of our Dashboard Widget
251
+
252
+ function rtMedia_dashboard_widget_function() {
253
+ ?>
254
+
255
+ <div class="inside">
256
+
257
+ <div class="table table_content">
258
+ <p class="sub"><?php _e( "Media Stats" ); ?></p>
259
+ <table>
260
+ <tbody> <?php
261
+ $rtMedia_model = new RTMediaModel();
262
+ $sql = "select media_type, count(id) as count from {$rtMedia_model->table_name} where blog_id='" . get_current_blog_id() . "' group by media_type";
263
+ global $wpdb;
264
+ $results = $wpdb->get_results( $sql );
265
+ if ( $results ){
266
+ foreach ( $results as $media ) {
267
+ if ( defined( strtoupper( 'RTMEDIA_' . $media->media_type . '_PLURAL_LABEL' ) ) ){
268
+ ?>
269
+ <tr>
270
+ <td class="b"> <?php echo $media->count; ?> </td>
271
+ <td class="t"><?php echo constant( strtoupper( 'RTMEDIA_' . $media->media_type . '_PLURAL_LABEL' ) ); ?></td>
272
+ </tr>
273
+ <?php
274
+ }
275
+ }
276
+ }
277
+ ?>
278
+ </tbody>
279
+ </table>
280
+ </div>
281
+ <div class="table table_discussion">
282
+ <p class="sub"><?php _e( 'Usage Stats', 'rtmedia' ); ?></p>
283
+ <table>
284
+ <tbody> <?php
285
+ $sql = "select count(*) from {$wpdb->users}";
286
+ $results = $wpdb->get_var( $sql );
287
+ ?>
288
+ <tr>
289
+ <td class="b"> <?php echo $results; ?> </td>
290
+ <td class="t"><?php _e( 'Total ', 'rtmedia' ) ?></td>
291
+ </tr>
292
+ <?php
293
+ $sql = "select count(distinct media_author) from {$rtMedia_model->table_name}";
294
+ $results = $wpdb->get_var( $sql );
295
+ ?>
296
+ <tr>
297
+ <td class="b"> <?php echo $results; ?> </td>
298
+ <td class="t"><?php _e( 'With Media', 'rtmedia' ) ?></td>
299
+ </tr>
300
+ <?php
301
+ $sql = "select count(*) from $wpdb->comments where comment_post_ID in (select media_id from {$rtMedia_model->table_name})";
302
+ $results = $wpdb->get_var( $sql );
303
+ ?>
304
+ <tr>
305
+ <td class="b"> <?php echo $results; ?> </td>
306
+ <td class="t"><?php _e( 'Comments ', 'rtmedia' ) ?></td>
307
+ </tr>
308
+ <?php
309
+ $sql = "select sum(likes) from {$rtMedia_model->table_name}";
310
+ $results = $wpdb->get_var( $sql );
311
+ ?>
312
+ <tr>
313
+ <td class="b"> <?php echo $results; ?> </td>
314
+ <td class="t"><?php _e( 'Likes', 'rtmedia' ) ?></td>
315
+ </tr>
316
+
317
+ </tbody>
318
+ </table>
319
+ </div>
320
+ <div class="versions">
321
+ <p>
322
+ <b>rtMedia Links:</b> <a href="http://rtcamp.com"><?php _e( 'Homepage', 'rtmedia' ); ?></a> | <a
323
+ href="admin.php?page=rtmedia-support#rtmedia-general"><?php _e( 'Free Support', 'rtmedia' ); ?></a>
324
+ | <a href="http://rtcamp.com/rtmedia/addons/"><?php _e( 'Premium Addons', 'rtmedia' ); ?></a>
325
+ </p>
326
+ </div>
327
+ </div>
328
+ <?php
329
+ }
330
+
331
+ // Create the function use in the action hook
332
+
333
+ function add_dashboard_widgets() {
334
+ wp_add_dashboard_widget( 'rtmedia_dashboard_widget', __( 'Right Now in rtMedia', 'rtmedia' ), array( &$this, 'rtMedia_dashboard_widget_function' ) );
335
+ global $wp_meta_boxes;
336
+
337
+ // Get the regular dashboard widgets array
338
+ // (which has our new widget already but at the end)
339
+
340
+ $normal_dashboard = $wp_meta_boxes[ 'dashboard' ][ 'normal' ][ 'core' ];
341
+
342
+ // Backup and delete our new dashboard widget from the end of the array
343
+
344
+ $example_widget_backup = array( 'rtmedia_dashboard_widget' => $normal_dashboard[ 'rtmedia_dashboard_widget' ] );
345
+ unset ( $normal_dashboard[ 'rtmedia_dashboard_widget' ] );
346
+
347
+ // Merge the two arrays together so our widget is at the beginning
348
+
349
+ $sorted_dashboard = array_merge( $example_widget_backup, $normal_dashboard );
350
+
351
+ // Save the sorted array back into the original metaboxes
352
+
353
+ $wp_meta_boxes[ 'dashboard' ][ 'normal' ][ 'core' ] = $sorted_dashboard;
354
+ }
355
+
356
+ function plugin_add_settings_link( $links ) {
357
+ $settings_link = '<a href="' . admin_url( 'admin.php?page=rtmedia-settings' ) . '">Settings</a>';
358
+ array_push( $links, $settings_link );
359
+ $settings_link = '<a href="' . admin_url( 'admin.php?page=rtmedia-support' ) . '">Support</a>';
360
+ array_push( $links, $settings_link );
361
+
362
+ return $links;
363
+ }
364
+
365
+ function add_reencode_link( $actions, $post ) {
366
+
367
+ $mime_type_array = explode( "/", $post->post_mime_type );
368
+ if ( is_array( $mime_type_array ) && $mime_type_array != "" && $mime_type_array[ 0 ] == "video" ){
369
+ $actions[ 'reencode' ] = "<a class='submitdelete' onclick='return rtmedia_regenerate_thumbs(" . $post->ID . ")' href='#'>" . __( 'Regenerate Thumbnail', 'rtmedia' ) . "</a>";
370
+ }
371
+
372
+ return $actions;
373
+ }
374
+
375
+ function bulk_action_handler() {
376
+ if ( $_REQUEST[ 'action' ] == "bulk_video_regenerate_thumbnails" && $_REQUEST[ 'media' ] != "" ){
377
+ wp_safe_redirect( add_query_arg( array( "media_ids" => urlencode( implode( ",", $_REQUEST[ "media" ] ) ) ), admin_url( "admin.php?page=rtmedia-regenerate" ) ) );
378
+ exit;
379
+ }
380
+ }
381
+
382
+ function admin_bar_menu( $admin_bar ) {
383
+ if ( ! current_user_can( 'manage_options' ) ){
384
+ return;
385
+ }
386
+
387
+ $admin_bar->add_menu( array(
388
+ 'id' => 'rtMedia', 'title' => 'rtMedia', 'href' => admin_url( 'admin.php?page=rtmedia-settings' ), 'meta' => array(
389
+ 'title' => __( 'rtMedia', 'rtmedia' ),
390
+ ),
391
+ ) );
392
+ $admin_bar->add_menu( array(
393
+ 'id' => 'rt-media-dashborad', 'parent' => 'rtMedia', 'title' => __( 'Settings', 'rtmedia' ), 'href' => admin_url( 'admin.php?page=rtmedia-settings' ), 'meta' => array(
394
+ 'title' => __( 'Settings', 'rtmedia' ), 'target' => '_self',
395
+ ),
396
+ ) );
397
+ $admin_bar->add_menu( array(
398
+ 'id' => 'rt-media-addons', 'parent' => 'rtMedia', 'title' => __( 'Addons', "rtmedia" ), 'href' => admin_url( 'admin.php?page=rtmedia-addons' ), 'meta' => array(
399
+ 'title' => __( 'Addons', 'rtmedia' ), 'target' => '_self',
400
+ ),
401
+ ) );
402
+ $admin_bar->add_menu( array(
403
+ 'id' => 'rt-media-support', 'parent' => 'rtMedia', 'title' => __( 'Support', 'rtmedia' ), 'href' => admin_url( 'admin.php?page=rtmedia-support' ), 'meta' => array(
404
+ 'title' => __( 'Support', 'rtmedia' ), 'target' => '_self',
405
+ ),
406
+ ) );
407
+ $admin_bar->add_menu( array(
408
+ 'id' => 'rt-media-themes', 'parent' => 'rtMedia', 'title' => __( 'Themes', 'rtmedia' ), 'href' => admin_url( 'admin.php?page=rtmedia-themes' ), 'meta' => array(
409
+ 'title' => __( 'Themes', 'rtmedia' ), 'target' => '_self',
410
+ ),
411
+ ) );
412
+ $admin_bar->add_menu( array(
413
+ 'id' => 'rt-media-hire-us', 'parent' => 'rtMedia', 'title' => __( 'Hire Us', 'rtmedia' ), 'href' => admin_url( 'admin.php?page=rtmedia-hire-us' ), 'meta' => array(
414
+ 'title' => __( 'Hire Us', 'rtmedia' ), 'target' => '_self',
415
+ ),
416
+ ) );
417
+ }
418
+
419
+ /**
420
+ * Generates the Admin UI.
421
+ *
422
+ * @param string $hook
423
+ */
424
+
425
+ /**
426
+ *
427
+ * @param type $hook
428
+ */
429
+ public function ui( $hook ) {
430
+ $admin_pages = array(
431
+ 'rtmedia_page_rtmedia-migration', 'rtmedia_page_rtmedia-kaltura-settings', 'rtmedia_page_rtmedia-ffmpeg-settings', 'toplevel_page_rtmedia-settings', 'rtmedia_page_rtmedia-addons', 'rtmedia_page_rtmedia-support', 'rtmedia_page_rtmedia-themes', 'rtmedia_page_rtmedia-hire-us', 'rtmedia_page_rtmedia-importer', 'rtmedia_page_rtmedia-regenerate', 'rtmedia_page_rtmedia-premium'
432
+ );
433
+ $admin_pages = apply_filters( 'rtmedia_filter_admin_pages_array', $admin_pages );
434
+ if ( in_array( $hook, $admin_pages ) || strpos( $hook, 'rtmedia-migration' ) ){
435
+ $admin_ajax = admin_url( 'admin-ajax.php' );
436
+
437
+ wp_enqueue_script( 'bootstrap-switch', RTMEDIA_URL . 'app/assets/js/bootstrap-switch.js', array( 'jquery' ), RTMEDIA_VERSION );
438
+ wp_enqueue_script( 'slider-tabs', RTMEDIA_URL . 'app/assets/js/jquery.sliderTabs.min.js', array( 'jquery', 'jquery-effects-core' ), RTMEDIA_VERSION );
439
+ wp_enqueue_script( 'observe-hashchange', RTMEDIA_URL . 'app/assets/js/jquery.observehashchange.pack.js', array( 'jquery' ), RTMEDIA_VERSION );
440
+ wp_enqueue_script( 'rtmedia-admin', RTMEDIA_URL . 'app/assets/js/admin.js', array( 'jquery-ui-dialog' ), RTMEDIA_VERSION );
441
+ wp_localize_script( 'rtmedia-admin', 'rtmedia_on_label', __( 'ON', 'rtmedia' ) );
442
+ wp_localize_script( 'rtmedia-admin', 'rtmedia_off_label', __( 'OFF', 'rtmedia' ) );
443
+ wp_localize_script( 'rtmedia-admin', 'rtmedia_admin_ajax', $admin_ajax );
444
+ wp_localize_script( 'rtmedia-admin', 'rtmedia_admin_url', admin_url() );
445
+ wp_localize_script( 'rtmedia-admin', 'rtmedia_admin_url', admin_url() );
446
+ if ( isset( $_REQUEST[ 'page' ] ) && ( in_array( $_REQUEST[ 'page' ], array( "rtmedia-settings", "rtmedia-addons", "rtmedia-themes", "rtmedia-support", "rtmedia-hire-us" ) ) ) ){
447
+ wp_enqueue_script( 'rtmedia-foundation-modernizr', RTMEDIA_URL . 'lib/foundation/custom.modernizr.js', array( 'jquery' ), RTMEDIA_VERSION );
448
+ wp_enqueue_script( 'rtmedia-foundation', RTMEDIA_BOWER_COMPONENTS_URL . 'js/foundation.js', array( 'jquery' ), RTMEDIA_VERSION );
449
+ //wp_enqueue_script ( 'rtmedia-foundation-section', RTMEDIA_URL . 'lib/foundation/foundation.section.js', array('jquery'), RTMEDIA_VERSION );
450
+ }
451
+
452
+ $rtmedia_admin_strings = array(
453
+ 'no_refresh' => __( 'Please do not refresh this page.', 'rtmedia' ), 'something_went_wrong' => __( 'Something went wronng. Please <a href onclick="location.reload();">refresh</a> page.', 'rtmedia' ), 'are_you_sure' => __( 'This will subscribe you to the free plan.', 'rtmedia' ), 'disable_encoding' => __( 'Are you sure you want to disable the encoding service? Make sure you note your api key before disabling it incase you want to activate it in future.', 'rtmedia' )
454
+ );
455
+ wp_localize_script( 'rtmedia-admin', 'rtmedia_admin_strings', $rtmedia_admin_strings );
456
+ wp_localize_script( 'rtmedia-admin', 'settings_url', add_query_arg( array( 'page' => 'rtmedia-settings' ), ( is_multisite() ? network_admin_url( 'admin.php' ) : admin_url( 'admin.php' ) ) ) . '#privacy_enabled' );
457
+ wp_localize_script( 'rtmedia-admin', 'settings_rt_album_import_url', add_query_arg( array( 'page' => 'rtmedia-settings' ), ( is_multisite() ? network_admin_url( 'admin.php' ) : admin_url( 'admin.php' ) ) ) );
458
+ wp_enqueue_style( 'font-awesome', RTMEDIA_URL . 'app/assets/css/font-awesome.min.css', '', RTMEDIA_VERSION );
459
+ wp_enqueue_style( 'bootstrap-switch', RTMEDIA_URL . 'app/assets/css/bootstrap-switch.css', '', RTMEDIA_VERSION );
460
+ wp_enqueue_style( 'slider-tabs', RTMEDIA_URL . 'app/assets/css/jquery.sliderTabs.min.css', '', RTMEDIA_VERSION );
461
+ wp_enqueue_style( 'grid-foundation', RTMEDIA_URL . 'app/assets/css/grid-foundation.css', '', RTMEDIA_VERSION );
462
+ wp_enqueue_style( 'rtmedia-main', RTMEDIA_URL . 'app/assets/css/main.css', '', RTMEDIA_VERSION );
463
+ wp_enqueue_style( 'rtmedia-admin', RTMEDIA_URL . 'app/assets/css/admin.css', '', RTMEDIA_VERSION );
464
+ if ( isset( $_REQUEST[ 'page' ] ) && ( in_array( $_REQUEST[ 'page' ], array( "rtmedia-settings", "rtmedia-addons", "rtmedia-themes", "rtmedia-support", "rtmedia-hire-us" ) ) ) ){
465
+ wp_enqueue_style( 'foundation-admin-css', RTMEDIA_URL . 'app/assets/css/settings.css', '', RTMEDIA_VERSION );
466
+ }
467
+ wp_enqueue_style( 'wp-jquery-ui-dialog' );
468
+ } else {
469
+ wp_enqueue_style( 'rtmedia-widget', RTMEDIA_URL . 'app/assets/css/widget.css', '', RTMEDIA_VERSION );
470
+ }
471
+ }
472
+
473
+ /**
474
+ * Admin Menu
475
+ *
476
+ * @global string 'rtmedia'
477
+ */
478
+ public function menu() {
479
+ add_menu_page( 'rtMedia', 'rtMedia', 'manage_options', 'rtmedia-settings', array( $this, 'settings_page' ), RTMEDIA_URL . "app/assets/img/rtmedia-logo.png", "40.1111" );
480
+ add_submenu_page( 'rtmedia-settings', __( 'Settings', 'rtmedia' ), __( 'Settings', 'rtmedia' ), 'manage_options', 'rtmedia-settings', array( $this, 'settings_page' ) );
481
+ add_submenu_page( 'rtmedia-settings', __( 'Addons', 'rtmedia' ), __( 'Addons', 'rtmedia' ), 'manage_options', 'rtmedia-addons', array( $this, 'addons_page' ) );
482
+ add_submenu_page( 'rtmedia-settings', __( 'Support', 'rtmedia' ), __( 'Support', 'rtmedia' ), 'manage_options', 'rtmedia-support', array( $this, 'support_page' ) );
483
+ add_submenu_page( 'rtmedia-settings', __( 'Themes', 'rtmedia' ), __( 'Themes', 'rtmedia' ), 'manage_options', 'rtmedia-themes', array( $this, 'theme_page' ) );
484
+ add_submenu_page( 'rtmedia-settings', __( 'Hire Us', 'rtmedia' ), __( 'Hire Us', 'rtmedia' ), 'manage_options', 'rtmedia-hire-us', array( $this, 'hire_us_page' ) );
485
+ if ( ! defined( "RTMEDIA_PRO_VERSION" ) ){
486
+ add_submenu_page( 'rtmedia-settings', __( 'Premium', 'rtmedia' ), __( 'Premium ', 'rtmedia' ), 'manage_options', 'rtmedia-premium', array( $this, 'premium_page' ) );
487
+ }
488
+
489
+ $obj_encoding = new RTMediaEncoding( true );
490
+ if ( $obj_encoding->api_key ){
491
+ add_submenu_page( 'rtmedia-settings', __( 'Regenerate Thumbnail', 'rtmedia' ), __( 'Regen. Thumbnail ', 'rtmedia' ), 'manage_options', 'rtmedia-regenerate', array( $this, 'rt_regenerate_thumbnail' ) );
492
+ }
493
+
494
+ // add_submenu_page('rtmedia-settings', __('Importer', 'rtmedia'), __('Importer', 'rtmedia'), 'manage_options', 'rtmedia-importer', array($this, 'rt_importer_page'));
495
+ // if (!BPMediaPrivacy::is_installed()) {
496
+ // add_submenu_page('rtmedia-settings', __('rtMedia Database Update', 'rtmedia'), __('Update Database', 'rtmedia'), 'manage_options', 'rtmedia-db-update', array($this, 'privacy_page'));
497
+ // }
498
+ }
499
+
500
+ function rt_regenerate_thumbnail() {
501
+ $prog = new rtProgress();
502
+ $done = 0;
503
+ ?>
504
+ <div class="wrap">
505
+ <h2> <?php _e( 'Regenerate Video Thumbnails', 'rtmedia' ); ?> </h2>
506
+ <?php
507
+ if ( isset( $_REQUEST[ "media_ids" ] ) && trim( $_REQUEST[ "media_ids" ] ) != "" ){
508
+ $requested = false;
509
+ $media_ids = explode( ',', $_REQUEST[ "media_ids" ] );
510
+ $total = count( $media_ids );
511
+ } else {
512
+ $media_ids = $this->get_video_without_thumbs();
513
+ $total = count( $media_ids );
514
+ }
515
+ ?>
516
+ <script>
517
+ var rt_thumb_all_media = <?php echo json_encode($media_ids); ?>;
518
+ </script>
519
+ <?php
520
+ if ( ! isset( $requested ) ){
521
+ ?>
522
+ <br/> <br/>
523
+ <input type="button" class="button button-primary" id="rt-start-media-regenerate"
524
+ value="<?php _e( 'Regenerate Pending Thumbnails', 'rtmedia' ); ?>"/>
525
+ <?php } ?>
526
+ <div id="rt-migration-progress">
527
+ <br/> <br/>
528
+ <?php
529
+ $temp = $prog->progress( $done, $total );
530
+ $prog->progress_ui( $temp, true );
531
+ ?>
532
+ <p> <?php _e( 'Total Videos', 'rtmedia' ) ?> : <span class='rt-total'><?php echo $total; ?></span>
533
+ </p>
534
+
535
+ <p> <?php _e( 'Sent of regenerate thumbails', 'rtmedia' ) ?> : <span class='rt-done'>0</span></p>
536
+
537
+ <p> <?php _e( 'Fail to regenerate thumbails', 'rtmedia' ) ?> : <span class='rt-fail'>0</span></p>
538
+
539
+ </div>
540
+ <?php
541
+
542
+ ?>
543
+ <script>
544
+
545
+ var db_done = 0;
546
+ var db_fail = 0;
547
+ var db_total = <?php echo $total; ?>;
548
+ var indx = 0;
549
+ function db_start_regenrate() {
550
+ if ( indx < db_total ) {
551
+ jQuery.ajax( {
552
+ url: rtmedia_admin_ajax,
553
+ type: 'post',
554
+ data: {
555
+ "action": "rt_media_regeneration",
556
+ "media_id": rt_thumb_all_media[indx++]
557
+ },
558
+ success: function ( data ) {
559
+ data = JSON.parse( data );
560
+
561
+ if ( data.status == false ) {
562
+ handle_regenrate_fail();
563
+ } else {
564
+ db_done++;
565
+ var progw = Math.ceil( (db_done / db_total) * 100 );
566
+ if ( progw > 100 ) {
567
+ progw = 100;
568
+ }
569
+ jQuery( '#rtprogressbar>div' ).css( 'width', progw + '%' );
570
+ jQuery( 'span.rt-done' ).html( db_done );
571
+ db_start_regenrate();
572
+ }
573
+ },
574
+ error: function () {
575
+ handle_regenrate_fail();
576
+ }
577
+ } );
578
+ } else {
579
+ alert( "<?php _e( 'Regenerate Video Thumbnails Done', 'rtmedia' ); ?>" );
580
+ }
581
+ }
582
+ function handle_regenrate_fail() {
583
+ db_fail++;
584
+ jQuery( 'span.rt-fail' ).html( db_fail );
585
+ db_start_regenrate();
586
+ }
587
+ if ( jQuery( "#rt-start-media-regenerate" ).length > 0 ) {
588
+ jQuery( "#rt-migration-progress" ).hide()
589
+ jQuery( "#rt-start-media-regenerate" ).click( function () {
590
+ jQuery( this ).hide();
591
+ jQuery( "#rt-migration-progress" ).show()
592
+ db_start_regenrate();
593
+ } )
594
+ } else {
595
+ db_start_regenrate();
596
+ }
597
+
598
+ </script>
599
+
600
+
601
+ </div> <?php
602
+ }
603
+
604
+ function rtmedia_regenerate_thumbnail_notice() {
605
+ $obj_encoding = new RTMediaEncoding( true );
606
+ if ( $obj_encoding->api_key ){
607
+ $site_option = rtmedia_get_site_option( "rtmedia-video-thumb-notice" );
608
+ if ( ! $site_option || $site_option != "hide" ){
609
+ rtmedia_update_site_option( "rtmedia-video-thumb-notice", "show" );
610
+ $videos_without_thumbs = get_video_without_thumbs();
611
+ if ( isset( $videos_without_thumbs ) && is_array( $videos_without_thumbs ) && sizeof( $videos_without_thumbs ) > 0 ){
612
+ echo '<div class="error rtmedia-regenerate-video-thumb-error">
613
+ <p>
614
+ ' . sprintf( __( "You have total %s videos without thumbnails. Click <a href='%s'> here </a> to generate thumbnails. <a href='#' onclick='rtmedia_hide_video_thumb_notice()' style='float:right'>Hide</a>", 'rtmedia' ), sizeof( $videos_without_thumbs ), admin_url( 'admin.php?page=rtmedia-regenerate' ) ) . '
615
+ </p>
616
+ </div>';
617
+
618
+ ?>
619
+ <script type="text/javascript">
620
+ function rtmedia_hide_video_thumb_notice() {
621
+ var data = {action: 'rtmedia_hide_video_thumb_admin_notice'};
622
+ jQuery.post( ajaxurl, data, function ( response ) {
623
+ response = response.trim();
624
+ if ( response === "1" )
625
+ jQuery( '.rtmedia-regenerate-video-thumb-error' ).remove();
626
+ } );
627
+ }
628
+ </script>
629
+ <?php
630
+ }
631
+ }
632
+ }
633
+ }
634
+
635
+ function rtmedia_hide_video_thumb_admin_notice() {
636
+ if ( rtmedia_update_site_option( "rtmedia-video-thumb-notice", "hide" ) ){
637
+ echo "1";
638
+ } else {
639
+ echo "0";
640
+ }
641
+ die();
642
+ }
643
+
644
+ function rtmedia_hide_addon_update_notice() {
645
+ if ( rtmedia_update_site_option( "rtmedia-addon-update-notice", "hide" ) ){
646
+ echo "1";
647
+ } else {
648
+ echo "0";
649
+ }
650
+ die();
651
+ }
652
+
653
+ function rt_media_regeneration() {
654
+ if ( isset( $_POST[ 'media_id' ] ) ){
655
+ $model = new RTMediaModel();
656
+ $media = $model->get_media( array( 'media_id' => $_POST[ 'media_id' ] ), 0, 1 );
657
+ $media_type = $media[ 0 ]->media_type;
658
+ $response = array();
659
+ if ( $media_type == "video" ){
660
+ $objRTMediaEncoding = new RTMediaEncoding( true );
661
+ $autoformat = "thumbnails";
662
+ $objRTMediaEncoding->reencoding( intval( $_POST[ 'media_id' ] ), $autoformat );
663
+ $response[ 'status' ] = true;
664
+ } else {
665
+ $response[ 'status' ] = false;
666
+ $response[ 'message' ] = __( 'not a video ...', 'rtmedia' );
667
+ }
668
+ echo json_encode( $response );
669
+ die();
670
+ }
671
+ }
672
+
673
+
674
+ function get_video_without_thumbs() {
675
+ $rtmedia_model = new RTMediaModel();
676
+ $sql = "select media_id from {$rtmedia_model->table_name} where media_type = 'video' and blog_id = '" . get_current_blog_id() . "' and cover_art is null";
677
+ global $wpdb;
678
+ $results = $wpdb->get_col( $sql );
679
+
680
+ return $results;
681
+ }
682
+
683
+ /**
684
+ * Render the BuddyPress Media Settings page
685
+ */
686
+ public function settings_page() {
687
+ $this->render_page( 'rtmedia-settings', 'rtmedia' );
688
+ }
689
+
690
+ public function privacy_page() {
691
+ $this->render_page( 'rtmedia-privacy' );
692
+ }
693
+
694
+ public function rt_importer_page() {
695
+ $this->render_page( 'rtmedia-importer' );
696
+ }
697
+
698
+ public function convert_videos_page() {
699
+ $this->render_page( 'rtmedia-convert-videos' );
700
+ }
701
+
702
+ /**
703
+ * Render the BuddyPress Media Addons page
704
+ */
705
+ public function addons_page() {
706
+ $this->render_page( 'rtmedia-addons' );
707
+ }
708
+
709
+ /**
710
+ * Render the BuddyPress Media Support page
711
+ */
712
+ public function support_page() {
713
+ $this->render_page( 'rtmedia-support' );
714
+ }
715
+
716
+ public function premium_page() {
717
+ $this->render_page( 'rtmedia-premium' );
718
+ }
719
+
720
+ public function theme_page() {
721
+ $this->render_page( 'rtmedia-themes' );
722
+ }
723
+
724
+ public function hire_us_page() {
725
+ $this->render_page( 'rtmedia-hire-us' );
726
+ }
727
+
728
+ /**
729
+ *
730
+ * @return type
731
+ */
732
+ static function get_current_tab() {
733
+ return isset ( $_GET[ 'page' ] ) ? $_GET[ 'page' ] : "rtmedia-settings";
734
+ }
735
+
736
+ /**
737
+ * Render BPMedia Settings
738
+ *
739
+ * @global string 'rtmedia'
740
+ */
741
+
742
+ /**
743
+ *
744
+ * @param type $page
745
+ * @param type $option_group
746
+ */
747
+ public function render_page( $page, $option_group = null ) {
748
+ ?>
749
+
750
+ <div class="wrap bp-media-admin <?php echo $this->get_current_tab(); ?>">
751
+ <div id="icon-buddypress-media" class="icon32"><br></div>
752
+ <div>
753
+ <h2 class="nav-tab-wrapper"><?php $this->rtmedia_tabs(); ?>
754
+ <span class="alignright by"><a class="rt-link"
755
+ href="http://rtcamp.com/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media"
756
+ target="_blank"
757
+ title="rtCamp : <?php _e( 'Empowering The Web With WordPress', 'rtmedia' ); ?>"><img
758
+ src="<?php echo RTMEDIA_URL; ?>app/assets/img/rtcamp-logo.png"></a></span>
759
+ </h2>
760
+ </div>
761
+
762
+
763
+ <?php //settings_errors (); ?>
764
+ <div class="row bp-media-settings-boxes-container">
765
+ <div id="bp-media-settings-boxes" class="columns large-9">
766
+
767
+ <?php
768
+ $settings_url = ( is_multisite() ) ? network_admin_url( 'edit.php?action=' . $option_group ) : 'options.php';
769
+ ?>
770
+ <?php if ( $option_group ){ //$option_group if ($page == "bp-media-settings") action="<?php echo $settings_url; ?>
771
+ <form id="bp_media_settings_form" name="bp_media_settings_form" method="post"
772
+ enctype="multipart/form-data">
773
+ <div class="bp-media-metabox-holder"><?php
774
+ settings_fields( $option_group );
775
+ if ( $page == "rtmedia-settings" ){
776
+
777
+
778
+ echo '<div id="rtm-settings-tabs">';
779
+ $sub_tabs = $this->settings_sub_tabs();
780
+ RTMediaFormHandler::rtForm_settings_tabs_content( $page, $sub_tabs );
781
+ echo '</div>';
782
+ } else {
783
+ do_settings_sections( $page );
784
+ }
785
+ ?>
786
+ <div class="clearfix">&nbsp;</div>
787
+ <div class="row">
788
+ <input type="hidden" name="rtmedia-options-save" value="true">
789
+ <input type="submit" id="rtmedia-settings-submit"
790
+ class="rtmedia-settings-submit button button-primary button-big"
791
+ value="<?php _e( 'Save Settings', 'rtmedia' ); ?>">
792
+ </div>
793
+ </div>
794
+ </form><?php
795
+ } else {
796
+ ?>
797
+ <div class="bp-media-metabox-holder">
798
+
799
+ <?php
800
+ if ( $page == 'rtmedia-addons' ){
801
+ RTMediaAddon::render_addons( $page );
802
+ } else {
803
+ if ( $page == 'rtmedia-support' ){
804
+ $rtmedia_support = new RTMediaSupport( false );
805
+ $rtmedia_support->render_support( $page );
806
+ } else {
807
+ if ( $page == 'rtmedia-themes' ){
808
+ RTMediaThemes::render_themes( $page );
809
+ } else {
810
+ do_settings_sections( $page );
811
+ }
812
+ }
813
+ }
814
+ ?>
815
+ <?php
816
+ do_action( 'rtmedia_admin_page_insert', $page );
817
+ ?>
818
+ </div><?php
819
+ do_action( 'rtmedia_admin_page_append', $page );
820
+ }
821
+ ?>
822
+
823
+
824
+ </div>
825
+ <!-- .bp-media-settings-boxes -->
826
+ <div class="metabox-holder bp-media-metabox-holder columns large-3">
827
+ <?php $this->admin_sidebar(); ?>
828
+ </div>
829
+ </div>
830
+ <!-- .metabox-holder -->
831
+ </div><!-- .bp-media-admin --><?php
832
+ }
833
+
834
+ /**
835
+ * Adds a tab for Media settings in the BuddyPress settings page
836
+ *
837
+ * @global type $bp_media
838
+ */
839
+ public function tab() {
840
+
841
+ $tabs_html = '';
842
+ $idle_class = 'nav-tab';
843
+ $active_class = 'nav-tab nav-tab-active';
844
+ $tabs = array();
845
+
846
+ // Check to see which tab we are on
847
+ $tab = $this->get_current_tab();
848
+ /* rtMedia */
849
+ $tabs[ ] = array(
850
+ 'href' => get_admin_url( null, add_query_arg( array( 'page' => 'rtmedia-settings' ), 'admin.php' ) ), 'title' => __( 'rtMedia', 'rtmedia' ), 'name' => __( 'rtMedia', 'rtmedia' ), 'class' => ( $tab == 'rtmedia-settings' || $tab == 'rtmedia-addons' || $tab == 'rtmedia-support' || $tab == 'rtmedia-importer' ) ? $active_class : $idle_class
851
+ );
852
+
853
+
854
+ foreach ( $tabs as $tab ) {
855
+ $tabs_html .= '<a id="bp-media" title= "' . $tab[ 'title' ] . '" href="' . $tab[ 'href' ] . '" class="' . $tab[ 'class' ] . '">' . $tab[ 'name' ] . '</a>';
856
+ }
857
+ echo $tabs_html;
858
+ }
859
+
860
+ public function rtmedia_tabs( $active_tab = '' ) {
861
+ // Declare local variables
862
+ $tabs_html = '';
863
+ $idle_class = 'nav-tab';
864
+ $active_class = 'nav-tab nav-tab-active';
865
+
866
+ // Setup core admin tabs
867
+ $tabs = array(
868
+ array(
869
+ 'href' => get_admin_url( null, add_query_arg( array( 'page' => 'rtmedia-settings' ), 'admin.php' ) ), 'name' => __( 'Settings', 'rtmedia' ), 'slug' => 'rtmedia-settings'
870
+ ), array(
871
+ 'href' => get_admin_url( null, add_query_arg( array( 'page' => 'rtmedia-addons' ), 'admin.php' ) ), 'name' => __( 'Addons', 'rtmedia' ), 'slug' => 'rtmedia-addons'
872
+ ), array(
873
+ 'href' => get_admin_url( null, add_query_arg( array( 'page' => 'rtmedia-themes' ), 'admin.php' ) ), 'name' => __( 'Themes', 'rtmedia' ), 'slug' => 'rtmedia-themes'
874
+ ), array(
875
+ 'href' => get_admin_url( null, add_query_arg( array( 'page' => 'rtmedia-hire-us' ), 'admin.php' ) ), 'name' => __( 'Hire Us', 'rtmedia' ), 'slug' => 'rtmedia-hire-us'
876
+ ), array(
877
+ 'href' => get_admin_url( null, add_query_arg( array( 'page' => 'rtmedia-support' ), 'admin.php' ) ), 'name' => __( 'Support', 'rtmedia' ), 'slug' => 'rtmedia-support'
878
+ ), // array(
879
+ // 'href' => get_admin_url(null, add_query_arg(array('page' => 'rtmedia-importer'), 'admin.php')),
880
+ // 'name' => __('Importer', 'rtmedia'),
881
+ // 'slug' => 'rtmedia-importer'
882
+ // )
883
+
884
+ );
885
+
886
+ $tabs = apply_filters( 'media_add_tabs', $tabs );
887
+
888
+ // Loop through tabs and build navigation
889
+ foreach ( array_values( $tabs ) as $tab_data ) {
890
+ $is_current = ( bool )( $tab_data[ 'slug' ] == $this->get_current_tab() );
891
+ $tab_class = $is_current ? $active_class : $idle_class;
892
+ if ( isset( $tab_data[ 'class' ] ) && is_array( $tab_data[ 'class' ] ) ){
893
+ $tab_class .= " " . implode( " ", $tab_data[ 'class' ] );
894
+ }
895
+ $tabs_html .= '<a href="' . $tab_data[ 'href' ] . '" class="' . $tab_class . '">' . $tab_data[ 'name' ] . '</a>';
896
+ }
897
+
898
+ // Output the tabs
899
+ echo $tabs_html;
900
+
901
+ // // Do other fun things
902
+ // do_action('bp_media_admin_tabs');
903
+ }
904
+
905
+ public function settings_content_tabs( $page ) {
906
+ global $wp_settings_sections, $wp_settings_fields;
907
+
908
+ if ( ! isset ( $wp_settings_sections ) || ! isset ( $wp_settings_sections[ $page ] ) ){
909
+ return;
910
+ }
911
+
912
+ foreach ( ( array )$wp_settings_sections[ $page ] as $section ) {
913
+ if ( $section[ 'title' ] ){
914
+ echo "<h3>{$section['title']}</h3>\n";
915
+ }
916
+
917
+ if ( $section[ 'callback' ] ){
918
+ call_user_func( $section[ 'callback' ], $section );
919
+ }
920
+
921
+ if ( ! isset ( $wp_settings_fields ) || ! isset ( $wp_settings_fields[ $page ] ) || ! isset ( $wp_settings_fields[ $page ][ $section[ 'id' ] ] ) ){
922
+ continue;
923
+ }
924
+ echo '<table class="form-table">';
925
+ do_settings_fields( $page, $section[ 'id' ] );
926
+ echo '</table>';
927
+ }
928
+ }
929
+
930
+ /**
931
+ * Adds a sub tabs to the BuddyPress Media settings page
932
+ *
933
+ * @global type $bp_media
934
+ */
935
+ public function settings_sub_tabs() {
936
+ $tabs_html = '';
937
+ $tabs = array();
938
+
939
+ // Check to see which tab we are on
940
+ $tab = $this->get_current_tab();
941
+ /* rtMedia */
942
+
943
+ $tabs[ 7 ] = array(
944
+ 'href' => '#rtmedia-display', 'icon' => 'rtmicon-desktop', 'title' => __( 'Display', 'rtmedia' ), 'name' => __( 'Display', 'rtmedia' ), 'callback' => array( 'RTMediaFormHandler', 'display_content' )
945
+ );
946
+
947
+
948
+ if ( class_exists( "BuddyPress" ) ){
949
+ $tabs[ 20 ] = array(
950
+ 'href' => '#rtmedia-bp', 'icon' => 'rtmicon-group', 'title' => __( 'rtMedia BuddyPress', 'rtmedia' ), 'name' => __( 'BuddyPress', 'rtmedia' ), 'callback' => array( 'RTMediaFormHandler', 'buddypress_content' ) //change it to BuddyPress Content
951
+ );
952
+ }
953
+
954
+ $tabs[ 30 ] = array(
955
+ 'href' => '#rtmedia-types', 'icon' => 'rtmicon-film', 'title' => __( 'rtMedia Types', 'rtmedia' ), 'name' => __( 'Types', 'rtmedia' ), 'callback' => array( 'RTMediaFormHandler', 'types_content' )
956
+ );
957
+
958
+ $tabs[ 40 ] = array(
959
+ 'href' => '#rtmedia-sizes', 'icon' => 'rtmicon-expand', 'title' => __( 'rtMedia Sizes', 'rtmedia' ), 'name' => __( 'Image Sizes', 'rtmedia' ), 'callback' => array( 'RTMediaFormHandler', 'sizes_content' )
960
+ );
961
+
962
+ $tabs[ 50 ] = array(
963
+ 'href' => '#rtmedia-privacy', 'icon' => 'rtmicon-lock', 'title' => __( 'rtMedia Privacy', 'rtmedia' ), 'name' => __( 'Privacy', 'rtmedia' ), 'callback' => array( 'RTMediaFormHandler', 'privacy_content' )
964
+ );
965
+ $tabs[ 60 ] = array(
966
+ 'href' => '#rtmedia-custom-css-settings', 'icon' => 'rtmicon-css3', 'title' => __( 'rtMedia Custom CSS', 'rtmedia' ), 'name' => __( 'Custom CSS', 'rtmedia' ), 'callback' => array( 'RTMediaFormHandler', 'custom_css_content' )
967
+ );
968
+
969
+ $tabs = apply_filters( 'rtmedia_add_settings_sub_tabs', $tabs, $tab );
970
+
971
+ $tabs[ ] = array(
972
+ 'href' => '#rtmedia-general', 'icon' => 'rtmicon-wrench', 'title' => __( 'Other Settings', 'rtmedia' ), 'name' => __( 'Other Settings', 'rtmedia' ), 'callback' => array( 'RTMediaFormHandler', 'general_content' )
973
+ );
974
+
975
+ return $tabs;
976
+ }
977
+
978
+ /*
979
+ * Updates the media count of all users.
980
+ */
981
+
982
+ /**
983
+ *
984
+ * @global type $wpdb
985
+ * @return boolean
986
+ */
987
+ public function update_count() {
988
+ global $wpdb;
989
+
990
+ $query = "SELECT
991
+ p.post_author,pmp.meta_value,
992
+ SUM(CASE WHEN post_mime_type LIKE 'image%' THEN 1 ELSE 0 END) as Images,
993
+ SUM(CASE WHEN post_mime_type LIKE 'music%' THEN 1 ELSE 0 END) as Music,
994
+ SUM(CASE WHEN post_mime_type LIKE 'video%' THEN 1 ELSE 0 END) as Videos,
995
+ SUM(CASE WHEN post_type LIKE 'bp_media_album' THEN 1 ELSE 0 END) as Albums
996
+ FROM
997
+ $wpdb->posts p inner join $wpdb->postmeta pm on pm.post_id = p.id INNER JOIN $wpdb->postmeta pmp
998
+ on pmp.post_id = p.id WHERE
999
+ pm.meta_key = 'bp-media-key' AND
1000
+ pm.meta_value > 0 AND
1001
+ pmp.meta_key = 'bp_media_privacy' AND
1002
+ ( post_mime_type LIKE 'image%' OR post_mime_type LIKE 'music%' OR post_mime_type LIKE 'video%' OR post_type LIKE 'bp_media_album')
1003
+ GROUP BY p.post_author,pmp.meta_value order by p.post_author";
1004
+ $result = $wpdb->get_results( $query );
1005
+ if ( ! is_array( $result ) ){
1006
+ return false;
1007
+ }
1008
+ $formatted = array();
1009
+ foreach ( $result as $obj ) {
1010
+ $formatted[ $obj->post_author ][ $obj->meta_value ] = array(
1011
+ 'image' => $obj->Images, 'video' => $obj->Videos, 'music' => $obj->Music, 'album' => $obj->Albums,
1012
+ );
1013
+ }
1014
+
1015
+ foreach ( $formatted as $user => $obj ) {
1016
+ update_user_meta( $user, 'rtmedia_count', $obj );
1017
+ }
1018
+
1019
+ return true;
1020
+ }
1021
+
1022
+ /* Multisite Save Options - http://wordpress.stackexchange.com/questions/64968/settings-api-in-multisite-missing-update-message#answer-72503 */
1023
+
1024
+ /**
1025
+ *
1026
+ * @global type $bp_media_admin
1027
+ */
1028
+ public function save_multisite_options() {
1029
+ global $rtmedia_admin;
1030
+ if ( isset ( $_POST[ 'refresh-count' ] ) ){
1031
+ $rtmedia_admin->update_count();
1032
+ }
1033
+ do_action( 'rtmedia_sanitize_settings', $_POST );
1034
+
1035
+ if ( isset ( $_POST[ 'rtmedia_options' ] ) ){
1036
+ rtmedia_update_site_option( 'rtmedia_options', $_POST[ 'rtmedia_options' ] );
1037
+ //
1038
+ // // redirect to settings page in network
1039
+ wp_redirect( add_query_arg( array( 'page' => 'rtmedia-settings', 'updated' => 'true' ), ( is_multisite() ? network_admin_url( 'admin.php' ) : admin_url( 'admin.php' ) ) ) );
1040
+ exit;
1041
+ }
1042
+ }
1043
+
1044
+ /* Admin Sidebar */
1045
+
1046
+ /**
1047
+ *
1048
+ * @global type $bp_media
1049
+ */
1050
+ public function admin_sidebar() {
1051
+ do_action( 'rtmedia_before_default_admin_widgets' );
1052
+ $current_user = wp_get_current_user();
1053
+ // echo '<p><a target="_blank" href="http://rtcamp.com/news/buddypress-media-review-contest/?utm_source=dashboard&#038;utm_medium=plugin&#038;utm_campaign=buddypress-media"><img src="' . RTMEDIA_URL . 'app/assets/img/bpm-contest-banner.jpg" alt="BuddyPress Media Review Contest" /></a></p>';
1054
+ // $contest = '<a target="_blank" href="http://rtcamp.com/news/buddypress-media-review-contest/?utm_source=dashboard&#038;utm_medium=plugin&#038;utm_campaign=buddypress-media"><img src="'.RTMEDIA_URL.'app/assets/img/bpm-contest-banner.jpg" alt="BuddyPress Media Review Contest" /></a>';
1055
+ // new BPMediaAdminWidget('bpm-contest', __('', 'rtmedia'), $contest);
1056
+ $setting_page_url = admin_url( 'admin.php?page=rtmedia-settings#rtmedia-general' );
1057
+ $message = sprintf( __( 'I use @buddypressmedia http://rt.cx/rtmedia on %s', 'rtmedia' ), home_url() );
1058
+ $addons = '<div id="social" class="">
1059
+ <div class="row">
1060
+ <div class="columns large-11">
1061
+ <p><a href="http://twitter.com/home/?status=' . $message . '" class="button" target= "_blank" title="' . __( 'Post to Twitter Now', 'rtmedia' ) . '">' . __( 'Post to Twitter', 'rtmedia' ) . '</a></p>
1062
+ <p><a href="https://www.facebook.com/sharer/sharer.php?u=http://rtcamp.com/buddypress-media/" class="button" target="_blank" title="' . __( 'Share on Facebook Now', 'rtmedia' ) . '">' . __( 'Share on Facebook', 'rtmedia' ) . '</a></p>
1063
+ <p><a href="http://wordpress.org/support/view/plugin-reviews/buddypress-media?rate=5#postform" class="button" target= "_blank" title="' . __( 'Rate rtMedia on Wordpress.org', 'rtmedia' ) . '">' . __( 'Rate on Wordpress.org', 'rtmedia' ) . '</a></p>
1064
+ <p><a href="' . sprintf( '%s', 'http://feeds.feedburner.com/rtcamp/' ) . '" title="' . __( 'Subscribe to our feeds', 'rtmedia' ) . '" class="button" target="_blank" title="' . __( 'Subscribe to our Feeds', 'rtmedia' ) . '">' . __( 'Subscribe to our Feeds', 'rtmedia' ) . '</a></p>
1065
+ <p><a href="' . $setting_page_url . '" title="' . __( 'Add link to footer', 'rtmedia' ) . '" class="button" title="' . __( 'Add link to footer', 'rtmedia' ) . '">' . __( 'Add link to footer', 'rtmedia' ) . '</a></p>
1066
+ </div>
1067
+ </div>
1068
+ </div>';
1069
+ //<li><a href="' . sprintf('%s', 'http://www.facebook.com/rtCamp.solutions/') . '" title="' . __('Become a fan on Facebook', 'rtmedia') . '" class="bp-media-facebook bp-media-social">' . __('Facebook', 'rtmedia') . '</a></li>
1070
+ //<li><a href="' . sprintf('%s', 'https://twitter.com/rtcamp/') . '" title="' . __('Follow us on Twitter', 'rtmedia') . '" class="bp-media-twitter bp-media-social">' . __('Twitter', 'rtmedia') . '</a></li> ;
1071
+ new RTMediaAdminWidget ( 'spread-the-word', __( 'Spread the Word', 'rtmedia' ), $addons );
1072
+
1073
+ // $donate = '<form action="https://www.paypal.com/cgi-bin/webscr" method="post">
1074
+ // <!-- Identify your business so that you can collect the payments. -->
1075
+ // <input type="hidden" name="business"
1076
+ // value="paypal@rtcamp.com">
1077
+ // <!-- Specify a Donate button. -->
1078
+ // <input type="hidden" name="cmd" value="_donations">
1079
+ // <!-- Specify details about the contribution -->
1080
+ // <input type="hidden" name="item_name" value="BuddyPress Media">
1081
+ // <label><b>' . __('USD', 'rtmedia') . '</b></label>
1082
+ // <input type="text" name="amount" size="3">
1083
+ // <input type="hidden" name="currency_code" value="USD">
1084
+ // <!-- Display the payment button. -->
1085
+ // <input type="hidden" name="cpp_header_image" value="' . RTMEDIA_URL . 'app/assets/img/rtcamp-logo.png">
1086
+ // <input type="image" id="rt-donate-button" name="submit" border="0"
1087
+ // src="' . RTMEDIA_URL . 'app/assets/img/paypal-donate-button.png"
1088
+ // alt="PayPal - The safer, easier way to pay online">
1089
+ // </form><br />
1090
+ // <center><b>' . __('OR', 'rtmedia') . '</b></center><br />
1091
+ // <center>' . __('Use <a href="https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&utm_medium=plugin&utm_campaign=buddypress-media">premium add-ons</a> starting from $9', 'rtmedia') . '</center>';
1092
+ // ;
1093
+ // new BPMediaAdminWidget('donate', __('Donate', 'rtmedia'), $donate);
1094
+
1095
+ $branding = '<form action="http://rtcamp.us1.list-manage1.com/subscribe/post?u=85b65c9c71e2ba3fab8cb1950&amp;id=9e8ded4470" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
1096
+ <div class="mc-field-group">
1097
+ <input type="email" value="' . $current_user->user_email . '" name="EMAIL" placeholder="Email" class="required email" id="mce-EMAIL">
1098
+ <input style="display:none;" type="checkbox" checked="checked" value="1" name="group[1721][1]" id="mce-group[1721]-1721-0">
1099
+ <div id="mce-responses" class="clear">
1100
+ <div class="response" id="mce-error-response" style="display:none"></div>
1101
+ <div class="response" id="mce-success-response" style="display:none"></div>
1102
+ </div>
1103
+ <input type="submit" value="' . __( 'Subscribe', 'rtmedia' ) . '" name="subscribe" id="mc-embedded-subscribe" class="button">
1104
+ </div>
1105
+ </form>';
1106
+ new RTMediaAdminWidget ( 'branding', __( 'Subscribe', 'rtmedia' ), $branding );
1107
+
1108
+ $news = '<img src ="' . admin_url( '/images/wpspin_light.gif' ) . '" /> Loading...';
1109
+ //new RTMediaAdminWidget ( 'latest-news', __( 'Latest News', 'rtmedia' ), $news );
1110
+ do_action( 'rtmedia_after_default_admin_widgets' );
1111
+ }
1112
+
1113
+ public function linkback() {
1114
+ if ( isset ( $_POST[ 'linkback' ] ) && $_POST[ 'linkback' ] ){
1115
+ return rtmedia_update_site_option( 'rtmedia-add-linkback', true );
1116
+ } else {
1117
+ return rtmedia_update_site_option( 'rtmedia-add-linkback', false );
1118
+ }
1119
+ die;
1120
+ }
1121
+
1122
+ public function convert_videos_mailchimp_send() {
1123
+ if ( $_POST[ 'interested' ] == 'Yes' && ! empty ( $_POST[ 'choice' ] ) ){
1124
+ wp_remote_get( add_query_arg( array( 'rtmedia-convert-videos-form' => 1, 'choice' => $_POST[ 'choice' ], 'url' => urlencode( $_POST[ 'url' ] ), 'email' => $_POST[ 'email' ] ), 'http://rtcamp.com/' ) );
1125
+ } else {
1126
+ rtmedia_update_site_option( 'rtmedia-survey', 0 );
1127
+ }
1128
+ _e( 'Thank you for your time.', 'rtmedia' );
1129
+ die;
1130
+ }
1131
+
1132
+ public function video_transcoding_survey_response() {
1133
+ if ( isset ( $_GET[ 'survey-done' ] ) && ( $_GET[ 'survey-done' ] == md5( 'survey-done' ) ) ){
1134
+ rtmedia_update_site_option( 'rtmedia-survey', 0 );
1135
+ }
1136
+ }
1137
+
1138
+ public function plugin_meta_premium_addon_link( $plugin_meta, $plugin_file, $plugin_data, $status ) {
1139
+ if ( plugin_basename( RTMEDIA_PATH . 'index.php' ) == $plugin_file ){
1140
+ $plugin_meta[ ] = '<a href="https://rtcamp.com/store/product-category/buddypress/?utm_source=dashboard&#038;utm_medium=plugin&#038;utm_campaign=buddypress-media" title="' . __( 'Premium Add-ons', 'rtmedia' ) . '">' . __( 'Premium Add-ons', 'rtmedia' ) . '</a>';
1141
+ }
1142
+
1143
+ return $plugin_meta;
1144
+ }
1145
+
1146
+ public function upload_filetypes_error() {
1147
+ global $rtmedia;
1148
+ $upload_filetypes = rtmedia_get_site_option( 'upload_filetypes', 'jpg jpeg png gif' );
1149
+ $upload_filetypes = explode( ' ', $upload_filetypes );
1150
+ $flag = false;
1151
+ if ( isset ( $rtmedia->options[ 'images_enabled' ] ) && $rtmedia->options[ 'images_enabled' ] ){
1152
+ $not_supported_image = array_diff( array( 'jpg', 'jpeg', 'png', 'gif' ), $upload_filetypes );
1153
+ if ( ! empty ( $not_supported_image ) ){
1154
+ echo '<div class="error upload-filetype-network-settings-error">
1155
+ <p>
1156
+ ' . sprintf( __( 'You have images enabled on rtMedia but your network allowed filetypes does not allow uploading of %s. Click <a href="%s">here</a> to change your settings manually.', 'rtmedia' ), implode( ', ', $not_supported_image ), network_admin_url( 'settings.php#upload_filetypes' ) ) . '
1157
+ <br /><strong>' . __( 'Recommended', 'rtmedia' ) . ':</strong> <input type="button" class="button update-network-settings-upload-filetypes" class="button" value="' . __( 'Update Network Settings Automatically', 'rtmedia' ) . '"> <img style="display:none;" src="' . admin_url( 'images/wpspin_light.gif' ) . '" />
1158
+ </p>
1159
+ </div>';
1160
+ $flag = true;
1161
+ }
1162
+ }
1163
+ if ( isset ( $rtmedia->options[ 'videos_enabled' ] ) && $rtmedia->options[ 'videos_enabled' ] ){
1164
+ if ( ! in_array( 'mp4', $upload_filetypes ) ){
1165
+ echo '<div class="error upload-filetype-network-settings-error">
1166
+ <p>
1167
+ ' . sprintf( __( 'You have video enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp4. Click <a href="%s">here</a> to change your settings manually.', 'rtmedia' ), network_admin_url( 'settings.php#upload_filetypes' ) ) . '
1168
+ <br /><strong>' . __( 'Recommended', 'rtmedia' ) . ':</strong> <input type="button" class="button update-network-settings-upload-filetypes" class="button" value="' . __( 'Update Network Settings Automatically', 'rtmedia' ) . '"> <img style="display:none;" src="' . admin_url( 'images/wpspin_light.gif' ) . '" />
1169
+ </p>
1170
+ </div>';
1171
+ $flag = true;
1172
+ }
1173
+ }
1174
+ if ( isset ( $rtmedia->options[ 'audio_enabled' ] ) && $rtmedia->options[ 'audio_enabled' ] ){
1175
+ if ( ! in_array( 'mp3', $upload_filetypes ) ){
1176
+ echo '<div class="error upload-filetype-network-settings-error"><p>' . sprintf( __( 'You have audio enabled on BuddyPress Media but your network allowed filetypes does not allow uploading of mp3. Click <a href="%s">here</a> to change your settings manually.', 'rtmedia' ), network_admin_url( 'settings.php#upload_filetypes' ) ) . '
1177
+ <br /><strong>' . __( 'Recommended', 'rtmedia' ) . ':</strong> <input type="button" class="button update-network-settings-upload-filetypes" class="button" value="' . __( 'Update Network Settings Automatically', 'rtmedia' ) . '"> <img style="display:none;" src="' . admin_url( 'images/wpspin_light.gif' ) . '" />
1178
+ </p>
1179
+ </div>';
1180
+ $flag = true;
1181
+ }
1182
+ }
1183
+ if ( $flag ){
1184
+ ?>
1185
+ <script type="text/javascript">
1186
+ jQuery( '.upload-filetype-network-settings-error' ).on( 'click', '.update-network-settings-upload-filetypes', function () {
1187
+ jQuery( '.update-network-settings-upload-filetypes' ).siblings( 'img' ).show();
1188
+ jQuery( '.update-network-settings-upload-filetypes' ).prop( 'disabled', true );
1189
+ jQuery.post( ajaxurl, {action: 'rtmedia_correct_upload_filetypes'}, function ( response ) {
1190
+ if ( response ) {
1191
+ jQuery( '.upload-filetype-network-settings-error:first' ).after( '<div style="display: none;" class="updated rtmedia-network-settings-updated-successfully"><p><?php _e( 'Network settings updated successfully.', 'rtmedia' ); ?></p></div>' )
1192
+ jQuery( '.upload-filetype-network-settings-error' ).remove();
1193
+ jQuery( '.bp-media-network-settings-updated-successfully' ).show();
1194
+ }
1195
+ } );
1196
+ } );</script><?php
1197
+ }
1198
+ }
1199
+
1200
+ public function correct_upload_filetypes() {
1201
+ global $rtmedia;
1202
+ $upload_filetypes_orig = $upload_filetypes = rtmedia_get_site_option( 'upload_filetypes', 'jpg jpeg png gif' );
1203
+ $upload_filetypes = explode( ' ', $upload_filetypes );
1204
+ if ( isset ( $rtmedia->options[ 'images_enabled' ] ) && $rtmedia->options[ 'images_enabled' ] ){
1205
+ $not_supported_image = array_diff( array( 'jpg', 'jpeg', 'png', 'gif' ), $upload_filetypes );
1206
+ if ( ! empty ( $not_supported_image ) ){
1207
+ $update_image_support = null;
1208
+ foreach ( $not_supported_image as $ns ) {
1209
+ $update_image_support .= ' ' . $ns;
1210
+ }
1211
+ if ( $update_image_support ){
1212
+ $upload_filetypes_orig .= $update_image_support;
1213
+ rtmedia_update_site_option( 'upload_filetypes', $upload_filetypes_orig );
1214
+ }
1215
+ }
1216
+ }
1217
+ if ( isset ( $rtmedia->options[ 'videos_enabled' ] ) && $rtmedia->options[ 'videos_enabled' ] ){
1218
+ if ( ! in_array( 'mp4', $upload_filetypes ) ){
1219
+ $upload_filetypes_orig .= ' mp4';
1220
+ rtmedia_update_site_option( 'upload_filetypes', $upload_filetypes_orig );
1221
+ }
1222
+ }
1223
+ if ( isset ( $rtmedia->options[ 'audio_enabled' ] ) && $rtmedia->options[ 'audio_enabled' ] ){
1224
+ if ( ! in_array( 'mp3', $upload_filetypes ) ){
1225
+ $upload_filetypes_orig .= ' mp3';
1226
+ rtmedia_update_site_option( 'upload_filetypes', $upload_filetypes_orig );
1227
+ }
1228
+ }
1229
+ echo true;
1230
+ die ();
1231
+ }
1232
+
1233
+ function edit_video_thumbnail( $form_fields, $post ) {
1234
+ if ( isset( $post->post_mime_type ) ){
1235
+ $media_type = explode( "/", $post->post_mime_type );
1236
+ if ( is_array( $media_type ) && $media_type[ 0 ] == "video" ){
1237
+ $media_id = $post->ID;
1238
+ $thumbnail_array = get_post_meta( $media_id, "rtmedia_media_thumbnails", true );
1239
+ $rtmedia_model = new RTMediaModel();
1240
+ $rtmedia_media = $rtmedia_model->get( array( "media_id" => $media_id ) );
1241
+ $video_thumb_html = "";
1242
+ if ( is_array( $thumbnail_array ) ){
1243
+ $video_thumb_html .= '<ul> ';
1244
+ foreach ( $thumbnail_array as $key => $thumbnail_src ) {
1245
+ $checked = checked( $thumbnail_src, $rtmedia_media[ 0 ]->cover_art, false );
1246
+ $count = $key + 1;
1247
+ $video_thumb_html .= '<li style="width: 150px;display: inline-block;">
1248
+ <label for="rtmedia-upload-select-thumbnail-' . $count . '">
1249
+ <input type="radio" ' . $checked . ' id="rtmedia-upload-select-thumbnail-' . $count . '" value="' . $thumbnail_src . '" name="rtmedia-thumbnail" />
1250
+ <img src=" ' . $thumbnail_src . '" style="max-height: 120px;max-width: 120px; vertical-align: middle;" />
1251
+ </label>
1252
+ </li> ';
1253
+
1254
+ }
1255
+
1256
+ $video_thumb_html .= ' </ul>';
1257
+ $form_fields[ 'rtmedia_video_thumbnail' ] = array(
1258
+ 'label' => 'Video Thumbnails', 'input' => 'html', 'html' => $video_thumb_html
1259
+ );
1260
+ }
1261
+ }
1262
+ }
1263
+
1264
+ return $form_fields;
1265
+ }
1266
+
1267
+ function save_video_thumbnail( $post, $attachment ) {
1268
+ if ( isset( $post[ 'rtmedia-thumbnail' ] ) ){
1269
+ $rtmedia_model = new RTMediaModel();
1270
+ $model = new RTMediaModel();
1271
+ $media = $model->get( array( "media_id" => $post[ 'ID' ] ) );
1272
+ $media_id = $media[ 0 ]->id;
1273
+ $rtmedia_model->update( array( "cover_art" => $post[ 'rtmedia-thumbnail' ] ), array( "media_id" => $post[ 'ID' ] ) );
1274
+ update_activity_after_thumb_set( $media_id );
1275
+ }
1276
+
1277
+ return $post;
1278
+ }
1279
+
1280
+ function rtmedia_regenerate_thumb_js() {
1281
+ global $pagenow;
1282
+
1283
+ if ( $pagenow == 'upload.php' ){
1284
+ ?>
1285
+ <script type="text/javascript">
1286
+ function rtmedia_regenerate_thumbs( post_id ) {
1287
+ if ( post_id != "" ) {
1288
+ var data = {
1289
+ action: 'rt_media_regeneration',
1290
+ media_id: post_id
1291
+ };
1292
+ jQuery.post( ajaxurl, data, function ( data ) {
1293
+ data = JSON.parse( data );
1294
+ if ( data.status === true ) {
1295
+ alert( "<?php _e('Video is sent to generate thumbnails.', 'rtmedia') ?>" );
1296
+ }
1297
+ else {
1298
+ alert( "<?php _e('Video can\'t be sent to generate thumbnails.', 'rtmedia') ?>" );
1299
+ }
1300
+ } );
1301
+ }
1302
+ }
1303
+ </script>
1304
+ <?php
1305
+ }
1306
+ }
1307
+
1308
+ function add_bulk_actions_regenerate() {
1309
+ ?>
1310
+ <script type="text/javascript">
1311
+ jQuery( document ).ready( function ( $ ) {
1312
+ $( 'select[name^="action"] option:last-child' ).before( '<option value="bulk_video_regenerate_thumbnails"><?php esc_attr_e( 'Regenerate Video Thumbnails', 'rtmedia'); ?></option>' );
1313
+ } );
1314
+ </script>
1315
+ <?php
1316
+ }
1317
+
1318
+ function presstrends_plugin() {
1319
+ global $rtmedia;
1320
+ $option = $rtmedia->options;
1321
+ if ( ! isset( $option[ 'general_AllowUserData' ] ) ){
1322
+ return;
1323
+ }
1324
+ if ( $option[ 'general_AllowUserData' ] == "0" ){
1325
+ return;
1326
+ }
1327
+ // PressTrends Account API Key
1328
+ $api_key = 'djbzu1no2tdz4qq4u2fpgaemuup2zzmtjulb';
1329
+ $auth = 'o3w063qppl7ha022jyc3bjpi7usrmczho';
1330
+ // Start of Metrics
1331
+ global $wpdb;
1332
+ $data = get_transient( 'presstrends_cache_data' );
1333
+ if ( ! $data || $data == '' ){
1334
+ $api_base = 'http://api.presstrends.io/index.php/api/pluginsites/update?auth=';
1335
+ $url = $api_base . $auth . '&api=' . $api_key . '';
1336
+ $count_posts = wp_count_posts();
1337
+ $count_pages = wp_count_posts( 'page' );
1338
+ $comments_count = wp_count_comments();
1339
+ if ( function_exists( 'wp_get_theme' ) ){
1340
+ $theme_data = wp_get_theme();
1341
+ $theme_name = urlencode( $theme_data->Name );
1342
+ } else {
1343
+ $theme_data = get_theme_data( get_stylesheet_directory() . '/style.css' );
1344
+ $theme_name = $theme_data[ 'Name' ];
1345
+ }
1346
+ $plugin_name = '&';
1347
+ foreach ( get_plugins() as $plugin_info ) {
1348
+ $plugin_name .= $plugin_info[ 'Name' ] . '&';
1349
+ }
1350
+ // CHANGE __FILE__ PATH IF LOCATED OUTSIDE MAIN PLUGIN FILE
1351
+ $plugin_data = get_plugin_data( __FILE__ );
1352
+ $posts_with_comments = $wpdb->get_var( "SELECT COUNT(*) FROM $wpdb->posts WHERE post_type='post' AND comment_count > 0" );
1353
+ $data = array(
1354
+ 'url' => base64_encode( site_url() ), 'posts' => $count_posts->publish, 'pages' => $count_pages->publish, 'comments' => $comments_count->total_comments, 'approved' => $comments_count->approved, 'spam' => $comments_count->spam, 'pingbacks' => $wpdb->get_var( "SELECT COUNT(comment_ID) FROM $wpdb->comments WHERE comment_type = 'pingback'" ), 'post_conversion' => ( $count_posts->publish > 0 && $posts_with_comments > 0 ) ? number_format( ( $posts_with_comments / $count_posts->publish ) * 100, 0, '.', '' ) : 0, 'theme_version' => $plugin_data[ 'Version' ], 'theme_name' => $theme_name, 'site_name' => str_replace( ' ', '', get_bloginfo( 'name' ) ), 'plugins' => count( get_option( 'active_plugins' ) ), 'plugin' => urlencode( $plugin_name ), 'wpversion' => get_bloginfo( 'version' ),
1355
+ );
1356
+ foreach ( $data as $k => $v ) {
1357
+ $url .= '&' . $k . '=' . $v . '';
1358
+ }
1359
+ wp_remote_get( $url );
1360
+ set_transient( 'presstrends_cache_data', $data, 60 * 60 * 24 );
1361
+ }
1362
+ }
1363
+
1364
+ function rtmedia_update_template_notice() {
1365
+ $site_option = rtmedia_get_site_option( "rtmedia-update-template-notice-v3_13" );
1366
+ if ( ! $site_option || $site_option != "hide" ){
1367
+ rtmedia_update_site_option( "rtmedia-update-template-notice-v3_13", "show" );
1368
+ if ( is_dir( get_template_directory() . '/rtmedia' ) ){
1369
+ echo '<div class="error rtmedia-update-template-notice"><p>' . __( 'Please update rtMedia template files if you have overridden the default rtMedia templates in your theme. If not, you can ignore and hide this notice.' ) . '<a href="#" onclick="rtmedia_hide_template_override_notice()" style="float:right">' . __( 'Hide', 'rtmedia' ) . '</a>' . ' </p></div>';
1370
+ ?>
1371
+ <script type="text/javascript">
1372
+ function rtmedia_hide_template_override_notice() {
1373
+ var data = {action: 'rtmedia_hide_template_override_notice'};
1374
+ jQuery.post( ajaxurl, data, function ( response ) {
1375
+ response = response.trim();
1376
+ if ( response === "1" )
1377
+ jQuery( '.rtmedia-update-template-notice' ).remove();
1378
+ } );
1379
+ }
1380
+ </script>
1381
+ <?php
1382
+ }
1383
+ }
1384
+ }
1385
+
1386
+ function rtmedia_hide_template_override_notice() {
1387
+
1388
+ if ( rtmedia_update_site_option( "rtmedia-update-template-notice-v3_13", "hide" ) ){
1389
+ echo "1";
1390
+ } else {
1391
+ echo "0";
1392
+ }
1393
+ die();
1394
+ }
1395
+ }
1396
+ }
trunk/app/admin/RTMediaFormHandler.php ADDED
@@ -0,0 +1,942 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /*
4
+ * To change this template, choose Tools | Templates
5
+ * and open the template in the editor.
6
+ */
7
+
8
+ /**
9
+ * Description of RTMediaFormHandler
10
+ *
11
+ * @author udit
12
+ */
13
+ class RTMediaFormHandler {
14
+
15
+ public static function selectBox($args) {
16
+ global $rtmedia;
17
+ $options = $rtmedia->options;
18
+ $defaults = array(
19
+ 'key' => '',
20
+ 'desc' => '',
21
+ 'default' => '',
22
+ 'show_desc' => false,
23
+ 'selects' => array()
24
+ );
25
+ $args = wp_parse_args($args, $defaults);
26
+ extract($args);
27
+
28
+ if (!empty($key)) {
29
+ $args['name'] = 'rtmedia-options[' . $key . ']';
30
+ }
31
+
32
+ $args['rtForm_options'] = array();
33
+ foreach ($selects as $value => $key) {
34
+ $args['rtForm_options'][] = array(
35
+ $key => $value,
36
+ 'selected' => ($default == $value) ? true : false
37
+ );
38
+ }
39
+
40
+ $chkObj = new rtForm();
41
+ echo $chkObj->get_select($args);
42
+ }
43
+
44
+ public static function textarea($args, $echo = true) {
45
+ global $rtmedia;
46
+ $options = $rtmedia->options;
47
+ $defaults = array(
48
+ 'id' => '',
49
+ 'key' => '',
50
+ 'desc' => '',
51
+ 'show_desc' => false
52
+ );
53
+ $args = wp_parse_args($args, $defaults);
54
+ extract($args);
55
+
56
+ if (!isset($value)) {
57
+ trigger_error(__('Please provide "value" in the argument.', 'rtmedia'));
58
+ return;
59
+ }
60
+
61
+ if (!empty($key)) {
62
+ $args['name'] = 'rtmedia-options[' . $key . ']';
63
+ }
64
+
65
+ $args['rtForm_options'] = array(array('' => 1, 'checked' => $value));
66
+
67
+ $chkObj = new rtForm();
68
+ if( $echo ) {
69
+ echo $chkObj->get_textarea($args);
70
+ } else {
71
+ return $chkObj->get_textarea($args);
72
+ }
73
+ }
74
+
75
+ public static function checkbox($args, $echo = true) {
76
+
77
+ global $rtmedia;
78
+ $options = $rtmedia->options;
79
+ $defaults = array(
80
+ 'key' => '',
81
+ 'desc' => '',
82
+ 'show_desc' => false
83
+ );
84
+ $args = wp_parse_args($args, $defaults);
85
+ extract($args);
86
+
87
+ if (!isset($value)) {
88
+ trigger_error(__('Please provide "value" in the argument.', 'rtmedia'));
89
+ return;
90
+ }
91
+
92
+ if (!empty($key)) {
93
+ $args['name'] = 'rtmedia-options[' . $key . ']';
94
+ }
95
+
96
+ $args['rtForm_options'] = array(array('' => 1, 'checked' => $value));
97
+
98
+ $chkObj = new rtForm();
99
+ // echo $chkObj->get_checkbox($args);
100
+ if( $echo )
101
+ echo $chkObj->get_switch($args);
102
+ else
103
+ return $chkObj->get_switch($args);
104
+ // echo $chkObj->get_switch_square($args);
105
+ }
106
+
107
+ public static function radio($args) {
108
+
109
+ global $rtmedia;
110
+ $options = $rtmedia->options;
111
+ $defaults = array(
112
+ 'key' => '',
113
+ 'radios' => array(),
114
+ 'default' => '',
115
+ 'show_desc' => false
116
+ );
117
+ $args = wp_parse_args($args, $defaults);
118
+ extract($args);
119
+
120
+ if (2 > count($radios)) {
121
+ trigger_error(__('Need to specify atleast to radios else use a checkbox instead', 'rtmedia'));
122
+ return;
123
+ }
124
+
125
+ if (!empty($key))
126
+ $args['name'] = 'rtmedia-options[' . $key . ']';
127
+
128
+ $args['rtForm_options'] = array();
129
+ foreach ($radios as $value => $key) {
130
+ $args['rtForm_options'][] = array(
131
+ $key => $value,
132
+ 'checked' => ($default == $value) ? true : false
133
+ );
134
+ }
135
+
136
+ $objRad = new rtForm();
137
+ echo $objRad->get_radio($args);
138
+ }
139
+
140
+ public static function dimensions($args) {
141
+
142
+ $dmnObj = new rtDimensions();
143
+ echo $dmnObj->get_dimensions($args);
144
+ }
145
+
146
+ public static function number($args) {
147
+ global $rtmedia;
148
+ $options = $rtmedia->options;
149
+ $defaults = array(
150
+ 'key' => '',
151
+ 'desc' => ''
152
+ );
153
+ $args = wp_parse_args($args, $defaults);
154
+ extract($args);
155
+
156
+ if (!isset($value)) {
157
+ trigger_error(__('Please provide "value" in the argument.', 'rtmedia'));
158
+ return;
159
+ }
160
+
161
+ if (!empty($key)) {
162
+ $args['name'] = 'rtmedia-options[' . $key . ']';
163
+ }
164
+
165
+ $args['value'] = $value;
166
+
167
+ $numObj = new rtForm();
168
+ echo $numObj->get_number($args);
169
+ }
170
+
171
+ public static function textbox($args) {
172
+ global $rtmedia;
173
+ $options = $rtmedia->options;
174
+ $defaults = array(
175
+ 'key' => '',
176
+ 'desc' => ''
177
+ );
178
+ $args = wp_parse_args($args, $defaults);
179
+ extract($args);
180
+
181
+ if (!isset($value)) {
182
+ trigger_error(__('Please provide "value" in the argument.', 'rtmedia'));
183
+ return;
184
+ }
185
+
186
+ if (!empty($key)) {
187
+ $args['name'] = 'rtmedia-options[' . $key . ']';
188
+ }
189
+
190
+ $args['value'] = $value;
191
+
192
+ $numObj = new rtForm();
193
+ echo $numObj->get_textbox($args);
194
+ }
195
+
196
+ static function extract_settings($section_name,$options) {
197
+ $section = array();
198
+ foreach ($options as $key => $value) {
199
+ if(strncmp($key, $section_name, strlen($section_name))==0)
200
+ $section[$key] = $value;
201
+ }
202
+ return $section;
203
+ }
204
+
205
+ static function display_render_options($options) {
206
+
207
+ $render = array(//
208
+ 'general_enableComments' => array(
209
+ 'title' => __('Allow user to comment on uploaded media','rtmedia'),
210
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
211
+ 'args' => array(
212
+ 'key' => 'general_enableComments',
213
+ 'value' => $options['general_enableComments'],
214
+ 'desc' => __('This will display comment form and comment listing on single media pages as well as inside lightbox (if lightbox is enabled).','rtmedia')
215
+ ),
216
+ 'group' => "10"
217
+ ),
218
+ 'general_enableLightbox' => array(
219
+ 'title' => __('Use lightbox to display media','rtmedia'),
220
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
221
+ 'args' => array(
222
+ 'key' => 'general_enableLightbox',
223
+ 'value' => $options['general_enableLightbox'],
224
+ 'desc' => __('View single media in facebook style lightbox.','rtmedia')
225
+ ),
226
+ 'group' => "15"
227
+ ),
228
+ 'general_perPageMedia' => array(
229
+ 'title' => __('Number of media per page','rtmedia'),
230
+ 'callback' => array('RTMediaFormHandler', 'number'),
231
+ 'args' => array(
232
+ 'key' => 'general_perPageMedia',
233
+ 'value' => $options['general_perPageMedia'],
234
+ 'class' => array('rtmedia-setting-text-box'),
235
+ 'desc' => __('Number of media you want to show per page on front end.','rtmedia'),
236
+ 'min' => 1
237
+ ),
238
+ 'group' => "15"
239
+ )
240
+ );
241
+
242
+ return $render;
243
+ }
244
+
245
+ public static function display_content() {
246
+ global $rtmedia;
247
+ // $options = self::extract_settings('general', $rtmedia->options);
248
+ $options = $rtmedia->options;
249
+ $render_options = self::display_render_options($options);
250
+ // $render_options = apply_filters('rtmedia_general_content_single_view_add_itmes',$render_options, $options);
251
+ $render_options = apply_filters("rtmedia_display_content_add_itmes",$render_options, $options);
252
+ $general_group = array();
253
+ $general_group[10] = "Single Media View";
254
+ $general_group[15] = "List Media View";
255
+ $general_group = apply_filters("rtmedia_display_content_groups", $general_group);
256
+ ksort($general_group);
257
+ $html = '';
258
+ foreach($general_group as $key => $value) {
259
+ ?>
260
+ <div class="postbox metabox-holder">
261
+ <h3 class="hndle"><span><?php echo $value; ?></span></h3>
262
+ <?php
263
+ foreach ($render_options as $tab => $option) {
264
+
265
+ if(!isset($option['group'])) {
266
+ $option['group'] = "20";
267
+ }
268
+
269
+ if($option['group'] != $key) {
270
+ continue;
271
+ }
272
+ ?>
273
+ <div class="row section">
274
+ <div class="columns large-9">
275
+ <?php echo $option['title']; ?>
276
+ </div>
277
+ <div class="columns large-3">
278
+ <?php call_user_func($option['callback'], $option['args']); ?>
279
+ <span data-tooltip class="has-tip" title="<?php echo (isset($option['args']['desc'])) ? $option['args']['desc'] : "NA"; ?>"><i class="rtmicon-info-circle"></i></span>
280
+ </div>
281
+ </div>
282
+ <?php
283
+ if( isset( $option['after_content'] ) ) {
284
+ ?>
285
+ <div class="row">
286
+ <div class="columns large-12">
287
+ <p class="rtmedia-info rtmedia-admin-notice">
288
+ <?php echo $option['after_content']; ?>
289
+ </p>
290
+ </div>
291
+ </div>
292
+ <?php
293
+ }
294
+ }
295
+ ?>
296
+ </div>
297
+ <?php
298
+ }
299
+
300
+ }
301
+
302
+ static function render_general_content($options) {
303
+ $render = array(
304
+ 'general_AllowUserData' => array(
305
+ 'title' => __('Allow usage data tracking','rtmedia'),
306
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
307
+ 'args' => array(
308
+ 'key' => 'general_AllowUserData',
309
+ 'value' => $options['general_AllowUserData'],
310
+ 'desc' => __('You can help rtMedia team learn what themes and plugins you are using to make rtMedia better compatible with your sites. No private information about your setup will be sent during tracking.','rtmedia')
311
+ )
312
+ ),
313
+ 'general_showAdminMenu' => array(
314
+ 'title' => __('Admin bar menu intergation','rtmedia'),
315
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
316
+ 'args' => array(
317
+ 'key' => 'general_showAdminMenu',
318
+ 'value' => $options['general_showAdminMenu'],
319
+ 'desc' => __('Add rtMedia menu to WordPress admin bar for easy access to settings and moderation page (if enabled).','rtmedia')
320
+ ),
321
+ 'group' => 10
322
+ ),//
323
+ 'rtmedia_add_linkback' => array(
324
+ 'title' => __('Add a link to rtMedia in footer','rtmedia'),
325
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
326
+ 'args' => array(
327
+ 'key' => 'rtmedia_add_linkback',
328
+ 'value' => $options['rtmedia_add_linkback'],
329
+ 'desc' => __('Help us to promote rtMedia.','rtmedia')
330
+ ),
331
+ 'group' => 100
332
+ ),//
333
+ 'rtmedia_affiliate_id' => array(
334
+ 'title' => __('Also add my affiliate-id to rtMedia footer link','rtmedia'),
335
+ 'callback' => array('RTMediaFormHandler', 'textbox'),
336
+ 'args' => array(
337
+ 'key' => 'rtmedia_affiliate_id',
338
+ 'value' => $options['rtmedia_affiliate_id'],
339
+ 'desc' => __('Add your affiliate-id along with footer link and get benefited from our affiliation program.','rtmedia')
340
+ ),
341
+ 'group' => 100,
342
+ 'after_content' => __('You can signup for rtMedia affiliate program from <a href="https://rtcamp.com/affiliates">here</a>'),
343
+ ),//
344
+ 'rtmedia_enable_api' => array(
345
+ 'title' => __('Enable JSON API','rtmedia'),
346
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
347
+ 'args' => array(
348
+ 'key' => 'rtmedia_enable_api',
349
+ 'value' => $options['rtmedia_enable_api'],
350
+ 'desc' => __('This will allow handling API requests for rtMedia sent through any mobile app.','rtmedia')
351
+ ),
352
+ 'group' => 80,
353
+ 'after_content' => __('You can refer API document from <a href="https://rtcamp.com/rtmedia/docs/developer/json-api/">here</a>'),
354
+ ),//
355
+ );
356
+
357
+ return $render;
358
+ }
359
+ static function general_content($options) {
360
+ global $rtmedia;
361
+ // $options = self::extract_settings('general', $rtmedia->options);
362
+ $options = $rtmedia->options;
363
+ $render_options = self::render_general_content($options);
364
+ $render_options = apply_filters("rtmedia_general_content_add_itmes",$render_options, $options);
365
+ $general_group = array();
366
+ $general_group[10] = "Admin Settings";
367
+ $general_group[80] = "API Settings";
368
+ $general_group[90] = "Miscellaneous";
369
+ $general_group[100] = "Footer Link";
370
+ $general_group = apply_filters("rtmedia_general_content_groups", $general_group);
371
+ ksort($general_group);
372
+ $html = '';
373
+ foreach($general_group as $key => $value) {
374
+ ?>
375
+ <div class="postbox metabox-holder">
376
+ <h3 class="hndle"><span><?php echo $value; ?></span></h3>
377
+ <?php
378
+ foreach ($render_options as $tab => $option) {
379
+
380
+ if(!isset($option['group'])) {
381
+ $option['group'] = "90";
382
+ }
383
+
384
+ if($option['group'] != $key) {
385
+ continue;
386
+ }
387
+ ?>
388
+ <div class="row section">
389
+ <div class="columns large-7">
390
+ <?php echo $option['title']; ?>
391
+ </div>
392
+ <div class="columns large-5">
393
+ <?php call_user_func($option['callback'], $option['args']); ?>
394
+ <span data-tooltip class="has-tip" title="<?php echo (isset($option['args']['desc'])) ? $option['args']['desc'] : "NA"; ?>"><i class="rtmicon-info-circle"></i></span>
395
+ </div>
396
+ </div>
397
+ <?php
398
+ if( isset( $option['after_content'] ) ) {
399
+ ?>
400
+ <div class="row">
401
+ <div class="columns large-12">
402
+ <p class="rtmedia-info rtmedia-admin-notice">
403
+ <?php echo $option['after_content']; ?>
404
+ </p>
405
+ </div>
406
+ </div>
407
+ <?php
408
+ }
409
+ ?>
410
+ <?php
411
+ }
412
+ ?>
413
+ </div>
414
+ <?php
415
+ }
416
+ }
417
+
418
+ static function get_type_details($allowed_types, $key) {
419
+ foreach ($allowed_types as $type) {
420
+ if($type['name']==$key) {
421
+ $data = array(
422
+ 'name' => $type['label'],
423
+ 'extn' => $type['extn']
424
+ );
425
+ if ( isset ( $type['settings_visibility'] ) ) {
426
+ $data['settings_visibility'] = $type['settings_visibility'];
427
+ }
428
+ return $data;
429
+ }
430
+ }
431
+ }
432
+
433
+ static function types_render_options($options) {
434
+ global $rtmedia;
435
+
436
+ $render = array();
437
+ $allowed_media_type = $rtmedia->allowed_types;
438
+ $allowed_media_type = apply_filters("rtmedia_allowed_types", $allowed_media_type);
439
+
440
+ foreach ($options as $key => $value) {
441
+ $data = explode('_', $key);
442
+ if(!isset($render[$data[1]])) {
443
+ $render[$data[1]] = self::get_type_details($allowed_media_type, $data[1]);
444
+ }
445
+ }
446
+ foreach ($options as $key => $value) {
447
+ $data = explode('_', $key);
448
+ $render[$data[1]][$data[2]] = $value;
449
+ }
450
+
451
+ return $render;
452
+ }
453
+
454
+ public static function types_content() {
455
+
456
+ global $rtmedia;
457
+ $options = self::extract_settings('allowedTypes', $rtmedia->options);
458
+
459
+ $render_data = self::types_render_options($options);
460
+ ?>
461
+ <div class="postbox metabox-holder">
462
+ <h3 class="hndle">
463
+ <span>Media Types Settings</span>
464
+ <?php do_action( 'rtmedia_media_type_setting_message' ); ?>
465
+ </h3>
466
+ </div>
467
+ <div class="rt-table large-12">
468
+ <div class="row rt-header">
469
+ <?php do_action("rtmedia_type_settings_before_heading"); ?>
470
+ <div class="columns large-4"><h4><?php _e("Media Type","rtmedia") ?></h4></div>
471
+ <div class="columns large-4"><h4 data-tooltip class="has-tip" title="<?php _e("Allows you to upload a particular media type on your post.","rtmedia"); ?>"><abbr><?php _e("Allow Upload","rtmedia"); ?></abbr></h4></div>
472
+ <div class="columns large-4"><h4 data-tooltip class="has-tip" title="<?php _e("Put a specific media as a featured content on the post.","rtmedia"); ?>"><abbr><?php _e("Set Featured","rtmedia"); ?></abbr></h4></div>
473
+
474
+ <?php do_action("rtmedia_type_settings_after_heading"); ?>
475
+ </div>
476
+
477
+ <?php
478
+ $even = 0;
479
+ foreach ($render_data as $key=>$section) {
480
+ if( isset($section['settings_visibility']) && $section['settings_visibility'] == true ) {
481
+ if( ++$even%2 ) {
482
+ echo '<div class="row rt-odd">';
483
+ }
484
+ else {
485
+ echo '<div class="row rt-even">';
486
+ }
487
+
488
+ do_action("rtmedia_type_settings_before_body");
489
+ echo '<div class="columns large-4">' . $section['name'] . '</div>';
490
+ $args = array('key' => 'allowedTypes_'.$key.'_enabled', 'value' => $section['enabled']);
491
+ echo '<div class="columns large-4">';
492
+ $allow_upload_checkbox = self::checkbox($args, $echo = false );
493
+ $allow_upload_checkbox = apply_filters('rtmedia_filter_allow_upload_checkbox', $allow_upload_checkbox , $key, $args);
494
+ echo $allow_upload_checkbox;
495
+ echo '</div>';
496
+ $args = array('key' => 'allowedTypes_'.$key.'_featured', 'value' => $section['featured']);
497
+ echo '<div class="columns large-4">';
498
+ $featured_checkbox = self::checkbox($args , $echo = false );
499
+ $featured_checkbox = apply_filters('rtmedia_filter_featured_checkbox', $featured_checkbox, $key);
500
+ echo $featured_checkbox;
501
+ echo ' </div>';
502
+ if(!isset($section['extn']) || !is_array($section['extn'])) {
503
+ $section['extn'] = array();
504
+ }
505
+ $extensions = implode(', ', $section['extn']);
506
+ $extensions = apply_filters('rtmedia_type_settings_filter_extension', $extensions , $key) ;
507
+ do_action("rtmedia_type_settings_after_body",$key, $section);
508
+ echo '</div>';
509
+ echo '<div class="row rtmedia-file-extension-wrap">';
510
+ echo '<label class="columns large-3">'.__("File Extensions","rtmedia").':</label>';
511
+ echo '<label class="columns large-9 rtmedia_type_settings_filter_extension">' . $extensions . '</label>';
512
+ echo '</div>';
513
+
514
+ } else {
515
+ echo "<input type='hidden' value='1' name='rtmedia-options[allowedTypes_" . $key . "_enabled]'>";
516
+ echo "<input type='hidden' value='0' name='rtmedia-options[allowedTypes_" . $key . "_featured]'>";
517
+ }
518
+ }
519
+ echo '</div>';
520
+ do_action('rtmedia_after_bp_settings');
521
+ do_action('rtmedia_after_media_types_settings');
522
+ }
523
+
524
+ static function sizes_render_options($options) {
525
+
526
+ $render = array();
527
+ foreach ($options as $key => $value) {
528
+ $data = explode('_', $key);
529
+ if(!isset($render[$data[1]])) {
530
+ $render[$data[1]] = array();
531
+ $render[$data[1]]['title'] = __($data[1],"rtmedia");
532
+ }
533
+ if(!isset($render[$data[1]][$data[2]])) {
534
+ $render[$data[1]][$data[2]] = array();
535
+ $render[$data[1]][$data[2]]['title'] = __($data[2],"rtmedia");
536
+ }
537
+ $render[$data[1]][$data[2]][$data[3]] = $value;
538
+ }
539
+ return $render;
540
+ }
541
+
542
+ public static function sizes_content() {
543
+
544
+ global $rtmedia;
545
+ $options = self::extract_settings('defaultSizes',$rtmedia->options);
546
+ $render_data = self::sizes_render_options($options);
547
+ ?>
548
+ <div class="postbox metabox-holder">
549
+ <h3 class="hndle"><span>Media Size Settings</span></h3>
550
+ </div>
551
+ <?php
552
+ //container
553
+ echo '<div class="rt-table large-12 rtmedia-size-content-setting">';
554
+
555
+ //header
556
+ echo '<div class="rt-header row">';
557
+ echo '<h4 class="columns large-3">' . __("Category","rtmedia") . '</h4>';
558
+ echo '<h4 class="columns large-3">' . __("Entity","rtmedia") . '</h4>';
559
+ echo '<h4 class="columns large-6"><span class="large-offset-2">' . __("Width","rtmedia") . '</span><span class="large-offset-2">' . __("Height","rtmedia") . '</span><span class="large-offset-2">' . __("Crop","rtmedia") . '</span></h4>';
560
+ echo'</div>';
561
+
562
+ //body
563
+ $even = 0;
564
+ foreach ($render_data as $parent_key => $section) {
565
+ if( ++$even%2 )
566
+ echo '<div class="row rt-odd">';
567
+ else
568
+ echo '<div class="row rt-even">';
569
+ echo '<div class="columns large-3">' . ucfirst($section['title']) . '</div>';
570
+ $entities = $section;
571
+ unset($entities['title']);
572
+ echo '<div class="columns large-3">';
573
+ foreach ($entities as $entity) {
574
+ echo '<div class="row">' . ucfirst($entity['title']) . '</div>';
575
+ }
576
+ echo '</div>';
577
+ echo '<div class="columns large-6">';
578
+ foreach ($entities as $entity) {
579
+ $args = array(
580
+ 'key' => 'defaultSizes_'.$parent_key.'_'.$entity['title'],
581
+ );
582
+ foreach ($entity as $child_key=>$value) {
583
+ if($child_key!='title') {
584
+ $args[$child_key] = $value;
585
+ }
586
+ }
587
+ self::dimensions($args);
588
+ }
589
+ echo '</div>';
590
+ echo '</div>';
591
+ }
592
+
593
+ echo '</div>';
594
+ $options = $rtmedia->options;
595
+ $render_video_thumb =array(
596
+ 'title' => __('Number of thumbnails to generate on video upload','rtmedia'),
597
+ 'callback' => array('RTMediaFormHandler', 'number'),
598
+ 'args' => array(
599
+ 'key' => 'general_videothumbs',
600
+ 'value' => $options['general_videothumbs'],
601
+ 'class' => array('rtmedia-setting-text-box'),
602
+ 'desc' => __(' If you choose more than 1 thumbnail, your users will be able to change thumbnail by going to video "edit" section.','rtmedia'),
603
+ 'min' => 1
604
+ )
605
+ );
606
+ ?>
607
+ <div class="postbox metabox-holder">
608
+ <h3 class="hndle"><span>Encoding Settings</span></h3>
609
+ </div>
610
+ <div class="row section">
611
+ <div class="columns large-9">
612
+ <?php echo $render_video_thumb['title']; ?>
613
+ </div>
614
+ <div class="columns large-3">
615
+ <?php call_user_func($render_video_thumb['callback'], $render_video_thumb['args']); ?>
616
+ <span data-tooltip class="has-tip" title="<?php echo (isset($render_video_thumb['args']['desc'])) ? $render_video_thumb['args']['desc'] : "NA"; ?>"><i class="rtmicon-info-circle"></i></span>
617
+ </div>
618
+ </div>
619
+ <?php
620
+ }
621
+
622
+ public static function custom_css_content() {
623
+
624
+ global $rtmedia;
625
+ $options = self::extract_settings('styles', $rtmedia->options);
626
+ $render_data = self::custom_css_render_options($options);
627
+ ?>
628
+ <div class="postbox metabox-holder">
629
+ <h3 class="hndle"><span>Custom CSS settings</span></h3>
630
+ </div>
631
+ <?php
632
+ echo '<div class="large-12">';
633
+ foreach ($render_data as $option) { ?>
634
+
635
+ <div class="row section">
636
+ <?php if( $option['args']['key'] == "styles_custom"){ ?>
637
+ <div class="columns large-12 rtm-custom-css">
638
+ <strong class="<?php echo $option['args']['key'];?>"><?php echo $option['title']; ?></strong>
639
+ <?php call_user_func($option['callback'], $option['args']); ?>
640
+ <div><?php _e("If you want to add some custom CSS code to the plugin and don't want to modify any files, then it's a good place to enter your code at this field.");?></div>
641
+ </div>
642
+ <?php } else { ?>
643
+ <div class="columns large-6">
644
+ <strong class="<?php echo $option['args']['key'];?>"><?php echo $option['title']; ?></strong>
645
+ </div>
646
+ <div class="columns large-6">
647
+ <?php call_user_func($option['callback'], $option['args']); ?>
648
+ <span data-tooltip class="has-tip" title="<?php echo (isset($option['args']['desc'])) ? $option['args']['desc'] : "NA"; ?>"><i class="rtmicon-info-circle"></i></span>
649
+ </div>
650
+ <?php } ?>
651
+ </div>
652
+ <?php }
653
+ echo '</div>';
654
+
655
+ }
656
+
657
+ static function custom_css_render_options($options) {
658
+ global $rtmedia;
659
+
660
+ $render = array(
661
+ 'disable_styles' => array(
662
+ 'title' => __("rtMedia default styles","rtmedia"),
663
+ 'callback' => array("RTMediaFormHandler", "checkbox"),
664
+ 'args' => array(
665
+ 'id' => 'rtmedia-disable-styles',
666
+ 'key' => 'styles_enabled',
667
+ 'value' => $options['styles_enabled'],
668
+ 'desc' => __('Load default rtMedia styles. You need to write your own style for rtMedia if you disable it.','rtmedia')
669
+ )
670
+ ),
671
+ 'custom_styles' => array(
672
+ 'title' => __("Paste your CSS code","rtmedia"),
673
+ 'callback' => array("RTMediaFormHandler", "textarea"),
674
+ 'args' => array(
675
+ 'id' => 'rtmedia-custom-css',
676
+ 'key' => 'styles_custom',
677
+ 'value' => stripcslashes( $options['styles_custom'] ),
678
+ 'desc' => __('Custom rtMedia CSS container','rtmedia')
679
+ )
680
+ )
681
+ );
682
+
683
+ return $render;
684
+ }
685
+
686
+ static function privacy_render_options($options) {
687
+
688
+ global $rtmedia;
689
+
690
+ $render = array(
691
+ 'enable' => array(
692
+ 'title' => __("Enable privacy","rtmedia"),
693
+ 'callback' => array("RTMediaFormHandler", "checkbox"),
694
+ 'args' => array(
695
+ 'id' => 'rtmedia-privacy-enable',
696
+ 'key' => 'privacy_enabled',
697
+ 'value' => $options['privacy_enabled'],
698
+ 'desc' => __('Enable privacy in rtMedia','rtmedia')
699
+ )
700
+ ),
701
+ 'default' => array(
702
+ 'title' => __("Default privacy","rtmedia"),
703
+ 'callback' => array("RTMediaFormHandler","radio"),
704
+ 'args' => array(
705
+ 'key' => 'privacy_default',
706
+ 'radios' => $rtmedia->privacy_settings['levels'],
707
+ 'default' => $options['privacy_default'],
708
+ 'desc' => __('Set default privacy for media','rtmedia')
709
+ ),
710
+ ),
711
+ 'user_override' => array(
712
+ 'title' => __("Allow users to set privacy for their content","rtmedia"),
713
+ 'callback' => array("RTMediaFormHandler", "checkbox"),
714
+ 'args' => array(
715
+ 'key' => 'privacy_userOverride',
716
+ 'value' => $options['privacy_userOverride'],
717
+ 'desc' => __('If you choose this, user will be able to change privacy of their own uploads.','rtmedia')
718
+ ),
719
+ 'after_content' => __('For group uploads, BuddyPress groups privacy is used.','rtmedia')
720
+ )
721
+ );
722
+
723
+ return $render;
724
+ }
725
+
726
+ public static function privacy_content() {
727
+
728
+ global $rtmedia;
729
+ $options = self::extract_settings('privacy', $rtmedia->options);
730
+
731
+ $render_data = self::privacy_render_options($options);
732
+ ?>
733
+ <div class="postbox metabox-holder">
734
+ <h3 class="hndle"><span>Privacy Settings</span></h3>
735
+ </div>
736
+ <?php
737
+ echo '<div class="large-12">';
738
+ foreach ($render_data as $key=>$privacy) {
739
+ echo '<div class="row section">';
740
+ ?>
741
+ <div class="columns large-6">
742
+ <?php echo $privacy['title'] ?>
743
+ </div>
744
+ <?php
745
+ echo '<div class="columns large-6">';
746
+ if($key != "enable")
747
+ call_user_func($privacy['callback'], array_merge_recursive($privacy['args'], array('class' => array("privacy-driven-disable"))));
748
+ else
749
+ call_user_func($privacy['callback'], $privacy['args']);
750
+ ?>
751
+ <span data-tooltip class="has-tip" title="<?php echo (isset($privacy['args']['desc'])) ? $privacy['args']['desc'] : "NA"; ?>"><i class="rtmicon-info-circle"></i></span>
752
+ <?php
753
+ echo '</div>';
754
+ echo '</div>';
755
+
756
+ if( isset( $privacy['after_content'] ) ) {
757
+ ?>
758
+ <div class="row">
759
+ <div class="columns large-12">
760
+ <p class="rtmedia-info rtmedia-admin-notice">
761
+ <?php echo $privacy['after_content']; ?>
762
+ </p>
763
+ </div>
764
+ </div>
765
+ <?php
766
+ }
767
+ }
768
+ echo '</div>';
769
+ }
770
+
771
+ static function buddypress_render_options($options) {
772
+
773
+
774
+ $render = array(
775
+ 'rtmedia-enable-on-profile' => array(
776
+ 'title' => __('Enable media in profile','rtmedia'),
777
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
778
+ 'args' => array(
779
+ 'key' => 'buddypress_enableOnProfile',
780
+ 'value' => $options['buddypress_enableOnProfile'],
781
+ 'desc' => __('Enable Media on BuddyPress Profile','rtmedia')
782
+ )
783
+ ),
784
+ 'rtmedia-enable-on-group' => array(
785
+ 'title' => __('Enable media in group','rtmedia'),
786
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
787
+ 'args' => array(
788
+ 'key' => 'buddypress_enableOnGroup',
789
+ 'value' => $options['buddypress_enableOnGroup'],
790
+ 'desc' => __('Enable Media on BuddyPress Groups','rtmedia')
791
+ )
792
+ ),
793
+ 'rtmedia-enable-on-activity' => array(
794
+ 'title' => __('Allow upload from activity stream','rtmedia'),
795
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
796
+ 'args' => array(
797
+ 'key' => 'buddypress_enableOnActivity',
798
+ 'value' => $options['buddypress_enableOnActivity'],
799
+ 'desc' => __('Allow upload using status update box present on activity stream page','rtmedia'),
800
+ 'id' => "rtmedia-bp-enable-activity"
801
+ )
802
+ ),
803
+ 'rtmedia-activity-feed-limit' => array(
804
+ 'title' => __('Number of media items to show in activity stream', 'rtmedia'),
805
+ 'callback' => array('RTMediaFormHandler', 'number'),
806
+ 'args' => array(
807
+ 'key' => 'buddypress_limitOnActivity',
808
+ 'value' => $options['buddypress_limitOnActivity'],
809
+ 'desc' => __('With bulk uploads activity stream may get flooded. You can control maximum number of medias/files per activity. This limit will not affect the actual number of uplaods. Only display. <em>0</em> means unlimited.', 'rtmedia'),
810
+ 'class' => array('rtmedia-setting-text-box rtmedia-bp-activity-setting'),
811
+ 'min' => 0
812
+ )
813
+ )
814
+ );
815
+
816
+ return $render;
817
+ }
818
+
819
+ public static function buddypress_content() {
820
+
821
+ global $rtmedia;
822
+ $options = self::extract_settings('buddypress', $rtmedia->options);
823
+ ?>
824
+ <div class="postbox metabox-holder">
825
+ <h3 class="hndle"><span>Integration With BuddyPress Features</span></h3>
826
+ <?php
827
+ $render_data = self::buddypress_render_options($options);
828
+
829
+ echo '<div class="large-12">';
830
+ foreach ($render_data as $option) { ?>
831
+ <div class="row section">
832
+ <div class="columns large-9">
833
+ <?php echo $option['title']; ?>
834
+ </div>
835
+ <div class="columns large-3">
836
+ <?php call_user_func($option['callback'], $option['args']); ?>
837
+ <span data-tooltip class="has-tip" title="<?php echo (isset($option['args']['desc'])) ? $option['args']['desc'] : "NA"; ?>"><i class="rtmicon-info-circle"></i></span>
838
+ </div>
839
+ </div>
840
+ <?php }
841
+ echo '</div>';
842
+ echo '</div>';
843
+ ?>
844
+ <div class="postbox metabox-holder">
845
+ <h3 class="hndle"><span>Album Settings</span></h3>
846
+ <?php
847
+ $options = $rtmedia->options;
848
+ $render_options = array(
849
+ 'general_enableAlbums' => array(
850
+ 'title' => __('Organize media into albums','rtmedia'),
851
+ 'callback' => array('RTMediaFormHandler', 'checkbox'),
852
+ 'args' => array(
853
+ 'id' => 'rtmedia-album-enable',
854
+ 'key' => 'general_enableAlbums',
855
+ 'value' => $options['general_enableAlbums'],
856
+ 'desc' => __('This will add \'album\' tab to BuddyPress profile and group depending on ^above^ settings.','rtmedia')
857
+ )
858
+ ),
859
+ );
860
+ $render_options = apply_filters('rtmedia_album_control_setting',$render_options, $options);
861
+ foreach ($render_options as $tab => $option) {
862
+ ?>
863
+ <div class="row section">
864
+ <div class="columns large-9">
865
+ <?php echo $option['title']; ?>
866
+ </div>
867
+ <div class="columns large-3">
868
+ <?php call_user_func($option['callback'], $option['args']); ?>
869
+ <span data-tooltip class="has-tip" title="<?php echo (isset($option['args']['desc'])) ? $option['args']['desc'] : "NA"; ?>"><i class="rtmicon-info-circle"></i></span>
870
+ </div>
871
+ </div>
872
+ <?php
873
+ }
874
+ ?>
875
+ </div>
876
+ <?php
877
+ do_action('rtmedia_buddypress_setting_content');
878
+ }
879
+
880
+ public static function rtForm_settings_tabs_content($page, $sub_tabs) {
881
+ // $rtmedia_admin_ui_handler = "<div class='section-container auto' data-options='deep_linking: true' data-section=''>";
882
+ //echo "<div class='clearfix rtm-settings-tab-container'>";
883
+ $rtmedia_admin_ui_handler = "<div class='clearfix rtm-settings-tab-container horizontal-tabs'><dl class='tabs' data-tab>";
884
+ $rtmedia_admin_ui_handler = apply_filters("rtmedia_admin_ui_handler_filter",$rtmedia_admin_ui_handler);
885
+ echo $rtmedia_admin_ui_handler ;
886
+ $i = 1;
887
+ $sub_tabs = apply_filters("rtmedia_pro_settings_tabs_content",$sub_tabs);
888
+ ksort($sub_tabs);
889
+ foreach ($sub_tabs as $tab) {
890
+ $active_class = '';
891
+ if( $i == 1){ $active_class = 'active';} $i++;
892
+ if ( isset ( $tab[ 'icon' ] ) && ! empty ( $tab[ 'icon' ] ) )
893
+ $icon = '<i class="' . $tab[ 'icon' ] . '"></i>';
894
+ echo '<dd class="' . $active_class . '"><a id="tab-' . substr ( $tab[ 'href' ], 1 ) . '" title="' . $tab[ 'title' ] . '" href="' . $tab[ 'href' ] . '" class="rtmedia-tab-title ' . sanitize_title ( $tab[ 'name' ] ) . '">' . $icon . $tab[ 'name' ] . '</a></dd>';
895
+ }
896
+ echo "</dl>";
897
+ ?>
898
+
899
+ <?php
900
+ $rtmedia_admin_tab_content_handler = "<div class='tabs-content'>";
901
+ $rtmedia_admin_tab_content_handler = apply_filters("rtmedia_admin_tab_content_handler",$rtmedia_admin_tab_content_handler);
902
+ echo $rtmedia_admin_tab_content_handler;
903
+ $k = 1;
904
+ foreach ($sub_tabs as $tab) {
905
+ $active_class = '';
906
+ if( $k == 1){ $active_class = ' active';} $k++;
907
+ if ( isset ( $tab[ 'icon' ] ) && ! empty ( $tab[ 'icon' ] ) )
908
+ $icon = '<i class="' . $tab[ 'icon' ] . '"></i>';
909
+ $tab_without_hash = explode("#", $tab[ 'href' ]);
910
+ $tab_without_hash = $tab_without_hash[1];
911
+ echo '<div class="content' . $active_class .'" id="' . $tab_without_hash . '">';
912
+ call_user_func($tab['callback'], $page);
913
+ echo '</div>';
914
+ }
915
+ echo "</div>";
916
+ ?>
917
+ </div>
918
+ <div class="clearfix"></div>
919
+ <?php
920
+ }
921
+
922
+ public static function rtForm_do_settings_fields($page, $section) {
923
+ global $wp_settings_fields;
924
+
925
+ if (!isset($wp_settings_fields) || !isset($wp_settings_fields[$page]) || !isset($wp_settings_fields[$page][$section]))
926
+ return;
927
+
928
+ foreach ((array) $wp_settings_fields[$page][$section] as $field) {
929
+ echo '<div class="row">';
930
+ echo '<div class="large-11 columns">';
931
+
932
+ if (isset($field['args']['label_for']) && !empty($field['args']['label_for']))
933
+ call_user_func($field['callback'], array_merge($field['args'], array('label' => $field['args']['label_for'])));
934
+ else if (isset($field['title']) && !empty($field['title']))
935
+ call_user_func($field['callback'], array_merge($field['args'], array('label' => $field['title'])));
936
+ else
937
+ call_user_func($field['callback'], $field['args']);
938
+ echo '</div>';
939
+ echo '</div>';
940
+ }
941
+ }
942
+ }
trunk/app/assets/css/admin.css ADDED
@@ -0,0 +1,782 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /**
2
+ * Legacy
3
+ */
4
+
5
+ /*
6
+ * Default stylesheet for BuddyPress Media
7
+ */
8
+ #wpbody-content div.wrap.bp-media-admin .columns-2{margin-right:320px;padding-top: 0;margin-top: 15px;width: 620px}
9
+ #wpbody-content .bp-media-settings-tabs{margin-bottom: 0; }
10
+ #wpbody-content .bp-media-settings-tabs .media-nav-tab{margin: 0 10px; text-decoration: underline; text-transform: capitalize}
11
+ #wpbody-content .bp-media-settings-tabs .media-nav-tab.media-nav-tab-active{font-weight: bold}
12
+
13
+ #wpbody-content .wrap div.bp-media-metabox-holder{padding-top: 0; margin-top:10px;}
14
+ .bp-media-social{background: url('../img/bp_media_social.png');height: 35px;width: 35px;display: inline-block;font-size: 0px;margin-right:5px;}
15
+ .bp-media-facebook{background-position: 0px 0px;}
16
+ .bp-media-facebook:hover{background-position: 0px 36px;}
17
+ .bp-media-twitter{background-position: 80px 0px;}
18
+ .bp-media-twitter:hover{background-position: 80px 36px;}
19
+ .bp-media-rss{font-size: 14px;}
20
+ .bp-media-support .support_list{ margin-left: 25px}
21
+ .bp-media-support .support_list li{list-style: disc;margin-bottom: 10px}
22
+
23
+ div#icon-buddypress-media { background: url('../img/bpm-icon-32.png'); background-position-y: 35px; }
24
+
25
+ #adminmenu li.toplevel_page_bp-media-settings .wp-menu-image a{background:url('../img/bpm-icon-16.png') center 1px no-repeat;}
26
+ #adminmenu li.toplevel_page_bp-media-settings:hover .wp-menu-image a,
27
+ #adminmenu li.current.toplevel_page_bp-media-settings .wp-menu-image a{background-position: center 1px;}
28
+ #adminmenu li.toplevel_page_bp-media-settings .wp-menu-image a img{display:none;}
29
+ #bp-media-settings-boxes{margin:0px;}
30
+ #debug-info{clear:left;border:none; overflow: hidden; padding: 10px; margin: 10px 0 20px 0; -webkit-border-bottom-left-radius:3px;border-bottom-left-radius:3px;-webkit-border-top-right-radius:3px;border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-bottom-right-radius:3px; }
31
+ #debug-info th, #debug-info td{ border: 1px #e5e5e5 solid; border-left:none; border-right:none;}
32
+ .nav-tab-wrapper a#bp-media{background:url('../img/bpm-icon-32.png') transparent no-repeat; padding-left:32px;}
33
+ .nav-tab-wrapper a#bp-media:hover,.nav-tab-wrapper a#bp-media.nav-tab-active{background-position:left -96px;}
34
+ .nav-tab-wrapper .by {font-size : 13px;}
35
+ .metabox-holder .postbox#latest-news .inside ul li{list-style: disc inside;}
36
+ /*.metabox-holder .postbox#latest-news .inside ul li{background: transparent url('../img/bpm-icon-32.png') -5px 0px no-repeat; padding-left: 32px;}*/
37
+ /*.metabox-holder .postbox#latest-news .inside ul li:hover{background-position-y: -96px;}*/
38
+ #branding{min-height: 25px;}
39
+ #branding .inside{min-height: 25px; margin: 10px 0;}
40
+ #branding #logo{text-align:center;padding: 10px 0;display:block;}
41
+ #social{display:block;margin:0;clear: both;}
42
+ #branding #mc-embedded-subscribe-form{float: left;width: 100%;}
43
+ #branding label{float: right;}
44
+ #branding #mc-embedded-subscribe{float: right;padding: 0 3px;}
45
+ #branding #mce-EMAIL{float: left; max-width : 160px;}
46
+ #social .row .large-6{display:inline; vertical-align: middle; padding:0; text-align:center;}
47
+ #social .label{display : inline-block; width : 55px;}
48
+ #social p { margin : 6px 0;}
49
+ #spread-the-word .button{display:inline-block; margin: 5px 0px;}
50
+ #spread-the-word label{display:block;}
51
+ #spread-the-word .inside{ padding: 5px 0 10px 0; margin:0;}
52
+ #spread-the-word .button-tweet, #bpmedia-bpalbumimporter .button-import-tweet{background: #33ACE6; border-color: #3399DD #3399DD #2288CC; color: #FFFFFF !important; text-shadow: -1px -1px 0 #3399DD;}
53
+ #spread-the-word .button-tweet:hover, #bpmedia-bpalbumimporter .button-import-tweet:hover{background: #3399DD;border-color: #2288CC;box-shadow: 0 0 4px rgba(82, 168, 236, 0.75);}
54
+ #spread-the-word .button-rating{background: #8A8A8A; border-color: #222; color: #FFFFFF !important; text-shadow: -1px -1px 0 #444;}
55
+ #spread-the-word .button-rating:hover{background: #7E7E7E;border-color: #444;box-shadow: 0 0 4px rgba(128,128,128, 0.75);}
56
+ #spread-the-word .bpm-logo, #branding .rtc-logo {margin-right : 10px; vertical-align: middle;}
57
+ .wrap.bp-media-admin .bp-media-settings-tabs a.nav-tab{padding-left:20px;background:url('../img/tab-icon.png') 3px -4px no-repeat;}
58
+ .wrap.bp-media-admin .bp-media-settings-tabs a.nav-tab.addons{background-position-y:-34px;}
59
+ .wrap.bp-media-admin .bp-media-settings-tabs a.nav-tab.support{background-position-y:-64px;}
60
+ .wrap.bp-media-admin .bp-media-settings-tabs a.nav-tab.update-database{background-position-y:-94px;}
61
+ .wrap.bp-media-admin .bp-media-settings-tabs a.nav-tab.ffmpeg{background-position-y:-154px;}
62
+ .wrap.bp-media-admin .bp-media-settings-tabs a.nav-tab.kaltura{background-position-y:-184px;}
63
+ .wrap.bp-media-admin .bp-media-settings-tabs a.nav-tab.convert-videos{background-position-y:-214px;}
64
+ .wrap.bp-media-admin .bp-media-settings-tabs a.nav-tab.insta{background-position-y:-244px;}
65
+ .wrap.bp-media-admin .bp-media-settings-tabs a.nav-tab.watermark{background-position-y:-274px;}
66
+ .wrap.bp-media-admin .row {max-width: 100%;}
67
+ #bpm-unsubscribe-dialog { display: none; }
68
+ #bpm-unsubscribe-dialog p { margin: 10px; }
69
+
70
+ table.bp-media-encoding-table td, table.bp-media-encoding-table th {
71
+ border-left-color: #fff;
72
+ border-right-color: #dfdfdf;
73
+ border-width: 1px;
74
+ vertical-align: middle;
75
+ text-align: center;
76
+ font-family: sans-serif;
77
+ }
78
+ table.bp-media-encoding-table th {
79
+ font-weight: bold;
80
+ }
81
+
82
+ /* Addons page Styling */
83
+
84
+ a.toplevel_page_bp-media-settings div.wp-menu-image{
85
+ background:url('../img/admin-menu.png') 0 -32px no-repeat;
86
+ }
87
+
88
+ #rt-donate-button, .rt-link img{vertical-align: middle;}
89
+ #adminmenu .menu-icon-generic.toplevel_page_bp-media-settings div.wp-menu-image{
90
+ background-position: 0 -32px;
91
+ }
92
+ #adminmenu .menu-icon-generic.wp-has-current-submenu.toplevel_page_bp-media-settings div.wp-menu-image,
93
+ #adminmenu .menu-icon-generic.toplevel_page_bp-media-settings:hover div.wp-menu-image{
94
+ background-position-y:0;
95
+ }
96
+
97
+ #bp-media-addons-list_metabox {background: #ffffff}
98
+ .products ul:after, ul.products:after {clear: both;content: "";display: block;}
99
+ .products ul, ul.products {clear: both;list-style: none outside none;margin: 0 0 14px;padding: 0;}
100
+ .bp-media-addon {margin: 0;}
101
+ .bp-media-addon.first { }
102
+ .bp-media-addon {margin: 20px 10px 30px;padding: 5px;position: relative;border: 1px solid #ccc;}
103
+ .bp-media-addon h4 {background: none repeat scroll 0 0 transparent;border: 0 none;color: #006999;cursor: pointer;font-family: "HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",sans-serif;font-size: 20px;font-weight: normal;line-height: 26px;margin: 0 0 10px;}
104
+ .bp-media-addon a {text-decoration: none;}
105
+ .bp-media-addon a img, div.product div.images img {box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.4);}
106
+ .bp-media-addon a img {display: block;height: auto;margin: 5px 15px 5px 5px;transition: all 0.2s ease-in-out 0s;float: left; width: 200px}
107
+
108
+ .bp-media-addon .price, .bp-media-addon .price .amount, .bp-media-addon .price ins {color: #85AD74;font-size: 25px;font-weight: bold;}
109
+ .bp-media-addon .price {line-height: 1.4em;color: #85AD74;display: block;font-weight: normal;margin-bottom: 0.5em;}
110
+ .coming-soon { background: url("../img/coming-soon.png"); z-index: 5; position:absolute;height:191px; opacity:0.9;}
111
+ .coming-soon.coming-soon-l { background-position: 0 0; width:250px; top:-12px; left:-18px;}
112
+ .coming-soon.coming-soon-r { background-position: 347px 0; width:174px; bottom:-14px; right:-12px;}
113
+ .coming-soon.coming-soon-r:hover{background-position: 175px 0;}
114
+
115
+ .bp-media-addon .product_footer{margin: 20px 0 0;overflow: hidden;}
116
+ .bp-media-addon .add_to_cart_button{background: #C45200; color: #FFFFFF;display: inline-block;font-size: 18px;font-weight: bold; line-height: 1.4em; margin: 0 20px; padding: 4px 15px;text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.6)}
117
+ .bp-media-addon .product_footer .product_demo_link{font-size: 16px;margin: 8px 20px; font-weight: bold}
118
+
119
+ .bp-media-addon .add_to_cart_button:hover{background: none repeat scroll 0 0 #D75A00;
120
+ box-shadow: 0 1px rgba(0, 0, 0, 0.2), 0 0 1px rgba(0, 0, 0, 0.4) inset;
121
+ color: #FFFFFF;}
122
+
123
+ div.i-accept{ background-color: #dff0d8 !important; }
124
+ div.bp-album-import-accept{ padding: 1px 2px; margin-bottom: 15px; }
125
+ .bp-album-importer-wizard { display: none; margin-top: 15px; }
126
+ #setting-error-bp-album-importer { line-height: 1.8em; }
127
+ .wp-core-ui .btn-warning {
128
+ color: #ffffff;
129
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
130
+ background-color: #faa732;
131
+ *background-color: #f89406;
132
+ background-image: -moz-linear-gradient(top, #fbb450, #f89406);
133
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
134
+ background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
135
+ background-image: -o-linear-gradient(top, #fbb450, #f89406);
136
+ background-image: linear-gradient(to bottom, #fbb450, #f89406);
137
+ background-repeat: repeat-x;
138
+ border-color: #f89406 #f89406 #ad6704;
139
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
140
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);
141
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
142
+ }
143
+
144
+ #item-body a.btn-danger {
145
+ padding: 4px 10px;
146
+ color: #ffffff;
147
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
148
+ background-color: #da4f49;
149
+ *background-color: #bd362f;
150
+ background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
151
+ background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
152
+ background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
153
+ background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
154
+ background-image: linear-gradient(to bottom, #ee5f5b, #bd362f);
155
+ background-repeat: repeat-x;
156
+ border-color: #bd362f #bd362f #802420;
157
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
158
+ filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);
159
+ filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
160
+ }
161
+
162
+ #item-body a.btn-danger:hover,
163
+ #item-body a.btn-danger:focus,
164
+ #item-body a.btn-danger:active,
165
+ #item-body a.btn-danger.active,
166
+ #item-body a.btn-danger.disabled,
167
+ #item-body a.btn-danger[disabled] {
168
+ color: #ffffff;
169
+ border-color: #bd362f #bd362f #802420;
170
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
171
+ background: #bd362f;
172
+ *background: #a9302a;
173
+ }
174
+
175
+ #item-body a.btn-danger:active,
176
+ #item-body a.btn-danger.active {
177
+ border-color: #bd362f #bd362f #802420;
178
+ border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
179
+ background: #942a25 \9;
180
+ }
181
+
182
+
183
+ .wp-core-ui .btn-warning:hover,
184
+ .wp-core-ui .btn-warning:focus,
185
+ .wp-core-ui .btn-warning:active,
186
+ .wp-core-ui .btn-warning.active,
187
+ .wp-core-ui .btn-warning.disabled,
188
+ .wp-core-ui .btn-warning[disabled] {
189
+ color: #ffffff;
190
+ background: #f89406;
191
+ background-color: #f89406;
192
+ *background: #df8505;
193
+ *background-color: #df8505;
194
+ }
195
+
196
+ /* Admin bar Menu */
197
+ #wpadminbar .bp-media-settings-menu > .ab-item .ab-icon{background: url("../img/bpm-icon-16.png") no-repeat scroll -8px -7px transparent}
198
+ #wpadminbar .bp-media-settings-menu:hover .ab-icon{background-position: -8px -41px}
199
+
200
+ /* BuddyPress media admin support form styling */
201
+ .bp-media-updated, .bp-media-error{border-radius: 3px; padding: 0 7px; margin: 5px 0 15px; border: 1px solid}
202
+ .bp-media-updated p, .bp-media-error p{margin: 0.5em 0;padding: 2px;}
203
+ .bp-media-updated{background-color: #FFFFE0;border-color: #E6DB55;}
204
+ .bp-media-error{background-color: #FFEBE8;border-color: #CC0000;}
205
+ .bp-media-form li{margin-bottom: 10px}
206
+ .bp-media-form .bp-media-label{display: inline-block;margin-right: 10px;width: 150px;vertical-align: top; }
207
+ .bp-media-form .bp-media-input{background-color: #FFFFFF;border: 1px solid #DFDFDF;border-radius: 3px 3px 3px 3px;color: #333333;line-height: 16px;padding: 5px;width: 220px;}
208
+ .bp-media-form .bp-media-checkbox{margin-right: 10px; margin-left: 160px}
209
+ .bp-media-form .bp-media-textarea{background-color: #FFFFFF;border: 1px solid #DFDFDF;border-radius: 3px 3px 3px 3px;color: #333333;height: 175px;line-height: 16px;padding: 5px;width: 400px;}
210
+ .bp-media-form .bp-media-select{margin: 0;max-width: 400px;}
211
+ .bp-media-support-attachment label{float: left}
212
+ .bp-media-support-attachment .more-attachment{margin-left: 160px; margin-top: 10px}
213
+ .bp-media-support-attachment .more-attachment:first-child{margin-top: 0px}
214
+ .bp-media-support-attachment .add-more-attachment-btn{clear: both;display: inline-block;margin-left: 160px;margin-top: 10px;}
215
+ .template_select_label{float: left}
216
+ .template_select_container{overflow-x:scroll; width:405px;float: left}
217
+ #bp_media_settings_form .support_form_loader{height: 100px; width: 200px; background: url("../img/loader.gif") no-repeat }
218
+ /* Miscellaneous */
219
+ #normal-sortables .postbox .bp-media-form .submit{float: none; margin-left: 150px}
220
+ .rt-success{background-color: #E1FFDF;border-color: #2ACF2A;}
221
+ .rt-update{background-color: #FFEAA6;border-color:#E1CA82;}
222
+ img.bp-media-donation-image{display:block;margin: 10px auto;}
223
+ #donate form{text-align: center;}
224
+ /*Transcoding Teaser*/
225
+ .para-blockquote { background: #E5E5E5; padding: 10px; font-style: italic; }
226
+ #latest-update img, #members-list .update img, #members-list .update {display:block; overflow: hidden;}
227
+
228
+ .encoding-used,
229
+ .encoding-remaining { display: inline-block; width: 10px; height: 10px; margin-right: 5px;}
230
+ .encoding-used { background : #fb6003; }
231
+ .encoding-remaining { background: #444; }
232
+
233
+ .bp_media_content img{max-width:100%;}
234
+ .bp_media_content .mejs-poster img{max-width: 100%;}
235
+ .media .album-edit{display:inline;}
236
+ .media #item-body h3 {float: left;}
237
+ .media #item-body .bp-media-gallery h3 { float:none; }
238
+ .media .bp-media-album-actions {float: left; margin-left: 15px;}
239
+ .media .bulk-move, .media .bulk-delete {display: none;}
240
+ .bp-media-list h3 {display:block;font-size:20px;font-weight:bold;}
241
+ ul.bp-media-gallery{overflow: hidden}
242
+ .bp_media_description {display:block;margin-top:20px;}
243
+ #bp-media-upload-form, #message, .bp-media-action-wrapper, #bp-media-user-privacy {clear:left;}
244
+ .bp-media-album-action-ui { display:none; }
245
+ .bp-media-album-description {clear:left;font-size:1.2em}
246
+ ul.bp-media-gallery.item-list{clear:left;overflow:visible;margin: 1% 0;width: auto;}
247
+ #item-body ul.bp-media-gallery li{float: left;margin: 1% 1% 0;width: 18%;border-bottom: none;padding: 0;position: static;height:auto; display:block;}
248
+ ul.bp-media-gallery li img{max-width:150px;width:100%;height:auto;-moz-box-shadow: 1px 1px 10px #a0a0a0;-webkit-box-shadow: 1px 1px 10px #a0a0a0;box-shadow: 1px 1px 10px #a0a0a0;-moz-transition: box-shadow 0.2s linear;-webkit-transition: box-shadow 0.2s linear;transition: box-shadow 0.2s linear;}
249
+ ul.bp-media-gallery li img:hover{-moz-box-shadow: 1px 1px 10px #333;-webkit-box-shadow: 1px 1px 10px #333;box-shadow: 1px 1px 10px #333;}
250
+ ul.bp-media-gallery h3{max-width: 150px;overflow: hidden;text-align: center;font-size: 110%;white-space: nowrap;height: 20px;margin: 10px 0px;}
251
+ ul.bp-media-gallery a{width:150px;}
252
+ ul.bp-media-gallery li span img{height: 150px;}
253
+ .bp-media-single .activity-list .activity-content,.bp-media-single div.activity-comments{margin-left:0;}
254
+ #bp-media-selected-album{max-width: 320px;}
255
+ /*li.media div.activity-content div.activity-inner p{display:none;}*/
256
+ .bp-media-list h3{margin-bottom:10px;}
257
+ #bp-media-footer {color: #4D4D4D;text-align: center;text-shadow: #FAFAFA 1px 1px 0;}
258
+ /*#bp-media-upload-ui{position: relative;}*/
259
+ #item-body:after,ul.bp-media-gallery.item-list:after{content: " ";clear: both;display: block;text-indent: -9999em;}
260
+ #item-body{position: relative;}
261
+
262
+
263
+ .bp-media-ajax-spinner { display: none; vertical-align: -3px;}
264
+ #bp-media-activity-upload-ui { width: 50%;}
265
+ .bp-media-area-allocate{height: 10px;width: 100%;display: block;}
266
+ li #bp-media-upload-ui {padding: 0;max-width: 158px;position: relative;}
267
+ #bp-media-upload-ui {margin-top: 10px; clear: left;}
268
+ #upload-container .drag-drop{border: 4px dashed #DDD;text-align: center;background: #fafafa;overflow: hidden;padding: 15px 0;}
269
+ #bp-media-upload-ui.hover #drag-drop-area {border-color: #83b4d8;}
270
+ li #bp-media-upload-ui #drag-drop-area{max-width: 150px;min-height: auto;}
271
+ /*.albums li #bp-media-upload-ui #drag-drop-area{padding: 20px 0 10px;}*/
272
+ #upload-container .drag-drop-inside{float: left;width: 48%;}
273
+ .albums #bp-media-upload-ui .drag-drop-inside{float: none;width: auto;}
274
+ li #bp-media-upload-ui .drag-drop-inside,li #bp-media-upload-ui #bp-media-album-prompt{float: none;max-width: 100%;width: auto;}
275
+ li #bp-media-upload-ui #bp-media-album-prompt{margin: 8px auto 0;max-width: 144px;}
276
+ #bp-media-upload-ui #bp-media-album-prompt{float: left;width: 47%;}
277
+ #bp-media-upload-ui .drag-drop-info{font-size:16px;}
278
+ #bp-media-upload-ui .drag-drop-inside p.drag-drop-info{font-size: 20px;line-height: 100%;}
279
+ #bp-media-upload-ui .drag-drop-buttons input,#bp-media-album-prompt input.button{-moz-box-sizing: content-box;border-color: #BBBBBB;border-radius: 15px;border-style: solid;border-width: 1px;color: #464646;cursor: pointer;font-size: 13px !important;line-height: 13px;padding: 5px 10px;text-decoration: none;}
280
+ li #bp-media-album-prompt input.button{font-size: 12px !important;padding: 3px 8px;text-decoration: none;margin-top: 5px;}
281
+ #bp-media-selected-album{max-width: 140px;font-size: 14px;width: 100%;}
282
+ li #bp-media-album-prompt > p,li #bp-media-upload-ui #drag-drop-area p{display: none;}
283
+ .albums li #bp-media-album-prompt > p,.albums li #bp-media-upload-ui #drag-drop-area p{display: block;}
284
+ li #bp-media-upload-ui #drag-drop-area p.drag-drop-buttons{display: block;}
285
+ #bp-media-album-prompt div.hide{display: none;margin: 0;}
286
+ #bp-media-album-prompt > span{font-size: 16px;}
287
+ .bp-media-album-content { display: inline }
288
+ /*#bp-media-upload-ui .drag-drop-inside p,#bp-media-album-prompt #bp_media_album_new{font-size: 14px;margin: 0;}*/
289
+ #bp-media-album-prompt #bp_media_album_new{max-width: 90%;}
290
+ li #bp-media-album-prompt #bp_media_album_new{margin: 0;max-width: 134px;width: 94%;}
291
+ #bp-media-upload-ui .drag-drop-to{width: 22px;line-height: 22px;margin: 40px auto 0;float: left;}
292
+ li #bp-media-upload-ui .drag-drop-to{width: 100%;line-height: 22px;margin: 0;float: none;}
293
+ #bp-media-album-in {background-color: #333333;border-radius: 11px 11px 11px 11px;color: #FFFFFF;display: block;float: left;font-size: 14px;line-height: 22px;width: 22px;}
294
+ .upload #bp-media-album-or{font-size: 14px;}
295
+ li #bp-media-album-in, .albums li #bp-media-album-or{float: none;margin: 20px auto;}
296
+ #bp-media-album-prompt #create-new{background-color: #DF562C;color: #fff;}
297
+
298
+ #bp-media-uploaded-files{background: none repeat scroll 0 0 #DDDDDD;margin-top: 5px;width: 100%;}
299
+ li #bp-media-uploaded-files{left: 0;position: absolute;top: 155px;}
300
+ #bp-media-uploaded-files .error{padding: 5px;text-align: center;}
301
+ .bp-media-progressbar{height: 28px;margin: 6px 10px 0 0;line-height: 2em;padding: 0;overflow: hidden;margin-bottom: 2px;border: 1px solid #D1D1D1;background: white;background-image: linear-gradient(bottom,white 0,#F7F7F7 100%);background-image: -o-linear-gradient(bottom,white 0,#F7F7F7 100%);background-image: -moz-linear-gradient(bottom,white 0,#F7F7F7 100%);background-image: -webkit-linear-gradient(bottom,white 0,#F7F7F7 100%);background-image: -ms-linear-gradient(bottom,white 0,#F7F7F7 100%);-webkit-border-radius: 3px;border-radius: 3px;-webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1);box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.1)}
302
+ .bp-media-progress-text{z-index: 10;position: relative;width: 100%;padding: 0 8px;text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);color: rgba(0, 0, 0, 0.6);font-size:16px;line-height: 28px;height: 28px;}
303
+ .bp-media-progress-completed{z-index: 9;width: 0;height: 35px;margin-top: -35px;background-color: #83B4D8;background-image: linear-gradient(bottom,#72A7CF 0,#90C5EE 100%);background-image: -o-linear-gradient(bottom,#72A7CF 0,#90C5EE 100%);background-image: -moz-linear-gradient(bottom,#72A7CF 0,#90C5EE 100%);background-image: -webkit-linear-gradient(bottom,#72A7CF 0,#90C5EE 100%);background-image: -ms-linear-gradient(bottom,#72A7CF 0,#90C5EE 100%);-webkit-border-radius: 3px;border-radius: 3px;-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);}
304
+ .bpm-aligncenter{display: inline-block;text-align: center;width: 100%;}
305
+ #bp-media-premium-addons ul,#bp-media-premium-addons li{list-style:disc;margin-left:10px;}
306
+ .bp-media-single div.bp_media_content{text-align:center;width: auto;
307
+ margin: 0 auto;
308
+ position: relative; clear: both; }
309
+ .bp-media-single .bp_media_content .mejs-container{margin-left:auto;margin-right:auto;}
310
+
311
+ .bp-media-actions{margin:20px 0;}
312
+ .bp-media-actions a{display:inline-block;}
313
+
314
+ .media-tabs-container .ui-tabs-panel{}
315
+ .media-tabs-container .ui-tabs-hide{display: none}
316
+
317
+ .media-tabs-container .ui-tabs-nav{clear: both;display: block;margin: 0 0 15px;overflow: hidden;}
318
+ .media-tabs-container .ui-state-default{border-left: 1px solid;float: left;line-height: 110%;padding: 0 5px; list-style: none;}
319
+ .media-tabs-container .ui-state-default:first-child{margin-left: 0px;border: 0; padding-left: 0}
320
+
321
+ .media-tabs-container .ui-state-default a{text-decoration: none}
322
+ .media-tabs-container .ui-state-default.ui-state-active a{text-decoration: underline}
323
+
324
+ .media-tabs-container .widget-item-listing li{position:relative; margin-top: 10px;overflow: hidden;min-height: 52px; float:left; width:50%;}
325
+ .media-tabs-container .widget-item-listing li img{max-width:90%; margin:0 auto; float: left; display: block }
326
+ .media-tabs-container .widget-item-listing li h3 {position:absolute; bottom:0;margin: 0; display:none; background:#fff none; width:100%;text-align:center;}
327
+ .media-tabs-container .widget-item-listing li:hover h3{display:block;}
328
+ .media-tabs-container .widget-item-listing li h3 a{font-size: 13px;font-weight: normal;word-wrap: break-word; }
329
+
330
+ #bp-media-show-more{width: 200px;margin-left: auto;margin-right: auto;display: block;height: 30px;line-height: 30px;font-size: 20px;}
331
+ #bp-media-show-more-sc {display:block; margin: 0 auto;}
332
+ #bp-media-upload-ui.activity-component{margin-left: 74px;margin-top: 10px;}
333
+ ul#activity-stream li.media.album_updated ul{}
334
+ ul#activity-stream li.media.album_updated ul li,ul.bp-media-list-media li{float: left;margin-right:2%}
335
+
336
+
337
+ body.media {overflow:auto;}
338
+ .media ul#bp-media-upload-set-privacy li input[type="radio"]{float:left;}
339
+ /* Privacy settings */
340
+ #bp-media-upload-set-privacy li{margin: 10px 0;overflow: hidden;}
341
+ #bp-media-upload-set-privacy .album-set-privacy-radio{}
342
+ #bp-media-upload-set-privacy .album-set-privacy-label{margin: 0;font-weight: normal;}
343
+
344
+ .bp-media-single .delete-activity-single,.bp-media-single .delete-activity{
345
+ color: #ff0000;
346
+ font-weight:bold;
347
+ }
348
+ .simplemodal-overlay{
349
+ background:#333 none;
350
+ z-index: 100000;
351
+ }
352
+ .simplemodal-container{
353
+ background:#fff none;
354
+ }
355
+ .bp-media-mod-title{
356
+ display:none;
357
+ }
358
+
359
+ .bp-media-ajax-single{
360
+ padding:0;
361
+ }
362
+ .bp-media-ajax-single .lightbox-spinner{
363
+ height:24px;
364
+ width:24px;
365
+ background: url("../img/boxspinner.gif") center center;
366
+ left:50%;
367
+ top:50%;
368
+ position:absolute;
369
+ }
370
+ .simplemodal-container .simplemodal-close{
371
+ background: url("../img/bp-media-modal.png") right bottom no-repeat;
372
+ width:22px;
373
+ height:22px;
374
+ display:block;
375
+ position:absolute;
376
+ right:0px;
377
+ top:0px;
378
+ cursor: pointer;
379
+ }
380
+ .simplemodal-container .simplemodal-close:hover{
381
+ background-position: right top;
382
+ }
383
+ .simplemodal-container a.modal-ctrl{
384
+ position:absolute;
385
+ height:100%;
386
+ height:100px;
387
+ width:100px;
388
+ top:50%;
389
+ margin-top:-50px;
390
+ cursor: pointer;
391
+ }
392
+ .simplemodal-container a.modal-ctrl:hover{
393
+ background: #232323 none;
394
+ }
395
+ .simplemodal-container a.modal-ctrl span.img-icon{
396
+ display: block;
397
+ height:22px;
398
+ width:22px;
399
+ margin:39px auto 39px 10px;
400
+
401
+ background: url("../img/bp-media-modal.png") left bottom no-repeat;
402
+ }
403
+ .simplemodal-container a.modal-next span.img-icon{
404
+ background-position: center bottom;
405
+ margin:39px 10px 39px auto;
406
+ }
407
+ .simplemodal-container a.modal-prev:hover span.img-icon{
408
+ background-position: left top;
409
+ }
410
+ .simplemodal-container a.modal-next:hover span.img-icon{
411
+ background-position: center top;
412
+ }
413
+ .simplemodal-container a.modal-prev:hover,
414
+ .simplemodal-container a.modal-next:hover{
415
+ background:url("../img/") no-repeat;
416
+ }
417
+ .simplemodal-container a.modal-prev{
418
+ left: 0px;
419
+ }
420
+ .simplemodal-container a.modal-next{
421
+ right: 0px;
422
+ }
423
+
424
+ .bp-media-ajax-single .bp-media-mod-title{
425
+ display:block;
426
+ margin-top:22px;
427
+ }
428
+ .bp-media-ajax-single .bp-media-mod-title h2{
429
+ margin: 5px 0;
430
+ padding:0;
431
+ }
432
+ .bp-media-ajax-single .bp-media-mod-title p{
433
+ line-height:1.4em;
434
+ }
435
+ .bp-media-ajax-single .bp_media_content img,
436
+ .bp-media-ajax-single .bp_media_content video,
437
+ .bp-media-ajax-single .bp_media_content audio{
438
+ max-width: 100%;
439
+ display:inline-block;
440
+ margin:0 auto;
441
+ vertical-align: middle;
442
+ background:#fff none;
443
+ max-height:600px;
444
+ }
445
+ .bp-media-ajax-single .bp_media_author{
446
+ position:absolute;
447
+ top:0;
448
+ left:0;
449
+ }
450
+ .bp-media-ajax-single .bp-media-content-wrap,
451
+ .bp-media-ajax-single .bp_media_content{
452
+ float:left;
453
+ width:auto;
454
+ margin:0;
455
+ position:relative;
456
+ overflow:hidden;
457
+ height:480px;
458
+ min-width:640px;
459
+ background: #333 none;
460
+ display:table;
461
+
462
+ }
463
+ .bp-media-ajax-single .bp_media_content{
464
+ display:table-cell;
465
+ vertical-align: middle;
466
+ float:none;
467
+ }
468
+ .bp-media-ajax-single .bp-media-content-wrap .bp_media_description{
469
+ display:block;
470
+ position:absolute;
471
+ bottom:0;
472
+ left:0;
473
+ }
474
+ .bp-media-ajax-single .bp-media-meta-content-wrap{
475
+ float:left;
476
+ width:250px;
477
+ margin:0;
478
+ min-height:480px;
479
+ margin-left:10px;
480
+ overflow:auto;
481
+ }
482
+ .bp-media-ajax-single .bp-media-meta-content-wrap .activity-meta{
483
+ margin:0;
484
+ }
485
+ .bp-media-ajax-single .bp-media-meta-content-wrap .activity-meta a{
486
+ padding: 2px 8px;
487
+ margin: 5px 5px 0 0;
488
+ display:inline-block;
489
+ }
490
+ .bp-media-ajax-single .bp-media-meta-content-wrap div.activity-comments ul li > ul{
491
+ margin-left:0;
492
+ padding-left:0;
493
+ }
494
+ .bp-media-ajax-single .bp-media-meta-content-wrap div.activity-comments form div.ac-reply-content{
495
+ margin-left:0;
496
+ padding-left:0;
497
+ }
498
+ /*.bp-media-ajax-single .bp-media-meta-content-wrap div.activity-meta a {
499
+ padding: 0;
500
+ float:left;
501
+ }*/
502
+ .bp-media-ajax-preloader{
503
+ display:none;
504
+ }
505
+
506
+ #adminmenu li#toplevel_page_bp-media-settings a.toplevel_page_bp-media-settings { font-size: 12px; }
507
+
508
+ @media (min-width: 981px) and (max-width: 1096px) {
509
+ li #bp-media-upload-ui #drag-drop-area{padding: 10px 0;}
510
+ /* li #bp-media-upload-ui .drag-drop-inside{margin: 0 auto;}*/
511
+ li #bp-media-album-in, .albums li #bp-media-album-or{margin: 15px auto;}
512
+ li #bp-media-upload-ui .drag-drop-inside p.drag-drop-info{font-size: 17px;}
513
+ li #bp-media-upload-ui .drag-drop-buttons input{padding: 3px 8px;}
514
+ li #bp-media-uploaded-files{top: 130px}
515
+ li #bp-media-upload-ui #bp-media-album-prompt{margin-top: 0;}
516
+ li #bp-media-album-prompt input.button{padding: 3px;}
517
+ /* .albums li #bp-media-upload-ui #drag-drop-area{padding: 10px 0 0;}*/
518
+ }
519
+ @media (max-width: 980px) {
520
+ #item-body ul.bp-media-gallery li{width: 23%;}
521
+ li #bp-media-upload-ui #drag-drop-area{min-height: auto;}
522
+ }
523
+ @media (min-width: 850px) and (max-width: 930px) {
524
+ li #bp-media-album-in, .albums li #bp-media-album-or{margin: 15px auto;}
525
+ li #bp-media-upload-ui .drag-drop-inside p.drag-drop-info{font-size: 17px;}
526
+ li #bp-media-upload-ui .drag-drop-buttons input{padding: 3px 8px;}
527
+ }
528
+ @media (max-width: 850px) {
529
+ #item-body ul.bp-media-gallery li{width: 31%;}
530
+ #bp-media-upload-ui .drag-drop-inside{width: 47%;}
531
+ #bp-media-upload-ui #bp-media-album-prompt{width: 46%;}
532
+ }
533
+ @media (min-width: 481px) and (max-width: 525px) {
534
+ li #bp-media-album-in, .albums li #bp-media-album-or{margin: 15px auto;}
535
+ li #bp-media-upload-ui .drag-drop-inside p.drag-drop-info{font-size: 17px;}
536
+ li #bp-media-upload-ui .drag-drop-buttons input{padding: 3px 8px;}
537
+ }
538
+ @media (max-width: 480px) {
539
+ #item-body ul.bp-media-gallery li{width: 48%;}
540
+ li #bp-media-upload-ui{max-width: 170px;}
541
+ ul.bp-media-gallery li img,li #bp-media-upload-ui #drag-drop-area{max-width: 170px;width: 100%;}
542
+ li #bp-media-upload-ui #drag-drop-area{max-width: 162px;padding: 20px 0;}
543
+ #bp-media-upload-ui .drag-drop-area{padding: 23px 0 10px;}
544
+ /* li #bp-media-upload-ui .drag-drop-inside{margin: 0 auto 23px;}*/
545
+ }
546
+ @media (max-width: 379px) {
547
+ #bp-media-upload-ui{min-height: 190px;}
548
+ #item-body ul.bp-media-gallery li{width: 95%;}
549
+ #bp-media-upload-ui .drag-drop-inside{float: none;width: 100%;}
550
+ #bp-media-album-in{float: none;}
551
+ #bp-media-upload-ui #bp-media-album-prompt{margin: 15px auto 15px;float: none;width: 100%}
552
+ #bp-media-upload-ui .drag-drop-inside p,#bp-media-album-prompt #bp_media_album_new{margin-bottom: 5px;}
553
+ }
554
+
555
+
556
+
557
+
558
+ /*------ custom CSS ------*/
559
+ /* line 5, ../sass/admin.scss */
560
+ .clearfix {
561
+ overflow: hidden;
562
+ *zoom: 1;
563
+ }
564
+
565
+ /* line 9, ../sass/admin.scss */
566
+ .pull-right {
567
+ float: right;
568
+ }
569
+
570
+ /* line 13, ../sass/admin.scss */
571
+ .pull-left {
572
+ float: left;
573
+ }
574
+
575
+ /* line 17, ../sass/admin.scss */
576
+ .inline {
577
+ display: inline;
578
+ }
579
+
580
+ /* line 21, ../sass/admin.scss */
581
+ .entity {
582
+ min-height: 25px !important;
583
+ }
584
+
585
+ /* line 25, ../sass/admin.scss */
586
+
587
+ /* line 32, ../sass/admin.scss */
588
+ .rt-table div.rt-header {
589
+ border-bottom-color: #F3F3F3;
590
+ border-bottom-width: 1px;
591
+ border-bottom-style: solid;
592
+ }
593
+ /* line 39, ../sass/admin.scss */
594
+ .rt-table div.rt-header h4 {
595
+ margin: 0;
596
+ }
597
+ /* line 44, ../sass/admin.scss */
598
+ .rt-table div.row {
599
+ margin: 2px;
600
+ padding: 2px;
601
+ }
602
+ /* line 48, ../sass/admin.scss */
603
+ .rt-table div.row.rt-odd {
604
+ background-color: #F3F3F3;
605
+ }
606
+ /* line 52, ../sass/admin.scss */
607
+ .rt-table div.row.rt-even {
608
+ background-color: #FFFFFF;
609
+ }
610
+
611
+ /* line 58, ../sass/admin.scss */
612
+ abbr {
613
+ border-bottom: dotted 1px;
614
+ }
615
+
616
+ /* line 62, ../sass/admin.scss */
617
+ .rt-description {
618
+ color: #666666;
619
+ font-style: italic;
620
+ }
621
+
622
+ /* line 69, ../sass/admin.scss */
623
+ .bpm-wp-button .bpm-wp-icon {
624
+ background-image: url(../img/wpmini-grey.png);
625
+ width: 20px;
626
+ height: 24px;
627
+ font-size: 14px;
628
+ background-repeat: no-repeat;
629
+ padding: 0 6px;
630
+ }
631
+
632
+ #rtprogressbar {
633
+ background-color: #444;
634
+ border-radius: 13px;
635
+ padding: 3px;
636
+ margin-bottom: 10px;
637
+ }
638
+
639
+ #rtprogressbar div {
640
+ background-color: #fb6003;
641
+ width: 0;
642
+ height: 20px;
643
+ border-radius: 10px;
644
+ }
645
+
646
+ #rtmedia_dashboard_widget p .sub{
647
+ padding: 0px;
648
+ margin : 0px;
649
+ color: #8F8F8F;
650
+ font-size: 14px
651
+ }
652
+ .bp-media-admin .rtm-premium {
653
+ background-color: #EB5B4C;
654
+ border-color: #EB5B4C;
655
+ color: #FFF;
656
+ }
657
+
658
+ .bp-media-admin .nav-tab-active.rtm-premium{
659
+ background-color: #E6311E;
660
+ }
661
+ .bp-media-admin .rtm-premium:hover {
662
+ background-color: #E6311E;
663
+ }
664
+ .rtmedia-admin-ad {
665
+ margin-bottom : 15px;
666
+ }
667
+ .rtmedia-admin-ad img{
668
+ text-align: center;
669
+ width:100%;
670
+ border :1px solid #e5e5e5;
671
+ }
672
+
673
+ .bp-media-admin .premium-title {
674
+ color: #444;
675
+ border-bottom: 1px solid #DDD ;
676
+ padding-bottom: 10px;
677
+ }
678
+
679
+ .bp-media-admin .premium-page-container {
680
+ margin-bottom: 20px;
681
+ }
682
+
683
+ .bp-media-admin .premium-page-container .rtm-premium-icon-pro {
684
+ margin-top: 9px;
685
+ min-width: 50px;
686
+ }
687
+ #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-message, #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-link,#TB_window #rtmedia-addon-add-container #rtmedia-flat-50-code {
688
+ text-align: center;
689
+ }
690
+ #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-message {
691
+ color: #3481C4;
692
+ }
693
+ #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-message .alert, #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-link .alert, #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-code .alert, #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-valid .alert {
694
+ color: #E6321F;
695
+ }
696
+ #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-message .regular, #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-link .regular, #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-code .regular, #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-valid .regular {
697
+ color: #6B757E;
698
+ }
699
+ #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-link span a:hover{
700
+ color:#49A600;
701
+ }
702
+ #TB_window #rtmedia-addon-add-container #rtmedia-flat-50-link span a{
703
+ text-decoration: none;
704
+ font-size: 20px;
705
+ color:#125DAC;
706
+ }
707
+ #rtmedia-flat-50-valid {
708
+ text-align: right;
709
+ }
710
+ #rtmedia-addon-do-not-show {
711
+ text-decoration: none;
712
+ font-size: 15px;
713
+ }
714
+ .rtm-custom-css {
715
+ margin-top : 10px;
716
+ }
717
+ .rtm-custom-css textarea#rtmedia-custom-css {
718
+ display: block;
719
+ width : 100%;
720
+ height : 200px;
721
+ margin-bottom: 10px;
722
+ }
723
+ #social .link-footer { margin : 12px 0 5px 0;}
724
+
725
+ .rtmedia-upgrade {
726
+ text-align : center;
727
+ margin-top :10px;
728
+ }
729
+ .upgrade-button {
730
+ background-color: #3475BA;
731
+ border-radius: 5px 5px 5px 5px;
732
+ text-transform: uppercase;
733
+ box-shadow: 0 0 0 rgba(255, 255, 255, 0) inset;
734
+ transition: background-color 300ms ease-out 0s;
735
+ color : #fff;
736
+ border: 1px solid #195791;
737
+ padding: 10px 20px;
738
+ background-image : none;
739
+ text-decoration : none;
740
+ margin-top : 20px;
741
+ }
742
+ .upgrade-button:hover {
743
+ background-color: #195791;
744
+ color : #fff;
745
+ }
746
+ .rtmedia-theme-page-container, .rtmedia-hire-us-page-container {
747
+ background-color: #FFF;
748
+ border: 1px solid #CCC;
749
+ padding: 0 10px 15px 10px;
750
+ }
751
+ .rtmedia-theme-page-container, .rtmedia-hire-us-page-container ol{
752
+ margin-bottom : 20px;
753
+ }
754
+ #rtm-themes .rtmedia-theme-image img {
755
+ width: 100%;
756
+ }
757
+
758
+ #rtm-themes h3.rtmedia-theme-3rd-party-title, #rtm-themes h3.rtmedia-theme-title {
759
+ margin: 5px 0;
760
+ }
761
+
762
+ #rtm-themes h3.rtmedia-theme-3rd-party-title a, #rtm-themes h3.rtmedia-theme-title a, #rtm-themes .rtmedia-theme-content a {
763
+ text-decoration: none;
764
+ }
765
+
766
+ #rtm-themes .rtmedia-theme-warning {
767
+ color: red;
768
+ }
769
+ div.bp-media-metabox-holder #branding #mce-responses {
770
+ display: inline;
771
+ }
772
+ .bp-media-settings-boxes-container {
773
+ max-width: 100%;
774
+ width: 100%;
775
+ margin: 0;
776
+ }
777
+ .bp-media-settings-boxes-container #bp-media-settings-boxes {
778
+ padding-left: 0;
779
+ }
780
+ .bp-media-settings-boxes-container .bp-media-metabox-holder {
781
+ padding-right: 0;
782
+ }
trunk/app/assets/css/bootstrap-switch.css ADDED
@@ -0,0 +1,184 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* line 9, ../sass/bootstrap-switch.scss */
2
+ .fui-cross,
3
+ .fui-check {
4
+ display: inline-block;
5
+ speak: none;
6
+ font-style: normal;
7
+ font-weight: normal;
8
+ font-variant: normal;
9
+ text-transform: none;
10
+ -webkit-font-smoothing: antialiased;
11
+ }
12
+
13
+ /* line 18, ../sass/bootstrap-switch.scss */
14
+ .fui-cross:before {
15
+ content: "\2716";
16
+ }
17
+
18
+ /* line 21, ../sass/bootstrap-switch.scss */
19
+ .fui-check:before {
20
+ content: "\2714";
21
+ }
22
+
23
+ /* Switch checkbox */
24
+ /* line 44, ../sass/bootstrap-switch.scss */
25
+ .has-switch {
26
+ border-radius: 30px;
27
+ display: inline-block;
28
+ cursor: pointer;
29
+ line-height: 1.231;
30
+ overflow: hidden;
31
+ position: relative;
32
+ text-align: left;
33
+ width: 55px;
34
+ height: 20px;
35
+ -webkit-mask: url("../img/mask.png") 0 0 no-repeat;
36
+ mask: url("../img/mask.png") 0 0 no-repeat;
37
+ -webkit-user-select: none;
38
+ -moz-user-select: none;
39
+ user-select: none;
40
+ }
41
+ /* line 58, ../sass/bootstrap-switch.scss */
42
+ .has-switch.deactivate {
43
+ filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=5000);
44
+ opacity: 50;
45
+ cursor: default !important;
46
+ }
47
+ /* line 61, ../sass/bootstrap-switch.scss */
48
+ .has-switch.deactivate label, .has-switch.deactivate span {
49
+ cursor: default !important;
50
+ }
51
+ /* line 66, ../sass/bootstrap-switch.scss */
52
+ .has-switch > div {
53
+ width: 162%;
54
+ position: relative;
55
+ top: 0;
56
+ }
57
+ /* line 71, ../sass/bootstrap-switch.scss */
58
+ .has-switch > div.switch-animate {
59
+ -webkit-transition: left 0.25s ease-out;
60
+ -moz-transition: left 0.25s ease-out;
61
+ -o-transition: left 0.25s ease-out;
62
+ transition: left 0.25s ease-out;
63
+ }
64
+ /* line 75, ../sass/bootstrap-switch.scss */
65
+ .has-switch > div.switch-off {
66
+ left: -63%;
67
+ }
68
+ /* line 78, ../sass/bootstrap-switch.scss */
69
+ .has-switch > div.switch-off label {
70
+ background-color: #2a95c5;
71
+ border-color: #bdc3c7;
72
+ -webkit-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5);
73
+ -moz-box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5);
74
+ box-shadow: -1px 0 0 rgba(255, 255, 255, 0.5);
75
+ }
76
+ /* line 85, ../sass/bootstrap-switch.scss */
77
+ .has-switch > div.switch-on {
78
+ left: 0%;
79
+ }
80
+ /* line 88, ../sass/bootstrap-switch.scss */
81
+ .has-switch > div.switch-on label {
82
+ background-color: #bdc3c7;
83
+ }
84
+ /* line 94, ../sass/bootstrap-switch.scss */
85
+ .has-switch input[type=checkbox] {
86
+ display: none;
87
+ }
88
+ /* line 98, ../sass/bootstrap-switch.scss */
89
+ .has-switch span {
90
+ cursor: pointer;
91
+ font-size: 10.71px;
92
+ font-weight: 700;
93
+ float: left;
94
+ height: 20px;
95
+ line-height: 19px;
96
+ margin: 0;
97
+ padding-top: 1px;
98
+ position: relative;
99
+ text-align: center;
100
+ width: 50%;
101
+ z-index: 1;
102
+ -webkit-box-sizing: border-box;
103
+ -moz-box-sizing: border-box;
104
+ box-sizing: border-box;
105
+ -webkit-transition: 0.25s ease-out;
106
+ -moz-transition: 0.25s ease-out;
107
+ -o-transition: 0.25s ease-out;
108
+ transition: 0.25s ease-out;
109
+ }
110
+ /* line 114, ../sass/bootstrap-switch.scss */
111
+ .has-switch span.switch-left {
112
+ border-radius: 30px 0 0 30px;
113
+ background-color: #2a95c5;
114
+ color: white;
115
+ border-left: 1px solid transparent;
116
+ }
117
+ /* line 121, ../sass/bootstrap-switch.scss */
118
+ .has-switch span.switch-right {
119
+ border-radius: 0 30px 30px 0;
120
+ background-color: #bdc3c7;
121
+ color: white;
122
+ text-indent: 7px;
123
+ }
124
+ /* line 127, ../sass/bootstrap-switch.scss */
125
+ .has-switch span.switch-right [class*="fui-"] {
126
+ text-indent: 0;
127
+ }
128
+ /* line 133, ../sass/bootstrap-switch.scss */
129
+ .has-switch label {
130
+ border: 4px solid #2a95c5;
131
+ border-radius: 50%;
132
+ float: left;
133
+ height: 12px;
134
+ margin: 0 -12px 0 -10px;
135
+ padding: 0;
136
+ position: relative;
137
+ vertical-align: middle;
138
+ width: 12px;
139
+ z-index: 100;
140
+ -webkit-transition: 0.25s ease-out;
141
+ -moz-transition: 0.25s ease-out;
142
+ -o-transition: 0.25s ease-out;
143
+ transition: 0.25s ease-out;
144
+ }
145
+
146
+ /* line 150, ../sass/bootstrap-switch.scss */
147
+ .switch-square {
148
+ border-radius: 6px;
149
+ -webkit-mask: url("../img/mask.png") 0 0 no-repeat;
150
+ mask: url("../img/mask.png") 0 0 no-repeat;
151
+ }
152
+ /* line 157, ../sass/bootstrap-switch.scss */
153
+ .switch-square > div.switch-off label {
154
+ border-color: #2a95c5;
155
+ border-radius: 6px 0 0 6px;
156
+ }
157
+ /* line 164, ../sass/bootstrap-switch.scss */
158
+ .switch-square span {
159
+ -webkit-transition: 0.25s ease-out;
160
+ -moz-transition: 0.25s ease-out;
161
+ -o-transition: 0.25s ease-out;
162
+ transition: 0.25s ease-out;
163
+ }
164
+ /* line 168, ../sass/bootstrap-switch.scss */
165
+ .switch-square span.switch-left {
166
+ border-radius: 6px 0 0 6px;
167
+ }
168
+ /* line 170, ../sass/bootstrap-switch.scss */
169
+ .switch-square span.switch-left [class*="fui-"] {
170
+ text-indent: -10px;
171
+ }
172
+ /* line 175, ../sass/bootstrap-switch.scss */
173
+ .switch-square span.switch-right {
174
+ border-radius: 0 6px 6px 0;
175
+ }
176
+ /* line 177, ../sass/bootstrap-switch.scss */
177
+ .switch-square span.switch-right [class*="fui-"] {
178
+ text-indent: 5px;
179
+ }
180
+ /* line 183, ../sass/bootstrap-switch.scss */
181
+ .switch-square label {
182
+ border-radius: 0 6px 6px 0;
183
+ border-color: #bdc3c7;
184
+ }
trunk/app/assets/css/bower_components/foundation/scss/foundation.css ADDED
@@ -0,0 +1 @@
 
1
+ @import url("//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700");meta.foundation-mq-small{font-family:"/only screen and (max-width: 40em)/";width:0em}meta.foundation-mq-medium{font-family:"/only screen and (min-width:40.063em) and (max-width:64em)/";width:40.063em}meta.foundation-mq-large{font-family:"/only screen and (min-width:64.063em)/";width:64.063em}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:90.063em)/";width:90.063em}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:120.063em)/";width:120.063em}*,*:before,*:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}html,body{font-size:100%}body{background:#fff;color:#222;padding:0;margin:0;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-weight:normal;font-style:normal;line-height:1;position:relative;cursor:default}a:hover{cursor:pointer}img,object,embed{max-width:100%;height:auto}object,embed{height:100%}img{-ms-interpolation-mode:bicubic}#map_canvas img,#map_canvas embed,#map_canvas object,.map_canvas img,.map_canvas embed,.map_canvas object{max-width:none !important}.left{float:left !important}.right{float:right !important}.clearfix{*zoom:1}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}.text-justify{text-align:justify !important}.hide{display:none}.antialiased{-webkit-font-smoothing:antialiased}img{display:inline-block;vertical-align:middle}textarea{height:auto;min-height:50px}select{width:100%}.row{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5rem;*zoom:1}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.row.collapse>.column,.row.collapse>.columns{position:relative;padding-left:0;padding-right:0;float:left}.row.collapse .row{margin-left:0;margin-right:0}.row .row{width:auto;margin-left:-0.9375rem;margin-right:-0.9375rem;margin-top:0;margin-bottom:0;max-width:none;*zoom:1}.row .row:before,.row .row:after{content:" ";display:table}.row .row:after{clear:both}.row .row.collapse{width:auto;margin:0;max-width:none;*zoom:1}.row .row.collapse:before,.row .row.collapse:after{content:" ";display:table}.row .row.collapse:after{clear:both}.column,.columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;width:100%;float:left}@media only screen{.small-push-1{position:relative;left:8.33333%;right:auto}.small-pull-1{position:relative;right:8.33333%;left:auto}.small-push-2{position:relative;left:16.66667%;right:auto}.small-pull-2{position:relative;right:16.66667%;left:auto}.small-push-3{position:relative;left:25%;right:auto}.small-pull-3{position:relative;right:25%;left:auto}.small-push-4{position:relative;left:33.33333%;right:auto}.small-pull-4{position:relative;right:33.33333%;left:auto}.small-push-5{position:relative;left:41.66667%;right:auto}.small-pull-5{position:relative;right:41.66667%;left:auto}.small-push-6{position:relative;left:50%;right:auto}.small-pull-6{position:relative;right:50%;left:auto}.small-push-7{position:relative;left:58.33333%;right:auto}.small-pull-7{position:relative;right:58.33333%;left:auto}.small-push-8{position:relative;left:66.66667%;right:auto}.small-pull-8{position:relative;right:66.66667%;left:auto}.small-push-9{position:relative;left:75%;right:auto}.small-pull-9{position:relative;right:75%;left:auto}.small-push-10{position:relative;left:83.33333%;right:auto}.small-pull-10{position:relative;right:83.33333%;left:auto}.small-push-11{position:relative;left:91.66667%;right:auto}.small-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.small-1{position:relative;width:8.33333%}.small-2{position:relative;width:16.66667%}.small-3{position:relative;width:25%}.small-4{position:relative;width:33.33333%}.small-5{position:relative;width:41.66667%}.small-6{position:relative;width:50%}.small-7{position:relative;width:58.33333%}.small-8{position:relative;width:66.66667%}.small-9{position:relative;width:75%}.small-10{position:relative;width:83.33333%}.small-11{position:relative;width:91.66667%}.small-12{position:relative;width:100%}.small-offset-0{position:relative;margin-left:0%}.small-offset-1{position:relative;margin-left:8.33333%}.small-offset-2{position:relative;margin-left:16.66667%}.small-offset-3{position:relative;margin-left:25%}.small-offset-4{position:relative;margin-left:33.33333%}.small-offset-5{position:relative;margin-left:41.66667%}.small-offset-6{position:relative;margin-left:50%}.small-offset-7{position:relative;margin-left:58.33333%}.small-offset-8{position:relative;margin-left:66.66667%}.small-offset-9{position:relative;margin-left:75%}.small-offset-10{position:relative;margin-left:83.33333%}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}.column.small-centered,.columns.small-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.column.small-uncentered,.columns.small-uncentered{margin-left:0;margin-right:0;float:left !important}.column.small-uncentered.opposite,.columns.small-uncentered.opposite{float:right !important}}@media only screen and (min-width: 40.063em){.medium-push-1{position:relative;left:8.33333%;right:auto}.medium-pull-1{position:relative;right:8.33333%;left:auto}.medium-push-2{position:relative;left:16.66667%;right:auto}.medium-pull-2{position:relative;right:16.66667%;left:auto}.medium-push-3{position:relative;left:25%;right:auto}.medium-pull-3{position:relative;right:25%;left:auto}.medium-push-4{position:relative;left:33.33333%;right:auto}.medium-pull-4{position:relative;right:33.33333%;left:auto}.medium-push-5{position:relative;left:41.66667%;right:auto}.medium-pull-5{position:relative;right:41.66667%;left:auto}.medium-push-6{position:relative;left:50%;right:auto}.medium-pull-6{position:relative;right:50%;left:auto}.medium-push-7{position:relative;left:58.33333%;right:auto}.medium-pull-7{position:relative;right:58.33333%;left:auto}.medium-push-8{position:relative;left:66.66667%;right:auto}.medium-pull-8{position:relative;right:66.66667%;left:auto}.medium-push-9{position:relative;left:75%;right:auto}.medium-pull-9{position:relative;right:75%;left:auto}.medium-push-10{position:relative;left:83.33333%;right:auto}.medium-pull-10{position:relative;right:83.33333%;left:auto}.medium-push-11{position:relative;left:91.66667%;right:auto}.medium-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.medium-1{position:relative;width:8.33333%}.medium-2{position:relative;width:16.66667%}.medium-3{position:relative;width:25%}.medium-4{position:relative;width:33.33333%}.medium-5{position:relative;width:41.66667%}.medium-6{position:relative;width:50%}.medium-7{position:relative;width:58.33333%}.medium-8{position:relative;width:66.66667%}.medium-9{position:relative;width:75%}.medium-10{position:relative;width:83.33333%}.medium-11{position:relative;width:91.66667%}.medium-12{position:relative;width:100%}.medium-offset-0{position:relative;margin-left:0%}.medium-offset-1{position:relative;margin-left:8.33333%}.medium-offset-2{position:relative;margin-left:16.66667%}.medium-offset-3{position:relative;margin-left:25%}.medium-offset-4{position:relative;margin-left:33.33333%}.medium-offset-5{position:relative;margin-left:41.66667%}.medium-offset-6{position:relative;margin-left:50%}.medium-offset-7{position:relative;margin-left:58.33333%}.medium-offset-8{position:relative;margin-left:66.66667%}.medium-offset-9{position:relative;margin-left:75%}.medium-offset-10{position:relative;margin-left:83.33333%}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}.column.medium-centered,.columns.medium-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.column.medium-uncentered,.columns.medium-uncentered{margin-left:0;margin-right:0;float:left !important}.column.medium-uncentered.opposite,.columns.medium-uncentered.opposite{float:right !important}.push-1{position:relative;left:8.33333%;right:auto}.pull-1{position:relative;right:8.33333%;left:auto}.push-2{position:relative;left:16.66667%;right:auto}.pull-2{position:relative;right:16.66667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.33333%;right:auto}.pull-4{position:relative;right:33.33333%;left:auto}.push-5{position:relative;left:41.66667%;right:auto}.pull-5{position:relative;right:41.66667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.33333%;right:auto}.pull-7{position:relative;right:58.33333%;left:auto}.push-8{position:relative;left:66.66667%;right:auto}.pull-8{position:relative;right:66.66667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.33333%;right:auto}.pull-10{position:relative;right:83.33333%;left:auto}.push-11{position:relative;left:91.66667%;right:auto}.pull-11{position:relative;right:91.66667%;left:auto}}@media only screen and (min-width: 64.063em){.large-push-1{position:relative;left:8.33333%;right:auto}.large-pull-1{position:relative;right:8.33333%;left:auto}.large-push-2{position:relative;left:16.66667%;right:auto}.large-pull-2{position:relative;right:16.66667%;left:auto}.large-push-3{position:relative;left:25%;right:auto}.large-pull-3{position:relative;right:25%;left:auto}.large-push-4{position:relative;left:33.33333%;right:auto}.large-pull-4{position:relative;right:33.33333%;left:auto}.large-push-5{position:relative;left:41.66667%;right:auto}.large-pull-5{position:relative;right:41.66667%;left:auto}.large-push-6{position:relative;left:50%;right:auto}.large-pull-6{position:relative;right:50%;left:auto}.large-push-7{position:relative;left:58.33333%;right:auto}.large-pull-7{position:relative;right:58.33333%;left:auto}.large-push-8{position:relative;left:66.66667%;right:auto}.large-pull-8{position:relative;right:66.66667%;left:auto}.large-push-9{position:relative;left:75%;right:auto}.large-pull-9{position:relative;right:75%;left:auto}.large-push-10{position:relative;left:83.33333%;right:auto}.large-pull-10{position:relative;right:83.33333%;left:auto}.large-push-11{position:relative;left:91.66667%;right:auto}.large-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.large-1{position:relative;width:8.33333%}.large-2{position:relative;width:16.66667%}.large-3{position:relative;width:25%}.large-4{position:relative;width:33.33333%}.large-5{position:relative;width:41.66667%}.large-6{position:relative;width:50%}.large-7{position:relative;width:58.33333%}.large-8{position:relative;width:66.66667%}.large-9{position:relative;width:75%}.large-10{position:relative;width:83.33333%}.large-11{position:relative;width:91.66667%}.large-12{position:relative;width:100%}.large-offset-0{position:relative;margin-left:0%}.large-offset-1{position:relative;margin-left:8.33333%}.large-offset-2{position:relative;margin-left:16.66667%}.large-offset-3{position:relative;margin-left:25%}.large-offset-4{position:relative;margin-left:33.33333%}.large-offset-5{position:relative;margin-left:41.66667%}.large-offset-6{position:relative;margin-left:50%}.large-offset-7{position:relative;margin-left:58.33333%}.large-offset-8{position:relative;margin-left:66.66667%}.large-offset-9{position:relative;margin-left:75%}.large-offset-10{position:relative;margin-left:83.33333%}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}.column.large-centered,.columns.large-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.column.large-uncentered,.columns.large-uncentered{margin-left:0;margin-right:0;float:left !important}.column.large-uncentered.opposite,.columns.large-uncentered.opposite{float:right !important}}@media only screen and (min-width: 90.063em){.xlarge-push-1{position:relative;left:8.33333%;right:auto}.xlarge-pull-1{position:relative;right:8.33333%;left:auto}.xlarge-push-2{position:relative;left:16.66667%;right:auto}.xlarge-pull-2{position:relative;right:16.66667%;left:auto}.xlarge-push-3{position:relative;left:25%;right:auto}.xlarge-pull-3{position:relative;right:25%;left:auto}.xlarge-push-4{position:relative;left:33.33333%;right:auto}.xlarge-pull-4{position:relative;right:33.33333%;left:auto}.xlarge-push-5{position:relative;left:41.66667%;right:auto}.xlarge-pull-5{position:relative;right:41.66667%;left:auto}.xlarge-push-6{position:relative;left:50%;right:auto}.xlarge-pull-6{position:relative;right:50%;left:auto}.xlarge-push-7{position:relative;left:58.33333%;right:auto}.xlarge-pull-7{position:relative;right:58.33333%;left:auto}.xlarge-push-8{position:relative;left:66.66667%;right:auto}.xlarge-pull-8{position:relative;right:66.66667%;left:auto}.xlarge-push-9{position:relative;left:75%;right:auto}.xlarge-pull-9{position:relative;right:75%;left:auto}.xlarge-push-10{position:relative;left:83.33333%;right:auto}.xlarge-pull-10{position:relative;right:83.33333%;left:auto}.xlarge-push-11{position:relative;left:91.66667%;right:auto}.xlarge-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.xlarge-1{position:relative;width:8.33333%}.xlarge-2{position:relative;width:16.66667%}.xlarge-3{position:relative;width:25%}.xlarge-4{position:relative;width:33.33333%}.xlarge-5{position:relative;width:41.66667%}.xlarge-6{position:relative;width:50%}.xlarge-7{position:relative;width:58.33333%}.xlarge-8{position:relative;width:66.66667%}.xlarge-9{position:relative;width:75%}.xlarge-10{position:relative;width:83.33333%}.xlarge-11{position:relative;width:91.66667%}.xlarge-12{position:relative;width:100%}.xlarge-offset-0{position:relative;margin-left:0%}.xlarge-offset-1{position:relative;margin-left:8.33333%}.xlarge-offset-2{position:relative;margin-left:16.66667%}.xlarge-offset-3{position:relative;margin-left:25%}.xlarge-offset-4{position:relative;margin-left:33.33333%}.xlarge-offset-5{position:relative;margin-left:41.66667%}.xlarge-offset-6{position:relative;margin-left:50%}.xlarge-offset-7{position:relative;margin-left:58.33333%}.xlarge-offset-8{position:relative;margin-left:66.66667%}.xlarge-offset-9{position:relative;margin-left:75%}.xlarge-offset-10{position:relative;margin-left:83.33333%}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}.column.xlarge-centered,.columns.xlarge-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.column.xlarge-uncentered,.columns.xlarge-uncentered{margin-left:0;margin-right:0;float:left !important}.column.xlarge-uncentered.opposite,.columns.xlarge-uncentered.opposite{float:right !important}}@media only screen and (min-width: 120.063em){.xxlarge-push-1{position:relative;left:8.33333%;right:auto}.xxlarge-pull-1{position:relative;right:8.33333%;left:auto}.xxlarge-push-2{position:relative;left:16.66667%;right:auto}.xxlarge-pull-2{position:relative;right:16.66667%;left:auto}.xxlarge-push-3{position:relative;left:25%;right:auto}.xxlarge-pull-3{position:relative;right:25%;left:auto}.xxlarge-push-4{position:relative;left:33.33333%;right:auto}.xxlarge-pull-4{position:relative;right:33.33333%;left:auto}.xxlarge-push-5{position:relative;left:41.66667%;right:auto}.xxlarge-pull-5{position:relative;right:41.66667%;left:auto}.xxlarge-push-6{position:relative;left:50%;right:auto}.xxlarge-pull-6{position:relative;right:50%;left:auto}.xxlarge-push-7{position:relative;left:58.33333%;right:auto}.xxlarge-pull-7{position:relative;right:58.33333%;left:auto}.xxlarge-push-8{position:relative;left:66.66667%;right:auto}.xxlarge-pull-8{position:relative;right:66.66667%;left:auto}.xxlarge-push-9{position:relative;left:75%;right:auto}.xxlarge-pull-9{position:relative;right:75%;left:auto}.xxlarge-push-10{position:relative;left:83.33333%;right:auto}.xxlarge-pull-10{position:relative;right:83.33333%;left:auto}.xxlarge-push-11{position:relative;left:91.66667%;right:auto}.xxlarge-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.xxlarge-1{position:relative;width:8.33333%}.xxlarge-2{position:relative;width:16.66667%}.xxlarge-3{position:relative;width:25%}.xxlarge-4{position:relative;width:33.33333%}.xxlarge-5{position:relative;width:41.66667%}.xxlarge-6{position:relative;width:50%}.xxlarge-7{position:relative;width:58.33333%}.xxlarge-8{position:relative;width:66.66667%}.xxlarge-9{position:relative;width:75%}.xxlarge-10{position:relative;width:83.33333%}.xxlarge-11{position:relative;width:91.66667%}.xxlarge-12{position:relative;width:100%}.xxlarge-offset-0{position:relative;margin-left:0%}.xxlarge-offset-1{position:relative;margin-left:8.33333%}.xxlarge-offset-2{position:relative;margin-left:16.66667%}.xxlarge-offset-3{position:relative;margin-left:25%}.xxlarge-offset-4{position:relative;margin-left:33.33333%}.xxlarge-offset-5{position:relative;margin-left:41.66667%}.xxlarge-offset-6{position:relative;margin-left:50%}.xxlarge-offset-7{position:relative;margin-left:58.33333%}.xxlarge-offset-8{position:relative;margin-left:66.66667%}.xxlarge-offset-9{position:relative;margin-left:75%}.xxlarge-offset-10{position:relative;margin-left:83.33333%}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}.column.xxlarge-centered,.columns.xxlarge-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.column.xxlarge-uncentered,.columns.xxlarge-uncentered{margin-left:0;margin-right:0;float:left !important}.column.xxlarge-uncentered.opposite,.columns.xxlarge-uncentered.opposite{float:right !important}}.accordion{*zoom:1;margin-bottom:0}.accordion:before,.accordion:after{content:" ";display:table}.accordion:after{clear:both}.accordion dd{display:block;margin-bottom:0 !important}.accordion dd.active a{background:#e7e7e7}.accordion dd>a{background:#efefef;color:#222;padding:1rem;display:block;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-size:1rem}.accordion dd>a:hover{background:#e2e2e2}.accordion .content{display:none;padding:0.9375rem}.accordion .content.active{display:block;background:#fff}.alert-box{border-style:solid;border-width:1px;display:block;font-weight:normal;margin-bottom:1.25rem;position:relative;padding:0.875rem 1.5rem 0.875rem 0.875rem;font-size:0.8125rem;background-color:#008cba;border-color:#0079a1;color:#fff}.alert-box .close{font-size:1.375rem;padding:9px 6px 4px;line-height:0;position:absolute;top:50%;margin-top:-0.6875rem;right:0.25rem;color:#333;opacity:0.3}.alert-box .close:hover,.alert-box .close:focus{opacity:0.5}.alert-box.radius{-webkit-border-radius:3px;border-radius:3px}.alert-box.round{-webkit-border-radius:1000px;border-radius:1000px}.alert-box.success{background-color:#43ac6a;border-color:#3c9a5f;color:#fff}.alert-box.alert{background-color:#f04124;border-color:#ea2f10;color:#fff}.alert-box.secondary{background-color:#e7e7e7;border-color:#dadada;color:#4e4e4e}.alert-box.warning{background-color:#f08a24;border-color:#ea7d10;color:#fff}.alert-box.info{background-color:#a0d3e8;border-color:#8bc9e3;color:#4e4e4e}[class*="block-grid-"]{display:block;padding:0;margin:0 -0.625rem;*zoom:1}[class*="block-grid-"]:before,[class*="block-grid-"]:after{content:" ";display:table}[class*="block-grid-"]:after{clear:both}[class*="block-grid-"]>li{display:inline;height:auto;float:left;padding:0 0.625rem 1.25rem}@media only screen{.small-block-grid-1>li{width:100%;padding:0 0.625rem 1.25rem}.small-block-grid-1>li:nth-of-type(n){clear:none}.small-block-grid-1>li:nth-of-type(1n+1){clear:both}.small-block-grid-2>li{width:50%;padding:0 0.625rem 1.25rem}.small-block-grid-2>li:nth-of-type(n){clear:none}.small-block-grid-2>li:nth-of-type(2n+1){clear:both}.small-block-grid-3>li{width:33.33333%;padding:0 0.625rem 1.25rem}.small-block-grid-3>li:nth-of-type(n){clear:none}.small-block-grid-3>li:nth-of-type(3n+1){clear:both}.small-block-grid-4>li{width:25%;padding:0 0.625rem 1.25rem}.small-block-grid-4>li:nth-of-type(n){clear:none}.small-block-grid-4>li:nth-of-type(4n+1){clear:both}.small-block-grid-5>li{width:20%;padding:0 0.625rem 1.25rem}.small-block-grid-5>li:nth-of-type(n){clear:none}.small-block-grid-5>li:nth-of-type(5n+1){clear:both}.small-block-grid-6>li{width:16.66667%;padding:0 0.625rem 1.25rem}.small-block-grid-6>li:nth-of-type(n){clear:none}.small-block-grid-6>li:nth-of-type(6n+1){clear:both}.small-block-grid-7>li{width:14.28571%;padding:0 0.625rem 1.25rem}.small-block-grid-7>li:nth-of-type(n){clear:none}.small-block-grid-7>li:nth-of-type(7n+1){clear:both}.small-block-grid-8>li{width:12.5%;padding:0 0.625rem 1.25rem}.small-block-grid-8>li:nth-of-type(n){clear:none}.small-block-grid-8>li:nth-of-type(8n+1){clear:both}.small-block-grid-9>li{width:11.11111%;padding:0 0.625rem 1.25rem}.small-block-grid-9>li:nth-of-type(n){clear:none}.small-block-grid-9>li:nth-of-type(9n+1){clear:both}.small-block-grid-10>li{width:10%;padding:0 0.625rem 1.25rem}.small-block-grid-10>li:nth-of-type(n){clear:none}.small-block-grid-10>li:nth-of-type(10n+1){clear:both}.small-block-grid-11>li{width:9.09091%;padding:0 0.625rem 1.25rem}.small-block-grid-11>li:nth-of-type(n){clear:none}.small-block-grid-11>li:nth-of-type(11n+1){clear:both}.small-block-grid-12>li{width:8.33333%;padding:0 0.625rem 1.25rem}.small-block-grid-12>li:nth-of-type(n){clear:none}.small-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 40.063em){.medium-block-grid-1>li{width:100%;padding:0 0.625rem 1.25rem}.medium-block-grid-1>li:nth-of-type(n){clear:none}.medium-block-grid-1>li:nth-of-type(1n+1){clear:both}.medium-block-grid-2>li{width:50%;padding:0 0.625rem 1.25rem}.medium-block-grid-2>li:nth-of-type(n){clear:none}.medium-block-grid-2>li:nth-of-type(2n+1){clear:both}.medium-block-grid-3>li{width:33.33333%;padding:0 0.625rem 1.25rem}.medium-block-grid-3>li:nth-of-type(n){clear:none}.medium-block-grid-3>li:nth-of-type(3n+1){clear:both}.medium-block-grid-4>li{width:25%;padding:0 0.625rem 1.25rem}.medium-block-grid-4>li:nth-of-type(n){clear:none}.medium-block-grid-4>li:nth-of-type(4n+1){clear:both}.medium-block-grid-5>li{width:20%;padding:0 0.625rem 1.25rem}.medium-block-grid-5>li:nth-of-type(n){clear:none}.medium-block-grid-5>li:nth-of-type(5n+1){clear:both}.medium-block-grid-6>li{width:16.66667%;padding:0 0.625rem 1.25rem}.medium-block-grid-6>li:nth-of-type(n){clear:none}.medium-block-grid-6>li:nth-of-type(6n+1){clear:both}.medium-block-grid-7>li{width:14.28571%;padding:0 0.625rem 1.25rem}.medium-block-grid-7>li:nth-of-type(n){clear:none}.medium-block-grid-7>li:nth-of-type(7n+1){clear:both}.medium-block-grid-8>li{width:12.5%;padding:0 0.625rem 1.25rem}.medium-block-grid-8>li:nth-of-type(n){clear:none}.medium-block-grid-8>li:nth-of-type(8n+1){clear:both}.medium-block-grid-9>li{width:11.11111%;padding:0 0.625rem 1.25rem}.medium-block-grid-9>li:nth-of-type(n){clear:none}.medium-block-grid-9>li:nth-of-type(9n+1){clear:both}.medium-block-grid-10>li{width:10%;padding:0 0.625rem 1.25rem}.medium-block-grid-10>li:nth-of-type(n){clear:none}.medium-block-grid-10>li:nth-of-type(10n+1){clear:both}.medium-block-grid-11>li{width:9.09091%;padding:0 0.625rem 1.25rem}.medium-block-grid-11>li:nth-of-type(n){clear:none}.medium-block-grid-11>li:nth-of-type(11n+1){clear:both}.medium-block-grid-12>li{width:8.33333%;padding:0 0.625rem 1.25rem}.medium-block-grid-12>li:nth-of-type(n){clear:none}.medium-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 64.063em){.large-block-grid-1>li{width:100%;padding:0 0.625rem 1.25rem}.large-block-grid-1>li:nth-of-type(n){clear:none}.large-block-grid-1>li:nth-of-type(1n+1){clear:both}.large-block-grid-2>li{width:50%;padding:0 0.625rem 1.25rem}.large-block-grid-2>li:nth-of-type(n){clear:none}.large-block-grid-2>li:nth-of-type(2n+1){clear:both}.large-block-grid-3>li{width:33.33333%;padding:0 0.625rem 1.25rem}.large-block-grid-3>li:nth-of-type(n){clear:none}.large-block-grid-3>li:nth-of-type(3n+1){clear:both}.large-block-grid-4>li{width:25%;padding:0 0.625rem 1.25rem}.large-block-grid-4>li:nth-of-type(n){clear:none}.large-block-grid-4>li:nth-of-type(4n+1){clear:both}.large-block-grid-5>li{width:20%;padding:0 0.625rem 1.25rem}.large-block-grid-5>li:nth-of-type(n){clear:none}.large-block-grid-5>li:nth-of-type(5n+1){clear:both}.large-block-grid-6>li{width:16.66667%;padding:0 0.625rem 1.25rem}.large-block-grid-6>li:nth-of-type(n){clear:none}.large-block-grid-6>li:nth-of-type(6n+1){clear:both}.large-block-grid-7>li{width:14.28571%;padding:0 0.625rem 1.25rem}.large-block-grid-7>li:nth-of-type(n){clear:none}.large-block-grid-7>li:nth-of-type(7n+1){clear:both}.large-block-grid-8>li{width:12.5%;padding:0 0.625rem 1.25rem}.large-block-grid-8>li:nth-of-type(n){clear:none}.large-block-grid-8>li:nth-of-type(8n+1){clear:both}.large-block-grid-9>li{width:11.11111%;padding:0 0.625rem 1.25rem}.large-block-grid-9>li:nth-of-type(n){clear:none}.large-block-grid-9>li:nth-of-type(9n+1){clear:both}.large-block-grid-10>li{width:10%;padding:0 0.625rem 1.25rem}.large-block-grid-10>li:nth-of-type(n){clear:none}.large-block-grid-10>li:nth-of-type(10n+1){clear:both}.large-block-grid-11>li{width:9.09091%;padding:0 0.625rem 1.25rem}.large-block-grid-11>li:nth-of-type(n){clear:none}.large-block-grid-11>li:nth-of-type(11n+1){clear:both}.large-block-grid-12>li{width:8.33333%;padding:0 0.625rem 1.25rem}.large-block-grid-12>li:nth-of-type(n){clear:none}.large-block-grid-12>li:nth-of-type(12n+1){clear:both}}.breadcrumbs{display:block;padding:0.5625rem 0.875rem 0.5625rem;overflow:hidden;margin-left:0;list-style:none;border-style:solid;border-width:1px;background-color:#f4f4f4;border-color:#dadada;-webkit-border-radius:3px;border-radius:3px}.breadcrumbs>*{margin:0;float:left;font-size:0.6875rem;text-transform:uppercase}.breadcrumbs>*:hover a,.breadcrumbs>*:focus a{text-decoration:underline}.breadcrumbs>* a,.breadcrumbs>* span{text-transform:uppercase;color:#008cba}.breadcrumbs>*.current{cursor:default;color:#333}.breadcrumbs>*.current a{cursor:default;color:#333}.breadcrumbs>*.current:hover,.breadcrumbs>*.current:hover a,.breadcrumbs>*.current:focus,.breadcrumbs>*.current:focus a{text-decoration:none}.breadcrumbs>*.unavailable{color:#999}.breadcrumbs>*.unavailable a{color:#999}.breadcrumbs>*.unavailable:hover,.breadcrumbs>*.unavailable:hover a,.breadcrumbs>*.unavailable:focus,.breadcrumbs>*.unavailable a:focus{text-decoration:none;color:#999;cursor:default}.breadcrumbs>*:before{content:"/";color:#aaa;margin:0 0.75rem;position:relative;top:1px}.breadcrumbs>*:first-child:before{content:" ";margin:0}button,.button{cursor:pointer;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-weight:normal;line-height:normal;margin:0 0 1.25rem;position:relative;text-decoration:none;text-align:center;display:inline-block;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-size:1rem;background-color:#008cba;border-color:#0079a1;color:#fff;-webkit-transition:background-color 300ms ease-out;-moz-transition:background-color 300ms ease-out;transition:background-color 300ms ease-out;padding-top:1.0625rem;padding-bottom:1rem;-webkit-appearance:none;border:none;font-weight:normal !important}button:hover,button:focus,.button:hover,.button:focus{background-color:#0079a1}button:hover,button:focus,.button:hover,.button:focus{color:#fff}button.secondary,.button.secondary{background-color:#e7e7e7;border-color:#dadada;color:#333}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{background-color:#dadada}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{color:#333}button.success,.button.success{background-color:#43ac6a;border-color:#3c9a5f;color:#fff}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{background-color:#3c9a5f}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{color:#fff}button.alert,.button.alert{background-color:#f04124;border-color:#ea2f10;color:#fff}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{background-color:#ea2f10}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{color:#fff}button.large,.button.large{padding-top:1.125rem;padding-right:2.25rem;padding-bottom:1.1875rem;padding-left:2.25rem;font-size:1.25rem}button.small,.button.small{padding-top:0.875rem;padding-right:1.75rem;padding-bottom:0.9375rem;padding-left:1.75rem;font-size:0.8125rem}button.tiny,.button.tiny{padding-top:0.625rem;padding-right:1.25rem;padding-bottom:0.6875rem;padding-left:1.25rem;font-size:0.6875rem}button.expand,.button.expand{padding-right:0;padding-left:0;width:100%}button.left-align,.button.left-align{text-align:left;text-indent:0.75rem}button.right-align,.button.right-align{text-align:right;padding-right:0.75rem}button.radius,.button.radius{-webkit-border-radius:3px;border-radius:3px}button.round,.button.round{-webkit-border-radius:1000px;border-radius:1000px}button.disabled,button[disabled],.button.disabled,.button[disabled]{background-color:#008cba;border-color:#0079a1;color:#fff;cursor:default;opacity:0.7;-webkit-box-shadow:none;box-shadow:none}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#0079a1}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{color:#fff}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#008cba}button.disabled.secondary,button[disabled].secondary,.button.disabled.secondary,.button[disabled].secondary{background-color:#e7e7e7;border-color:#dadada;color:#333;cursor:default;opacity:0.7;-webkit-box-shadow:none;box-shadow:none}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#dadada}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{color:#333}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#e7e7e7}button.disabled.success,button[disabled].success,.button.disabled.success,.button[disabled].success{background-color:#43ac6a;border-color:#3c9a5f;color:#fff;cursor:default;opacity:0.7;-webkit-box-shadow:none;box-shadow:none}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#3c9a5f}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{color:#fff}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#43ac6a}button.disabled.alert,button[disabled].alert,.button.disabled.alert,.button[disabled].alert{background-color:#f04124;border-color:#ea2f10;color:#fff;cursor:default;opacity:0.7;-webkit-box-shadow:none;box-shadow:none}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#ea2f10}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{color:#fff}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#f04124}@media only screen and (min-width: 40.063em){button,.button{display:inline-block}}.button-group{list-style:none;margin:0;*zoom:1}.button-group:before,.button-group:after{content:" ";display:table}.button-group:after{clear:both}.button-group>*{margin:0;float:left}.button-group>*>button,.button-group>* .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group>*:first-child{margin-left:0}.button-group.radius>*>button,.button-group.radius>* .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius>*:first-child,.button-group.radius>*:first-child>a,.button-group.radius>*:first-child>button,.button-group.radius>*:first-child>.button{-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius>*:last-child,.button-group.radius>*:last-child>a,.button-group.radius>*:last-child>button,.button-group.radius>*:last-child>.button{-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.button-group.round>*>button,.button-group.round>* .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round>*:first-child,.button-group.round>*:first-child>a,.button-group.round>*:first-child>button,.button-group.round>*:first-child>.button{-moz-border-radius-bottomleft:1000px;-moz-border-radius-topleft:1000px;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round>*:last-child,.button-group.round>*:last-child>a,.button-group.round>*:last-child>button,.button-group.round>*:last-child>.button{-moz-border-radius-topright:1000px;-moz-border-radius-bottomright:1000px;-webkit-border-top-right-radius:1000px;-webkit-border-bottom-right-radius:1000px;border-top-right-radius:1000px;border-bottom-right-radius:1000px}.button-group.even-2 li{width:50%}.button-group.even-2 li>button,.button-group.even-2 li .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-2 li button,.button-group.even-2 li .button{width:100%}.button-group.even-3 li{width:33.33333%}.button-group.even-3 li>button,.button-group.even-3 li .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-3 li button,.button-group.even-3 li .button{width:100%}.button-group.even-4 li{width:25%}.button-group.even-4 li>button,.button-group.even-4 li .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-4 li button,.button-group.even-4 li .button{width:100%}.button-group.even-5 li{width:20%}.button-group.even-5 li>button,.button-group.even-5 li .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-5 li button,.button-group.even-5 li .button{width:100%}.button-group.even-6 li{width:16.66667%}.button-group.even-6 li>button,.button-group.even-6 li .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-6 li button,.button-group.even-6 li .button{width:100%}.button-group.even-7 li{width:14.28571%}.button-group.even-7 li>button,.button-group.even-7 li .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-7 li button,.button-group.even-7 li .button{width:100%}.button-group.even-8 li{width:12.5%}.button-group.even-8 li>button,.button-group.even-8 li .button{border-right:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-8 li button,.button-group.even-8 li .button{width:100%}.button-bar{*zoom:1}.button-bar:before,.button-bar:after{content:" ";display:table}.button-bar:after{clear:both}.button-bar .button-group{float:left;margin-right:0.625rem}.button-bar .button-group div{overflow:hidden}[data-clearing]{*zoom:1;margin-bottom:0;margin-left:0;list-style:none}[data-clearing]:before,[data-clearing]:after{content:" ";display:table}[data-clearing]:after{clear:both}[data-clearing] li{float:left;margin-right:10px}.clearing-blackout{background:#333;position:fixed;width:100%;height:100%;top:0;left:0;z-index:998}.clearing-blackout .clearing-close{display:block}.clearing-container{position:relative;z-index:998;height:100%;overflow:hidden;margin:0}.visible-img{height:95%;position:relative}.visible-img img{position:absolute;left:50%;top:50%;margin-left:-50%;max-height:100%;max-width:100%}.clearing-caption{color:#ccc;font-size:0.875em;line-height:1.3;margin-bottom:0;text-align:center;bottom:0;background:#333;width:100%;padding:10px 30px 20px;position:absolute;left:0}.clearing-close{z-index:999;padding-left:20px;padding-top:10px;font-size:30px;line-height:1;color:#ccc;display:none}.clearing-close:hover,.clearing-close:focus{color:#ccc}.clearing-assembled .clearing-container{height:100%}.clearing-assembled .clearing-container .carousel>ul{display:none}.clearing-feature li{display:none}.clearing-feature li.clearing-featured-img{display:block}@media only screen and (min-width: 40.063em){.clearing-main-prev,.clearing-main-next{position:absolute;height:100%;width:40px;top:0}.clearing-main-prev>span,.clearing-main-next>span{position:absolute;top:50%;display:block;width:0;height:0;border:solid 12px}.clearing-main-prev>span:hover,.clearing-main-next>span:hover{opacity:0.8}.clearing-main-prev{left:0}.clearing-main-prev>span{left:5px;border-color:transparent;border-right-color:#ccc}.clearing-main-next{right:0}.clearing-main-next>span{border-color:transparent;border-left-color:#ccc}.clearing-main-prev.disabled,.clearing-main-next.disabled{opacity:0.3}.clearing-assembled .clearing-container .carousel{background:rgba(51,51,51,0.8);height:120px;margin-top:10px;text-align:center}.clearing-assembled .clearing-container .carousel>ul{display:inline-block;z-index:999;height:100%;position:relative;float:none}.clearing-assembled .clearing-container .carousel>ul li{display:block;width:120px;min-height:inherit;float:left;overflow:hidden;margin-right:0;padding:0;position:relative;cursor:pointer;opacity:0.4}.clearing-assembled .clearing-container .carousel>ul li.fix-height img{height:100%;max-width:none}.clearing-assembled .clearing-container .carousel>ul li a.th{border:none;-webkit-box-shadow:none;box-shadow:none;display:block}.clearing-assembled .clearing-container .carousel>ul li img{cursor:pointer !important;width:100% !important}.clearing-assembled .clearing-container .carousel>ul li.visible{opacity:1}.clearing-assembled .clearing-container .carousel>ul li:hover{opacity:0.8}.clearing-assembled .clearing-container .visible-img{background:#333;overflow:hidden;height:85%}.clearing-close{position:absolute;top:10px;right:20px;padding-left:0;padding-top:0}}@media only screen and (max-width: 40em){.f-dropdown{max-width:100%;left:0}}.f-dropdown{position:absolute;top:-9999px;list-style:none;margin-left:0;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:16px;z-index:99;margin-top:2px;max-width:200px}.f-dropdown>*:first-child{margin-top:0}.f-dropdown>*:last-child{margin-bottom:0}.f-dropdown:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent #fff transparent;border-bottom-style:solid;position:absolute;top:-12px;left:10px;z-index:99}.f-dropdown:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent #ccc transparent;border-bottom-style:solid;position:absolute;top:-14px;left:9px;z-index:98}.f-dropdown.right:before{left:auto;right:10px}.f-dropdown.right:after{left:auto;right:9px}.f-dropdown li{font-size:0.875rem;cursor:pointer;line-height:1.125rem;margin:0}.f-dropdown li:hover,.f-dropdown li:focus{background:#eee}.f-dropdown li a{display:block;padding:0.5rem;color:#555}.f-dropdown.content{position:absolute;top:-9999px;list-style:none;margin-left:0;padding:1.25rem;width:100%;height:auto;max-height:none;background:#fff;border:solid 1px #ccc;font-size:16px;z-index:99;max-width:200px}.f-dropdown.content>*:first-child{margin-top:0}.f-dropdown.content>*:last-child{margin-bottom:0}.f-dropdown.tiny{max-width:200px}.f-dropdown.small{max-width:300px}.f-dropdown.medium{max-width:500px}.f-dropdown.large{max-width:800px}.dropdown.button{position:relative;padding-right:3.5625rem}.dropdown.button:before{position:absolute;content:"";width:0;height:0;display:block;border-style:solid;border-color:#fff transparent transparent transparent;top:50%}.dropdown.button:before{border-width:0.375rem;right:1.40625rem;margin-top:-0.15625rem}.dropdown.button:before{border-color:#fff transparent transparent transparent}.dropdown.button.tiny{padding-right:2.625rem}.dropdown.button.tiny:before{border-width:0.375rem;right:1.125rem;margin-top:-0.125rem}.dropdown.button.tiny:before{border-color:#fff transparent transparent transparent}.dropdown.button.small{padding-right:3.0625rem}.dropdown.button.small:before{border-width:0.4375rem;right:1.3125rem;margin-top:-0.15625rem}.dropdown.button.small:before{border-color:#fff transparent transparent transparent}.dropdown.button.large{padding-right:3.625rem}.dropdown.button.large:before{border-width:0.3125rem;right:1.71875rem;margin-top:-0.15625rem}.dropdown.button.large:before{border-color:#fff transparent transparent transparent}.dropdown.button.secondary:before{border-color:#333 transparent transparent transparent}.flex-video{position:relative;padding-top:1.5625rem;padding-bottom:67.5%;height:0;margin-bottom:1rem;overflow:hidden}.flex-video.widescreen{padding-bottom:57.25%}.flex-video.vimeo{padding-top:0}.flex-video iframe,.flex-video object,.flex-video embed,.flex-video video{position:absolute;top:0;left:0;width:100%;height:100%}form{margin:0 0 1rem}form .row .row{margin:0 -0.5rem}form .row .row .column,form .row .row .columns{padding:0 0.5rem}form .row .row.collapse{margin:0}form .row .row.collapse .column,form .row .row.collapse .columns{padding:0}form .row .row.collapse input{-moz-border-radius-bottomright:0;-moz-border-radius-topright:0;-webkit-border-bottom-right-radius:0;-webkit-border-top-right-radius:0}form .row input.column,form .row input.columns,form .row textarea.column,form .row textarea.columns{padding-left:0.5rem}label{font-size:0.875rem;color:#4d4d4d;cursor:pointer;display:block;font-weight:normal;margin-bottom:0.5rem}label.right{float:none;text-align:right}label.inline{margin:0 0 1rem 0;padding:0.625rem 0}label small{text-transform:capitalize;color:#666}select{-webkit-appearance:none !important;background:#fafafa url("data:image/svg+xml;base64, PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iM3B4IiB2aWV3Qm94PSIwIDAgNiAzIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2IDMiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iNS45OTIsMCAyLjk5MiwzIC0wLjAwOCwwICIvPjwvc3ZnPg==") no-repeat;background-position-x:97%;background-position-y:center;border:1px solid #ccc;padding:0.5rem;font-size:0.875rem;-webkit-border-radius:0;border-radius:0}select.radius{-webkit-border-radius:3px;border-radius:3px}select:hover{background:#f2f2f2 url("data:image/svg+xml;base64, PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMHB4IiB5PSIwcHgiIHdpZHRoPSI2cHgiIGhlaWdodD0iM3B4IiB2aWV3Qm94PSIwIDAgNiAzIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCA2IDMiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxwb2x5Z29uIHBvaW50cz0iNS45OTIsMCAyLjk5MiwzIC0wLjAwOCwwICIvPjwvc3ZnPg==") no-repeat;background-position-x:97%;background-position-y:center;border-color:#999}@-moz-document url-prefix(){select{background:#fafafa}select:hover{background:#f2f2f2}}.prefix,.postfix{display:block;position:relative;z-index:2;text-align:center;width:100%;padding-top:0;padding-bottom:0;border-style:solid;border-width:1px;overflow:hidden;font-size:0.875rem;height:2.3125rem;line-height:2.3125rem}.postfix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;line-height:2.125rem;border:none}.prefix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;line-height:2.125rem;border:none}.prefix.button.radius{-webkit-border-radius:0;border-radius:0;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.postfix.button.radius{-webkit-border-radius:0;border-radius:0;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.prefix.button.round{-webkit-border-radius:0;border-radius:0;-moz-border-radius-bottomleft:1000px;-moz-border-radius-topleft:1000px;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.postfix.button.round{-webkit-border-radius:0;border-radius:0;-moz-border-radius-topright:1000px;-moz-border-radius-bottomright:1000px;-webkit-border-top-right-radius:1000px;-webkit-border-bottom-right-radius:1000px;border-top-right-radius:1000px;border-bottom-right-radius:1000px}span.prefix,label.prefix{background:#f2f2f2;border-color:#d9d9d9;border-right:none;color:#333}span.prefix.radius,label.prefix.radius{-webkit-border-radius:0;border-radius:0;-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}span.postfix,label.postfix{background:#f2f2f2;border-color:#ccc;border-left:none;color:#333}span.postfix.radius,label.postfix.radius{-webkit-border-radius:0;border-radius:0;-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.input-group.radius>*:first-child,.input-group.radius>*:first-child *{-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.input-group.radius>*:last-child,.input-group.radius>*:last-child *{-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.input-group.round>*:first-child,.input-group.round>*:first-child *{-moz-border-radius-bottomleft:1000px;-moz-border-radius-topleft:1000px;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.input-group.round>*:last-child,.input-group.round>*:last-child *{-moz-border-radius-topright:1000px;-moz-border-radius-bottomright:1000px;-webkit-border-top-right-radius:1000px;-webkit-border-bottom-right-radius:1000px;border-top-right-radius:1000px;border-bottom-right-radius:1000px}input[type="text"],input[type="password"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="week"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="time"],input[type="url"],textarea{-webkit-appearance:none;-webkit-border-radius:0;border-radius:0;background-color:#fff;font-family:inherit;border:1px solid #ccc;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);color:rgba(0,0,0,0.75);display:block;font-size:0.875rem;margin:0 0 1rem 0;padding:0.5rem;height:2.3125rem;width:100%;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-transition:-webkit-box-shadow 0.45s,border-color 0.45s ease-in-out;-moz-transition:-moz-box-shadow 0.45s,border-color 0.45s ease-in-out;transition:box-shadow 0.45s,border-color 0.45s ease-in-out}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,textarea:focus{-webkit-box-shadow:0 0 5px #999;-moz-box-shadow:0 0 5px #999;box-shadow:0 0 5px #999;border-color:#999}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,textarea:focus{background:#fafafa;border-color:#999;outline:none}input[type="text"][disabled],input[type="password"][disabled],input[type="date"][disabled],input[type="datetime"][disabled],input[type="datetime-local"][disabled],input[type="month"][disabled],input[type="week"][disabled],input[type="email"][disabled],input[type="number"][disabled],input[type="search"][disabled],input[type="tel"][disabled],input[type="time"][disabled],input[type="url"][disabled],textarea[disabled]{background-color:#ddd}input[type="file"],input[type="checkbox"],input[type="radio"],select{margin:0 0 1rem 0}input[type="checkbox"]+label,input[type="radio"]+label{display:inline-block;margin-left:0.5rem;margin-right:1rem;margin-bottom:0;vertical-align:baseline}input[type="file"]{width:100%}fieldset{border:solid 1px #ddd;padding:1.25rem;margin:1.125rem 0}fieldset legend{font-weight:bold;background:#fff;padding:0 0.1875rem;margin:0;margin-left:-0.1875rem}[data-abide] .error small.error,[data-abide] span.error,[data-abide] small.error{display:block;padding:0.375rem 0.5625rem 0.5625rem;margin-top:-1px;margin-bottom:1rem;font-size:0.75rem;font-weight:normal;font-style:italic;background:#f04124;color:#fff}[data-abide] span.error,[data-abide] small.error{display:none}span.error,small.error{display:block;padding:0.375rem 0.5625rem 0.5625rem;margin-top:-1px;margin-bottom:1rem;font-size:0.75rem;font-weight:normal;font-style:italic;background:#f04124;color:#fff}.error input,.error textarea,.error select{margin-bottom:0}.error label,.error label.error{color:#f04124}.error>small,.error small.error{display:block;padding:0.375rem 0.5625rem 0.5625rem;margin-top:-1px;margin-bottom:1rem;font-size:0.75rem;font-weight:normal;font-style:italic;background:#f04124;color:#fff}.error span.error-message{display:block}input.error,textarea.error{margin-bottom:0}label.error{color:#f04124}.inline-list{margin:0 auto 1.0625rem auto;margin-left:-1.375rem;margin-right:0;padding:0;list-style:none;overflow:hidden}.inline-list>li{list-style:none;float:left;margin-left:1.375rem;display:block}.inline-list>li>*{display:block}.joyride-list{display:none}.joyride-tip-guide{display:none;position:absolute;background:#333;color:#fff;z-index:101;top:0;left:2.5%;font-family:inherit;font-weight:normal;width:95%}.lt-ie9 .joyride-tip-guide{max-width:800px;left:50%;margin-left:-400px}.joyride-content-wrapper{width:100%;padding:1.125rem 1.25rem 1.5rem}.joyride-content-wrapper .button{margin-bottom:0 !important}.joyride-tip-guide .joyride-nub{display:block;position:absolute;left:22px;width:0;height:0;border:10px solid #333}.joyride-tip-guide .joyride-nub.top{border-top-style:solid;border-color:#333;border-top-color:transparent !important;border-left-color:transparent !important;border-right-color:transparent !important;top:-20px}.joyride-tip-guide .joyride-nub.bottom{border-bottom-style:solid;border-color:#333 !important;border-bottom-color:transparent !important;border-left-color:transparent !important;border-right-color:transparent !important;bottom:-20px}.joyride-tip-guide .joyride-nub.right{right:-20px}.joyride-tip-guide .joyride-nub.left{left:-20px}.joyride-tip-guide h1,.joyride-tip-guide h2,.joyride-tip-guide h3,.joyride-tip-guide h4,.joyride-tip-guide h5,.joyride-tip-guide h6{line-height:1.25;margin:0;font-weight:bold;color:#fff}.joyride-tip-guide p{margin:0 0 1.125rem 0;font-size:0.875rem;line-height:1.3}.joyride-timer-indicator-wrap{width:50px;height:3px;border:solid 1px #555;position:absolute;right:1.0625rem;bottom:1rem}.joyride-timer-indicator{display:block;width:0;height:inherit;background:#666}.joyride-close-tip{position:absolute;right:12px;top:10px;color:#777 !important;text-decoration:none;font-size:24px;font-weight:normal;line-height:.5 !important}.joyride-close-tip:hover,.joyride-close-tip:focus{color:#eee !important}.joyride-modal-bg{position:fixed;height:100%;width:100%;background:transparent;background:rgba(0,0,0,0.5);z-index:100;display:none;top:0;left:0;cursor:pointer}.joyride-expose-wrapper{background-color:#ffffff;position:absolute;border-radius:3px;z-index:102;-moz-box-shadow:0 0 30px #ffffff;-webkit-box-shadow:0 0 15px #ffffff;box-shadow:0 0 15px #ffffff}.joyride-expose-cover{background:transparent;border-radius:3px;position:absolute;z-index:9999;top:0;left:0}@media only screen and (min-width: 40.063em){.joyride-tip-guide{width:300px;left:inherit}.joyride-tip-guide .joyride-nub.bottom{border-color:#333 !important;border-bottom-color:transparent !important;border-left-color:transparent !important;border-right-color:transparent !important;bottom:-20px}.joyride-tip-guide .joyride-nub.right{border-color:#333 !important;border-top-color:transparent !important;border-right-color:transparent !important;border-bottom-color:transparent !important;top:22px;left:auto;right:-20px}.joyride-tip-guide .joyride-nub.left{border-color:#333 !important;border-top-color:transparent !important;border-left-color:transparent !important;border-bottom-color:transparent !important;top:22px;left:-20px;right:auto}}.keystroke,kbd{background-color:#ededed;border-color:#dbdbdb;color:#222;border-style:solid;border-width:1px;margin:0;font-family:"Consolas","Menlo","Courier",monospace;font-size:0.875rem;padding:0.125rem 0.25rem 0;-webkit-border-radius:3px;border-radius:3px}.label{font-weight:normal;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;text-align:center;text-decoration:none;line-height:1;white-space:nowrap;display:inline-block;position:relative;margin-bottom:inherit;padding:0.25rem 0.5rem 0.375rem;font-size:0.6875rem;background-color:#008cba;color:#fff}.label.radius{-webkit-border-radius:3px;border-radius:3px}.label.round{-webkit-border-radius:1000px;border-radius:1000px}.label.alert{background-color:#f04124;color:#fff}.label.success{background-color:#43ac6a;color:#fff}.label.secondary{background-color:#e7e7e7;color:#333}[data-magellan-expedition]{background:#fff;z-index:50;min-width:100%;padding:10px}[data-magellan-expedition] .sub-nav{margin-bottom:0}[data-magellan-expedition] .sub-nav dd{margin-bottom:0}[data-magellan-expedition] .sub-nav .active{line-height:1.8em}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@-moz-keyframes rotate{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(360deg)}}@-o-keyframes rotate{from{-o-transform:rotate(0deg)}to{-o-transform:rotate(360deg)}}@keyframes rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.slideshow-wrapper{position:relative}.slideshow-wrapper ul{list-style-type:none;margin:0}.slideshow-wrapper ul li,.slideshow-wrapper ul li .orbit-caption{display:none}.slideshow-wrapper ul li:first-child{display:block}.slideshow-wrapper .orbit-container{background-color:transparent}.slideshow-wrapper .orbit-container li{display:block}.slideshow-wrapper .orbit-container li .orbit-caption{display:block}.preloader{display:block;width:40px;height:40px;position:absolute;top:50%;left:50%;margin-top:-20px;margin-left:-20px;border:solid 3px;border-color:#555 #fff;-webkit-border-radius:1000px;border-radius:1000px;-webkit-animation-name:rotate;-webkit-animation-duration:1.5s;-webkit-animation-iteration-count:infinite;-webkit-animation-timing-function:linear;-moz-animation-name:rotate;-moz-animation-duration:1.5s;-moz-animation-iteration-count:infinite;-moz-animation-timing-function:linear;-o-animation-name:rotate;-o-animation-duration:1.5s;-o-animation-iteration-count:infinite;-o-animation-timing-function:linear;animation-name:rotate;animation-duration:1.5s;animation-iteration-count:infinite;animation-timing-function:linear}.orbit-container{overflow:hidden;width:100%;position:relative;background:none}.orbit-container .orbit-slides-container{list-style:none;margin:0;padding:0;position:relative}.orbit-container .orbit-slides-container img{display:block;max-width:100%}.orbit-container .orbit-slides-container>*{position:absolute;top:0;width:100%;margin-left:100%}.orbit-container .orbit-slides-container>*:first-child{margin-left:0%}.orbit-container .orbit-slides-container>* .orbit-caption{position:absolute;bottom:0;background-color:rgba(51,51,51,0.8);color:#fff;width:100%;padding:10px 14px;font-size:0.875rem}.orbit-container .orbit-slide-number{position:absolute;top:10px;left:10px;font-size:12px;color:#fff;background:rgba(0,0,0,0);z-index:10}.orbit-container .orbit-slide-number span{font-weight:700;padding:0.3125rem}.orbit-container .orbit-timer{position:absolute;top:12px;right:10px;height:6px;width:100px;z-index:10}.orbit-container .orbit-timer .orbit-progress{height:3px;background-color:rgba(255,255,255,0.3);display:block;width:0%;position:relative;right:20px;top:5px}.orbit-container .orbit-timer>span{display:none;position:absolute;top:0px;right:0;width:11px;height:14px;border:solid 4px #fff;border-top:none;border-bottom:none}.orbit-container .orbit-timer.paused>span{right:-4px;top:0px;width:11px;height:14px;border:inset 8px;border-right-style:solid;border-color:transparent transparent transparent #fff}.orbit-container .orbit-timer.paused>span.dark{border-color:transparent transparent transparent #333}.orbit-container:hover .orbit-timer>span{display:block}.orbit-container .orbit-prev,.orbit-container .orbit-next{position:absolute;top:45%;margin-top:-25px;width:36px;height:60px;line-height:50px;color:white;text-indent:-9999px !important;z-index:10}.orbit-container .orbit-prev:hover,.orbit-container .orbit-next:hover{background-color:rgba(0,0,0,0.3)}.orbit-container .orbit-prev>span,.orbit-container .orbit-next>span{position:absolute;top:50%;margin-top:-10px;display:block;width:0;height:0;border:inset 10px}.orbit-container .orbit-prev{left:0}.orbit-container .orbit-prev>span{border-right-style:solid;border-color:transparent;border-right-color:#fff}.orbit-container .orbit-prev:hover>span{border-right-color:#fff}.orbit-container .orbit-next{right:0}.orbit-container .orbit-next>span{border-color:transparent;border-left-style:solid;border-left-color:#fff;left:50%;margin-left:-4px}.orbit-container .orbit-next:hover>span{border-left-color:#fff}.orbit-bullets-container{text-align:center}.orbit-bullets{margin:0 auto 30px auto;overflow:hidden;position:relative;top:10px;float:none;text-align:center;display:inline-block}.orbit-bullets li{display:block;width:0.5625rem;height:0.5625rem;background:#ccc;float:left;margin-right:6px;-webkit-border-radius:1000px;border-radius:1000px}.orbit-bullets li.active{background:#999}.orbit-bullets li:last-child{margin-right:0}.touch .orbit-container .orbit-prev,.touch .orbit-container .orbit-next{display:none}.touch .orbit-bullets{display:none}@media only screen and (min-width: 40.063em){.touch .orbit-container .orbit-prev,.touch .orbit-container .orbit-next{display:inherit}.touch .orbit-bullets{display:block}}@media only screen and (max-width: 40em){.orbit-stack-on-small .orbit-slides-container{height:auto !important}.orbit-stack-on-small .orbit-slides-container>*{position:relative;margin-left:0% !important}.orbit-stack-on-small .orbit-timer,.orbit-stack-on-small .orbit-next,.orbit-stack-on-small .orbit-prev,.orbit-stack-on-small .orbit-bullets{display:none}}ul.pagination{display:block;height:1.5rem;margin-left:-0.3125rem}ul.pagination li{height:1.5rem;color:#222;font-size:0.875rem;margin-left:0.3125rem}ul.pagination li a{display:block;padding:0.0625rem 0.625rem 0.0625rem;color:#999;-webkit-border-radius:3px;border-radius:3px}ul.pagination li:hover a,ul.pagination li a:focus{background:#e6e6e6}ul.pagination li.unavailable a{cursor:default;color:#999}ul.pagination li.unavailable:hover a,ul.pagination li.unavailable a:focus{background:transparent}ul.pagination li.current a{background:#008cba;color:#fff;font-weight:bold;cursor:default}ul.pagination li.current a:hover,ul.pagination li.current a:focus{background:#008cba}ul.pagination li{float:left;display:block}.pagination-centered{text-align:center}.pagination-centered ul.pagination li{float:none;display:inline-block}.panel{border-style:solid;border-width:1px;border-color:#d9d9d9;margin-bottom:1.25rem;padding:1.25rem;background:#f2f2f2}.panel>:first-child{margin-top:0}.panel>:last-child{margin-bottom:0}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6,.panel p{color:#333}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{line-height:1;margin-bottom:0.625rem}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{line-height:1.4}.panel.callout{border-style:solid;border-width:1px;border-color:#baeeff;margin-bottom:1.25rem;padding:1.25rem;background:#edfbff}.panel.callout>:first-child{margin-top:0}.panel.callout>:last-child{margin-bottom:0}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6,.panel.callout p{color:#333}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6{line-height:1;margin-bottom:0.625rem}.panel.callout h1.subheader,.panel.callout h2.subheader,.panel.callout h3.subheader,.panel.callout h4.subheader,.panel.callout h5.subheader,.panel.callout h6.subheader{line-height:1.4}.panel.callout a{color:#008cba}.panel.radius{-webkit-border-radius:3px;border-radius:3px}.pricing-table{border:solid 1px #ddd;margin-left:0;margin-bottom:1.25rem}.pricing-table *{list-style:none;line-height:1}.pricing-table .title{background-color:#333;padding:0.9375rem 1.25rem;text-align:center;color:#eee;font-weight:normal;font-size:1rem;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif}.pricing-table .price{background-color:#f6f6f6;padding:0.9375rem 1.25rem;text-align:center;color:#333;font-weight:normal;font-size:2rem;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif}.pricing-table .description{background-color:#fff;padding:0.9375rem;text-align:center;color:#777;font-size:0.75rem;font-weight:normal;line-height:1.4;border-bottom:dotted 1px #ddd}.pricing-table .bullet-item{background-color:#fff;padding:0.9375rem;text-align:center;color:#333;font-size:0.875rem;font-weight:normal;border-bottom:dotted 1px #ddd}.pricing-table .cta-button{background-color:#fff;text-align:center;padding:1.25rem 1.25rem 0}.progress{background-color:#f6f6f6;height:1.5625rem;border:1px solid #ccc;padding:0.125rem;margin-bottom:0.625rem}.progress .meter{background:#008cba;height:100%;display:block}.progress.secondary .meter{background:#e7e7e7;height:100%;display:block}.progress.success .meter{background:#43ac6a;height:100%;display:block}.progress.alert .meter{background:#f04124;height:100%;display:block}.progress.radius{-webkit-border-radius:3px;border-radius:3px}.progress.radius .meter{-webkit-border-radius:2px;border-radius:2px}.progress.round{-webkit-border-radius:1000px;border-radius:1000px}.progress.round .meter{-webkit-border-radius:999px;border-radius:999px}.reveal-modal-bg{position:fixed;height:100%;width:100%;background:#000;background:rgba(0,0,0,0.45);z-index:98;display:none;top:0;left:0}.reveal-modal{visibility:hidden;display:none;position:absolute;left:50%;z-index:99;height:auto;margin-left:-40%;width:80%;background-color:#fff;padding:1.25rem;border:solid 1px #666;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.4);box-shadow:0 0 10px rgba(0,0,0,0.4);top:50px}.reveal-modal .column,.reveal-modal .columns{min-width:0}.reveal-modal>:first-child{margin-top:0}.reveal-modal>:last-child{margin-bottom:0}.reveal-modal .close-reveal-modal{font-size:1.375rem;line-height:1;position:absolute;top:0.5rem;right:0.6875rem;color:#aaa;font-weight:bold;cursor:pointer}@media only screen and (min-width: 40.063em){.reveal-modal{padding:1.875rem;top:6.25rem}.reveal-modal.tiny{margin-left:-15%;width:30%}.reveal-modal.small{margin-left:-20%;width:40%}.reveal-modal.medium{margin-left:-30%;width:60%}.reveal-modal.large{margin-left:-35%;width:70%}.reveal-modal.xlarge{margin-left:-47.5%;width:95%}}@media print{.reveal-modal{background:#fff !important}}.side-nav{display:block;margin:0;padding:0.875rem 0;list-style-type:none;list-style-position:inside;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif}.side-nav li{margin:0 0 0.4375rem 0;font-size:0.875rem}.side-nav li a{display:block;color:#008cba}.side-nav li.active>a:first-child{color:#4d4d4d;font-weight:normal;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif}.side-nav li.divider{border-top:1px solid;height:0;padding:0;list-style:none;border-top-color:#e6e6e6}.split.button{position:relative;padding-right:5.0625rem}.split.button span{display:block;height:100%;position:absolute;right:0;top:0;border-left:solid 1px}.split.button span:before{position:absolute;content:"";width:0;height:0;display:block;border-style:inset;top:50%;left:50%}.split.button span:active{background-color:rgba(0,0,0,0.1)}.split.button span{border-left-color:rgba(255,255,255,0.5)}.split.button span{width:3.09375rem}.split.button span:before{border-top-style:solid;border-width:0.375rem;top:48%;margin-left:-0.375rem}.split.button span:before{border-color:#fff transparent transparent transparent}.split.button.secondary span{border-left-color:rgba(255,255,255,0.5)}.split.button.secondary span:before{border-color:#fff transparent transparent transparent}.split.button.alert span{border-left-color:rgba(255,255,255,0.5)}.split.button.success span{border-left-color:rgba(255,255,255,0.5)}.split.button.tiny{padding-right:3.75rem}.split.button.tiny span{width:2.25rem}.split.button.tiny span:before{border-top-style:solid;border-width:0.375rem;top:48%;margin-left:-0.375rem}.split.button.small{padding-right:4.375rem}.split.button.small span{width:2.625rem}.split.button.small span:before{border-top-style:solid;border-width:0.4375rem;top:48%;margin-left:-0.375rem}.split.button.large{padding-right:5.5rem}.split.button.large span{width:3.4375rem}.split.button.large span:before{border-top-style:solid;border-width:0.3125rem;top:48%;margin-left:-0.375rem}.split.button.expand{padding-left:2rem}.split.button.secondary span:before{border-color:#333 transparent transparent transparent}.split.button.radius span{-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.split.button.round span{-moz-border-radius-topright:1000px;-moz-border-radius-bottomright:1000px;-webkit-border-top-right-radius:1000px;-webkit-border-bottom-right-radius:1000px;border-top-right-radius:1000px;border-bottom-right-radius:1000px}.sub-nav{display:block;width:auto;overflow:hidden;margin:-0.25rem 0 1.125rem;padding-top:0.25rem;margin-right:0;margin-left:-0.75rem}.sub-nav dt{text-transform:uppercase}.sub-nav dt,.sub-nav dd,.sub-nav li{float:left;display:inline;margin-left:1rem;margin-bottom:0.625rem;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-weight:normal;font-size:0.875rem;color:#999}.sub-nav dt a,.sub-nav dd a,.sub-nav li a{text-decoration:none;color:#999}.sub-nav dt a:hover,.sub-nav dd a:hover,.sub-nav li a:hover{color:#0079a1}.sub-nav dt.active a,.sub-nav dd.active a,.sub-nav li.active a{-webkit-border-radius:3px;border-radius:3px;font-weight:normal;background:#008cba;padding:0.1875rem 1rem;cursor:default;color:#fff}.sub-nav dt.active a:hover,.sub-nav dd.active a:hover,.sub-nav li.active a:hover{background:#0079a1}div.switch{position:relative;padding:0;display:block;overflow:hidden;border-style:solid;border-width:1px;margin-bottom:1.25rem;height:2.25rem;background:#fff;border-color:#ccc}div.switch label{position:relative;left:0;z-index:2;float:left;width:50%;height:100%;margin:0;font-weight:bold;text-align:left;-webkit-transition:all 0.1s ease-out;-moz-transition:all 0.1s ease-out;transition:all 0.1s ease-out}div.switch input{position:absolute;z-index:3;opacity:0;width:100%;height:100%;-moz-appearance:none}div.switch input:hover,div.switch input:focus{cursor:pointer}div.switch span:last-child{position:absolute;top:-1px;left:-1px;z-index:1;display:block;padding:0;border-width:1px;border-style:solid;-webkit-transition:all 0.1s ease-out;-moz-transition:all 0.1s ease-out;transition:all 0.1s ease-out}div.switch input:not(:checked)+label{opacity:0}div.switch input:checked{display:none !important}div.switch input{left:0;display:block !important}div.switch input:first-of-type+label,div.switch input:first-of-type+span+label{left:-50%}div.switch input:first-of-type:checked+label,div.switch input:first-of-type:checked+span+label{left:0%}div.switch input:last-of-type+label,div.switch input:last-of-type+span+label{right:-50%;left:auto;text-align:right}div.switch input:last-of-type:checked+label,div.switch input:last-of-type:checked+span+label{right:0%;left:auto}div.switch span.custom{display:none !important}form.custom div.switch .hidden-field{margin-left:auto;position:absolute;visibility:visible}div.switch label{padding:0;line-height:2.3rem;font-size:0.875rem}div.switch input:first-of-type:checked ~ span:last-child{left:100%;margin-left:-2.1875rem}div.switch span:last-child{width:2.25rem;height:2.25rem}div.switch span:last-child{border-color:#b3b3b3;background:#fff;background:-moz-linear-gradient(top, #fff 0%, #f2f2f2 100%);background:-webkit-linear-gradient(top, #fff 0%, #f2f2f2 100%);background:linear-gradient(to bottom, #ffffff 0%,#f2f2f2 100%);-webkit-box-shadow:2px 0 10px 0 rgba(0,0,0,0.07),1000px 0 0 1000px #f3fbf6,-2px 0 10px 0 rgba(0,0,0,0.07),-1000px 0 0 1000px #f5f5f5;box-shadow:2px 0 10px 0 rgba(0,0,0,0.07),1000px 0 0 980px #f3fbf6,-2px 0 10px 0 rgba(0,0,0,0.07),-1000px 0 0 1000px #f5f5f5}div.switch:hover span:last-child,div.switch:focus span:last-child{background:#fff;background:-moz-linear-gradient(top, #fff 0%, #e6e6e6 100%);background:-webkit-linear-gradient(top, #fff 0%, #e6e6e6 100%);background:linear-gradient(to bottom, #ffffff 0%,#e6e6e6 100%)}div.switch:active{background:transparent}div.switch.large{height:2.75rem}div.switch.large label{padding:0;line-height:2.3rem;font-size:1.0625rem}div.switch.large input:first-of-type:checked ~ span:last-child{left:100%;margin-left:-2.6875rem}div.switch.large span:last-child{width:2.75rem;height:2.75rem}div.switch.small{height:1.75rem}div.switch.small label{padding:0;line-height:2.1rem;font-size:0.75rem}div.switch.small input:first-of-type:checked ~ span:last-child{left:100%;margin-left:-1.6875rem}div.switch.small span:last-child{width:1.75rem;height:1.75rem}div.switch.tiny{height:1.375rem}div.switch.tiny label{padding:0;line-height:1.9rem;font-size:0.6875rem}div.switch.tiny input:first-of-type:checked ~ span:last-child{left:100%;margin-left:-1.3125rem}div.switch.tiny span:last-child{width:1.375rem;height:1.375rem}div.switch.radius{-webkit-border-radius:4px;border-radius:4px}div.switch.radius span:last-child{-webkit-border-radius:3px;border-radius:3px}div.switch.round{-webkit-border-radius:1000px;border-radius:1000px}div.switch.round span:last-child{-webkit-border-radius:999px;border-radius:999px}div.switch.round label{padding:0 0.5625rem}@-webkit-keyframes webkitSiblingBugfix{from{position:relative}to{position:relative}}table{background:#fff;margin-bottom:1.25rem;border:solid 1px #ddd}table thead,table tfoot{background:#f5f5f5;font-weight:bold}table thead tr th,table thead tr td,table tfoot tr th,table tfoot tr td{padding:0.5rem 0.625rem 0.625rem;font-size:0.875rem;color:#222;text-align:left}table tr th,table tr td{padding:0.5625rem 0.625rem;font-size:0.875rem;color:#222}table tr.even,table tr.alt,table tr:nth-of-type(even){background:#f9f9f9}table thead tr th,table tfoot tr th,table tbody tr td,table tr td,table tfoot tr td{display:table-cell;line-height:1.125rem}.tabs{*zoom:1;margin-bottom:0 !important}.tabs:before,.tabs:after{content:" ";display:table}.tabs:after{clear:both}.tabs dd{position:relative;margin-bottom:0 !important;top:1px;float:left}.tabs dd>a{display:block;background:#efefef;color:#222;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-size:1rem}.tabs dd>a:hover{background:#e2e2e2}.tabs dd.active a{background:#fff}.tabs.radius dd:first-child a{-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.tabs.radius dd:last-child a{-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.tabs.vertical dd{position:inherit;float:none;display:block;top:auto}.tabs-content{*zoom:1;margin-bottom:1.5rem}.tabs-content:before,.tabs-content:after{content:" ";display:table}.tabs-content:after{clear:both}.tabs-content>.content{display:none;float:left;padding:0.9375rem 0}.tabs-content>.content.active{display:block}.tabs-content>.content.contained{padding:0.9375rem}.tabs-content.vertical{display:block}.tabs-content.vertical>.content{padding:0 0.9375rem}@media only screen and (min-width: 40.063em){.tabs.vertical{width:20%;float:left;margin-bottom:1.25rem}.tabs-content.vertical{width:80%;float:left;margin-left:-1px}}.th{line-height:0;display:inline-block;border:solid 4px #fff;-webkit-box-shadow:0 0 0 1px rgba(0,0,0,0.2);box-shadow:0 0 0 1px rgba(0,0,0,0.2);-webkit-transition:all 200ms ease-out;-moz-transition:all 200ms ease-out;transition:all 200ms ease-out}.th:hover,.th:focus{-webkit-box-shadow:0 0 6px 1px rgba(0,140,186,0.5);box-shadow:0 0 6px 1px rgba(0,140,186,0.5)}.th.radius{-webkit-border-radius:3px;border-radius:3px}a.th{display:inline-block;max-width:100%}.has-tip{border-bottom:dotted 1px #ccc;cursor:help;font-weight:bold;color:#333}.has-tip:hover,.has-tip:focus{border-bottom:dotted 1px #003f54;color:#008cba}.has-tip.tip-left,.has-tip.tip-right{float:none !important}.tooltip{display:none;position:absolute;z-index:999;font-weight:normal;font-size:0.875rem;line-height:1.3;padding:0.75rem;max-width:85%;left:50%;width:100%;color:#fff;background:#333;-webkit-border-radius:3px;border-radius:3px}.tooltip>.nub{display:block;left:5px;position:absolute;width:0;height:0;border:solid 5px;border-color:transparent transparent #333 transparent;top:-10px}.tooltip.opened{color:#008cba !important;border-bottom:dotted 1px #003f54 !important}.tap-to-close{display:block;font-size:0.625rem;color:#777;font-weight:normal}@media only screen and (min-width: 40.063em){.tooltip>.nub{border-color:transparent transparent #333 transparent;top:-10px}.tooltip.tip-top>.nub{border-color:#333 transparent transparent transparent;top:auto;bottom:-10px}.tooltip.tip-left,.tooltip.tip-right{float:none !important}.tooltip.tip-left>.nub{border-color:transparent transparent transparent #333;right:-10px;left:auto;top:50%;margin-top:-5px}.tooltip.tip-right>.nub{border-color:transparent #333 transparent transparent;right:auto;left:-10px;top:50%;margin-top:-5px}}p.lead{font-size:1.21875rem;line-height:1.6}.subheader{line-height:1.4;color:#6f6f6f;font-weight:300;margin-top:0.2rem;margin-bottom:0.5rem}div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0;direction:ltr}a{color:#008cba;text-decoration:none;line-height:inherit}a:hover,a:focus{color:#0079a1}a img{border:none}p{font-family:inherit;font-weight:normal;font-size:1rem;line-height:1.6;margin-bottom:1.25rem;text-rendering:optimizeLegibility}p aside{font-size:0.875rem;line-height:1.35;font-style:italic}h1,h2,h3,h4,h5,h6{font-family:"Open Sans","Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-weight:300;font-style:normal;color:#222;text-rendering:optimizeLegibility;margin-top:0.2rem;margin-bottom:0.5rem;line-height:1.4}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:60%;color:#6f6f6f;line-height:0}h1{font-size:2.125rem}h2{font-size:1.6875rem}h3{font-size:1.375rem}h4{font-size:1.125rem}h5{font-size:1.125rem}h6{font-size:1rem}hr{border:solid #ddd;border-width:1px 0 0;clear:both;margin:1.25rem 0 1.1875rem;height:0}em,i{font-style:italic;line-height:inherit}strong,b{font-weight:bold;line-height:inherit}small{font-size:60%;line-height:inherit}code{font-family:Consolas,"Liberation Mono",Courier,monospace;font-weight:bold;color:#bb260d}ul,ol,dl{font-size:1rem;line-height:1.6;margin-bottom:1.25rem;list-style-position:outside;font-family:inherit}ul{margin-left:1.1rem}ul.no-bullet{margin-left:0}ul.no-bullet li ul,ul.no-bullet li ol{margin-left:1.25rem;margin-bottom:0;list-style:none}ul li ul,ul li ol{margin-left:1.25rem;margin-bottom:0;font-size:1rem}ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit}ul.square{list-style-type:square;margin-left:1.1rem}ul.circle{list-style-type:circle;margin-left:1.1rem}ul.disc{list-style-type:disc;margin-left:1.1rem}ul.no-bullet{list-style:none}ol{margin-left:1.4rem}ol li ul,ol li ol{margin-left:1.25rem;margin-bottom:0}dl dt{margin-bottom:0.3rem;font-weight:bold}dl dd{margin-bottom:0.75rem}abbr,acronym{text-transform:uppercase;font-size:90%;color:#222;border-bottom:1px dotted #ddd;cursor:help}abbr{text-transform:none}blockquote{margin:0 0 1.25rem;padding:0.5625rem 1.25rem 0 1.1875rem;border-left:1px solid #ddd}blockquote cite{display:block;font-size:0.8125rem;color:#555}blockquote cite:before{content:"\2014 \0020"}blockquote cite a,blockquote cite a:visited{color:#555}blockquote,blockquote p{line-height:1.6;color:#6f6f6f}.vcard{display:inline-block;margin:0 0 1.25rem 0;border:1px solid #ddd;padding:0.625rem 0.75rem}.vcard li{margin:0;display:block}.vcard .fn{font-weight:bold;font-size:0.9375rem}.vevent .summary{font-weight:bold}.vevent abbr{cursor:default;text-decoration:none;font-weight:bold;border:none;padding:0 0.0625rem}@media only screen and (min-width: 40.063em){h1,h2,h3,h4,h5,h6{line-height:1.4}h1{font-size:2.75rem}h2{font-size:2.3125rem}h3{font-size:1.6875rem}h4{font-size:1.4375rem}}.print-only{display:none !important}@media print{*{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.hide-on-print{display:none !important}.print-only{display:block !important}.hide-for-print{display:none !important}.show-for-print{display:inherit !important}}meta.foundation-mq-topbar{font-family:"/only screen and (min-width:40.063em)/";width:40.063em}.contain-to-grid{width:100%;background:#333}.contain-to-grid .top-bar{margin-bottom:0}.fixed{width:100%;left:0;position:fixed;top:0;z-index:99}.fixed.expanded:not(.top-bar){overflow-y:auto;height:auto;width:100%;max-height:100%}.fixed.expanded:not(.top-bar) .title-area{position:fixed;width:100%;z-index:99}.fixed.expanded:not(.top-bar) .top-bar-section{z-index:98;margin-top:45px}.top-bar{overflow:hidden;height:45px;line-height:45px;position:relative;background:#333;margin-bottom:0}.top-bar ul{margin-bottom:0;list-style:none}.top-bar .row{max-width:none}.top-bar form,.top-bar input{margin-bottom:0}.top-bar input{height:auto;padding-top:.35rem;padding-bottom:.35rem;font-size:0.75rem}.top-bar .button{padding-top:.45rem;padding-bottom:.35rem;margin-bottom:0;font-size:0.75rem}.top-bar .title-area{position:relative;margin:0}.top-bar .name{height:45px;margin:0;font-size:16px}.top-bar .name h1{line-height:45px;font-size:1.0625rem;margin:0}.top-bar .name h1 a{font-weight:normal;color:#fff;width:50%;display:block;padding:0 15px}.top-bar .toggle-topbar{position:absolute;right:0;top:0}.top-bar .toggle-topbar a{color:#fff;text-transform:uppercase;font-size:0.8125rem;font-weight:bold;position:relative;display:block;padding:0 15px;height:45px;line-height:45px}.top-bar .toggle-topbar.menu-icon{right:15px;top:50%;margin-top:-16px;padding-left:40px}.top-bar .toggle-topbar.menu-icon a{text-indent:-48px;width:34px;height:34px;line-height:33px;padding:0;color:#fff}.top-bar .toggle-topbar.menu-icon a span{position:absolute;right:0;display:block;width:16px;height:0;-webkit-box-shadow:0 10px 0 1px #fff,0 16px 0 1px #fff,0 22px 0 1px #fff;box-shadow:0 10px 0 1px #fff,0 16px 0 1px #fff,0 22px 0 1px #fff}.top-bar.expanded{height:auto;background:transparent}.top-bar.expanded .title-area{background:#333}.top-bar.expanded .toggle-topbar a{color:#888}.top-bar.expanded .toggle-topbar a span{-webkit-box-shadow:0 10px 0 1px #888,0 16px 0 1px #888,0 22px 0 1px #888;box-shadow:0 10px 0 1px #888,0 16px 0 1px #888,0 22px 0 1px #888}.top-bar-section{left:0;position:relative;width:auto;-webkit-transition:left 300ms ease-out;-moz-transition:left 300ms ease-out;transition:left 300ms ease-out}.top-bar-section ul{width:100%;height:auto;display:block;background:#333;font-size:16px;margin:0}.top-bar-section .divider,.top-bar-section [role="separator"]{border-top:solid 1px #1a1a1a;clear:both;height:1px;width:100%}.top-bar-section ul li>a{display:block;width:100%;color:#fff;padding:12px 0 12px 0;padding-left:15px;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-size:0.8125rem;font-weight:normal;background:#333}.top-bar-section ul li>a.button{background:#008cba;font-size:0.8125rem;padding-right:15px;padding-left:15px}.top-bar-section ul li>a.button:hover{background:#006687}.top-bar-section ul li>a.button.secondary{background:#e7e7e7}.top-bar-section ul li>a.button.secondary:hover{background:#cecece}.top-bar-section ul li>a.button.success{background:#43ac6a}.top-bar-section ul li>a.button.success:hover{background:#358753}.top-bar-section ul li>a.button.alert{background:#f04124}.top-bar-section ul li>a.button.alert:hover{background:#d32a0e}.top-bar-section ul li:hover>a{background:#272727;color:#fff}.top-bar-section ul li.active>a{background:#008cba;color:#fff}.top-bar-section ul li.active>a:hover{background:#0079a1}.top-bar-section .has-form{padding:15px}.top-bar-section .has-dropdown{position:relative}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:transparent transparent transparent rgba(255,255,255,0.4);border-left-style:solid;margin-right:15px;margin-top:-4.5px;position:absolute;top:50%;right:0}.top-bar-section .has-dropdown.moved{position:static}.top-bar-section .has-dropdown.moved>.dropdown{display:block}.top-bar-section .dropdown{position:absolute;left:100%;top:0;display:none;z-index:99}.top-bar-section .dropdown li{width:100%;height:auto}.top-bar-section .dropdown li a{font-weight:normal;padding:8px 15px}.top-bar-section .dropdown li a.parent-link{font-weight:normal}.top-bar-section .dropdown li.title h5{margin-bottom:0}.top-bar-section .dropdown li.title h5 a{color:#fff;line-height:22.5px;display:block}.top-bar-section .dropdown label{padding:8px 15px 2px;margin-bottom:0;text-transform:uppercase;color:#777;font-weight:bold;font-size:0.625rem}.js-generated{display:block}@media only screen and (min-width: 40.063em){.top-bar{background:#333;*zoom:1;overflow:visible}.top-bar:before,.top-bar:after{content:" ";display:table}.top-bar:after{clear:both}.top-bar .toggle-topbar{display:none}.top-bar .title-area{float:left}.top-bar .name h1 a{width:auto}.top-bar input,.top-bar .button{font-size:0.875rem;position:relative;top:7px}.top-bar.expanded{background:#333}.contain-to-grid .top-bar{max-width:62.5rem;margin:0 auto;margin-bottom:0}.top-bar-section{-webkit-transition:none 0 0;-moz-transition:none 0 0;transition:none 0 0;left:0 !important}.top-bar-section ul{width:auto;height:auto !important;display:inline}.top-bar-section ul li{float:left}.top-bar-section ul li .js-generated{display:none}.top-bar-section li.hover>a:not(.button){background:#272727;color:#fff}.top-bar-section li a:not(.button){padding:0 15px;line-height:45px;background:#333}.top-bar-section li a:not(.button):hover{background:#272727}.top-bar-section .has-dropdown>a{padding-right:35px !important}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:rgba(255,255,255,0.4) transparent transparent transparent;border-top-style:solid;margin-top:-2.5px;top:22.5px}.top-bar-section .has-dropdown.moved{position:relative}.top-bar-section .has-dropdown.moved>.dropdown{display:none}.top-bar-section .has-dropdown.hover>.dropdown,.top-bar-section .has-dropdown.not-click:hover>.dropdown{display:block}.top-bar-section .has-dropdown .dropdown li.has-dropdown>a:after{border:none;content:"\00bb";top:1rem;margin-top:-2px;right:5px}.top-bar-section .dropdown{left:0;top:auto;background:transparent;min-width:100%}.top-bar-section .dropdown li a{color:#fff;line-height:1;white-space:nowrap;padding:12px 15px;background:#333}.top-bar-section .dropdown li label{white-space:nowrap;background:#333}.top-bar-section .dropdown li .dropdown{left:100%;top:0}.top-bar-section>ul>.divider,.top-bar-section>ul>[role="separator"]{border-bottom:none;border-top:none;border-right:solid 1px #4d4d4d;clear:none;height:45px;width:0}.top-bar-section .has-form{background:#333;padding:0 15px;height:45px}.top-bar-section ul.right li .dropdown{left:auto;right:0}.top-bar-section ul.right li .dropdown li .dropdown{right:100%}.no-js .top-bar-section ul li:hover>a{background:#272727;color:#fff}.no-js .top-bar-section ul li:active>a{background:#008cba;color:#fff}.no-js .top-bar-section .has-dropdown:hover>.dropdown{display:block}}.off-canvas-wrap,.inner-wrap,nav.tab-bar,.left-off-canvas-menu,.left-off-canvas-menu *,.right-off-canvas-menu,.move-right a.exit-off-canvas,.move-left a.exit-off-canvas{-webkit-backface-visibility:hidden}.off-canvas-wrap,.inner-wrap{position:relative;width:100%}.left-off-canvas-menu,.right-off-canvas-menu{width:250px;top:0;bottom:0;height:100%;position:absolute;overflow-y:auto;background:#333;z-index:1001;box-sizing:content-box}section.left-small,section.right-small{width:2.8125rem;height:2.8125rem;position:absolute;top:0}.off-canvas-wrap{overflow:hidden}.inner-wrap{*zoom:1;-webkit-transition:-webkit-transform 500ms ease;-moz-transition:-moz-transform 500ms ease;-ms-transition:-ms-transform 500ms ease;-o-transition:-o-transform 500ms ease;transition:transform 500ms ease}.inner-wrap:before,.inner-wrap:after{content:" ";display:table}.inner-wrap:after{clear:both}nav.tab-bar{background:#333;color:#fff;height:2.8125rem;line-height:2.8125rem;position:relative}nav.tab-bar h1,nav.tab-bar h2,nav.tab-bar h3,nav.tab-bar h4,nav.tab-bar h5,nav.tab-bar h6{color:#fff;font-weight:bold;line-height:2.8125rem;margin:0}nav.tab-bar h1,nav.tab-bar h2,nav.tab-bar h3,nav.tab-bar h4{font-size:1.125rem}section.left-small{border-right:solid 1px #1a1a1a;box-shadow:1px 0 0 #4d4d4d;left:0}section.right-small{border-left:solid 1px #4d4d4d;box-shadow:-1px 0 0 #1a1a1a;right:0}section.tab-bar-section{padding:0 0.625rem;position:absolute;text-align:center;height:2.8125rem;top:0}@media only screen and (min-width: 40.063em){section.tab-bar-section{text-align:left}}section.tab-bar-section.left{left:0;right:2.8125rem}section.tab-bar-section.right{left:2.8125rem;right:0}section.tab-bar-section.middle{left:2.8125rem;right:2.8125rem}a.menu-icon{text-indent:2.1875rem;width:2.8125rem;height:2.8125rem;display:block;line-height:2.0625rem;padding:0;color:#fff;position:relative}a.menu-icon span{position:absolute;display:block;width:1rem;height:0;left:0.8125rem;top:0.3125rem;-webkit-box-shadow:0 10px 0 1px #fff,0 16px 0 1px #fff,0 22px 0 1px #fff;box-shadow:0 10px 0 1px #fff,0 16px 0 1px #fff,0 22px 0 1px #fff}a.menu-icon:hover span{-webkit-box-shadow:0 10px 0 1px #b3b3b3,0 16px 0 1px #b3b3b3,0 22px 0 1px #b3b3b3;box-shadow:0 10px 0 1px #b3b3b3,0 16px 0 1px #b3b3b3,0 22px 0 1px #b3b3b3}.left-off-canvas-menu{-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);-o-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0)}.right-off-canvas-menu{-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);-o-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);right:0}ul.off-canvas-list{list-style-type:none;padding:0;margin:0}ul.off-canvas-list li label{padding:0.3rem 0.9375rem;color:#999;text-transform:uppercase;font-weight:bold;background:#444;border-top:1px solid #5e5e5e;border-bottom:none;margin:0}ul.off-canvas-list li a{display:block;padding:0.66667rem;color:rgba(255,255,255,0.7);border-bottom:1px solid #262626}.move-right>.inner-wrap{-webkit-transform:translate3d(250px, 0, 0);-moz-transform:translate3d(250px, 0, 0);-ms-transform:translate3d(250px, 0, 0);-o-transform:translate3d(250px, 0, 0);transform:translate3d(250px, 0, 0)}.move-right a.exit-off-canvas{transition:background 300ms ease;cursor:pointer;box-shadow:-4px 0 4px rgba(0,0,0,0.5),4px 0 4px rgba(0,0,0,0.5);display:block;position:absolute;background:rgba(255,255,255,0.2);top:0;bottom:0;left:0;right:0;z-index:1002}@media only screen and (min-width: 40.063em){.move-right a.exit-off-canvas:hover{background:rgba(255,255,255,0.05)}}.move-left>.inner-wrap{-webkit-transform:translate3d(-250px, 0, 0);-moz-transform:translate3d(-250px, 0, 0);-ms-transform:translate3d(-250px, 0, 0);-o-transform:translate3d(-250px, 0, 0);transform:translate3d(-250px, 0, 0)}.move-left a.exit-off-canvas{transition:background 300ms ease;cursor:pointer;box-shadow:-4px 0 4px rgba(0,0,0,0.5),4px 0 4px rgba(0,0,0,0.5);display:block;position:absolute;background:rgba(255,255,255,0.2);top:0;bottom:0;left:0;right:0;z-index:1002}@media only screen and (min-width: 40.063em){.move-left a.exit-off-canvas:hover{background:rgba(255,255,255,0.05)}}.lt-ie10 .left-off-canvas-menu{left:-250px}.lt-ie10 .right-off-canvas-menu{right:-250px}.lt-ie10 .move-left>.inner-wrap{right:250px}.lt-ie10 .move-right>.inner-wrap{left:250px}.show-for-small,.show-for-small-only,.show-for-medium-down,.show-for-large-down,.hide-for-medium,.hide-for-medium-up,.hide-for-medium-only,.hide-for-large,.hide-for-large-up,.hide-for-large-only,.hide-for-xlarge,.hide-for-xlarge-up,.hide-for-xlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge-only{display:inherit !important}.hide-for-small,.hide-for-small-only,.hide-for-medium-down,.show-for-medium,.show-for-medium-up,.show-for-medium-only,.hide-for-large-down,.show-for-large,.show-for-large-up,.show-for-large-only,.show-for-xlarge,.show-for-xlarge-up,.show-for-xlarge-only,.show-for-xxlarge-up,.show-for-xxlarge-only{display:none !important}table.show-for-small,table.show-for-small-only,table.show-for-medium-down,table.show-for-large-down,table.hide-for-medium,table.hide-for-medium-up,table.hide-for-medium-only,table.hide-for-large,table.hide-for-large-up,table.hide-for-large-only,table.hide-for-xlarge,table.hide-for-xlarge-up,table.hide-for-xlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge-only{display:table}thead.show-for-small,thead.show-for-small-only,thead.show-for-medium-down,thead.show-for-large-down,thead.hide-for-medium,thead.hide-for-medium-up,thead.hide-for-medium-only,thead.hide-for-large,thead.hide-for-large-up,thead.hide-for-large-only,thead.hide-for-xlarge,thead.hide-for-xlarge-up,thead.hide-for-xlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge-only{display:table-header-group !important}tbody.show-for-small,tbody.show-for-small-only,tbody.show-for-medium-down,tbody.show-for-large-down,tbody.hide-for-medium,tbody.hide-for-medium-up,tbody.hide-for-medium-only,tbody.hide-for-large,tbody.hide-for-large-up,tbody.hide-for-large-only,tbody.hide-for-xlarge,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge-only{display:table-row-group !important}tr.show-for-small,tr.show-for-small-only,tr.show-for-medium-down,tr.show-for-large-down,tr.hide-for-medium,tr.hide-for-medium-up,tr.hide-for-medium-only,tr.hide-for-large,tr.hide-for-large-up,tr.hide-for-large-only,tr.hide-for-xlarge,tr.hide-for-xlarge-up,tr.hide-for-xlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge-only{display:table-row !important}td.show-for-small,td.show-for-small-only,td.show-for-medium-down td.show-for-large-down,td.hide-for-medium,td.hide-for-medium-up,td.hide-for-large,td.hide-for-large-up,td.hide-for-xlarge td.hide-for-xlarge-up,td.hide-for-xxlarge-up,th.show-for-small,th.show-for-small-only,th.show-for-medium-down th.show-for-large-down,th.hide-for-medium,th.hide-for-medium-up,th.hide-for-large,th.hide-for-large-up,th.hide-for-xlarge th.hide-for-xlarge-up,th.hide-for-xxlarge-up{display:table-cell !important}@media only screen and (min-width: 40.063em){.hide-for-small,.hide-for-small-only,.show-for-medium,.show-for-medium-down,.show-for-medium-up,.show-for-medium-only,.hide-for-large,.hide-for-large-up,.hide-for-large-only,.hide-for-xlarge,.hide-for-xlarge-up,.hide-for-xlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge-only{display:inherit !important}.show-for-small,.show-for-small-only,.hide-for-medium,.hide-for-medium-down,.hide-for-medium-up,.hide-for-medium-only,.hide-for-large-down,.show-for-large,.show-for-large-up,.show-for-large-only,.show-for-xlarge,.show-for-xlarge-up,.show-for-xlarge-only,.show-for-xxlarge-up,.show-for-xxlarge-only{display:none !important}table.hide-for-small,table.hide-for-small-only,table.show-for-medium,table.show-for-medium-down,table.show-for-medium-up,table.show-for-medium-only,table.hide-for-large,table.hide-for-large-up,table.hide-for-large-only,table.hide-for-xlarge,table.hide-for-xlarge-up,table.hide-for-xlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge-only{display:table}thead.hide-for-small,thead.hide-for-small-only,thead.show-for-medium,thead.show-for-medium-down,thead.show-for-medium-up,thead.show-for-medium-only,thead.hide-for-large,thead.hide-for-large-up,thead.hide-for-large-only,thead.hide-for-xlarge,thead.hide-for-xlarge-up,thead.hide-for-xlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge-only{display:table-header-group !important}tbody.hide-for-small,tbody.hide-for-small-only,tbody.show-for-medium,tbody.show-for-medium-down,tbody.show-for-medium-up,tbody.show-for-medium-only,tbody.hide-for-large,tbody.hide-for-large-up,tbody.hide-for-large-only,tbody.hide-for-xlarge,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge-only{display:table-row-group !important}tr.hide-for-small,tr.hide-for-small-only,tr.show-for-medium,tr.show-for-medium-down,tr.show-for-medium-up,tr.show-for-medium-only,tr.hide-for-large,tr.hide-for-large-up,tr.hide-for-large-only,tr.hide-for-xlarge,tr.hide-for-xlarge-up,tr.hide-for-xlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge-only{display:table-row !important}td.hide-for-small,td.hide-for-small-only,td.show-for-medium,td.show-for-medium-down,td.show-for-medium-up,td.show-for-medium-only,td.hide-for-large,td.hide-for-large-up,td.hide-for-large-only,td.hide-for-xlarge,td.hide-for-xlarge-up,td.hide-for-xlarge-only,td.hide-for-xxlarge-up,td.hide-for-xxlarge-only,th.hide-for-small,th.hide-for-small-only,th.show-for-medium,th.show-for-medium-down,th.show-for-medium-up,th.show-for-medium-only,th.hide-for-large,th.hide-for-large-up,th.hide-for-large-only,th.hide-for-xlarge,th.hide-for-xlarge-up,th.hide-for-xlarge-only,th.hide-for-xxlarge-up,th.hide-for-xxlarge-only{display:table-cell !important}}@media only screen and (min-width: 64.063em){.hide-for-small,.hide-for-small-only,.hide-for-medium,.hide-for-medium-down,.hide-for-medium-only,.show-for-medium-up,.show-for-large,.show-for-large-up,.show-for-large-only,.hide-for-xlarge,.hide-for-xlarge-up,.hide-for-xlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge-only{display:inherit !important}.show-for-small-only,.show-for-medium,.show-for-medium-down,.show-for-medium-only,.hide-for-large,.hide-for-large-up,.hide-for-large-only,.show-for-xlarge,.show-for-xlarge-up,.show-for-xlarge-only,.show-for-xxlarge-up,.show-for-xxlarge-only{display:none !important}table.hide-for-small,table.hide-for-small-only,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-medium-only,table.show-for-medium-up,table.show-for-large,table.show-for-large-up,table.show-for-large-only,table.hide-for-xlarge,table.hide-for-xlarge-up,table.hide-for-xlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge-only{display:table}thead.hide-for-small,thead.hide-for-small-only,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.show-for-large,thead.show-for-large-up,thead.show-for-large-only,thead.hide-for-xlarge,thead.hide-for-xlarge-up,thead.hide-for-xlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge-only{display:table-header-group !important}tbody.hide-for-small,tbody.hide-for-small-only,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.show-for-large,tbody.show-for-large-up,tbody.show-for-large-only,tbody.hide-for-xlarge,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge-only{display:table-row-group !important}tr.hide-for-small,tr.hide-for-small-only,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.show-for-large,tr.show-for-large-up,tr.show-for-large-only,tr.hide-for-xlarge,tr.hide-for-xlarge-up,tr.hide-for-xlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge-only{display:table-row !important}td.hide-for-small,td.hide-for-small-only,td.hide-for-medium,td.hide-for-medium-down,td.hide-for-medium-only,td.show-for-medium-up,td.show-for-large,td.show-for-large-up,td.show-for-large-only,td.hide-for-xlarge,td.hide-for-xlarge-up,td.hide-for-xlarge-only,td.hide-for-xxlarge-up,td.hide-for-xxlarge-only,th.hide-for-small,th.hide-for-small-only,th.hide-for-medium,th.hide-for-medium-down,th.hide-for-medium-only,th.show-for-medium-up,th.show-for-large,th.show-for-large-up,th.show-for-large-only,th.hide-for-xlarge,th.hide-for-xlarge-up,th.hide-for-xlarge-only,th.hide-for-xxlarge-up,th.hide-for-xxlarge-only{display:table-cell !important}}@media only screen and (min-width: 90.063em){.hide-for-small,.hide-for-small-only,.hide-for-medium,.hide-for-medium-down,.hide-for-medium-only,.show-for-medium-up,.show-for-large-up,.show-for-xlarge,.show-for-xlarge-up,.show-for-xlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge-only{display:inherit !important}.show-for-small-only,.show-for-medium,.show-for-medium-down,.show-for-medium-only,.show-for-large,.show-for-large-only,.show-for-large-down,.hide-for-xlarge,.hide-for-xlarge-up,.hide-for-xlarge-only,.show-for-xxlarge-up,.show-for-xxlarge-only{display:none !important}table.hide-for-small,table.hide-for-small-only,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-medium-only,table.show-for-medium-up,table.show-for-large-up,table.show-for-xlarge,table.show-for-xlarge-up,table.show-for-xlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge-only{display:table}thead.hide-for-small,thead.hide-for-small-only,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.show-for-large-up,thead.show-for-xlarge,thead.show-for-xlarge-up,thead.show-for-xlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge-only{display:table-header-group !important}tbody.hide-for-small,tbody.hide-for-small-only,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.show-for-large-up,tbody.show-for-xlarge,tbody.show-for-xlarge-up,tbody.show-for-xlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge-only{display:table-row-group !important}tr.hide-for-small,tr.hide-for-small-only,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.show-for-large-up,tr.show-for-xlarge,tr.show-for-xlarge-up,tr.show-for-xlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge-only{display:table-row !important}td.hide-for-small,td.hide-for-small-only,td.hide-for-medium,td.hide-for-medium-down,td.hide-for-medium-only,td.show-for-medium-up,td.show-for-large-up,td.show-for-xlarge,td.show-for-xlarge-up,td.show-for-xlarge-only,td.hide-for-xxlarge-up,td.hide-for-xxlarge-only,th.hide-for-small,th.hide-for-small-only,th.hide-for-medium,th.hide-for-medium-down,th.hide-for-medium-only,th.show-for-medium-up,th.show-for-large-up,th.show-for-xlarge,th.show-for-xlarge-up,th.show-for-xlarge-only,th.hide-for-xxlarge-up,th.hide-for-xxlarge-only{display:table-cell !important}}@media only screen and (min-width: 120.063em){.hide-for-small,.hide-for-small-only,.hide-for-medium,.hide-for-medium-down,.hide-for-medium-only,.show-for-medium-up,.show-for-large-up,.show-for-xlarge-up,.show-for-xxlarge-up,.show-for-xxlarge-only{display:inherit !important}.show-for-small-only,.show-for-medium,.show-for-medium-down,.show-for-medium-only,.show-for-large,.show-for-large-only,.show-for-large-down,.hide-for-xlarge,.show-for-xlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge-only{display:none !important}table.hide-for-small,table.hide-for-small-only,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-medium-only,table.show-for-medium-up,table.show-for-large-up,table.show-for-xlarge-up,table.show-for-xxlarge-up,table.show-for-xxlarge-only{display:table}thead.hide-for-small,thead.hide-for-small-only,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.show-for-large-up,thead.show-for-xlarge-up,thead.show-for-xxlarge-up,thead.show-for-xxlarge-only{display:table-header-group !important}tbody.hide-for-small,tbody.hide-for-small-only,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.show-for-large-up,tbody.show-for-xlarge-up,tbody.show-for-xxlarge-up,tbody.show-for-xxlarge-only{display:table-row-group !important}tr.hide-for-small,tr.hide-for-small-only,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.show-for-large-up,tr.show-for-xlarge-up,tr.show-for-xxlarge-up,tr.show-for-xxlarge-only{display:table-row !important}td.hide-for-small,td.hide-for-small-only,td.hide-for-medium,td.hide-for-medium-down,td.hide-for-medium-only,td.show-for-medium-up,td.show-for-large-up,td.show-for-xlarge-up,td.show-for-xxlarge-up,td.show-for-xxlarge-only,th.hide-for-small,th.hide-for-small-only,th.hide-for-medium,th.hide-for-medium-down,th.hide-for-medium-only,th.show-for-medium-up,th.show-for-large-up,th.show-for-xlarge-up,th.show-for-xxlarge-up,th.show-for-xxlarge-only{display:table-cell !important}}.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.hide-for-landscape,table.show-for-portrait{display:table}thead.hide-for-landscape,thead.show-for-portrait{display:table-header-group !important}tbody.hide-for-landscape,tbody.show-for-portrait{display:table-row-group !important}tr.hide-for-landscape,tr.show-for-portrait{display:table-row !important}td.hide-for-landscape,td.show-for-portrait,th.hide-for-landscape,th.show-for-portrait{display:table-cell !important}@media only screen and (orientation: landscape){.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.show-for-landscape,table.hide-for-portrait{display:table}thead.show-for-landscape,thead.hide-for-portrait{display:table-header-group !important}tbody.show-for-landscape,tbody.hide-for-portrait{display:table-row-group !important}tr.show-for-landscape,tr.hide-for-portrait{display:table-row !important}td.show-for-landscape,td.hide-for-portrait,th.show-for-landscape,th.hide-for-portrait{display:table-cell !important}}@media only screen and (orientation: portrait){.show-for-portrait,.hide-for-landscape{display:inherit !important}.hide-for-portrait,.show-for-landscape{display:none !important}table.show-for-portrait,table.hide-for-landscape{display:table}thead.show-for-portrait,thead.hide-for-landscape{display:table-header-group !important}tbody.show-for-portrait,tbody.hide-for-landscape{display:table-row-group !important}tr.show-for-portrait,tr.hide-for-landscape{display:table-row !important}td.show-for-portrait,td.hide-for-landscape,th.show-for-portrait,th.hide-for-landscape{display:table-cell !important}}.show-for-touch{display:none !important}.hide-for-touch{display:inherit !important}.touch .show-for-touch{display:inherit !important}.touch .hide-for-touch{display:none !important}table.hide-for-touch{display:table}.touch table.show-for-touch{display:table}thead.hide-for-touch{display:table-header-group !important}.touch thead.show-for-touch{display:table-header-group !important}tbody.hide-for-touch{display:table-row-group !important}.touch tbody.show-for-touch{display:table-row-group !important}tr.hide-for-touch{display:table-row !important}.touch tr.show-for-touch{display:table-row !important}td.hide-for-touch{display:table-cell !important}.touch td.show-for-touch{display:table-cell !important}th.hide-for-touch{display:table-cell !important}.touch th.show-for-touch{display:table-cell !important}
trunk/app/assets/css/bower_components/foundation/scss/normalize.css ADDED
@@ -0,0 +1 @@
 
1
+ /* normalize.css v2.1.2 | MIT License | git.io/normalize */article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,video{display:inline-block}audio:not([controls]){display:none;height:0}[hidden],template{display:none}script{display:none !important}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}a{background:transparent}a:focus{outline:thin dotted}a:active,a:hover{outline:0}h1{font-size:2em;margin:0.67em 0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}mark{background:#ff0;color:#000}code,kbd,pre,samp{font-family:monospace, serif;font-size:1em}pre{white-space:pre-wrap}q{quotes:"\201C" "\201D" "\2018" "\2019"}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:0}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0}button,input{line-height:normal}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}textarea{overflow:auto;vertical-align:top}table{border-collapse:collapse;border-spacing:0}
trunk/app/assets/css/font-awesome.css ADDED
@@ -0,0 +1,1339 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*!
2
+ * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */
5
+ /* FONT PATH
6
+ * -------------------------- */
7
+ @font-face {
8
+ font-family: 'FontAwesome';
9
+ src: url('../font/fontawesome-webfont.eot?v=4.0.3');
10
+ src: url('../font/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../font/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../font/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../font/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
11
+ font-weight: normal;
12
+ font-style: normal;
13
+ }
14
+ .rtmedia-container [class^="rtmicon-"],[class^="rtmicon-"], .rtmedia-container [class*=" rtmicon-"],[class*=" rtmicon-"]{
15
+ display: inline-block;
16
+ font-family: FontAwesome;
17
+ font-style: normal;
18
+ font-weight: normal;
19
+ line-height: 1;
20
+ margin-right: .2em;
21
+ -webkit-font-smoothing: antialiased;
22
+ -moz-osx-font-smoothing: grayscale;
23
+ }
24
+ /* makes the font 33% larger relative to the icon container */
25
+ .rtmicon-lg {
26
+ font-size: 1.3333333333333333em;
27
+ line-height: 0.75em;
28
+ vertical-align: -15%;
29
+ }
30
+ .rtmicon-2x {
31
+ font-size: 2em;
32
+ }
33
+ .rtmicon-3x {
34
+ font-size: 3em;
35
+ }
36
+ .rtmicon-4x {
37
+ font-size: 4em;
38
+ }
39
+ .rtmicon-5x {
40
+ font-size: 5em;
41
+ }
42
+ .rtmicon-fw {
43
+ width: 1.2857142857142858em;
44
+ text-align: center;
45
+ }
46
+ .rtmicon-ul {
47
+ padding-left: 0;
48
+ margin-left: 2.142857142857143em;
49
+ list-style-type: none;
50
+ }
51
+ .rtmicon-ul > li {
52
+ position: relative;
53
+ }
54
+ .rtmicon-li {
55
+ position: absolute;
56
+ left: -2.142857142857143em;
57
+ width: 2.142857142857143em;
58
+ top: 0.14285714285714285em;
59
+ text-align: center;
60
+ }
61
+ .rtmicon-li.rtmicon-lg {
62
+ left: -1.8571428571428572em;
63
+ }
64
+ .rtmicon-border {
65
+ padding: .2em .25em .15em;
66
+ border: solid 0.08em #eeeeee;
67
+ border-radius: .1em;
68
+ }
69
+ .pull-right {
70
+ float: right;
71
+ }
72
+ .pull-left {
73
+ float: left;
74
+ }
75
+ .rtmicon.pull-left {
76
+ margin-right: .3em;
77
+ }
78
+ .rtmicon.pull-right {
79
+ margin-left: .3em;
80
+ }
81
+ .rtmicon-spin {
82
+ -webkit-animation: spin 2s infinite linear;
83
+ -moz-animation: spin 2s infinite linear;
84
+ -o-animation: spin 2s infinite linear;
85
+ animation: spin 2s infinite linear;
86
+ }
87
+ @-moz-keyframes spin {
88
+ 0% {
89
+ -moz-transform: rotate(0deg);
90
+ }
91
+ 100% {
92
+ -moz-transform: rotate(359deg);
93
+ }
94
+ }
95
+ @-webkit-keyframes spin {
96
+ 0% {
97
+ -webkit-transform: rotate(0deg);
98
+ }
99
+ 100% {
100
+ -webkit-transform: rotate(359deg);
101
+ }
102
+ }
103
+ @-o-keyframes spin {
104
+ 0% {
105
+ -o-transform: rotate(0deg);
106
+ }
107
+ 100% {
108
+ -o-transform: rotate(359deg);
109
+ }
110
+ }
111
+ @-ms-keyframes spin {
112
+ 0% {
113
+ -ms-transform: rotate(0deg);
114
+ }
115
+ 100% {
116
+ -ms-transform: rotate(359deg);
117
+ }
118
+ }
119
+ @keyframes spin {
120
+ 0% {
121
+ transform: rotate(0deg);
122
+ }
123
+ 100% {
124
+ transform: rotate(359deg);
125
+ }
126
+ }
127
+ .rtmicon-rotate-90 {
128
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
129
+ -webkit-transform: rotate(90deg);
130
+ -moz-transform: rotate(90deg);
131
+ -ms-transform: rotate(90deg);
132
+ -o-transform: rotate(90deg);
133
+ transform: rotate(90deg);
134
+ }
135
+ .rtmicon-rotate-180 {
136
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
137
+ -webkit-transform: rotate(180deg);
138
+ -moz-transform: rotate(180deg);
139
+ -ms-transform: rotate(180deg);
140
+ -o-transform: rotate(180deg);
141
+ transform: rotate(180deg);
142
+ }
143
+ .rtmicon-rotate-270 {
144
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
145
+ -webkit-transform: rotate(270deg);
146
+ -moz-transform: rotate(270deg);
147
+ -ms-transform: rotate(270deg);
148
+ -o-transform: rotate(270deg);
149
+ transform: rotate(270deg);
150
+ }
151
+ .rtmicon-flip-horizontal {
152
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
153
+ -webkit-transform: scale(-1, 1);
154
+ -moz-transform: scale(-1, 1);
155
+ -ms-transform: scale(-1, 1);
156
+ -o-transform: scale(-1, 1);
157
+ transform: scale(-1, 1);
158
+ }
159
+ .rtmicon-flip-vertical {
160
+ filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
161
+ -webkit-transform: scale(1, -1);
162
+ -moz-transform: scale(1, -1);
163
+ -ms-transform: scale(1, -1);
164
+ -o-transform: scale(1, -1);
165
+ transform: scale(1, -1);
166
+ }
167
+ .rtmicon-stack {
168
+ position: relative;
169
+ display: inline-block;
170
+ width: 2em;
171
+ height: 2em;
172
+ line-height: 2em;
173
+ vertical-align: middle;
174
+ }
175
+ .rtmicon-stack-1x,
176
+ .rtmicon-stack-2x {
177
+ position: absolute;
178
+ left: 0;
179
+ width: 100%;
180
+ text-align: center;
181
+ }
182
+ .rtmicon-stack-1x {
183
+ line-height: inherit;
184
+ }
185
+ .rtmicon-stack-2x {
186
+ font-size: 2em;
187
+ }
188
+ .rtmicon-inverse {
189
+ color: #ffffff;
190
+ }
191
+ /* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
192
+ readers do not read off random characters that represent icons */
193
+ .rtmicon-glass:before {
194
+ content: "\f000";
195
+ }
196
+ .rtmicon-music:before {
197
+ content: "\f001";
198
+ }
199
+ .rtmicon-search:before {
200
+ content: "\f002";
201
+ }
202
+ .rtmicon-envelope-o:before {
203
+ content: "\f003";
204
+ }
205
+ .rtmicon-heart:before {
206
+ content: "\f004";
207
+ }
208
+ .rtmicon-star:before {
209
+ content: "\f005";
210
+ }
211
+ .rtmicon-star-o:before {
212
+ content: "\f006";
213
+ }
214
+ .rtmicon-user:before {
215
+ content: "\f007";
216
+ }
217
+ .rtmicon-film:before {
218
+ content: "\f008";
219
+ }
220
+ .rtmicon-th-large:before {
221
+ content: "\f009";
222
+ }
223
+ .rtmicon-th:before {
224
+ content: "\f00a";
225
+ }
226
+ .rtmicon-th-list:before {
227
+ content: "\f00b";
228
+ }
229
+ .rtmicon-check:before {
230
+ content: "\f00c";
231
+ }
232
+ .rtmicon-times:before {
233
+ content: "\f00d";
234
+ }
235
+ .rtmicon-search-plus:before {
236
+ content: "\f00e";
237
+ }
238
+ .rtmicon-search-minus:before {
239
+ content: "\f010";
240
+ }
241
+ .rtmicon-power-off:before {
242
+ content: "\f011";
243
+ }
244
+ .rtmicon-signal:before {
245
+ content: "\f012";
246
+ }
247
+ .rtmicon-gear:before,
248
+ .rtmicon-cog:before {
249
+ content: "\f013";
250
+ }
251
+ .rtmicon-trash-o:before {
252
+ content: "\f014";
253
+ }
254
+ .rtmicon-home:before {
255
+ content: "\f015";
256
+ }
257
+ .rtmicon-file-o:before {
258
+ content: "\f016";
259
+ }
260
+ .rtmicon-clock-o:before {
261
+ content: "\f017";
262
+ }
263
+ .rtmicon-road:before {
264
+ content: "\f018";
265
+ }
266
+ .rtmicon-download:before {
267
+ content: "\f019";
268
+ }
269
+ .rtmicon-arrow-circle-o-down:before {
270
+ content: "\f01a";
271
+ }
272
+ .rtmicon-arrow-circle-o-up:before {
273
+ content: "\f01b";
274
+ }
275
+ .rtmicon-inbox:before {
276
+ content: "\f01c";
277
+ }
278
+ .rtmicon-play-circle-o:before {
279
+ content: "\f01d";
280
+ }
281
+ .rtmicon-rotate-right:before,
282
+ .rtmicon-repeat:before {
283
+ content: "\f01e";
284
+ }
285
+ .rtmicon-refresh:before {
286
+ content: "\f021";
287
+ }
288
+ .rtmicon-list-alt:before {
289
+ content: "\f022";
290
+ }
291
+ .rtmicon-lock:before {
292
+ content: "\f023";
293
+ }
294
+ .rtmicon-flag:before {
295
+ content: "\f024";
296
+ }
297
+ .rtmicon-headphones:before {
298
+ content: "\f025";
299
+ }
300
+ .rtmicon-volume-off:before {
301
+ content: "\f026";
302
+ }
303
+ .rtmicon-volume-down:before {
304
+ content: "\f027";
305
+ }
306
+ .rtmicon-volume-up:before {
307
+ content: "\f028";
308
+ }
309
+ .rtmicon-qrcode:before {
310
+ content: "\f029";
311
+ }
312
+ .rtmicon-barcode:before {
313
+ content: "\f02a";
314
+ }
315
+ .rtmicon-tag:before {
316
+ content: "\f02b";
317
+ }
318
+ .rtmicon-tags:before {
319
+ content: "\f02c";
320
+ }
321
+ .rtmicon-book:before {
322
+ content: "\f02d";
323
+ }
324
+ .rtmicon-bookmark:before {
325
+ content: "\f02e";
326
+ }
327
+ .rtmicon-print:before {
328
+ content: "\f02f";
329
+ }
330
+ .rtmicon-camera:before {
331
+ content: "\f030";
332
+ }
333
+ .rtmicon-font:before {
334
+ content: "\f031";
335
+ }
336
+ .rtmicon-bold:before {
337
+ content: "\f032";
338
+ }
339
+ .rtmicon-italic:before {
340
+ content: "\f033";
341
+ }
342
+ .rtmicon-text-height:before {
343
+ content: "\f034";
344
+ }
345
+ .rtmicon-text-width:before {
346
+ content: "\f035";
347
+ }
348
+ .rtmicon-align-left:before {
349
+ content: "\f036";
350
+ }
351
+ .rtmicon-align-center:before {
352
+ content: "\f037";
353
+ }
354
+ .rtmicon-align-right:before {
355
+ content: "\f038";
356
+ }
357
+ .rtmicon-align-justify:before {
358
+ content: "\f039";
359
+ }
360
+ .rtmicon-list:before {
361
+ content: "\f03a";
362
+ }
363
+ .rtmicon-dedent:before,
364
+ .rtmicon-outdent:before {
365
+ content: "\f03b";
366
+ }
367
+ .rtmicon-indent:before {
368
+ content: "\f03c";
369
+ }
370
+ .rtmicon-video-camera:before {
371
+ content: "\f03d";
372
+ }
373
+ .rtmicon-picture-o:before {
374
+ content: "\f03e";
375
+ }
376
+ .rtmicon-pencil:before {
377
+ content: "\f040";
378
+ }
379
+ .rtmicon-map-marker:before {
380
+ content: "\f041";
381
+ }
382
+ .rtmicon-adjust:before {
383
+ content: "\f042";
384
+ }
385
+ .rtmicon-tint:before {
386
+ content: "\f043";
387
+ }
388
+ .rtmicon-edit:before,
389
+ .rtmicon-pencil-square-o:before {
390
+ content: "\f044";
391
+ }
392
+ .rtmicon-share-square-o:before {
393
+ content: "\f045";
394
+ }
395
+ .rtmicon-check-square-o:before {
396
+ content: "\f046";
397
+ }
398
+ .rtmicon-arrows:before {
399
+ content: "\f047";
400
+ }
401
+ .rtmicon-step-backward:before {
402
+ content: "\f048";
403
+ }
404
+ .rtmicon-fast-backward:before {
405
+ content: "\f049";
406
+ }
407
+ .rtmicon-backward:before {
408
+ content: "\f04a";
409
+ }
410
+ .rtmicon-play:before {
411
+ content: "\f04b";
412
+ }
413
+ .rtmicon-pause:before {
414
+ content: "\f04c";
415
+ }
416
+ .rtmicon-stop:before {
417
+ content: "\f04d";
418
+ }
419
+ .rtmicon-forward:before {
420
+ content: "\f04e";
421
+ }
422
+ .rtmicon-fast-forward:before {
423
+ content: "\f050";
424
+ }
425
+ .rtmicon-step-forward:before {
426
+ content: "\f051";
427
+ }
428
+ .rtmicon-eject:before {
429
+ content: "\f052";
430
+ }
431
+ .rtmicon-chevron-left:before {
432
+ content: "\f053";
433
+ }
434
+ .rtmicon-chevron-right:before {
435
+ content: "\f054";
436
+ }
437
+ .rtmicon-plus-circle:before {
438
+ content: "\f055";
439
+ }
440
+ .rtmicon-minus-circle:before {
441
+ content: "\f056";
442
+ }
443
+ .rtmicon-times-circle:before {
444
+ content: "\f057";
445
+ }
446
+ .rtmicon-check-circle:before {
447
+ content: "\f058";
448
+ }
449
+ .rtmicon-question-circle:before {
450
+ content: "\f059";
451
+ }
452
+ .rtmicon-info-circle:before {
453
+ content: "\f05a";
454
+ }
455
+ .rtmicon-crosshairs:before {
456
+ content: "\f05b";
457
+ }
458
+ .rtmicon-times-circle-o:before {
459
+ content: "\f05c";
460
+ }
461
+ .rtmicon-check-circle-o:before {
462
+ content: "\f05d";
463
+ }
464
+ .rtmicon-ban:before {
465
+ content: "\f05e";
466
+ }
467
+ .rtmicon-arrow-left:before {
468
+ content: "\f060";
469
+ }
470
+ .rtmicon-arrow-right:before {
471
+ content: "\f061";
472
+ }
473
+ .rtmicon-arrow-up:before {
474
+ content: "\f062";
475
+ }
476
+ .rtmicon-arrow-down:before {
477
+ content: "\f063";
478
+ }
479
+ .rtmicon-mail-forward:before,
480
+ .rtmicon-share:before {
481
+ content: "\f064";
482
+ }
483
+ .rtmicon-expand:before {
484
+ content: "\f065";
485
+ }
486
+ .rtmicon-compress:before {
487
+ content: "\f066";
488
+ }
489
+ .rtmicon-plus:before {
490
+ content: "\f067";
491
+ }
492
+ .rtmicon-minus:before {
493
+ content: "\f068";
494
+ }
495
+ .rtmicon-asterisk:before {
496
+ content: "\f069";
497
+ }
498
+ .rtmicon-exclamation-circle:before {
499
+ content: "\f06a";
500
+ }
501
+ .rtmicon-gift:before {
502
+ content: "\f06b";
503
+ }
504
+ .rtmicon-leaf:before {
505
+ content: "\f06c";
506
+ }
507
+ .rtmicon-fire:before {
508
+ content: "\f06d";
509
+ }
510
+ .rtmicon-eye:before {
511
+ content: "\f06e";
512
+ }
513
+ .rtmicon-eye-slash:before {
514
+ content: "\f070";
515
+ }
516
+ .rtmicon-warning:before,
517
+ .rtmicon-exclamation-triangle:before {
518
+ content: "\f071";
519
+ }
520
+ .rtmicon-plane:before {
521
+ content: "\f072";
522
+ }
523
+ .rtmicon-calendar:before {
524
+ content: "\f073";
525
+ }
526
+ .rtmicon-random:before {
527
+ content: "\f074";
528
+ }
529
+ .rtmicon-comment:before {
530
+ content: "\f075";
531
+ }
532
+ .rtmicon-magnet:before {
533
+ content: "\f076";
534
+ }
535
+ .rtmicon-chevron-up:before {
536
+ content: "\f077";
537
+ }
538
+ .rtmicon-chevron-down:before {
539
+ content: "\f078";
540
+ }
541
+ .rtmicon-retweet:before {
542
+ content: "\f079";
543
+ }
544
+ .rtmicon-shopping-cart:before {
545
+ content: "\f07a";
546
+ }
547
+ .rtmicon-folder:before {
548
+ content: "\f07b";
549
+ }
550
+ .rtmicon-folder-open:before {
551
+ content: "\f07c";
552
+ }
553
+ .rtmicon-arrows-v:before {
554
+ content: "\f07d";
555
+ }
556
+ .rtmicon-arrows-h:before {
557
+ content: "\f07e";
558
+ }
559
+ .rtmicon-bar-chart-o:before {
560
+ content: "\f080";
561
+ }
562
+ .rtmicon-twitter-square:before {
563
+ content: "\f081";
564
+ }
565
+ .rtmicon-facebook-square:before {
566
+ content: "\f082";
567
+ }
568
+ .rtmicon-camera-retro:before {
569
+ content: "\f083";
570
+ }
571
+ .rtmicon-key:before {
572
+ content: "\f084";
573
+ }
574
+ .rtmicon-gears:before,
575
+ .rtmicon-cogs:before {
576
+ content: "\f085";
577
+ }
578
+ .rtmicon-comments:before {
579
+ content: "\f086";
580
+ }
581
+ .rtmicon-thumbs-o-up:before {
582
+ content: "\f087";
583
+ }
584
+ .rtmicon-thumbs-o-down:before {
585
+ content: "\f088";
586
+ }
587
+ .rtmicon-star-half:before {
588
+ content: "\f089";
589
+ }
590
+ .rtmicon-heart-o:before {
591
+ content: "\f08a";
592
+ }
593
+ .rtmicon-sign-out:before {
594
+ content: "\f08b";
595
+ }
596
+ .rtmicon-linkedin-square:before {
597
+ content: "\f08c";
598
+ }
599
+ .rtmicon-thumb-tack:before {
600
+ content: "\f08d";
601
+ }
602
+ .rtmicon-external-link:before {
603
+ content: "\f08e";
604
+ }
605
+ .rtmicon-sign-in:before {
606
+ content: "\f090";
607
+ }
608
+ .rtmicon-trophy:before {
609
+ content: "\f091";
610
+ }
611
+ .rtmicon-github-square:before {
612
+ content: "\f092";
613
+ }
614
+ .rtmicon-upload:before {
615
+ content: "\f093";
616
+ }
617
+ .rtmicon-lemon-o:before {
618
+ content: "\f094";
619
+ }
620
+ .rtmicon-phone:before {
621
+ content: "\f095";
622
+ }
623
+ .rtmicon-square-o:before {
624
+ content: "\f096";
625
+ }
626
+ .rtmicon-bookmark-o:before {
627
+ content: "\f097";
628
+ }
629
+ .rtmicon-phone-square:before {
630
+ content: "\f098";
631
+ }
632
+ .rtmicon-twitter:before {
633
+ content: "\f099";
634
+ }
635
+ .rtmicon-facebook:before {
636
+ content: "\f09a";
637
+ }
638
+ .rtmicon-github:before {
639
+ content: "\f09b";
640
+ }
641
+ .rtmicon-unlock:before {
642
+ content: "\f09c";
643
+ }
644
+ .rtmicon-credit-card:before {
645
+ content: "\f09d";
646
+ }
647
+ .rtmicon-rss:before {
648
+ content: "\f09e";
649
+ }
650
+ .rtmicon-hdd-o:before {
651
+ content: "\f0a0";
652
+ }
653
+ .rtmicon-bullhorn:before {
654
+ content: "\f0a1";
655
+ }
656
+ .rtmicon-bell:before {
657
+ content: "\f0f3";
658
+ }
659
+ .rtmicon-certificate:before {
660
+ content: "\f0a3";
661
+ }
662
+ .rtmicon-hand-o-right:before {
663
+ content: "\f0a4";
664
+ }
665
+ .rtmicon-hand-o-left:before {
666
+ content: "\f0a5";
667
+ }
668
+ .rtmicon-hand-o-up:before {
669
+ content: "\f0a6";
670
+ }
671
+ .rtmicon-hand-o-down:before {
672
+ content: "\f0a7";
673
+ }
674
+ .rtmicon-arrow-circle-left:before {
675
+ content: "\f0a8";
676
+ }
677
+ .rtmicon-arrow-circle-right:before {
678
+ content: "\f0a9";
679
+ }
680
+ .rtmicon-arrow-circle-up:before {
681
+ content: "\f0aa";
682
+ }
683
+ .rtmicon-arrow-circle-down:before {
684
+ content: "\f0ab";
685
+ }
686
+ .rtmicon-globe:before {
687
+ content: "\f0ac";
688
+ }
689
+ .rtmicon-wrench:before {
690
+ content: "\f0ad";
691
+ }
692
+ .rtmicon-tasks:before {
693
+ content: "\f0ae";
694
+ }
695
+ .rtmicon-filter:before {
696
+ content: "\f0b0";
697
+ }
698
+ .rtmicon-briefcase:before {
699
+ content: "\f0b1";
700
+ }
701
+ .rtmicon-arrows-alt:before {
702
+ content: "\f0b2";
703
+ }
704
+ .rtmicon-group:before,
705
+ .rtmicon-users:before {
706
+ content: "\f0c0";
707
+ }
708
+ .rtmicon-chain:before,
709
+ .rtmicon-link:before {
710
+ content: "\f0c1";
711
+ }
712
+ .rtmicon-cloud:before {
713
+ content: "\f0c2";
714
+ }
715
+ .rtmicon-flask:before {
716
+ content: "\f0c3";
717
+ }
718
+ .rtmicon-cut:before,
719
+ .rtmicon-scissors:before {
720
+ content: "\f0c4";
721
+ }
722
+ .rtmicon-copy:before,
723
+ .rtmicon-files-o:before {
724
+ content: "\f0c5";
725
+ }
726
+ .rtmicon-paperclip:before {
727
+ content: "\f0c6";
728
+ }
729
+ .rtmicon-save:before,
730
+ .rtmicon-floppy-o:before {
731
+ content: "\f0c7";
732
+ }
733
+ .rtmicon-square:before {
734
+ content: "\f0c8";
735
+ }
736
+ .rtmicon-bars:before {
737
+ content: "\f0c9";
738
+ }
739
+ .rtmicon-list-ul:before {
740
+ content: "\f0ca";
741
+ }
742
+ .rtmicon-list-ol:before {
743
+ content: "\f0cb";
744
+ }
745
+ .rtmicon-strikethrough:before {
746
+ content: "\f0cc";
747
+ }
748
+ .rtmicon-underline:before {
749
+ content: "\f0cd";
750
+ }
751
+ .rtmicon-table:before {
752
+ content: "\f0ce";
753
+ }
754
+ .rtmicon-magic:before {
755
+ content: "\f0d0";
756
+ }
757
+ .rtmicon-truck:before {
758
+ content: "\f0d1";
759
+ }
760
+ .rtmicon-pinterest:before {
761
+ content: "\f0d2";
762
+ }
763
+ .rtmicon-pinterest-square:before {
764
+ content: "\f0d3";
765
+ }
766
+ .rtmicon-google-plus-square:before {
767
+ content: "\f0d4";
768
+ }
769
+ .rtmicon-google-plus:before {
770
+ content: "\f0d5";
771
+ }
772
+ .rtmicon-money:before {
773
+ content: "\f0d6";
774
+ }
775
+ .rtmicon-caret-down:before {
776
+ content: "\f0d7";
777
+ }
778
+ .rtmicon-caret-up:before {
779
+ content: "\f0d8";
780
+ }
781
+ .rtmicon-caret-left:before {
782
+ content: "\f0d9";
783
+ }
784
+ .rtmicon-caret-right:before {
785
+ content: "\f0da";
786
+ }
787
+ .rtmicon-columns:before {
788
+ content: "\f0db";
789
+ }
790
+ .rtmicon-unsorted:before,
791
+ .rtmicon-sort:before {
792
+ content: "\f0dc";
793
+ }
794
+ .rtmicon-sort-down:before,
795
+ .rtmicon-sort-asc:before {
796
+ content: "\f0dd";
797
+ }
798
+ .rtmicon-sort-up:before,
799
+ .rtmicon-sort-desc:before {
800
+ content: "\f0de";
801
+ }
802
+ .rtmicon-envelope:before {
803
+ content: "\f0e0";
804
+ }
805
+ .rtmicon-linkedin:before {
806
+ content: "\f0e1";
807
+ }
808
+ .rtmicon-rotate-left:before,
809
+ .rtmicon-undo:before {
810
+ content: "\f0e2";
811
+ }
812
+ .rtmicon-legal:before,
813
+ .rtmicon-gavel:before {
814
+ content: "\f0e3";
815
+ }
816
+ .rtmicon-dashboard:before,
817
+ .rtmicon-tachometer:before {
818
+ content: "\f0e4";
819
+ }
820
+ .rtmicon-comment-o:before {
821
+ content: "\f0e5";
822
+ }
823
+ .rtmicon-comments-o:before {
824
+ content: "\f0e6";
825
+ }
826
+ .rtmicon-flash:before,
827
+ .rtmicon-bolt:before {
828
+ content: "\f0e7";
829
+ }
830
+ .rtmicon-sitemap:before {
831
+ content: "\f0e8";
832
+ }
833
+ .rtmicon-umbrella:before {
834
+ content: "\f0e9";
835
+ }
836
+ .rtmicon-paste:before,
837
+ .rtmicon-clipboard:before {
838
+ content: "\f0ea";
839
+ }
840
+ .rtmicon-lightbulb-o:before {
841
+ content: "\f0eb";
842
+ }
843
+ .rtmicon-exchange:before {
844
+ content: "\f0ec";
845
+ }
846
+ .rtmicon-cloud-download:before {
847
+ content: "\f0ed";
848
+ }
849
+ .rtmicon-cloud-upload:before {
850
+ content: "\f0ee";
851
+ }
852
+ .rtmicon-user-md:before {
853
+ content: "\f0f0";
854
+ }
855
+ .rtmicon-stethoscope:before {
856
+ content: "\f0f1";
857
+ }
858
+ .rtmicon-suitcase:before {
859
+ content: "\f0f2";
860
+ }
861
+ .rtmicon-bell-o:before {
862
+ content: "\f0a2";
863
+ }
864
+ .rtmicon-coffee:before {
865
+ content: "\f0f4";
866
+ }
867
+ .rtmicon-cutlery:before {
868
+ content: "\f0f5";
869
+ }
870
+ .rtmicon-file-text-o:before {
871
+ content: "\f0f6";
872
+ }
873
+ .rtmicon-building-o:before {
874
+ content: "\f0f7";
875
+ }
876
+ .rtmicon-hospital-o:before {
877
+ content: "\f0f8";
878
+ }
879
+ .rtmicon-ambulance:before {
880
+ content: "\f0f9";
881
+ }
882
+ .rtmicon-medkit:before {
883
+ content: "\f0fa";
884
+ }
885
+ .rtmicon-fighter-jet:before {
886
+ content: "\f0fb";
887
+ }
888
+ .rtmicon-beer:before {
889
+ content: "\f0fc";
890
+ }
891
+ .rtmicon-h-square:before {
892
+ content: "\f0fd";
893
+ }
894
+ .rtmicon-plus-square:before {
895
+ content: "\f0fe";
896
+ }
897
+ .rtmicon-angle-double-left:before {
898
+ content: "\f100";
899
+ }
900
+ .rtmicon-angle-double-right:before {
901
+ content: "\f101";
902
+ }
903
+ .rtmicon-angle-double-up:before {
904
+ content: "\f102";
905
+ }
906
+ .rtmicon-angle-double-down:before {
907
+ content: "\f103";
908
+ }
909
+ .rtmicon-angle-left:before {
910
+ content: "\f104";
911
+ }
912
+ .rtmicon-angle-right:before {
913
+ content: "\f105";
914
+ }
915
+ .rtmicon-angle-up:before {
916
+ content: "\f106";
917
+ }
918
+ .rtmicon-angle-down:before {
919
+ content: "\f107";
920
+ }
921
+ .rtmicon-desktop:before {
922
+ content: "\f108";
923
+ }
924
+ .rtmicon-laptop:before {
925
+ content: "\f109";
926
+ }
927
+ .rtmicon-tablet:before {
928
+ content: "\f10a";
929
+ }
930
+ .rtmicon-mobile-phone:before,
931
+ .rtmicon-mobile:before {
932
+ content: "\f10b";
933
+ }
934
+ .rtmicon-circle-o:before {
935
+ content: "\f10c";
936
+ }
937
+ .rtmicon-quote-left:before {
938
+ content: "\f10d";
939
+ }
940
+ .rtmicon-quote-right:before {
941
+ content: "\f10e";
942
+ }
943
+ .rtmicon-spinner:before {
944
+ content: "\f110";
945
+ }
946
+ .rtmicon-circle:before {
947
+ content: "\f111";
948
+ }
949
+ .rtmicon-mail-reply:before,
950
+ .rtmicon-reply:before {
951
+ content: "\f112";
952
+ }
953
+ .rtmicon-github-alt:before {
954
+ content: "\f113";
955
+ }
956
+ .rtmicon-folder-o:before {
957
+ content: "\f114";
958
+ }
959
+ .rtmicon-folder-open-o:before {
960
+ content: "\f115";
961
+ }
962
+ .rtmicon-smile-o:before {
963
+ content: "\f118";
964
+ }
965
+ .rtmicon-frown-o:before {
966
+ content: "\f119";
967
+ }
968
+ .rtmicon-meh-o:before {
969
+ content: "\f11a";
970
+ }
971
+ .rtmicon-gamepad:before {
972
+ content: "\f11b";
973
+ }
974
+ .rtmicon-keyboard-o:before {
975
+ content: "\f11c";
976
+ }
977
+ .rtmicon-flag-o:before {
978
+ content: "\f11d";
979
+ }
980
+ .rtmicon-flag-checkered:before {
981
+ content: "\f11e";
982
+ }
983
+ .rtmicon-terminal:before {
984
+ content: "\f120";
985
+ }
986
+ .rtmicon-code:before {
987
+ content: "\f121";
988
+ }
989
+ .rtmicon-reply-all:before {
990
+ content: "\f122";
991
+ }
992
+ .rtmicon-mail-reply-all:before {
993
+ content: "\f122";
994
+ }
995
+ .rtmicon-star-half-empty:before,
996
+ .rtmicon-star-half-full:before,
997
+ .rtmicon-star-half-o:before {
998
+ content: "\f123";
999
+ }
1000
+ .rtmicon-location-arrow:before {
1001
+ content: "\f124";
1002
+ }
1003
+ .rtmicon-crop:before {
1004
+ content: "\f125";
1005
+ }
1006
+ .rtmicon-code-fork:before {
1007
+ content: "\f126";
1008
+ }
1009
+ .rtmicon-unlink:before,
1010
+ .rtmicon-chain-broken:before {
1011
+ content: "\f127";
1012
+ }
1013
+ .rtmicon-question:before {
1014
+ content: "\f128";
1015
+ }
1016
+ .rtmicon-info:before {
1017
+ content: "\f129";
1018
+ }
1019
+ .rtmicon-exclamation:before {
1020
+ content: "\f12a";
1021
+ }
1022
+ .rtmicon-superscript:before {
1023
+ content: "\f12b";
1024
+ }
1025
+ .rtmicon-subscript:before {
1026
+ content: "\f12c";
1027
+ }
1028
+ .rtmicon-eraser:before {
1029
+ content: "\f12d";
1030
+ }
1031
+ .rtmicon-puzzle-piece:before {
1032
+ content: "\f12e";
1033
+ }
1034
+ .rtmicon-microphone:before {
1035
+ content: "\f130";
1036
+ }
1037
+ .rtmicon-microphone-slash:before {
1038
+ content: "\f131";
1039
+ }
1040
+ .rtmicon-shield:before {
1041
+ content: "\f132";
1042
+ }
1043
+ .rtmicon-calendar-o:before {
1044
+ content: "\f133";
1045
+ }
1046
+ .rtmicon-fire-extinguisher:before {
1047
+ content: "\f134";
1048
+ }
1049
+ .rtmicon-rocket:before {
1050
+ content: "\f135";
1051
+ }
1052
+ .rtmicon-maxcdn:before {
1053
+ content: "\f136";
1054
+ }
1055
+ .rtmicon-chevron-circle-left:before {
1056
+ content: "\f137";
1057
+ }
1058
+ .rtmicon-chevron-circle-right:before {
1059
+ content: "\f138";
1060
+ }
1061
+ .rtmicon-chevron-circle-up:before {
1062
+ content: "\f139";
1063
+ }
1064
+ .rtmicon-chevron-circle-down:before {
1065
+ content: "\f13a";
1066
+ }
1067
+ .rtmicon-html5:before {
1068
+ content: "\f13b";
1069
+ }
1070
+ .rtmicon-css3:before {
1071
+ content: "\f13c";
1072
+ }
1073
+ .rtmicon-anchor:before {
1074
+ content: "\f13d";
1075
+ }
1076
+ .rtmicon-unlock-alt:before {
1077
+ content: "\f13e";
1078
+ }
1079
+ .rtmicon-bullseye:before {
1080
+ content: "\f140";
1081
+ }
1082
+ .rtmicon-ellipsis-h:before {
1083
+ content: "\f141";
1084
+ }
1085
+ .rtmicon-ellipsis-v:before {
1086
+ content: "\f142";
1087
+ }
1088
+ .rtmicon-rss-square:before {
1089
+ content: "\f143";
1090
+ }
1091
+ .rtmicon-play-circle:before {
1092
+ content: "\f144";
1093
+ }
1094
+ .rtmicon-ticket:before {
1095
+ content: "\f145";
1096
+ }
1097
+ .rtmicon-minus-square:before {
1098
+ content: "\f146";
1099
+ }
1100
+ .rtmicon-minus-square-o:before {
1101
+ content: "\f147";
1102
+ }
1103
+ .rtmicon-level-up:before {
1104
+ content: "\f148";
1105
+ }
1106
+ .rtmicon-level-down:before {
1107
+ content: "\f149";
1108
+ }
1109
+ .rtmicon-check-square:before {
1110
+ content: "\f14a";
1111
+ }
1112
+ .rtmicon-pencil-square:before {
1113
+ content: "\f14b";
1114
+ }
1115
+ .rtmicon-external-link-square:before {
1116
+ content: "\f14c";
1117
+ }
1118
+ .rtmicon-share-square:before {
1119
+ content: "\f14d";
1120
+ }
1121
+ .rtmicon-compass:before {
1122
+ content: "\f14e";
1123
+ }
1124
+ .rtmicon-toggle-down:before,
1125
+ .rtmicon-caret-square-o-down:before {
1126
+ content: "\f150";
1127
+ }
1128
+ .rtmicon-toggle-up:before,
1129
+ .rtmicon-caret-square-o-up:before {
1130
+ content: "\f151";
1131
+ }
1132
+ .rtmicon-toggle-right:before,
1133
+ .rtmicon-caret-square-o-right:before {
1134
+ content: "\f152";
1135
+ }
1136
+ .rtmicon-euro:before,
1137
+ .rtmicon-eur:before {
1138
+ content: "\f153";
1139
+ }
1140
+ .rtmicon-gbp:before {
1141
+ content: "\f154";
1142
+ }
1143
+ .rtmicon-dollar:before,
1144
+ .rtmicon-usd:before {
1145
+ content: "\f155";
1146
+ }
1147
+ .rtmicon-rupee:before,
1148
+ .rtmicon-inr:before {
1149
+ content: "\f156";
1150
+ }
1151
+ .rtmicon-cny:before,
1152
+ .rtmicon-rmb:before,
1153
+ .rtmicon-yen:before,
1154
+ .rtmicon-jpy:before {
1155
+ content: "\f157";
1156
+ }
1157
+ .rtmicon-ruble:before,
1158
+ .rtmicon-rouble:before,
1159
+ .rtmicon-rub:before {
1160
+ content: "\f158";
1161
+ }
1162
+ .rtmicon-won:before,
1163
+ .rtmicon-krw:before {
1164
+ content: "\f159";
1165
+ }
1166
+ .rtmicon-bitcoin:before,
1167
+ .rtmicon-btc:before {
1168
+ content: "\f15a";
1169
+ }
1170
+ .rtmicon-file:before {
1171
+ content: "\f15b";
1172
+ }
1173
+ .rtmicon-file-text:before {
1174
+ content: "\f15c";
1175
+ }
1176
+ .rtmicon-sort-alpha-asc:before {
1177
+ content: "\f15d";
1178
+ }
1179
+ .rtmicon-sort-alpha-desc:before {
1180
+ content: "\f15e";
1181
+ }
1182
+ .rtmicon-sort-amount-asc:before {
1183
+ content: "\f160";
1184
+ }
1185
+ .rtmicon-sort-amount-desc:before {
1186
+ content: "\f161";
1187
+ }
1188
+ .rtmicon-sort-numeric-asc:before {
1189
+ content: "\f162";
1190
+ }
1191
+ .rtmicon-sort-numeric-desc:before {
1192
+ content: "\f163";
1193
+ }
1194
+ .rtmicon-thumbs-up:before {
1195
+ content: "\f164";
1196
+ }
1197
+ .rtmicon-thumbs-down:before {
1198
+ content: "\f165";
1199
+ }
1200
+ .rtmicon-youtube-square:before {
1201
+ content: "\f166";
1202
+ }
1203
+ .rtmicon-youtube:before {
1204
+ content: "\f167";
1205
+ }
1206
+ .rtmicon-xing:before {
1207
+ content: "\f168";
1208
+ }
1209
+ .rtmicon-xing-square:before {
1210
+ content: "\f169";
1211
+ }
1212
+ .rtmicon-youtube-play:before {
1213
+ content: "\f16a";
1214
+ }
1215
+ .rtmicon-dropbox:before {
1216
+ content: "\f16b";
1217
+ }
1218
+ .rtmicon-stack-overflow:before {
1219
+ content: "\f16c";
1220
+ }
1221
+ .rtmicon-instagram:before {
1222
+ content: "\f16d";
1223
+ }
1224
+ .rtmicon-flickr:before {
1225
+ content: "\f16e";
1226
+ }
1227
+ .rtmicon-adn:before {
1228
+ content: "\f170";
1229
+ }
1230
+ .rtmicon-bitbucket:before {
1231
+ content: "\f171";
1232
+ }
1233
+ .rtmicon-bitbucket-square:before {
1234
+ content: "\f172";
1235
+ }
1236
+ .rtmicon-tumblr:before {
1237
+ content: "\f173";
1238
+ }
1239
+ .rtmicon-tumblr-square:before {
1240
+ content: "\f174";
1241
+ }
1242
+ .rtmicon-long-arrow-down:before {
1243
+ content: "\f175";
1244
+ }
1245
+ .rtmicon-long-arrow-up:before {
1246
+ content: "\f176";
1247
+ }
1248
+ .rtmicon-long-arrow-left:before {
1249
+ content: "\f177";
1250
+ }
1251
+ .rtmicon-long-arrow-right:before {
1252
+ content: "\f178";
1253
+ }
1254
+ .rtmicon-apple:before {
1255
+ content: "\f179";
1256
+ }
1257
+ .rtmicon-windows:before {
1258
+ content: "\f17a";
1259
+ }
1260
+ .rtmicon-android:before {
1261
+ content: "\f17b";
1262
+ }
1263
+ .rtmicon-linux:before {
1264
+ content: "\f17c";
1265
+ }
1266
+ .rtmicon-dribbble:before {
1267
+ content: "\f17d";
1268
+ }
1269
+ .rtmicon-skype:before {
1270
+ content: "\f17e";
1271
+ }
1272
+ .rtmicon-foursquare:before {
1273
+ content: "\f180";
1274
+ }
1275
+ .rtmicon-trello:before {
1276
+ content: "\f181";
1277
+ }
1278
+ .rtmicon-female:before {
1279
+ content: "\f182";
1280
+ }
1281
+ .rtmicon-male:before {
1282
+ content: "\f183";
1283
+ }
1284
+ .rtmicon-gittip:before {
1285
+ content: "\f184";
1286
+ }
1287
+ .rtmicon-sun-o:before {
1288
+ content: "\f185";
1289
+ }
1290
+ .rtmicon-moon-o:before {
1291
+ content: "\f186";
1292
+ }
1293
+ .rtmicon-archive:before {
1294
+ content: "\f187";
1295
+ }
1296
+ .rtmicon-bug:before {
1297
+ content: "\f188";
1298
+ }
1299
+ .rtmicon-vk:before {
1300
+ content: "\f189";
1301
+ }
1302
+ .rtmicon-weibo:before {
1303
+ content: "\f18a";
1304
+ }
1305
+ .rtmicon-renren:before {
1306
+ content: "\f18b";
1307
+ }
1308
+ .rtmicon-pagelines:before {
1309
+ content: "\f18c";
1310
+ }
1311
+ .rtmicon-stack-exchange:before {
1312
+ content: "\f18d";
1313
+ }
1314
+ .rtmicon-arrow-circle-o-right:before {
1315
+ content: "\f18e";
1316
+ }
1317
+ .rtmicon-arrow-circle-o-left:before {
1318
+ content: "\f190";
1319
+ }
1320
+ .rtmicon-toggle-left:before,
1321
+ .rtmicon-caret-square-o-left:before {
1322
+ content: "\f191";
1323
+ }
1324
+ .rtmicon-dot-circle-o:before {
1325
+ content: "\f192";
1326
+ }
1327
+ .rtmicon-wheelchair:before {
1328
+ content: "\f193";
1329
+ }
1330
+ .rtmicon-vimeo-square:before {
1331
+ content: "\f194";
1332
+ }
1333
+ .rtmicon-turkish-lira:before,
1334
+ .rtmicon-try:before {
1335
+ content: "\f195";
1336
+ }
1337
+ .rtmicon-plus-square-o:before {
1338
+ content: "\f196";
1339
+ }
trunk/app/assets/css/font-awesome.min.css ADDED
@@ -0,0 +1,4 @@
 
 
 
 
1
+ /*
2
+ * Font Awesome 4.0.3 by @davegandy - http://fontawesome.io - @fontawesome
3
+ * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
4
+ */@font-face{font-family:FontAwesome;src:url(../font/fontawesome-webfont.eot?v=4.0.3);src:url(../font/fontawesome-webfont.eot?#iefix&v=4.0.3) format('embedded-opentype'),url(../font/fontawesome-webfont.woff?v=4.0.3) format('woff'),url(../font/fontawesome-webfont.ttf?v=4.0.3) format('truetype'),url(../font/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular) format('svg');font-weight:400;font-style:normal}.rtmedia-container [class*=" rtmicon-"],.rtmedia-container [class^=rtmicon-],[class*=" rtmicon-"],[class^=rtmicon-]{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:400;line-height:1;margin-right:.2em;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.rtmicon-lg{font-size:1.3333333333333333em;line-height:.75em;vertical-align:-15%}.rtmicon-2x{font-size:2em}.rtmicon-3x{font-size:3em}.rtmicon-4x{font-size:4em}.rtmicon-5x{font-size:5em}.rtmicon-fw{width:1.2857142857142858em;text-align:center}.rtmicon-ul{padding-left:0;margin-left:2.142857142857143em;list-style-type:none}.rtmicon-ul>li{position:relative}.rtmicon-li{position:absolute;left:-2.142857142857143em;width:2.142857142857143em;top:.14285714285714285em;text-align:center}.rtmicon-li.rtmicon-lg{left:-1.8571428571428572em}.rtmicon-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.rtmicon.pull-left{margin-right:.3em}.rtmicon.pull-right{margin-left:.3em}.rtmicon-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}.rtmicon-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.rtmicon-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.rtmicon-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.rtmicon-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1,1);-moz-transform:scale(-1,1);-ms-transform:scale(-1,1);-o-transform:scale(-1,1);transform:scale(-1,1)}.rtmicon-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1,-1);-moz-transform:scale(1,-1);-ms-transform:scale(1,-1);-o-transform:scale(1,-1);transform:scale(1,-1)}.rtmicon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.rtmicon-stack-1x,.rtmicon-stack-2x{position:absolute;left:0;width:100%;text-align:center}.rtmicon-stack-1x{line-height:inherit}.rtmicon-stack-2x{font-size:2em}.rtmicon-inverse{color:#fff}.rtmicon-glass:before{content:"\f000"}.rtmicon-music:before{content:"\f001"}.rtmicon-search:before{content:"\f002"}.rtmicon-envelope-o:before{content:"\f003"}.rtmicon-heart:before{content:"\f004"}.rtmicon-star:before{content:"\f005"}.rtmicon-star-o:before{content:"\f006"}.rtmicon-user:before{content:"\f007"}.rtmicon-film:before{content:"\f008"}.rtmicon-th-large:before{content:"\f009"}.rtmicon-th:before{content:"\f00a"}.rtmicon-th-list:before{content:"\f00b"}.rtmicon-check:before{content:"\f00c"}.rtmicon-times:before{content:"\f00d"}.rtmicon-search-plus:before{content:"\f00e"}.rtmicon-search-minus:before{content:"\f010"}.rtmicon-power-off:before{content:"\f011"}.rtmicon-signal:before{content:"\f012"}.rtmicon-cog:before,.rtmicon-gear:before{content:"\f013"}.rtmicon-trash-o:before{content:"\f014"}.rtmicon-home:before{content:"\f015"}.rtmicon-file-o:before{content:"\f016"}.rtmicon-clock-o:before{content:"\f017"}.rtmicon-road:before{content:"\f018"}.rtmicon-download:before{content:"\f019"}.rtmicon-arrow-circle-o-down:before{content:"\f01a"}.rtmicon-arrow-circle-o-up:before{content:"\f01b"}.rtmicon-inbox:before{content:"\f01c"}.rtmicon-play-circle-o:before{content:"\f01d"}.rtmicon-repeat:before,.rtmicon-rotate-right:before{content:"\f01e"}.rtmicon-refresh:before{content:"\f021"}.rtmicon-list-alt:before{content:"\f022"}.rtmicon-lock:before{content:"\f023"}.rtmicon-flag:before{content:"\f024"}.rtmicon-headphones:before{content:"\f025"}.rtmicon-volume-off:before{content:"\f026"}.rtmicon-volume-down:before{content:"\f027"}.rtmicon-volume-up:before{content:"\f028"}.rtmicon-qrcode:before{content:"\f029"}.rtmicon-barcode:before{content:"\f02a"}.rtmicon-tag:before{content:"\f02b"}.rtmicon-tags:before{content:"\f02c"}.rtmicon-book:before{content:"\f02d"}.rtmicon-bookmark:before{content:"\f02e"}.rtmicon-print:before{content:"\f02f"}.rtmicon-camera:before{content:"\f030"}.rtmicon-font:before{content:"\f031"}.rtmicon-bold:before{content:"\f032"}.rtmicon-italic:before{content:"\f033"}.rtmicon-text-height:before{content:"\f034"}.rtmicon-text-width:before{content:"\f035"}.rtmicon-align-left:before{content:"\f036"}.rtmicon-align-center:before{content:"\f037"}.rtmicon-align-right:before{content:"\f038"}.rtmicon-align-justify:before{content:"\f039"}.rtmicon-list:before{content:"\f03a"}.rtmicon-dedent:before,.rtmicon-outdent:before{content:"\f03b"}.rtmicon-indent:before{content:"\f03c"}.rtmicon-video-camera:before{content:"\f03d"}.rtmicon-picture-o:before{content:"\f03e"}.rtmicon-pencil:before{content:"\f040"}.rtmicon-map-marker:before{content:"\f041"}.rtmicon-adjust:before{content:"\f042"}.rtmicon-tint:before{content:"\f043"}.rtmicon-edit:before,.rtmicon-pencil-square-o:before{content:"\f044"}.rtmicon-share-square-o:before{content:"\f045"}.rtmicon-check-square-o:before{content:"\f046"}.rtmicon-arrows:before{content:"\f047"}.rtmicon-step-backward:before{content:"\f048"}.rtmicon-fast-backward:before{content:"\f049"}.rtmicon-backward:before{content:"\f04a"}.rtmicon-play:before{content:"\f04b"}.rtmicon-pause:before{content:"\f04c"}.rtmicon-stop:before{content:"\f04d"}.rtmicon-forward:before{content:"\f04e"}.rtmicon-fast-forward:before{content:"\f050"}.rtmicon-step-forward:before{content:"\f051"}.rtmicon-eject:before{content:"\f052"}.rtmicon-chevron-left:before{content:"\f053"}.rtmicon-chevron-right:before{content:"\f054"}.rtmicon-plus-circle:before{content:"\f055"}.rtmicon-minus-circle:before{content:"\f056"}.rtmicon-times-circle:before{content:"\f057"}.rtmicon-check-circle:before{content:"\f058"}.rtmicon-question-circle:before{content:"\f059"}.rtmicon-info-circle:before{content:"\f05a"}.rtmicon-crosshairs:before{content:"\f05b"}.rtmicon-times-circle-o:before{content:"\f05c"}.rtmicon-check-circle-o:before{content:"\f05d"}.rtmicon-ban:before{content:"\f05e"}.rtmicon-arrow-left:before{content:"\f060"}.rtmicon-arrow-right:before{content:"\f061"}.rtmicon-arrow-up:before{content:"\f062"}.rtmicon-arrow-down:before{content:"\f063"}.rtmicon-mail-forward:before,.rtmicon-share:before{content:"\f064"}.rtmicon-expand:before{content:"\f065"}.rtmicon-compress:before{content:"\f066"}.rtmicon-plus:before{content:"\f067"}.rtmicon-minus:before{content:"\f068"}.rtmicon-asterisk:before{content:"\f069"}.rtmicon-exclamation-circle:before{content:"\f06a"}.rtmicon-gift:before{content:"\f06b"}.rtmicon-leaf:before{content:"\f06c"}.rtmicon-fire:before{content:"\f06d"}.rtmicon-eye:before{content:"\f06e"}.rtmicon-eye-slash:before{content:"\f070"}.rtmicon-exclamation-triangle:before,.rtmicon-warning:before{content:"\f071"}.rtmicon-plane:before{content:"\f072"}.rtmicon-calendar:before{content:"\f073"}.rtmicon-random:before{content:"\f074"}.rtmicon-comment:before{content:"\f075"}.rtmicon-magnet:before{content:"\f076"}.rtmicon-chevron-up:before{content:"\f077"}.rtmicon-chevron-down:before{content:"\f078"}.rtmicon-retweet:before{content:"\f079"}.rtmicon-shopping-cart:before{content:"\f07a"}.rtmicon-folder:before{content:"\f07b"}.rtmicon-folder-open:before{content:"\f07c"}.rtmicon-arrows-v:before{content:"\f07d"}.rtmicon-arrows-h:before{content:"\f07e"}.rtmicon-bar-chart-o:before{content:"\f080"}.rtmicon-twitter-square:before{content:"\f081"}.rtmicon-facebook-square:before{content:"\f082"}.rtmicon-camera-retro:before{content:"\f083"}.rtmicon-key:before{content:"\f084"}.rtmicon-cogs:before,.rtmicon-gears:before{content:"\f085"}.rtmicon-comments:before{content:"\f086"}.rtmicon-thumbs-o-up:before{content:"\f087"}.rtmicon-thumbs-o-down:before{content:"\f088"}.rtmicon-star-half:before{content:"\f089"}.rtmicon-heart-o:before{content:"\f08a"}.rtmicon-sign-out:before{content:"\f08b"}.rtmicon-linkedin-square:before{content:"\f08c"}.rtmicon-thumb-tack:before{content:"\f08d"}.rtmicon-external-link:before{content:"\f08e"}.rtmicon-sign-in:before{content:"\f090"}.rtmicon-trophy:before{content:"\f091"}.rtmicon-github-square:before{content:"\f092"}.rtmicon-upload:before{content:"\f093"}.rtmicon-lemon-o:before{content:"\f094"}.rtmicon-phone:before{content:"\f095"}.rtmicon-square-o:before{content:"\f096"}.rtmicon-bookmark-o:before{content:"\f097"}.rtmicon-phone-square:before{content:"\f098"}.rtmicon-twitter:before{content:"\f099"}.rtmicon-facebook:before{content:"\f09a"}.rtmicon-github:before{content:"\f09b"}.rtmicon-unlock:before{content:"\f09c"}.rtmicon-credit-card:before{content:"\f09d"}.rtmicon-rss:before{content:"\f09e"}.rtmicon-hdd-o:before{content:"\f0a0"}.rtmicon-bullhorn:before{content:"\f0a1"}.rtmicon-bell:before{content:"\f0f3"}.rtmicon-certificate:before{content:"\f0a3"}.rtmicon-hand-o-right:before{content:"\f0a4"}.rtmicon-hand-o-left:before{content:"\f0a5"}.rtmicon-hand-o-up:before{content:"\f0a6"}.rtmicon-hand-o-down:before{content:"\f0a7"}.rtmicon-arrow-circle-left:before{content:"\f0a8"}.rtmicon-arrow-circle-right:before{content:"\f0a9"}.rtmicon-arrow-circle-up:before{content:"\f0aa"}.rtmicon-arrow-circle-down:before{content:"\f0ab"}.rtmicon-globe:before{content:"\f0ac"}.rtmicon-wrench:before{content:"\f0ad"}.rtmicon-tasks:before{content:"\f0ae"}.rtmicon-filter:before{content:"\f0b0"}.rtmicon-briefcase:before{content:"\f0b1"}.rtmicon-arrows-alt:before{content:"\f0b2"}.rtmicon-group:before,.rtmicon-users:before{content:"\f0c0"}.rtmicon-chain:before,.rtmicon-link:before{content:"\f0c1"}.rtmicon-cloud:before{content:"\f0c2"}.rtmicon-flask:before{content:"\f0c3"}.rtmicon-cut:before,.rtmicon-scissors:before{content:"\f0c4"}.rtmicon-copy:before,.rtmicon-files-o:before{content:"\f0c5"}.rtmicon-paperclip:before{content:"\f0c6"}.rtmicon-floppy-o:before,.rtmicon-save:before{content:"\f0c7"}.rtmicon-square:before{content:"\f0c8"}.rtmicon-bars:before{content:"\f0c9"}.rtmicon-list-ul:before{content:"\f0ca"}.rtmicon-list-ol:before{content:"\f0cb"}.rtmicon-strikethrough:before{content:"\f0cc"}.rtmicon-underline:before{content:"\f0cd"}.rtmicon-table:before{content:"\f0ce"}.rtmicon-magic:before{content:"\f0d0"}.rtmicon-truck:before{content:"\f0d1"}.rtmicon-pinterest:before{content:"\f0d2"}.rtmicon-pinterest-square:before{content:"\f0d3"}.rtmicon-google-plus-square:before{content:"\f0d4"}.rtmicon-google-plus:before{content:"\f0d5"}.rtmicon-money:before{content:"\f0d6"}.rtmicon-caret-down:before{content:"\f0d7"}.rtmicon-caret-up:before{content:"\f0d8"}.rtmicon-caret-left:before{content:"\f0d9"}.rtmicon-caret-right:before{content:"\f0da"}.rtmicon-columns:before{content:"\f0db"}.rtmicon-sort:before,.rtmicon-unsorted:before{content:"\f0dc"}.rtmicon-sort-asc:before,.rtmicon-sort-down:before{content:"\f0dd"}.rtmicon-sort-desc:before,.rtmicon-sort-up:before{content:"\f0de"}.rtmicon-envelope:before{content:"\f0e0"}.rtmicon-linkedin:before{content:"\f0e1"}.rtmicon-rotate-left:before,.rtmicon-undo:before{content:"\f0e2"}.rtmicon-gavel:before,.rtmicon-legal:before{content:"\f0e3"}.rtmicon-dashboard:before,.rtmicon-tachometer:before{content:"\f0e4"}.rtmicon-comment-o:before{content:"\f0e5"}.rtmicon-comments-o:before{content:"\f0e6"}.rtmicon-bolt:before,.rtmicon-flash:before{content:"\f0e7"}.rtmicon-sitemap:before{content:"\f0e8"}.rtmicon-umbrella:before{content:"\f0e9"}.rtmicon-clipboard:before,.rtmicon-paste:before{content:"\f0ea"}.rtmicon-lightbulb-o:before{content:"\f0eb"}.rtmicon-exchange:before{content:"\f0ec"}.rtmicon-cloud-download:before{content:"\f0ed"}.rtmicon-cloud-upload:before{content:"\f0ee"}.rtmicon-user-md:before{content:"\f0f0"}.rtmicon-stethoscope:before{content:"\f0f1"}.rtmicon-suitcase:before{content:"\f0f2"}.rtmicon-bell-o:before{content:"\f0a2"}.rtmicon-coffee:before{content:"\f0f4"}.rtmicon-cutlery:before{content:"\f0f5"}.rtmicon-file-text-o:before{content:"\f0f6"}.rtmicon-building-o:before{content:"\f0f7"}.rtmicon-hospital-o:before{content:"\f0f8"}.rtmicon-ambulance:before{content:"\f0f9"}.rtmicon-medkit:before{content:"\f0fa"}.rtmicon-fighter-jet:before{content:"\f0fb"}.rtmicon-beer:before{content:"\f0fc"}.rtmicon-h-square:before{content:"\f0fd"}.rtmicon-plus-square:before{content:"\f0fe"}.rtmicon-angle-double-left:before{content:"\f100"}.rtmicon-angle-double-right:before{content:"\f101"}.rtmicon-angle-double-up:before{content:"\f102"}.rtmicon-angle-double-down:before{content:"\f103"}.rtmicon-angle-left:before{content:"\f104"}.rtmicon-angle-right:before{content:"\f105"}.rtmicon-angle-up:before{content:"\f106"}.rtmicon-angle-down:before{content:"\f107"}.rtmicon-desktop:before{content:"\f108"}.rtmicon-laptop:before{content:"\f109"}.rtmicon-tablet:before{content:"\f10a"}.rtmicon-mobile-phone:before,.rtmicon-mobile:before{content:"\f10b"}.rtmicon-circle-o:before{content:"\f10c"}.rtmicon-quote-left:before{content:"\f10d"}.rtmicon-quote-right:before{content:"\f10e"}.rtmicon-spinner:before{content:"\f110"}.rtmicon-circle:before{content:"\f111"}.rtmicon-mail-reply:before,.rtmicon-reply:before{content:"\f112"}.rtmicon-github-alt:before{content:"\f113"}.rtmicon-folder-o:before{content:"\f114"}.rtmicon-folder-open-o:before{content:"\f115"}.rtmicon-smile-o:before{content:"\f118"}.rtmicon-frown-o:before{content:"\f119"}.rtmicon-meh-o:before{content:"\f11a"}.rtmicon-gamepad:before{content:"\f11b"}.rtmicon-keyboard-o:before{content:"\f11c"}.rtmicon-flag-o:before{content:"\f11d"}.rtmicon-flag-checkered:before{content:"\f11e"}.rtmicon-terminal:before{content:"\f120"}.rtmicon-code:before{content:"\f121"}.rtmicon-mail-reply-all:before,.rtmicon-reply-all:before{content:"\f122"}.rtmicon-star-half-empty:before,.rtmicon-star-half-full:before,.rtmicon-star-half-o:before{content:"\f123"}.rtmicon-location-arrow:before{content:"\f124"}.rtmicon-crop:before{content:"\f125"}.rtmicon-code-fork:before{content:"\f126"}.rtmicon-chain-broken:before,.rtmicon-unlink:before{content:"\f127"}.rtmicon-question:before{content:"\f128"}.rtmicon-info:before{content:"\f129"}.rtmicon-exclamation:before{content:"\f12a"}.rtmicon-superscript:before{content:"\f12b"}.rtmicon-subscript:before{content:"\f12c"}.rtmicon-eraser:before{content:"\f12d"}.rtmicon-puzzle-piece:before{content:"\f12e"}.rtmicon-microphone:before{content:"\f130"}.rtmicon-microphone-slash:before{content:"\f131"}.rtmicon-shield:before{content:"\f132"}.rtmicon-calendar-o:before{content:"\f133"}.rtmicon-fire-extinguisher:before{content:"\f134"}.rtmicon-rocket:before{content:"\f135"}.rtmicon-maxcdn:before{content:"\f136"}.rtmicon-chevron-circle-left:before{content:"\f137"}.rtmicon-chevron-circle-right:before{content:"\f138"}.rtmicon-chevron-circle-up:before{content:"\f139"}.rtmicon-chevron-circle-down:before{content:"\f13a"}.rtmicon-html5:before{content:"\f13b"}.rtmicon-css3:before{content:"\f13c"}.rtmicon-anchor:before{content:"\f13d"}.rtmicon-unlock-alt:before{content:"\f13e"}.rtmicon-bullseye:before{content:"\f140"}.rtmicon-ellipsis-h:before{content:"\f141"}.rtmicon-ellipsis-v:before{content:"\f142"}.rtmicon-rss-square:before{content:"\f143"}.rtmicon-play-circle:before{content:"\f144"}.rtmicon-ticket:before{content:"\f145"}.rtmicon-minus-square:before{content:"\f146"}.rtmicon-minus-square-o:before{content:"\f147"}.rtmicon-level-up:before{content:"\f148"}.rtmicon-level-down:before{content:"\f149"}.rtmicon-check-square:before{content:"\f14a"}.rtmicon-pencil-square:before{content:"\f14b"}.rtmicon-external-link-square:before{content:"\f14c"}.rtmicon-share-square:before{content:"\f14d"}.rtmicon-compass:before{content:"\f14e"}.rtmicon-caret-square-o-down:before,.rtmicon-toggle-down:before{content:"\f150"}.rtmicon-caret-square-o-up:before,.rtmicon-toggle-up:before{content:"\f151"}.rtmicon-caret-square-o-right:before,.rtmicon-toggle-right:before{content:"\f152"}.rtmicon-eur:before,.rtmicon-euro:before{content:"\f153"}.rtmicon-gbp:before{content:"\f154"}.rtmicon-dollar:before,.rtmicon-usd:before{content:"\f155"}.rtmicon-inr:before,.rtmicon-rupee:before{content:"\f156"}.rtmicon-cny:before,.rtmicon-jpy:before,.rtmicon-rmb:before,.rtmicon-yen:before{content:"\f157"}.rtmicon-rouble:before,.rtmicon-rub:before,.rtmicon-ruble:before{content:"\f158"}.rtmicon-krw:before,.rtmicon-won:before{content:"\f159"}.rtmicon-bitcoin:before,.rtmicon-btc:before{content:"\f15a"}.rtmicon-file:before{content:"\f15b"}.rtmicon-file-text:before{content:"\f15c"}.rtmicon-sort-alpha-asc:before{content:"\f15d"}.rtmicon-sort-alpha-desc:before{content:"\f15e"}.rtmicon-sort-amount-asc:before{content:"\f160"}.rtmicon-sort-amount-desc:before{content:"\f161"}.rtmicon-sort-numeric-asc:before{content:"\f162"}.rtmicon-sort-numeric-desc:before{content:"\f163"}.rtmicon-thumbs-up:before{content:"\f164"}.rtmicon-thumbs-down:before{content:"\f165"}.rtmicon-youtube-square:before{content:"\f166"}.rtmicon-youtube:before{content:"\f167"}.rtmicon-xing:before{content:"\f168"}.rtmicon-xing-square:before{content:"\f169"}.rtmicon-youtube-play:before{content:"\f16a"}.rtmicon-dropbox:before{content:"\f16b"}.rtmicon-stack-overflow:before{content:"\f16c"}.rtmicon-instagram:before{content:"\f16d"}.rtmicon-flickr:before{content:"\f16e"}.rtmicon-adn:before{content:"\f170"}.rtmicon-bitbucket:before{content:"\f171"}.rtmicon-bitbucket-square:before{content:"\f172"}.rtmicon-tumblr:before{content:"\f173"}.rtmicon-tumblr-square:before{content:"\f174"}.rtmicon-long-arrow-down:before{content:"\f175"}.rtmicon-long-arrow-up:before{content:"\f176"}.rtmicon-long-arrow-left:before{content:"\f177"}.rtmicon-long-arrow-right:before{content:"\f178"}.rtmicon-apple:before{content:"\f179"}.rtmicon-windows:before{content:"\f17a"}.rtmicon-android:before{content:"\f17b"}.rtmicon-linux:before{content:"\f17c"}.rtmicon-dribbble:before{content:"\f17d"}.rtmicon-skype:before{content:"\f17e"}.rtmicon-foursquare:before{content:"\f180"}.rtmicon-trello:before{content:"\f181"}.rtmicon-female:before{content:"\f182"}.rtmicon-male:before{content:"\f183"}.rtmicon-gittip:before{content:"\f184"}.rtmicon-sun-o:before{content:"\f185"}.rtmicon-moon-o:before{content:"\f186"}.rtmicon-archive:before{content:"\f187"}.rtmicon-bug:before{content:"\f188"}.rtmicon-vk:before{content:"\f189"}.rtmicon-weibo:before{content:"\f18a"}.rtmicon-renren:before{content:"\f18b"}.rtmicon-pagelines:before{content:"\f18c"}.rtmicon-stack-exchange:before{content:"\f18d"}.rtmicon-arrow-circle-o-right:before{content:"\f18e"}.rtmicon-arrow-circle-o-left:before{content:"\f190"}.rtmicon-caret-square-o-left:before,.rtmicon-toggle-left:before{content:"\f191"}.rtmicon-dot-circle-o:before{content:"\f192"}.rtmicon-wheelchair:before{content:"\f193"}.rtmicon-vimeo-square:before{content:"\f194"}.rtmicon-try:before,.rtmicon-turkish-lira:before{content:"\f195"}.rtmicon-plus-square-o:before{content:"\f196"}
trunk/app/assets/css/grid-foundation.css ADDED
@@ -0,0 +1,222 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Grid HTML Classes */
2
+ /* line 116, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
3
+ *, *:before, *:after {
4
+ -moz-box-sizing: border-box;
5
+ -webkit-box-sizing: border-box;
6
+ box-sizing: border-box;
7
+ }
8
+ .row {
9
+ width: 100%;
10
+ margin-left: auto;
11
+ margin-right: auto;
12
+ margin-top: 0;
13
+ margin-bottom: 0;
14
+ max-width: 62.5em;
15
+ *zoom: 1;
16
+ }
17
+ /* line 101, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_global.scss */
18
+ .row:before, .row:after {
19
+ content: " ";
20
+ display: table;
21
+ }
22
+ /* line 102, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_global.scss */
23
+ .row:after {
24
+ clear: both;
25
+ }
26
+ /* line 121, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
27
+ .row.collapse .column,
28
+ .row.collapse .columns {
29
+ position: relative;
30
+ padding-left: 0;
31
+ padding-right: 0;
32
+ float: left;
33
+ }
34
+
35
+ /* line 130, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
36
+ .column,
37
+ .columns {
38
+ position: relative;
39
+ padding-left: 0.9375em;
40
+ padding-right: 0.9375em;
41
+ width: 100%;
42
+ float: left;
43
+ }
44
+
45
+ @media only screen {
46
+ /* line 135, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
47
+ .column,
48
+ .columns {
49
+ position: relative;
50
+ padding-left: 0.9375em;
51
+ padding-right: 0.9375em;
52
+ float: left;
53
+ }
54
+
55
+ /* line 149, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
56
+ .column.small-centered,
57
+ .columns.small-centered {
58
+ position: relative;
59
+ margin-left: auto;
60
+ margin-right: auto;
61
+ float: none !important;
62
+ }
63
+ }
64
+ /* Styles for screens that are atleast 768px; */
65
+ @media only screen and (min-width: 48em) {
66
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
67
+ .large-1 {
68
+ position: relative;
69
+ width: 8.33333%;
70
+ }
71
+
72
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
73
+ .large-2 {
74
+ position: relative;
75
+ width: 16.66667%;
76
+ }
77
+
78
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
79
+ .large-3 {
80
+ position: relative;
81
+ width: 25%;
82
+ }
83
+
84
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
85
+ .large-4 {
86
+ position: relative;
87
+ width: 33.33333%;
88
+ }
89
+
90
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
91
+ .large-5 {
92
+ position: relative;
93
+ width: 41.66667%;
94
+ }
95
+
96
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
97
+ .large-6 {
98
+ position: relative;
99
+ width: 50%;
100
+ }
101
+
102
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
103
+ .large-7 {
104
+ position: relative;
105
+ width: 58.33333%;
106
+ }
107
+
108
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
109
+ .large-8 {
110
+ position: relative;
111
+ width: 66.66667%;
112
+ }
113
+
114
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
115
+ .large-9 {
116
+ position: relative;
117
+ width: 75%;
118
+ }
119
+
120
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
121
+ .large-10 {
122
+ position: relative;
123
+ width: 83.33333%;
124
+ }
125
+
126
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
127
+ .large-11 {
128
+ position: relative;
129
+ width: 91.66667%;
130
+ }
131
+
132
+ /* line 156, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
133
+ .large-12 {
134
+ position: relative;
135
+ width: 100%;
136
+ }
137
+
138
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
139
+ .row .large-offset-1 {
140
+ position: relative;
141
+ margin-left: 8.33333%;
142
+ }
143
+
144
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
145
+ .row .large-offset-2 {
146
+ position: relative;
147
+ margin-left: 16.66667%;
148
+ }
149
+
150
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
151
+ .row .large-offset-3 {
152
+ position: relative;
153
+ margin-left: 25%;
154
+ }
155
+
156
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
157
+ .row .large-offset-4 {
158
+ position: relative;
159
+ margin-left: 33.33333%;
160
+ }
161
+
162
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
163
+ .row .large-offset-5 {
164
+ position: relative;
165
+ margin-left: 41.66667%;
166
+ }
167
+
168
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
169
+ .row .large-offset-6 {
170
+ position: relative;
171
+ margin-left: 50%;
172
+ }
173
+
174
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
175
+ .row .large-offset-7 {
176
+ position: relative;
177
+ margin-left: 58.33333%;
178
+ }
179
+
180
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
181
+ .row .large-offset-8 {
182
+ position: relative;
183
+ margin-left: 66.66667%;
184
+ }
185
+
186
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
187
+ .row .large-offset-9 {
188
+ position: relative;
189
+ margin-left: 75%;
190
+ }
191
+
192
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
193
+ .row .large-offset-10 {
194
+ position: relative;
195
+ margin-left: 83.33333%;
196
+ }
197
+
198
+ /* line 160, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
199
+ .row .large-offset-11 {
200
+ position: relative;
201
+ margin-left: 91.66667%;
202
+ }
203
+
204
+
205
+
206
+ /* line 174, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
207
+ .column.large-centered,
208
+ .columns.large-centered {
209
+ position: relative;
210
+ margin-left: auto;
211
+ margin-right: auto;
212
+ float: none !important;
213
+ }
214
+
215
+ /* line 177, ../../../../../../../usr/lib/ruby/gems/1.8/gems/zurb-foundation-4.1.6/scss/foundation/components/_grid.scss */
216
+ .column.large-uncentered,
217
+ .columns.large-uncentered {
218
+ margin-left: 0;
219
+ margin-right: 0;
220
+ float: none;
221
+ }
222
+ }
trunk/app/assets/css/image-edit.css ADDED
@@ -0,0 +1,701 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*------------------------------------------------------------------------------
2
+ 14.0 - Media Screen
3
+ ------------------------------------------------------------------------------*/
4
+
5
+ .media-item .describe {
6
+ border-collapse: collapse;
7
+ width: 100%;
8
+ border-top-style: solid;
9
+ border-top-width: 1px;
10
+ clear: both;
11
+ cursor: default;
12
+ }
13
+
14
+ .media-item.media-blank .describe {
15
+ border: 0;
16
+ }
17
+
18
+ .media-item .describe th {
19
+ vertical-align: top;
20
+ text-align: left;
21
+ padding: 5px 10px 10px;
22
+ width: 140px;
23
+ }
24
+
25
+ .media-item .describe .align th {
26
+ padding-top: 0;
27
+ }
28
+
29
+ .media-item .media-item-info tr {
30
+ background-color: transparent;
31
+ }
32
+
33
+ .media-item .describe td {
34
+ padding: 0 8px 8px 0;
35
+ vertical-align: top;
36
+ }
37
+
38
+ .media-item thead.media-item-info td {
39
+ padding: 4px 10px 0;
40
+ }
41
+
42
+ .media-item .media-item-info .A1B1 {
43
+ padding: 0 0 0 10px;
44
+ }
45
+
46
+ .media-item td.savesend {
47
+ padding-bottom: 15px;
48
+ }
49
+
50
+ .media-item .thumbnail {
51
+ max-height: 128px;
52
+ max-width: 128px;
53
+ }
54
+
55
+ #wpbody-content #async-upload-wrap a {
56
+ display: none;
57
+ }
58
+
59
+ .media-upload-form {
60
+ margin-top: 20px;
61
+ }
62
+
63
+ .media-upload-form td label {
64
+ margin-right: 6px;
65
+ margin-left: 2px;
66
+ }
67
+
68
+ .media-upload-form .align .field label {
69
+ display: inline;
70
+ padding: 0 0 0 23px;
71
+ margin: 0 1em 0 3px;
72
+ font-weight: bold;
73
+ }
74
+
75
+ .media-upload-form tr.image-size label {
76
+ margin: 0 0 0 5px;
77
+ font-weight: bold;
78
+ }
79
+
80
+ .media-upload-form th.label label {
81
+ font-weight: bold;
82
+ margin: 0.5em;
83
+ font-size: 13px;
84
+ }
85
+
86
+ .media-upload-form th.label label span {
87
+ padding: 0 5px;
88
+ }
89
+
90
+ abbr.required {
91
+ border: medium none;
92
+ text-decoration: none;
93
+ }
94
+
95
+ .media-item .describe input[type="text"],
96
+ .media-item .describe textarea {
97
+ width: 460px;
98
+ }
99
+
100
+ .media-item .describe p.help {
101
+ margin: 0;
102
+ padding: 0 0 0 5px;
103
+ }
104
+
105
+ .media-item .edit-attachment,
106
+ .describe-toggle-on,
107
+ .describe-toggle-off {
108
+ display: block;
109
+ line-height: 36px;
110
+ float: right;
111
+ margin-right: 15px;
112
+ }
113
+
114
+ .media-item .describe-toggle-off,
115
+ .media-item.open .describe-toggle-on {
116
+ display: none;
117
+ }
118
+
119
+ .media-item.open .describe-toggle-off {
120
+ display: block;
121
+ }
122
+
123
+ #media-items .media-item {
124
+ border-style: solid;
125
+ border-width: 1px;
126
+ min-height: 36px;
127
+ position: relative;
128
+ margin-top: -1px;
129
+ width: 100%;
130
+ }
131
+
132
+ #media-items {
133
+ width: 623px;
134
+ }
135
+
136
+ .media-new-php #media-items {
137
+ margin: 1em 0;
138
+ }
139
+
140
+ #media-items:empty {
141
+ border: 0 none;
142
+ }
143
+
144
+ .media-item .filename {
145
+ line-height: 36px;
146
+ overflow: hidden;
147
+ padding: 0 10px;
148
+ }
149
+
150
+ .media-item .error-div {
151
+ padding-left: 10px;
152
+ }
153
+
154
+ .media-item .pinkynail {
155
+ float: left;
156
+ margin: 2px 2px 0;
157
+ max-width: 40px;
158
+ max-height: 32px;
159
+ }
160
+
161
+ .media-item .startopen,
162
+ .media-item .startclosed {
163
+ display: none;
164
+ }
165
+
166
+ .media-item .original {
167
+ position: relative;
168
+ height: 34px;
169
+ }
170
+
171
+ .media-item .progress {
172
+ float: right;
173
+ height: 22px;
174
+ margin: 6px 10px 0 0;
175
+ width: 200px;
176
+ line-height: 2em;
177
+ padding: 0;
178
+ overflow: hidden;
179
+ margin-bottom: 2px;
180
+ border: 1px solid #d1d1d1;
181
+ background: #f7f7f7;
182
+ background-image: -webkit-gradient(linear, left bottom, left top, from(#fff), to(#f7f7f7));
183
+ background-image: -webkit-linear-gradient(bottom, #fff, #f7f7f7);
184
+ background-image: -moz-linear-gradient(bottom, #fff, #f7f7f7);
185
+ background-image: -o-linear-gradient(bottom, #fff, #f7f7f7);
186
+ background-image: linear-gradient(to top, #fff, #f7f7f7);
187
+ -webkit-border-radius: 3px;
188
+ border-radius: 3px;
189
+ -webkit-box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
190
+ box-shadow: inset 0 0 3px rgba(0,0,0,0.1);
191
+ }
192
+
193
+ .media-item .bar {
194
+ z-index: 9;
195
+ width: 0;
196
+ height: 100%;
197
+ margin-top: -24px;
198
+ background-color: #8cc1e9;
199
+ background-image: -webkit-gradient(linear, left bottom, left top, from(#72a7cf), to(#8cc1e9));
200
+ background-image: -webkit-linear-gradient(bottom, #72a7cf, #8cc1e9);
201
+ background-image: -moz-linear-gradient(bottom, #72a7cf, #8cc1e9);
202
+ background-image: -o-linear-gradient(bottom, #72a7cf, #8cc1e9);
203
+ background-image: linear-gradient(to top, #72a7cf, #8cc1e9);
204
+ -webkit-border-radius: 3px;
205
+ border-radius: 3px;
206
+ -webkit-box-shadow: 0 0 3px rgba(0,0,0,0.3);
207
+ box-shadow: 0 0 3px rgba(0,0,0,0.3);
208
+ }
209
+
210
+ .media-item .progress .percent {
211
+ z-index: 10;
212
+ position: relative;
213
+ width: 200px;
214
+ padding: 0 8px;
215
+ text-shadow: 0 1px 0 rgba(255,255,255,0.4);
216
+ color: rgba(0,0,0,0.6);
217
+ }
218
+
219
+ .upload-php .fixed .column-parent {
220
+ width: 15%;
221
+ }
222
+
223
+ .js .html-uploader #plupload-upload-ui {
224
+ display: none;
225
+ }
226
+
227
+ .js .html-uploader #html-upload-ui {
228
+ display: block;
229
+ }
230
+
231
+ .media-upload-form .media-item.error {
232
+ margin: 0;
233
+ padding: 0;
234
+ }
235
+
236
+ .media-upload-form .media-item.error p,
237
+ .media-item .error-div {
238
+ line-height: 16px;
239
+ margin: 5px 10px;
240
+ padding: 0;
241
+ }
242
+
243
+ .media-item .error-div a.dismiss {
244
+ display: block;
245
+ float: right;
246
+ margin: 5px 4px 0 15px;
247
+ }
248
+
249
+ /*------------------------------------------------------------------------------
250
+ 14.1 - Media Library
251
+ ------------------------------------------------------------------------------*/
252
+
253
+ .find-box {
254
+ width: 600px;
255
+ height: 300px;
256
+ overflow: hidden;
257
+ padding: 33px 0 51px;
258
+ position: absolute;
259
+ z-index: 1000;
260
+ }
261
+
262
+ .find-box-head {
263
+ cursor: move;
264
+ font-weight: bold;
265
+ height: 2em;
266
+ line-height: 2em;
267
+ padding: 1px 12px;
268
+ position: absolute;
269
+ top: 5px;
270
+ width: 100%;
271
+ }
272
+
273
+ .find-box-inside {
274
+ overflow: auto;
275
+ padding: 6px;
276
+ height: 100%;
277
+ }
278
+
279
+ .find-box-search {
280
+ overflow: hidden;
281
+ padding: 9px;
282
+ position: relative;
283
+ }
284
+
285
+ .find-box-search .spinner {
286
+ float: none;
287
+ left: 125px;
288
+ position: absolute;
289
+ top: 9px;
290
+ }
291
+
292
+ #find-posts-input {
293
+ float: left;
294
+ width: 140px;
295
+ height: 24px;
296
+ }
297
+
298
+ #find-posts-search {
299
+ float: left;
300
+ margin: 1px 4px 0 3px;
301
+ }
302
+
303
+ #find-posts-response {
304
+ margin: 8px 0;
305
+ padding: 0 1px 6px;
306
+ }
307
+
308
+ #find-posts-response table {
309
+ width: 100%;
310
+ }
311
+
312
+ #find-posts-response .found-radio {
313
+ padding: 3px 0 0 8px;
314
+ width: 15px;
315
+ }
316
+
317
+ .find-box-buttons {
318
+ padding: 8px;
319
+ overflow: hidden;
320
+ }
321
+
322
+ .find-box #resize-se {
323
+ position: absolute;
324
+ right: 1px;
325
+ bottom: 1px;
326
+ }
327
+
328
+ .ui-find-overlay {
329
+ position: absolute;
330
+ top: 0;
331
+ left: 0;
332
+ background-color: #000;
333
+ opacity: 0.6;
334
+ filter: alpha(opacity=60);
335
+ }
336
+
337
+ ul#dismissed-updates {
338
+ display: none;
339
+ }
340
+
341
+ form.upgrade {
342
+ margin-top: 8px;
343
+ }
344
+
345
+ form.upgrade .hint {
346
+ font-style: italic;
347
+ font-size: 85%;
348
+ margin: -0.5em 0 2em 0;
349
+ }
350
+
351
+ #poststuff .inside .the-tagcloud {
352
+ margin: 5px 0 10px;
353
+ padding: 8px;
354
+ border-width: 1px;
355
+ border-style: solid;
356
+ line-height: 1.8em;
357
+ word-spacing: 3px;
358
+ -webkit-border-radius: 6px;
359
+ border-radius: 6px;
360
+ }
361
+
362
+ .drag-drop #drag-drop-area {
363
+ border: 4px dashed #DDDDDD;
364
+ height: 200px;
365
+ }
366
+
367
+ .drag-drop .drag-drop-inside {
368
+ margin: 70px auto 0;
369
+ width: 250px;
370
+ }
371
+
372
+ .drag-drop-inside p {
373
+ color: #aaa;
374
+ font-size: 14px;
375
+ margin: 5px 0;
376
+ display: none;
377
+ }
378
+
379
+ .drag-drop .drag-drop-inside p {
380
+ text-align: center;
381
+ }
382
+
383
+ .drag-drop-inside p.drag-drop-info {
384
+ font-size: 20px;
385
+ }
386
+
387
+ .drag-drop .drag-drop-inside p,
388
+ .drag-drop-inside p.drag-drop-buttons {
389
+ display: block;
390
+ }
391
+
392
+ /*
393
+ #drag-drop-area:-moz-drag-over {
394
+ border-color: #83b4d8;
395
+ }
396
+ borger color while dragging a file over the uploader drop area */
397
+ .drag-drop.drag-over #drag-drop-area {
398
+ border-color: #83b4d8;
399
+ }
400
+
401
+ #plupload-upload-ui {
402
+ position: relative;
403
+ }
404
+
405
+ /*------------------------------------------------------------------------------
406
+ 14.2 - Image Editor
407
+ ------------------------------------------------------------------------------*/
408
+
409
+ .describe .image-editor {
410
+ vertical-align: top;
411
+ }
412
+
413
+ .imgedit-wrap {
414
+ position: relative;
415
+ }
416
+
417
+ .imgedit-settings p {
418
+ margin: 8px 0;
419
+ }
420
+
421
+ .post-php .imgedit-wrap table {
422
+ width: 100%;
423
+ }
424
+
425
+ .describe .imgedit-wrap table td,
426
+ .wp_attachment_holder .imgedit-wrap table td {
427
+ vertical-align: top;
428
+ padding-top: 0;
429
+ }
430
+
431
+ .describe .imgedit-wrap table td.imgedit-settings {
432
+ padding: 0 5px;
433
+ }
434
+
435
+ .wp_attachment_holder .imgedit-wrap table td.imgedit-settings {
436
+ width: 250px;
437
+ }
438
+
439
+ td.imgedit-settings input {
440
+ margin-top: 0;
441
+ vertical-align: middle;
442
+ }
443
+
444
+ .imgedit-wait {
445
+ position: absolute;
446
+ top: 0;
447
+ background: #fff url(../../../../../../wp-admin/images/wpspin_light.gif) no-repeat scroll 22px 10px;
448
+ background-size: 16px 16px;
449
+ opacity: 0.7;
450
+ filter: alpha(opacity=70);
451
+ width: 100%;
452
+ height: 500px;
453
+ display: none;
454
+ }
455
+
456
+ .spinner {
457
+ background: url(../../../../../../wp-admin/images/wpspin_light.gif) no-repeat;
458
+ background-size: 16px 16px;
459
+ display: none;
460
+ float: right;
461
+ opacity: 0.7;
462
+ filter: alpha(opacity=70);
463
+ width: 16px;
464
+ height: 16px;
465
+ margin: 5px 5px 0;
466
+ }
467
+
468
+ .no-float {
469
+ float: none;
470
+ }
471
+
472
+ .media-disabled,
473
+ .imgedit-settings .disabled {
474
+ color: grey;
475
+ }
476
+
477
+ .wp_attachment_image,
478
+ .A1B1 {
479
+ overflow: hidden;
480
+ }
481
+
482
+ .wp_attachment_image .button,
483
+ .A1B1 .button {
484
+ float: left;
485
+ }
486
+
487
+ .no-js .wp_attachment_image .button {
488
+ display: none;
489
+ }
490
+
491
+ .wp_attachment_image .spinner,
492
+ .A1B1 .spinner {
493
+ float: left;
494
+ padding: 0 4px 4px;
495
+ vertical-align: bottom;
496
+ }
497
+
498
+ .imgedit-menu {
499
+ margin: 0 0 12px;
500
+ min-width: 300px;
501
+ }
502
+
503
+ .imgedit-menu div {
504
+ float: left;
505
+ width: 32px;
506
+ height: 32px;
507
+ }
508
+
509
+ .imgedit-crop-wrap {
510
+ position: relative;
511
+ }
512
+
513
+ .imgedit-crop {
514
+ background: transparent url('../../../../../../wp-admin/images/imgedit-icons.png') no-repeat scroll -9px -31px;
515
+ margin: 0 8px 0 0;
516
+ }
517
+
518
+ .imgedit-crop.disabled:hover {
519
+ background-position: -9px -31px;
520
+ }
521
+
522
+ .imgedit-crop:hover {
523
+ background-position: -9px -1px;
524
+ }
525
+
526
+ .imgedit-rleft {
527
+ background: transparent url('../../../../../../wp-admin/images/imgedit-icons.png') no-repeat scroll -46px -31px;
528
+ margin: 0 3px;
529
+ }
530
+
531
+ .imgedit-rleft.disabled:hover {
532
+ background-position: -46px -31px;
533
+ }
534
+
535
+ .imgedit-rleft:hover {
536
+ background-position: -46px -1px;
537
+ }
538
+
539
+ .imgedit-rright {
540
+ background: transparent url('../../../../../../wp-admin/images/imgedit-icons.png') no-repeat scroll -77px -31px;
541
+ margin: 0 8px 0 3px;
542
+ }
543
+
544
+ .imgedit-rright.disabled:hover {
545
+ background-position: -77px -31px;
546
+ }
547
+
548
+ .imgedit-rright:hover {
549
+ background-position: -77px -1px;
550
+ }
551
+
552
+ .imgedit-flipv {
553
+ background: transparent url('../../../../../../wp-admin/images/imgedit-icons.png') no-repeat scroll -115px -31px;
554
+ margin: 0 3px;
555
+ }
556
+
557
+ .imgedit-flipv.disabled:hover {
558
+ background-position: -115px -31px;
559
+ }
560
+
561
+ .imgedit-flipv:hover {
562
+ background-position: -115px -1px;
563
+ }
564
+
565
+ .imgedit-fliph {
566
+ background: transparent url('../../../../../../wp-admin/images/imgedit-icons.png') no-repeat scroll -147px -31px;
567
+ margin: 0 8px 0 3px;
568
+ }
569
+
570
+ .imgedit-fliph.disabled:hover {
571
+ background-position: -147px -31px;
572
+ }
573
+
574
+ .imgedit-fliph:hover {
575
+ background-position: -147px -1px;
576
+ }
577
+
578
+ .imgedit-undo {
579
+ background: transparent url('../../../../../../wp-admin/images/imgedit-icons.png') no-repeat scroll -184px -31px;
580
+ margin: 0 3px;
581
+ }
582
+
583
+ .imgedit-undo.disabled:hover {
584
+ background-position: -184px -31px;
585
+ }
586
+
587
+ .imgedit-undo:hover {
588
+ background-position: -184px -1px;
589
+ }
590
+
591
+ .imgedit-redo {
592
+ background: transparent url('../../../../../../wp-admin/images/imgedit-icons.png') no-repeat scroll -215px -31px;
593
+ margin: 0 8px 0 3px;
594
+ }
595
+
596
+ .imgedit-redo.disabled:hover {
597
+ background-position: -215px -31px;
598
+ }
599
+
600
+ .imgedit-redo:hover {
601
+ background-position: -215px -1px;
602
+ }
603
+
604
+ .imgedit-applyto img {
605
+ margin: 0 8px 0 0;
606
+ }
607
+
608
+ .imgedit-group-top {
609
+ margin: 5px 0;
610
+ }
611
+
612
+ .imgedit-applyto .imgedit-label {
613
+ padding: 2px 0 0;
614
+ display: block;
615
+ }
616
+
617
+ .imgedit-help {
618
+ display: none;
619
+ font-style: italic;
620
+ margin-bottom: 8px;
621
+ }
622
+
623
+ a.imgedit-help-toggle {
624
+ text-decoration: none;
625
+ }
626
+
627
+ .form-table td.imgedit-response {
628
+ padding: 0;
629
+ }
630
+
631
+ .imgedit-submit {
632
+ margin: 8px 0;
633
+ }
634
+
635
+ .imgedit-submit-btn {
636
+ margin-left: 20px;
637
+ }
638
+
639
+ .imgedit-wrap .nowrap {
640
+ white-space: nowrap;
641
+ }
642
+
643
+ span.imgedit-scale-warn {
644
+ color: red;
645
+ font-size: 20px;
646
+ font-style: normal;
647
+ visibility: hidden;
648
+ vertical-align: middle;
649
+ }
650
+
651
+ .imgedit-group {
652
+ border-width: 1px;
653
+ border-style: solid;
654
+ -webkit-border-radius: 3px;
655
+ border-radius: 3px;
656
+ margin-bottom: 8px;
657
+ padding: 2px 10px;
658
+ }
659
+
660
+ .wp_attachment_details {
661
+ margin-bottom: 20px;
662
+ }
663
+
664
+ .imgedit-menu div {
665
+ border-color: #d5d5d5;
666
+ background-color: #f1f1f1;
667
+ }
668
+
669
+ .imgedit-menu div:hover {
670
+ border-color: #c1c1c1;
671
+ background-color: #eaeaea;
672
+ }
673
+
674
+ .imgedit-menu div.disabled {
675
+ border-color: #ccc;
676
+ background-color: #ddd;
677
+ filter: alpha(opacity=50);
678
+ opacity: 0.5;
679
+ }
680
+
681
+ /*------------------------------------------------------------------------------
682
+ Custom Styles
683
+ ------------------------------------------------------------------------------*/
684
+
685
+ .bp-media-image-editor-cotnainer { margin-top : 35px; }
686
+ .wp_attachment_image .bp-media-image-edit { float: left; }
687
+ .wp_attachment_image .thumbnail { max-width: 300px; }
688
+ .wp_attachment_image .spinner { display: none; }
689
+ .bp-media-image-editor-cotnainer .hidden { display: none; }
690
+ .bp-media-image-editor-cotnainer div.updated {
691
+ margin: 5px 0 15px;
692
+ background-color: #ffffe0;
693
+ border-color: #e6db55;
694
+ padding: 0 .6em;
695
+ -webkit-border-radius: 3px;
696
+ border-radius: 3px;
697
+ border-width: 1px;
698
+ border-style: solid;
699
+ }
700
+
701
+ .bp-media-image-editor-cotnainer div.updated p { margin: .5em 0;padding: 2px; }
trunk/app/assets/css/jquery.plupload.queue.css ADDED
@@ -0,0 +1,177 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Plupload
3
+ ------------------------------------------------------------------- */
4
+
5
+ .plupload_button {
6
+ display: -moz-inline-box; /* FF < 3*/
7
+ display: inline-block;
8
+ font: normal 12px sans-serif;
9
+ text-decoration: none;
10
+ color: #42454a;
11
+ border: 1px solid #bababa;
12
+ padding: 2px 8px 3px 20px;
13
+ margin-right: 4px;
14
+ background: #f3f3f3 url('../img/buttons.png') no-repeat 0 center;
15
+ outline: 0;
16
+
17
+ /* Optional rounded corners for browsers that support it */
18
+ -moz-border-radius: 3px;
19
+ -khtml-border-radius: 3px;
20
+ -webkit-border-radius: 3px;
21
+ border-radius: 3px;
22
+ }
23
+
24
+ .plupload_button:hover {
25
+ color: #000;
26
+ text-decoration: none;
27
+ }
28
+
29
+ .plupload_disabled, a.plupload_disabled:hover {
30
+ color: #737373;
31
+ border-color: #c5c5c5;
32
+ background: #ededed url('../img/buttons-disabled.png') no-repeat 0 center;
33
+ cursor: default;
34
+ }
35
+
36
+ .plupload_add {
37
+ background-position: -181px center;
38
+ }
39
+
40
+ .plupload_wrapper {
41
+ font: normal 11px Verdana,sans-serif;
42
+ width: 100%;
43
+ }
44
+
45
+ .plupload_container {
46
+ padding: 8px;
47
+ background: url('../img/transp50.png');
48
+ /*-moz-border-radius: 5px;*/
49
+ }
50
+
51
+ .plupload_container input {
52
+ border: 1px solid #DDD;
53
+ font: normal 11px Verdana,sans-serif;
54
+ width: 98%;
55
+ }
56
+
57
+ .plupload_header {background: #2A2C2E url('../img/backgrounds.gif') repeat-x;}
58
+ .plupload_header_content {
59
+ background: url('../img/backgrounds.gif') no-repeat 0 -317px;
60
+ min-height: 56px;
61
+ padding-left: 60px;
62
+ color: #FFF;
63
+ }
64
+ .plupload_header_title {
65
+ font: normal 18px sans-serif;
66
+ padding: 6px 0 3px;
67
+ }
68
+ .plupload_header_text {
69
+ font: normal 12px sans-serif;
70
+ }
71
+
72
+ .plupload_filelist {
73
+ margin: 0;
74
+ padding: 0;
75
+ list-style: none;
76
+ }
77
+
78
+ .plupload_scroll .plupload_filelist {
79
+ height: 185px;
80
+ background: #F5F5F5;
81
+ overflow-y: scroll;
82
+ }
83
+
84
+ .plupload_filelist li {
85
+ padding: 10px 8px;
86
+ background: #F5F5F5 url('../img/backgrounds.gif') repeat-x 0 -156px;
87
+ border-bottom: 1px solid #DDD;
88
+ }
89
+
90
+ .plupload_filelist_header, .plupload_filelist_footer {
91
+ background: #DFDFDF;
92
+ padding: 8px 8px;
93
+ color: #42454A;
94
+ }
95
+ .plupload_filelist_header {
96
+ border-top: 1px solid #EEE;
97
+ border-bottom: 1px solid #CDCDCD;
98
+ }
99
+
100
+ .plupload_filelist_footer {border-top: 1px solid #FFF; height: 22px; line-height: 20px; vertical-align: middle;}
101
+ .plupload_file_name {float: left; overflow: hidden}
102
+ .plupload_file_status {color: #777;}
103
+ .plupload_file_status span {color: #42454A;}
104
+ .plupload_file_size, .plupload_file_status, .plupload_progress {
105
+ float: right;
106
+ width: 80px;
107
+ }
108
+ .plupload_file_size, .plupload_file_status, .plupload_file_action {text-align: right;}
109
+
110
+ .plupload_filelist .plupload_file_name {width: 205px}
111
+
112
+ .plupload_file_action {
113
+ float: right;
114
+ width: 16px;
115
+ height: 16px;
116
+ margin-left: 15px;
117
+ }
118
+
119
+ .plupload_file_action * {
120
+ display: none;
121
+ width: 16px;
122
+ height: 16px;
123
+ }
124
+
125
+ li.plupload_uploading {background: #ECF3DC url('../img/backgrounds.gif') repeat-x 0 -238px;}
126
+ li.plupload_done {color:#AAA}
127
+
128
+ li.plupload_delete a {
129
+ background: url('../img/delete.gif');
130
+ }
131
+
132
+ li.plupload_failed a {
133
+ background: url('../img/error.gif');
134
+ cursor: default;
135
+ }
136
+
137
+ li.plupload_done a {
138
+ background: url('../img/done.gif');
139
+ cursor: default;
140
+ }
141
+
142
+ .plupload_progress, .plupload_upload_status {
143
+ display: none;
144
+ }
145
+
146
+ .plupload_progress_container {
147
+ margin-top: 3px;
148
+ border: 1px solid #CCC;
149
+ background: #FFF;
150
+ padding: 1px;
151
+ }
152
+ .plupload_progress_bar {
153
+ width: 0px;
154
+ height: 7px;
155
+ background: #CDEB8B;
156
+ }
157
+
158
+ .plupload_scroll .plupload_filelist_header .plupload_file_action, .plupload_scroll .plupload_filelist_footer .plupload_file_action {
159
+ margin-right: 17px;
160
+ }
161
+
162
+ /* Floats */
163
+
164
+ .plupload_clear,.plupload_clearer {clear: both;}
165
+ .plupload_clearer, .plupload_progress_bar {
166
+ display: block;
167
+ font-size: 0;
168
+ line-height: 0;
169
+ }
170
+
171
+ li.plupload_droptext {
172
+ background: transparent;
173
+ text-align: center;
174
+ vertical-align: middle;
175
+ border: 0;
176
+ line-height: 165px;
177
+ }
trunk/app/assets/css/jquery.powertip.min.css ADDED
@@ -0,0 +1 @@
 
1
+ #powerTip{cursor:default;background-color:#333;background-color:rgba(0,0,0,.8);border-radius:6px;color:#fff;display:none;padding:10px;position:absolute;white-space:nowrap;z-index:2147483647}#powerTip:before{content:"";position:absolute}#powerTip.n:before,#powerTip.s:before{border-right:5px solid transparent;border-left:5px solid transparent;left:50%;margin-left:-5px}#powerTip.e:before,#powerTip.w:before{border-bottom:5px solid transparent;border-top:5px solid transparent;margin-top:-5px;top:50%}#powerTip.n:before{border-top:10px solid #333;border-top:10px solid rgba(0,0,0,.8);bottom:-10px}#powerTip.e:before{border-right:10px solid #333;border-right:10px solid rgba(0,0,0,.8);left:-10px}#powerTip.s:before{border-bottom:10px solid #333;border-bottom:10px solid rgba(0,0,0,.8);top:-10px}#powerTip.w:before{border-left:10px solid #333;border-left:10px solid rgba(0,0,0,.8);right:-10px}#powerTip.ne:before,#powerTip.se:before{border-right:10px solid transparent;border-left:0;left:10px}#powerTip.nw:before,#powerTip.sw:before{border-left:10px solid transparent;border-right:0;right:10px}#powerTip.ne:before,#powerTip.nw:before{border-top:10px solid #333;border-top:10px solid rgba(0,0,0,.8);bottom:-10px}#powerTip.se:before,#powerTip.sw:before{border-bottom:10px solid #333;border-bottom:10px solid rgba(0,0,0,.8);top:-10px}#powerTip.nw-alt:before,#powerTip.ne-alt:before,#powerTip.sw-alt:before,#powerTip.se-alt:before{border-top:10px solid #333;border-top:10px solid rgba(0,0,0,.8);bottom:-10px;border-left:5px solid transparent;border-right:5px solid transparent;left:10px}#powerTip.ne-alt:before{left:auto;right:10px}#powerTip.sw-alt:before,#powerTip.se-alt:before{border-top:0;border-bottom:10px solid #333;border-bottom:10px solid rgba(0,0,0,.8);bottom:auto;top:-10px}#powerTip.se-alt:before{left:auto;right:10px}
trunk/app/assets/css/jquery.sliderTabs.min.css ADDED
@@ -0,0 +1 @@
 
1
+ .ui-slider-tabs{}.ui-slider-tabs-list-wrapper{ position: relative;width:100%;font-family:Arial,sans-serif;margin:0 0 -1px 0;z-index:50;}.ui-slider-tabs-list-wrapper.bottom{ margin: -1px 0 0 0;}.ui-slider-tabs-list-container{ overflow: hidden;}.ui-slider-tabs-list{ padding:0;margin:0 0 0 0;list-style: none;}.ui-slider-tabs-list li{ display: inline-block;border-bottom:1px solid #cfcfcf;border-right:1px solid #cfcfcf;border-top:1px solid #cfcfcf;margin:0;font-size:13px;font-weight:bold;background:#fcfcfc;background: -moz-linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fcfcfc),color-stop(100%,#f5f5f5));background: -webkit-linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);background: -o-linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);background: -ms-linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);background: linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc',endColorstr='#f5f5f5',GradientType=0 );}.ui-slider-tabs-list li a{ display:block;padding:8px 15px;text-decoration: none;color:#555;text-shadow:0px 1px 0px #fff;margin:0;}.ui-slider-tabs-list li a:hover{ color:#000;}.ui-slider-tabs-list li.selected{ border-bottom-color:#fff;border-top-color:#cfcfcf;background:#ffffff;background: -moz-linear-gradient(top,#ffffff 0%,#ffffff 100%);background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffffff),color-stop(100%,#ffffff));background: -webkit-linear-gradient(top,#ffffff 0%,#ffffff 100%);background: -o-linear-gradient(top,#ffffff 0%,#ffffff 100%);background: -ms-linear-gradient(top,#ffffff 0%,#ffffff 100%);background: linear-gradient(top,#ffffff 0%,#ffffff 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff',endColorstr='#ffffff',GradientType=0 );}.ui-slider-tabs-list-wrapper.bottom .ui-slider-tabs-list li.selected{ border-top-color:#fff;border-bottom-color:#cfcfcf;}.ui-slider-tabs-list li.selected a{ cursor:default;color:#000;}.ui-slider-tabs-list li:first-of-type{ border-left:1px solid #cfcfcf;}.ui-slider-tabs-content-container{ position: relative;border:1px solid #cfcfcf;z-index:1;overflow: hidden;background-color:#fff;}.ui-slider-tab-content{ position:absolute;display: none;top:0;left:0;padding:10px;}.ui-slider-left-arrow,.ui-slider-right-arrow,.ui-slider-left-arrow.edge:hover,.ui-slider-right-arrow.edge:hover{ display:block;position:absolute;border:1px solid #cfcfcf;background:#fcfcfc;background: -moz-linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#fcfcfc),color-stop(100%,#f5f5f5));background: -webkit-linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);background: -o-linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);background: -ms-linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);background: linear-gradient(top,#fcfcfc 0%,#f5f5f5 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc',endColorstr='#f5f5f5',GradientType=0 );}.ui-slider-left-arrow:hover,.ui-slider-right-arrow:hover{ background:#ffffff;background: -moz-linear-gradient(top,#ffffff 0%,#ffffff 100%);background: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#ffffff),color-stop(100%,#ffffff));background: -webkit-linear-gradient(top,#ffffff 0%,#ffffff 100%);background: -o-linear-gradient(top,#ffffff 0%,#ffffff 100%);background: -ms-linear-gradient(top,#ffffff 0%,#ffffff 100%);background: linear-gradient(top,#ffffff 0%,#ffffff 100%);filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff',endColorstr='#ffffff',GradientType=0 );}.ui-slider-left-arrow{ left:0;top:0;box-shadow:2px 0px 1px rgba(0,0,0,.06);border-top-left-radius:4px;}.ui-slider-left-arrow div{ background-image: url('../img/leftArrow.png');background-repeat: no-repeat;background-position:center center;height: inherit;}.ui-slider-left-arrow.edge div{ opacity: .25;}.ui-slider-left-arrow.edge{ box-shadow: none;cursor:default;}.ui-slider-tabs-list-wrapper.bottom .ui-slider-left-arrow{ border-top-left-radius:0;border-bottom-left-radius:4px;}.ui-slider-right-arrow{ top:0;right:0;box-shadow: -2px 0px 1px rgba(0,0,0,.06);border-top-right-radius:4px;}.ui-slider-right-arrow div{ background-image: url('../img/rightArrow.png');background-repeat: no-repeat;background-position:center center;height: inherit;}.ui-slider-right-arrow.edge div{ opacity: .25;}.ui-slider-right-arrow.edge{ box-shadow: none;cursor:default;}.ui-slider-tabs-list-wrapper.bottom .ui-slider-right-arrow{ border-top-right-radius:0;border-bottom-right-radius:4px;}.ui-slider-tabs-indicator-container{ position:absolute;bottom:0;left:0;width:100%;text-align:center;}.ui-slider-tabs-indicator{ width:10px;height:10px;background-image: url('../img/indicator.png');background-repeat: no-repeat;display: inline-block;margin-right:3px;cursor: pointer;}.ui-slider-tabs-indicator.selected{ background-image: url('../img/indicatorActive.png');}.ui-slider-tabs-leftPanelArrow{ position:absolute;left:0px;width:30px;height:35px;background-image: url('../img/leftPanelArrow.png');background-repeat: no-repeat;background-position:center center;cursor: pointer;opacity:0.5;-moz-opacity:0.5;filter:alpha(opacity=5);}.ui-slider-tabs-rightPanelArrow{ position:absolute;right:0px;width:30px;height:35px;background-image: url('../img/rightPanelArrow.png');background-repeat: no-repeat;background-position:center center;cursor: pointer;opacity:0.5;-moz-opacity:0.5;filter:alpha(opacity=5);}.ui-slider-tabs-rightPanelArrow.showOnHover,.ui-slider-tabs-leftPanelArrow.showOnHover{ opacity:0;display: none;}.ui-slider-tabs-content-container:hover .ui-slider-tabs-rightPanelArrow.showOnHover,.ui-slider-tabs-content-container:hover .ui-slider-tabs-leftPanelArrow.showOnHover{ opacity: .5;display: inline-block;}.ui-slider-tabs-content-container .ui-slider-tabs-rightPanelArrow:hover,.ui-slider-tabs-content-container .ui-slider-tabs-leftPanelArrow:hover,.ui-slider-tabs-content-container .ui-slider-tabs-rightPanelArrow.showOnHover:hover,.ui-slider-tabs-content-container .ui-slider-tabs-leftPanelArrow.showOnHover:hover{ opacity:1;}
trunk/app/assets/css/main.css ADDED
@@ -0,0 +1 @@
 
1
+ .rtm-link-button,#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span a,#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button,#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button.rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions a,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions button,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions a,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions button,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions a,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions button,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions a,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions button,#rtm-media-options ul li .rtmedia-action-buttons,.rtm-lightbox-container #rtm-media-options-list ul li .rtmedia-action-buttons{border:none;background:none;text-decoration:none}.rtm-top-notch,.rtmedia-container.rtmedia-single-container .row .rtmedia-item-comments .rtm-like-comments-info:before,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtm-like-comments-info:before,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtm-like-comments-info:before{content:'';border-width:5px;border-style:inset inset solid;display:block;position:absolute;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #edeff4}.rtm-primary-button,.rtmedia-container .drag-drop .start-media-upload,.rtmedia-activity-container .drag-drop .start-media-upload,#buddypress div.rtmedia-activity-container .drag-drop .start-media-upload,#buddypress .rtmedia-container .rtmedia-uploader .drag-drop .start-media-upload,#buddypress .rtmedia-activity-container .rtmedia-uploader .drag-drop .start-media-upload{background-color:#3475BA;border-radius:5px 5px 5px 5px;text-transform:uppercase;box-shadow:0 0 0 rgba(255,255,255,0) inset;transition:background-color 300ms ease-out 0s;color:white;border:none;padding:10px 20px;background-image:none}.rtm-primary-button:hover,.rtmedia-container .drag-drop .start-media-upload:hover,.rtmedia-activity-container .drag-drop .start-media-upload:hover,#buddypress div.rtmedia-activity-container .drag-drop .start-media-upload:hover,#buddypress .rtmedia-container .rtmedia-uploader .drag-drop .start-media-upload:hover,#buddypress .rtmedia-activity-container .rtmedia-uploader .drag-drop .start-media-upload:hover{background-color:#306BAA}.rtm-primary-font-color{color:#3475ba}#rtmedia-add-media-button-post-update{float:left;margin-top:12px;margin-right:20px}.rtmedia-container,.rtmedia-activity-container,#buddypress div.rtmedia-activity-container{@import url("//fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,700italic,400,300,700");;padding:5px;margin:0;clear:left}.rtmedia-container html,.rtmedia-activity-container html,#buddypress div.rtmedia-activity-container html,.rtmedia-container body,.rtmedia-activity-container body,#buddypress div.rtmedia-activity-container body,.rtmedia-container div,.rtmedia-activity-container div,#buddypress div.rtmedia-activity-container div,.rtmedia-container span,.rtmedia-activity-container span,#buddypress div.rtmedia-activity-container span,.rtmedia-container applet,.rtmedia-activity-container applet,#buddypress div.rtmedia-activity-container applet,.rtmedia-container object,.rtmedia-activity-container object,#buddypress div.rtmedia-activity-container object,.rtmedia-container iframe,.rtmedia-activity-container iframe,#buddypress div.rtmedia-activity-container iframe,.rtmedia-container h1,.rtmedia-activity-container h1,#buddypress div.rtmedia-activity-container h1,.rtmedia-container h2,.rtmedia-activity-container h2,#buddypress div.rtmedia-activity-container h2,.rtmedia-container h3,.rtmedia-activity-container h3,#buddypress div.rtmedia-activity-container h3,.rtmedia-container h4,.rtmedia-activity-container h4,#buddypress div.rtmedia-activity-container h4,.rtmedia-container h5,.rtmedia-activity-container h5,#buddypress div.rtmedia-activity-container h5,.rtmedia-container h6,.rtmedia-activity-container h6,#buddypress div.rtmedia-activity-container h6,.rtmedia-container p,.rtmedia-activity-container p,#buddypress div.rtmedia-activity-container p,.rtmedia-container blockquote,.rtmedia-activity-container blockquote,#buddypress div.rtmedia-activity-container blockquote,.rtmedia-container pre,.rtmedia-activity-container pre,#buddypress div.rtmedia-activity-container pre,.rtmedia-container a,.rtmedia-activity-container a,#buddypress div.rtmedia-activity-container a,.rtmedia-container abbr,.rtmedia-activity-container abbr,#buddypress div.rtmedia-activity-container abbr,.rtmedia-container acronym,.rtmedia-activity-container acronym,#buddypress div.rtmedia-activity-container acronym,.rtmedia-container address,.rtmedia-activity-container address,#buddypress div.rtmedia-activity-container address,.rtmedia-container big,.rtmedia-activity-container big,#buddypress div.rtmedia-activity-container big,.rtmedia-container cite,.rtmedia-activity-container cite,#buddypress div.rtmedia-activity-container cite,.rtmedia-container code,.rtmedia-activity-container code,#buddypress div.rtmedia-activity-container code,.rtmedia-container del,.rtmedia-activity-container del,#buddypress div.rtmedia-activity-container del,.rtmedia-container dfn,.rtmedia-activity-container dfn,#buddypress div.rtmedia-activity-container dfn,.rtmedia-container em,.rtmedia-activity-container em,#buddypress div.rtmedia-activity-container em,.rtmedia-container img,.rtmedia-activity-container img,#buddypress div.rtmedia-activity-container img,.rtmedia-container ins,.rtmedia-activity-container ins,#buddypress div.rtmedia-activity-container ins,.rtmedia-container kbd,.rtmedia-activity-container kbd,#buddypress div.rtmedia-activity-container kbd,.rtmedia-container q,.rtmedia-activity-container q,#buddypress div.rtmedia-activity-container q,.rtmedia-container s,.rtmedia-activity-container s,#buddypress div.rtmedia-activity-container s,.rtmedia-container samp,.rtmedia-activity-container samp,#buddypress div.rtmedia-activity-container samp,.rtmedia-container small,.rtmedia-activity-container small,#buddypress div.rtmedia-activity-container small,.rtmedia-container strike,.rtmedia-activity-container strike,#buddypress div.rtmedia-activity-container strike,.rtmedia-container strong,.rtmedia-activity-container strong,#buddypress div.rtmedia-activity-container strong,.rtmedia-container sub,.rtmedia-activity-container sub,#buddypress div.rtmedia-activity-container sub,.rtmedia-container sup,.rtmedia-activity-container sup,#buddypress div.rtmedia-activity-container sup,.rtmedia-container tt,.rtmedia-activity-container tt,#buddypress div.rtmedia-activity-container tt,.rtmedia-container var,.rtmedia-activity-container var,#buddypress div.rtmedia-activity-container var,.rtmedia-container b,.rtmedia-activity-container b,#buddypress div.rtmedia-activity-container b,.rtmedia-container u,.rtmedia-activity-container u,#buddypress div.rtmedia-activity-container u,.rtmedia-container i,.rtmedia-activity-container i,#buddypress div.rtmedia-activity-container i,.rtmedia-container center,.rtmedia-activity-container center,#buddypress div.rtmedia-activity-container center,.rtmedia-container dl,.rtmedia-activity-container dl,#buddypress div.rtmedia-activity-container dl,.rtmedia-container dt,.rtmedia-activity-container dt,#buddypress div.rtmedia-activity-container dt,.rtmedia-container dd,.rtmedia-activity-container dd,#buddypress div.rtmedia-activity-container dd,.rtmedia-container ol,.rtmedia-activity-container ol,#buddypress div.rtmedia-activity-container ol,.rtmedia-container ul,.rtmedia-activity-container ul,#buddypress div.rtmedia-activity-container ul,.rtmedia-container li,.rtmedia-activity-container li,#buddypress div.rtmedia-activity-container li,.rtmedia-container fieldset,.rtmedia-activity-container fieldset,#buddypress div.rtmedia-activity-container fieldset,.rtmedia-container form,.rtmedia-activity-container form,#buddypress div.rtmedia-activity-container form,.rtmedia-container label,.rtmedia-activity-container label,#buddypress div.rtmedia-activity-container label,.rtmedia-container legend,.rtmedia-activity-container legend,#buddypress div.rtmedia-activity-container legend,.rtmedia-container table,.rtmedia-activity-container table,#buddypress div.rtmedia-activity-container table,.rtmedia-container caption,.rtmedia-activity-container caption,#buddypress div.rtmedia-activity-container caption,.rtmedia-container tbody,.rtmedia-activity-container tbody,#buddypress div.rtmedia-activity-container tbody,.rtmedia-container tfoot,.rtmedia-activity-container tfoot,#buddypress div.rtmedia-activity-container tfoot,.rtmedia-container thead,.rtmedia-activity-container thead,#buddypress div.rtmedia-activity-container thead,.rtmedia-container tr,.rtmedia-activity-container tr,#buddypress div.rtmedia-activity-container tr,.rtmedia-container th,.rtmedia-activity-container th,#buddypress div.rtmedia-activity-container th,.rtmedia-container td,.rtmedia-activity-container td,#buddypress div.rtmedia-activity-container td,.rtmedia-container article,.rtmedia-activity-container article,#buddypress div.rtmedia-activity-container article,.rtmedia-container aside,.rtmedia-activity-container aside,#buddypress div.rtmedia-activity-container aside,.rtmedia-container canvas,.rtmedia-activity-container canvas,#buddypress div.rtmedia-activity-container canvas,.rtmedia-container details,.rtmedia-activity-container details,#buddypress div.rtmedia-activity-container details,.rtmedia-container embed,.rtmedia-activity-container embed,#buddypress div.rtmedia-activity-container embed,.rtmedia-container figure,.rtmedia-activity-container figure,#buddypress div.rtmedia-activity-container figure,.rtmedia-container figcaption,.rtmedia-activity-container figcaption,#buddypress div.rtmedia-activity-container figcaption,.rtmedia-container footer,.rtmedia-activity-container footer,#buddypress div.rtmedia-activity-container footer,.rtmedia-container header,.rtmedia-activity-container header,#buddypress div.rtmedia-activity-container header,.rtmedia-container hgroup,.rtmedia-activity-container hgroup,#buddypress div.rtmedia-activity-container hgroup,.rtmedia-container menu,.rtmedia-activity-container menu,#buddypress div.rtmedia-activity-container menu,.rtmedia-container nav,.rtmedia-activity-container nav,#buddypress div.rtmedia-activity-container nav,.rtmedia-container output,.rtmedia-activity-container output,#buddypress div.rtmedia-activity-container output,.rtmedia-container ruby,.rtmedia-activity-container ruby,#buddypress div.rtmedia-activity-container ruby,.rtmedia-container section,.rtmedia-activity-container section,#buddypress div.rtmedia-activity-container section,.rtmedia-container summary,.rtmedia-activity-container summary,#buddypress div.rtmedia-activity-container summary,.rtmedia-container time,.rtmedia-activity-container time,#buddypress div.rtmedia-activity-container time,.rtmedia-container mark,.rtmedia-activity-container mark,#buddypress div.rtmedia-activity-container mark,.rtmedia-container audio,.rtmedia-activity-container audio,#buddypress div.rtmedia-activity-container audio,.rtmedia-container video,.rtmedia-activity-container video,#buddypress div.rtmedia-activity-container video{margin:0;padding:0;border:0;font:inherit;font-size:100%;vertical-align:baseline}.rtmedia-container html,.rtmedia-activity-container html,#buddypress div.rtmedia-activity-container html{line-height:1}.rtmedia-container ol,.rtmedia-activity-container ol,#buddypress div.rtmedia-activity-container ol,.rtmedia-container ul,.rtmedia-activity-container ul,#buddypress div.rtmedia-activity-container ul{list-style:none}.rtmedia-container table,.rtmedia-activity-container table,#buddypress div.rtmedia-activity-container table{border-collapse:collapse;border-spacing:0}.rtmedia-container caption,.rtmedia-activity-container caption,#buddypress div.rtmedia-activity-container caption,.rtmedia-container th,.rtmedia-activity-container th,#buddypress div.rtmedia-activity-container th,.rtmedia-container td,.rtmedia-activity-container td,#buddypress div.rtmedia-activity-container td{text-align:left;font-weight:normal;vertical-align:middle}.rtmedia-container q,.rtmedia-activity-container q,#buddypress div.rtmedia-activity-container q,.rtmedia-container blockquote,.rtmedia-activity-container blockquote,#buddypress div.rtmedia-activity-container blockquote{quotes:none}.rtmedia-container q:before,.rtmedia-activity-container q:before,#buddypress div.rtmedia-activity-container q:before,.rtmedia-container q:after,.rtmedia-activity-container q:after,#buddypress div.rtmedia-activity-container q:after,.rtmedia-container blockquote:before,.rtmedia-activity-container blockquote:before,#buddypress div.rtmedia-activity-container blockquote:before,.rtmedia-container blockquote:after,.rtmedia-activity-container blockquote:after,#buddypress div.rtmedia-activity-container blockquote:after{content:"";content:none}.rtmedia-container a img,.rtmedia-activity-container a img,#buddypress div.rtmedia-activity-container a img{border:none}.rtmedia-container article,.rtmedia-activity-container article,#buddypress div.rtmedia-activity-container article,.rtmedia-container aside,.rtmedia-activity-container aside,#buddypress div.rtmedia-activity-container aside,.rtmedia-container details,.rtmedia-activity-container details,#buddypress div.rtmedia-activity-container details,.rtmedia-container figcaption,.rtmedia-activity-container figcaption,#buddypress div.rtmedia-activity-container figcaption,.rtmedia-container figure,.rtmedia-activity-container figure,#buddypress div.rtmedia-activity-container figure,.rtmedia-container footer,.rtmedia-activity-container footer,#buddypress div.rtmedia-activity-container footer,.rtmedia-container header,.rtmedia-activity-container header,#buddypress div.rtmedia-activity-container header,.rtmedia-container hgroup,.rtmedia-activity-container hgroup,#buddypress div.rtmedia-activity-container hgroup,.rtmedia-container menu,.rtmedia-activity-container menu,#buddypress div.rtmedia-activity-container menu,.rtmedia-container nav,.rtmedia-activity-container nav,#buddypress div.rtmedia-activity-container nav,.rtmedia-container section,.rtmedia-activity-container section,#buddypress div.rtmedia-activity-container section,.rtmedia-container summary,.rtmedia-activity-container summary,#buddypress div.rtmedia-activity-container summary{display:block}.rtmedia-container meta.foundation-mq-small,.rtmedia-activity-container meta.foundation-mq-small,#buddypress div.rtmedia-activity-container meta.foundation-mq-small{font-family:"/only screen and (max-width: 40em)/";width:0em}.rtmedia-container meta.foundation-mq-medium,.rtmedia-activity-container meta.foundation-mq-medium,#buddypress div.rtmedia-activity-container meta.foundation-mq-medium{font-family:"/only screen and (min-width:40.063em) and (max-width:64em)/";width:40.063em}.rtmedia-container meta.foundation-mq-large,.rtmedia-activity-container meta.foundation-mq-large,#buddypress div.rtmedia-activity-container meta.foundation-mq-large{font-family:"/only screen and (min-width:64.063em)/";width:64.063em}.rtmedia-container meta.foundation-mq-xlarge,.rtmedia-activity-container meta.foundation-mq-xlarge,#buddypress div.rtmedia-activity-container meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:90.063em)/";width:90.063em}.rtmedia-container meta.foundation-mq-xxlarge,.rtmedia-activity-container meta.foundation-mq-xxlarge,#buddypress div.rtmedia-activity-container meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:120.063em)/";width:120.063em}.rtmedia-container *,.rtmedia-activity-container *,#buddypress div.rtmedia-activity-container *,.rtmedia-container *:before,.rtmedia-activity-container *:before,#buddypress div.rtmedia-activity-container *:before,.rtmedia-container *:after,.rtmedia-activity-container *:after,#buddypress div.rtmedia-activity-container *:after{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box}.rtmedia-container html,.rtmedia-activity-container html,#buddypress div.rtmedia-activity-container html,.rtmedia-container body,.rtmedia-activity-container body,#buddypress div.rtmedia-activity-container body{font-size:100%}.rtmedia-container body,.rtmedia-activity-container body,#buddypress div.rtmedia-activity-container body{background:#fff;color:#222;padding:0;margin:0;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-weight:normal;font-style:normal;line-height:1;position:relative;cursor:default}.rtmedia-container a:hover,.rtmedia-activity-container a:hover,#buddypress div.rtmedia-activity-container a:hover{cursor:pointer}.rtmedia-container img,.rtmedia-activity-container img,#buddypress div.rtmedia-activity-container img,.rtmedia-container object,.rtmedia-activity-container object,#buddypress div.rtmedia-activity-container object,.rtmedia-container embed,.rtmedia-activity-container embed,#buddypress div.rtmedia-activity-container embed{max-width:100%;height:auto}.rtmedia-container object,.rtmedia-activity-container object,#buddypress div.rtmedia-activity-container object,.rtmedia-container embed,.rtmedia-activity-container embed,#buddypress div.rtmedia-activity-container embed{height:100%}.rtmedia-container img,.rtmedia-activity-container img,#buddypress div.rtmedia-activity-container img{-ms-interpolation-mode:bicubic}.rtmedia-container #map_canvas img,.rtmedia-activity-container #map_canvas img,.rtmedia-container #map_canvas embed,.rtmedia-activity-container #map_canvas embed,.rtmedia-container #map_canvas object,.rtmedia-activity-container #map_canvas object,.rtmedia-container .map_canvas img,.rtmedia-activity-container .map_canvas img,#buddypress div.rtmedia-activity-container .map_canvas img,.rtmedia-container .map_canvas embed,.rtmedia-activity-container .map_canvas embed,#buddypress div.rtmedia-activity-container .map_canvas embed,.rtmedia-container .map_canvas object,.rtmedia-activity-container .map_canvas object,#buddypress div.rtmedia-activity-container .map_canvas object{max-width:none !important}.rtmedia-container .left,.rtmedia-activity-container .left,#buddypress div.rtmedia-activity-container .left{float:left !important}.rtmedia-container .right,.rtmedia-activity-container .right,#buddypress div.rtmedia-activity-container .right{float:right !important}.rtmedia-container .clearfix,.rtmedia-activity-container .clearfix,#buddypress div.rtmedia-activity-container .clearfix{*zoom:1}.rtmedia-container .clearfix:before,.rtmedia-activity-container .clearfix:before,#buddypress div.rtmedia-activity-container .clearfix:before,.rtmedia-container .clearfix:after,.rtmedia-activity-container .clearfix:after,#buddypress div.rtmedia-activity-container .clearfix:after{content:" ";display:table}.rtmedia-container .clearfix:after,.rtmedia-activity-container .clearfix:after,#buddypress div.rtmedia-activity-container .clearfix:after{clear:both}.rtmedia-container .text-left,.rtmedia-activity-container .text-left,#buddypress div.rtmedia-activity-container .text-left{text-align:left !important}.rtmedia-container .text-right,.rtmedia-activity-container .text-right,#buddypress div.rtmedia-activity-container .text-right{text-align:right !important}.rtmedia-container .text-center,.rtmedia-activity-container .text-center,#buddypress div.rtmedia-activity-container .text-center{text-align:center !important}.rtmedia-container .text-justify,.rtmedia-activity-container .text-justify,#buddypress div.rtmedia-activity-container .text-justify{text-align:justify !important}.rtmedia-container .hide,.rtmedia-activity-container .hide,#buddypress div.rtmedia-activity-container .hide{display:none}.rtmedia-container .antialiased,.rtmedia-activity-container .antialiased,#buddypress div.rtmedia-activity-container .antialiased{-webkit-font-smoothing:antialiased}.rtmedia-container img,.rtmedia-activity-container img,#buddypress div.rtmedia-activity-container img{display:inline-block;vertical-align:middle}.rtmedia-container textarea,.rtmedia-activity-container textarea,#buddypress div.rtmedia-activity-container textarea{height:auto;min-height:50px}.rtmedia-container select,.rtmedia-activity-container select,#buddypress div.rtmedia-activity-container select{width:100%}.rtmedia-container .row,.rtmedia-activity-container .row,#buddypress div.rtmedia-activity-container .row{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5rem;*zoom:1}.rtmedia-container .row:before,.rtmedia-activity-container .row:before,#buddypress div.rtmedia-activity-container .row:before,.rtmedia-container .row:after,.rtmedia-activity-container .row:after,#buddypress div.rtmedia-activity-container .row:after{content:" ";display:table}.rtmedia-container .row:after,.rtmedia-activity-container .row:after,#buddypress div.rtmedia-activity-container .row:after{clear:both}.rtmedia-container .row.collapse>.column,.rtmedia-activity-container .row.collapse>.column,#buddypress div.rtmedia-activity-container .row.collapse>.column,.rtmedia-container .row.collapse>.columns,.rtmedia-activity-container .row.collapse>.columns,#buddypress div.rtmedia-activity-container .row.collapse>.columns{position:relative;padding-left:0;padding-right:0;float:left}.rtmedia-container .row.collapse .row,.rtmedia-activity-container .row.collapse .row,#buddypress div.rtmedia-activity-container .row.collapse .row{margin-left:0;margin-right:0}.rtmedia-container .row .row,.rtmedia-activity-container .row .row,#buddypress div.rtmedia-activity-container .row .row{width:auto;margin-left:-0.9375rem;margin-right:-0.9375rem;margin-top:0;margin-bottom:0;max-width:none;*zoom:1}.rtmedia-container .row .row:before,.rtmedia-activity-container .row .row:before,#buddypress div.rtmedia-activity-container .row .row:before,.rtmedia-container .row .row:after,.rtmedia-activity-container .row .row:after,#buddypress div.rtmedia-activity-container .row .row:after{content:" ";display:table}.rtmedia-container .row .row:after,.rtmedia-activity-container .row .row:after,#buddypress div.rtmedia-activity-container .row .row:after{clear:both}.rtmedia-container .row .row.collapse,.rtmedia-activity-container .row .row.collapse,#buddypress div.rtmedia-activity-container .row .row.collapse{width:auto;margin:0;max-width:none;*zoom:1}.rtmedia-container .row .row.collapse:before,.rtmedia-activity-container .row .row.collapse:before,#buddypress div.rtmedia-activity-container .row .row.collapse:before,.rtmedia-container .row .row.collapse:after,.rtmedia-activity-container .row .row.collapse:after,#buddypress div.rtmedia-activity-container .row .row.collapse:after{content:" ";display:table}.rtmedia-container .row .row.collapse:after,.rtmedia-activity-container .row .row.collapse:after,#buddypress div.rtmedia-activity-container .row .row.collapse:after{clear:both}.rtmedia-container .column,.rtmedia-activity-container .column,#buddypress div.rtmedia-activity-container .column,.rtmedia-container .columns,.rtmedia-activity-container .columns,#buddypress div.rtmedia-activity-container .columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;width:100%;float:left}@media only screen{.rtmedia-container .small-push-1,.rtmedia-activity-container .small-push-1,#buddypress div.rtmedia-activity-container .small-push-1{position:relative;left:8.33333%;right:auto}.rtmedia-container .small-pull-1,.rtmedia-activity-container .small-pull-1,#buddypress div.rtmedia-activity-container .small-pull-1{position:relative;right:8.33333%;left:auto}.rtmedia-container .small-push-2,.rtmedia-activity-container .small-push-2,#buddypress div.rtmedia-activity-container .small-push-2{position:relative;left:16.66667%;right:auto}.rtmedia-container .small-pull-2,.rtmedia-activity-container .small-pull-2,#buddypress div.rtmedia-activity-container .small-pull-2{position:relative;right:16.66667%;left:auto}.rtmedia-container .small-push-3,.rtmedia-activity-container .small-push-3,#buddypress div.rtmedia-activity-container .small-push-3{position:relative;left:25%;right:auto}.rtmedia-container .small-pull-3,.rtmedia-activity-container .small-pull-3,#buddypress div.rtmedia-activity-container .small-pull-3{position:relative;right:25%;left:auto}.rtmedia-container .small-push-4,.rtmedia-activity-container .small-push-4,#buddypress div.rtmedia-activity-container .small-push-4{position:relative;left:33.33333%;right:auto}.rtmedia-container .small-pull-4,.rtmedia-activity-container .small-pull-4,#buddypress div.rtmedia-activity-container .small-pull-4{position:relative;right:33.33333%;left:auto}.rtmedia-container .small-push-5,.rtmedia-activity-container .small-push-5,#buddypress div.rtmedia-activity-container .small-push-5{position:relative;left:41.66667%;right:auto}.rtmedia-container .small-pull-5,.rtmedia-activity-container .small-pull-5,#buddypress div.rtmedia-activity-container .small-pull-5{position:relative;right:41.66667%;left:auto}.rtmedia-container .small-push-6,.rtmedia-activity-container .small-push-6,#buddypress div.rtmedia-activity-container .small-push-6{position:relative;left:50%;right:auto}.rtmedia-container .small-pull-6,.rtmedia-activity-container .small-pull-6,#buddypress div.rtmedia-activity-container .small-pull-6{position:relative;right:50%;left:auto}.rtmedia-container .small-push-7,.rtmedia-activity-container .small-push-7,#buddypress div.rtmedia-activity-container .small-push-7{position:relative;left:58.33333%;right:auto}.rtmedia-container .small-pull-7,.rtmedia-activity-container .small-pull-7,#buddypress div.rtmedia-activity-container .small-pull-7{position:relative;right:58.33333%;left:auto}.rtmedia-container .small-push-8,.rtmedia-activity-container .small-push-8,#buddypress div.rtmedia-activity-container .small-push-8{position:relative;left:66.66667%;right:auto}.rtmedia-container .small-pull-8,.rtmedia-activity-container .small-pull-8,#buddypress div.rtmedia-activity-container .small-pull-8{position:relative;right:66.66667%;left:auto}.rtmedia-container .small-push-9,.rtmedia-activity-container .small-push-9,#buddypress div.rtmedia-activity-container .small-push-9{position:relative;left:75%;right:auto}.rtmedia-container .small-pull-9,.rtmedia-activity-container .small-pull-9,#buddypress div.rtmedia-activity-container .small-pull-9{position:relative;right:75%;left:auto}.rtmedia-container .small-push-10,.rtmedia-activity-container .small-push-10,#buddypress div.rtmedia-activity-container .small-push-10{position:relative;left:83.33333%;right:auto}.rtmedia-container .small-pull-10,.rtmedia-activity-container .small-pull-10,#buddypress div.rtmedia-activity-container .small-pull-10{position:relative;right:83.33333%;left:auto}.rtmedia-container .small-push-11,.rtmedia-activity-container .small-push-11,#buddypress div.rtmedia-activity-container .small-push-11{position:relative;left:91.66667%;right:auto}.rtmedia-container .small-pull-11,.rtmedia-activity-container .small-pull-11,#buddypress div.rtmedia-activity-container .small-pull-11{position:relative;right:91.66667%;left:auto}.rtmedia-container .column,.rtmedia-activity-container .column,#buddypress div.rtmedia-activity-container .column,.rtmedia-container .columns,.rtmedia-activity-container .columns,#buddypress div.rtmedia-activity-container .columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.rtmedia-container .small-1,.rtmedia-activity-container .small-1,#buddypress div.rtmedia-activity-container .small-1{position:relative;width:8.33333%}.rtmedia-container .small-2,.rtmedia-activity-container .small-2,#buddypress div.rtmedia-activity-container .small-2{position:relative;width:16.66667%}.rtmedia-container .small-3,.rtmedia-activity-container .small-3,#buddypress div.rtmedia-activity-container .small-3{position:relative;width:25%}.rtmedia-container .small-4,.rtmedia-activity-container .small-4,#buddypress div.rtmedia-activity-container .small-4{position:relative;width:33.33333%}.rtmedia-container .small-5,.rtmedia-activity-container .small-5,#buddypress div.rtmedia-activity-container .small-5{position:relative;width:41.66667%}.rtmedia-container .small-6,.rtmedia-activity-container .small-6,#buddypress div.rtmedia-activity-container .small-6{position:relative;width:50%}.rtmedia-container .small-7,.rtmedia-activity-container .small-7,#buddypress div.rtmedia-activity-container .small-7{position:relative;width:58.33333%}.rtmedia-container .small-8,.rtmedia-activity-container .small-8,#buddypress div.rtmedia-activity-container .small-8{position:relative;width:66.66667%}.rtmedia-container .small-9,.rtmedia-activity-container .small-9,#buddypress div.rtmedia-activity-container .small-9{position:relative;width:75%}.rtmedia-container .small-10,.rtmedia-activity-container .small-10,#buddypress div.rtmedia-activity-container .small-10{position:relative;width:83.33333%}.rtmedia-container .small-11,.rtmedia-activity-container .small-11,#buddypress div.rtmedia-activity-container .small-11{position:relative;width:91.66667%}.rtmedia-container .small-12,.rtmedia-activity-container .small-12,#buddypress div.rtmedia-activity-container .small-12{position:relative;width:100%}.rtmedia-container .small-offset-0,.rtmedia-activity-container .small-offset-0,#buddypress div.rtmedia-activity-container .small-offset-0{position:relative;margin-left:0%}.rtmedia-container .small-offset-1,.rtmedia-activity-container .small-offset-1,#buddypress div.rtmedia-activity-container .small-offset-1{position:relative;margin-left:8.33333%}.rtmedia-container .small-offset-2,.rtmedia-activity-container .small-offset-2,#buddypress div.rtmedia-activity-container .small-offset-2{position:relative;margin-left:16.66667%}.rtmedia-container .small-offset-3,.rtmedia-activity-container .small-offset-3,#buddypress div.rtmedia-activity-container .small-offset-3{position:relative;margin-left:25%}.rtmedia-container .small-offset-4,.rtmedia-activity-container .small-offset-4,#buddypress div.rtmedia-activity-container .small-offset-4{position:relative;margin-left:33.33333%}.rtmedia-container .small-offset-5,.rtmedia-activity-container .small-offset-5,#buddypress div.rtmedia-activity-container .small-offset-5{position:relative;margin-left:41.66667%}.rtmedia-container .small-offset-6,.rtmedia-activity-container .small-offset-6,#buddypress div.rtmedia-activity-container .small-offset-6{position:relative;margin-left:50%}.rtmedia-container .small-offset-7,.rtmedia-activity-container .small-offset-7,#buddypress div.rtmedia-activity-container .small-offset-7{position:relative;margin-left:58.33333%}.rtmedia-container .small-offset-8,.rtmedia-activity-container .small-offset-8,#buddypress div.rtmedia-activity-container .small-offset-8{position:relative;margin-left:66.66667%}.rtmedia-container .small-offset-9,.rtmedia-activity-container .small-offset-9,#buddypress div.rtmedia-activity-container .small-offset-9{position:relative;margin-left:75%}.rtmedia-container .small-offset-10,.rtmedia-activity-container .small-offset-10,#buddypress div.rtmedia-activity-container .small-offset-10{position:relative;margin-left:83.33333%}.rtmedia-container [class*="column"]+[class*="column"]:last-child,.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child{float:right}.rtmedia-container [class*="column"]+[class*="column"].end,.rtmedia-activity-container [class*="column"]+[class*="column"].end,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"].end{float:left}.rtmedia-container .column.small-centered,.rtmedia-activity-container .column.small-centered,#buddypress div.rtmedia-activity-container .column.small-centered,.rtmedia-container .columns.small-centered,.rtmedia-activity-container .columns.small-centered,#buddypress div.rtmedia-activity-container .columns.small-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.rtmedia-container .column.small-uncentered,.rtmedia-activity-container .column.small-uncentered,#buddypress div.rtmedia-activity-container .column.small-uncentered,.rtmedia-container .columns.small-uncentered,.rtmedia-activity-container .columns.small-uncentered,#buddypress div.rtmedia-activity-container .columns.small-uncentered{margin-left:0;margin-right:0;float:left !important}.rtmedia-container .column.small-uncentered.opposite,.rtmedia-activity-container .column.small-uncentered.opposite,#buddypress div.rtmedia-activity-container .column.small-uncentered.opposite,.rtmedia-container .columns.small-uncentered.opposite,.rtmedia-activity-container .columns.small-uncentered.opposite,#buddypress div.rtmedia-activity-container .columns.small-uncentered.opposite{float:right !important}}@media only screen and (min-width: 40.063em){.rtmedia-container .medium-push-1,.rtmedia-activity-container .medium-push-1,#buddypress div.rtmedia-activity-container .medium-push-1{position:relative;left:8.33333%;right:auto}.rtmedia-container .medium-pull-1,.rtmedia-activity-container .medium-pull-1,#buddypress div.rtmedia-activity-container .medium-pull-1{position:relative;right:8.33333%;left:auto}.rtmedia-container .medium-push-2,.rtmedia-activity-container .medium-push-2,#buddypress div.rtmedia-activity-container .medium-push-2{position:relative;left:16.66667%;right:auto}.rtmedia-container .medium-pull-2,.rtmedia-activity-container .medium-pull-2,#buddypress div.rtmedia-activity-container .medium-pull-2{position:relative;right:16.66667%;left:auto}.rtmedia-container .medium-push-3,.rtmedia-activity-container .medium-push-3,#buddypress div.rtmedia-activity-container .medium-push-3{position:relative;left:25%;right:auto}.rtmedia-container .medium-pull-3,.rtmedia-activity-container .medium-pull-3,#buddypress div.rtmedia-activity-container .medium-pull-3{position:relative;right:25%;left:auto}.rtmedia-container .medium-push-4,.rtmedia-activity-container .medium-push-4,#buddypress div.rtmedia-activity-container .medium-push-4{position:relative;left:33.33333%;right:auto}.rtmedia-container .medium-pull-4,.rtmedia-activity-container .medium-pull-4,#buddypress div.rtmedia-activity-container .medium-pull-4{position:relative;right:33.33333%;left:auto}.rtmedia-container .medium-push-5,.rtmedia-activity-container .medium-push-5,#buddypress div.rtmedia-activity-container .medium-push-5{position:relative;left:41.66667%;right:auto}.rtmedia-container .medium-pull-5,.rtmedia-activity-container .medium-pull-5,#buddypress div.rtmedia-activity-container .medium-pull-5{position:relative;right:41.66667%;left:auto}.rtmedia-container .medium-push-6,.rtmedia-activity-container .medium-push-6,#buddypress div.rtmedia-activity-container .medium-push-6{position:relative;left:50%;right:auto}.rtmedia-container .medium-pull-6,.rtmedia-activity-container .medium-pull-6,#buddypress div.rtmedia-activity-container .medium-pull-6{position:relative;right:50%;left:auto}.rtmedia-container .medium-push-7,.rtmedia-activity-container .medium-push-7,#buddypress div.rtmedia-activity-container .medium-push-7{position:relative;left:58.33333%;right:auto}.rtmedia-container .medium-pull-7,.rtmedia-activity-container .medium-pull-7,#buddypress div.rtmedia-activity-container .medium-pull-7{position:relative;right:58.33333%;left:auto}.rtmedia-container .medium-push-8,.rtmedia-activity-container .medium-push-8,#buddypress div.rtmedia-activity-container .medium-push-8{position:relative;left:66.66667%;right:auto}.rtmedia-container .medium-pull-8,.rtmedia-activity-container .medium-pull-8,#buddypress div.rtmedia-activity-container .medium-pull-8{position:relative;right:66.66667%;left:auto}.rtmedia-container .medium-push-9,.rtmedia-activity-container .medium-push-9,#buddypress div.rtmedia-activity-container .medium-push-9{position:relative;left:75%;right:auto}.rtmedia-container .medium-pull-9,.rtmedia-activity-container .medium-pull-9,#buddypress div.rtmedia-activity-container .medium-pull-9{position:relative;right:75%;left:auto}.rtmedia-container .medium-push-10,.rtmedia-activity-container .medium-push-10,#buddypress div.rtmedia-activity-container .medium-push-10{position:relative;left:83.33333%;right:auto}.rtmedia-container .medium-pull-10,.rtmedia-activity-container .medium-pull-10,#buddypress div.rtmedia-activity-container .medium-pull-10{position:relative;right:83.33333%;left:auto}.rtmedia-container .medium-push-11,.rtmedia-activity-container .medium-push-11,#buddypress div.rtmedia-activity-container .medium-push-11{position:relative;left:91.66667%;right:auto}.rtmedia-container .medium-pull-11,.rtmedia-activity-container .medium-pull-11,#buddypress div.rtmedia-activity-container .medium-pull-11{position:relative;right:91.66667%;left:auto}.rtmedia-container .column,.rtmedia-activity-container .column,#buddypress div.rtmedia-activity-container .column,.rtmedia-container .columns,.rtmedia-activity-container .columns,#buddypress div.rtmedia-activity-container .columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.rtmedia-container .medium-1,.rtmedia-activity-container .medium-1,#buddypress div.rtmedia-activity-container .medium-1{position:relative;width:8.33333%}.rtmedia-container .medium-2,.rtmedia-activity-container .medium-2,#buddypress div.rtmedia-activity-container .medium-2{position:relative;width:16.66667%}.rtmedia-container .medium-3,.rtmedia-activity-container .medium-3,#buddypress div.rtmedia-activity-container .medium-3{position:relative;width:25%}.rtmedia-container .medium-4,.rtmedia-activity-container .medium-4,#buddypress div.rtmedia-activity-container .medium-4{position:relative;width:33.33333%}.rtmedia-container .medium-5,.rtmedia-activity-container .medium-5,#buddypress div.rtmedia-activity-container .medium-5{position:relative;width:41.66667%}.rtmedia-container .medium-6,.rtmedia-activity-container .medium-6,#buddypress div.rtmedia-activity-container .medium-6{position:relative;width:50%}.rtmedia-container .medium-7,.rtmedia-activity-container .medium-7,#buddypress div.rtmedia-activity-container .medium-7{position:relative;width:58.33333%}.rtmedia-container .medium-8,.rtmedia-activity-container .medium-8,#buddypress div.rtmedia-activity-container .medium-8{position:relative;width:66.66667%}.rtmedia-container .medium-9,.rtmedia-activity-container .medium-9,#buddypress div.rtmedia-activity-container .medium-9{position:relative;width:75%}.rtmedia-container .medium-10,.rtmedia-activity-container .medium-10,#buddypress div.rtmedia-activity-container .medium-10{position:relative;width:83.33333%}.rtmedia-container .medium-11,.rtmedia-activity-container .medium-11,#buddypress div.rtmedia-activity-container .medium-11{position:relative;width:91.66667%}.rtmedia-container .medium-12,.rtmedia-activity-container .medium-12,#buddypress div.rtmedia-activity-container .medium-12{position:relative;width:100%}.rtmedia-container .medium-offset-0,.rtmedia-activity-container .medium-offset-0,#buddypress div.rtmedia-activity-container .medium-offset-0{position:relative;margin-left:0%}.rtmedia-container .medium-offset-1,.rtmedia-activity-container .medium-offset-1,#buddypress div.rtmedia-activity-container .medium-offset-1{position:relative;margin-left:8.33333%}.rtmedia-container .medium-offset-2,.rtmedia-activity-container .medium-offset-2,#buddypress div.rtmedia-activity-container .medium-offset-2{position:relative;margin-left:16.66667%}.rtmedia-container .medium-offset-3,.rtmedia-activity-container .medium-offset-3,#buddypress div.rtmedia-activity-container .medium-offset-3{position:relative;margin-left:25%}.rtmedia-container .medium-offset-4,.rtmedia-activity-container .medium-offset-4,#buddypress div.rtmedia-activity-container .medium-offset-4{position:relative;margin-left:33.33333%}.rtmedia-container .medium-offset-5,.rtmedia-activity-container .medium-offset-5,#buddypress div.rtmedia-activity-container .medium-offset-5{position:relative;margin-left:41.66667%}.rtmedia-container .medium-offset-6,.rtmedia-activity-container .medium-offset-6,#buddypress div.rtmedia-activity-container .medium-offset-6{position:relative;margin-left:50%}.rtmedia-container .medium-offset-7,.rtmedia-activity-container .medium-offset-7,#buddypress div.rtmedia-activity-container .medium-offset-7{position:relative;margin-left:58.33333%}.rtmedia-container .medium-offset-8,.rtmedia-activity-container .medium-offset-8,#buddypress div.rtmedia-activity-container .medium-offset-8{position:relative;margin-left:66.66667%}.rtmedia-container .medium-offset-9,.rtmedia-activity-container .medium-offset-9,#buddypress div.rtmedia-activity-container .medium-offset-9{position:relative;margin-left:75%}.rtmedia-container .medium-offset-10,.rtmedia-activity-container .medium-offset-10,#buddypress div.rtmedia-activity-container .medium-offset-10{position:relative;margin-left:83.33333%}.rtmedia-container [class*="column"]+[class*="column"]:last-child,.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child{float:right}.rtmedia-container [class*="column"]+[class*="column"].end,.rtmedia-activity-container [class*="column"]+[class*="column"].end,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"].end{float:left}.rtmedia-container .column.medium-centered,.rtmedia-activity-container .column.medium-centered,#buddypress div.rtmedia-activity-container .column.medium-centered,.rtmedia-container .columns.medium-centered,.rtmedia-activity-container .columns.medium-centered,#buddypress div.rtmedia-activity-container .columns.medium-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.rtmedia-container .column.medium-uncentered,.rtmedia-activity-container .column.medium-uncentered,#buddypress div.rtmedia-activity-container .column.medium-uncentered,.rtmedia-container .columns.medium-uncentered,.rtmedia-activity-container .columns.medium-uncentered,#buddypress div.rtmedia-activity-container .columns.medium-uncentered{margin-left:0;margin-right:0;float:left !important}.rtmedia-container .column.medium-uncentered.opposite,.rtmedia-activity-container .column.medium-uncentered.opposite,#buddypress div.rtmedia-activity-container .column.medium-uncentered.opposite,.rtmedia-container .columns.medium-uncentered.opposite,.rtmedia-activity-container .columns.medium-uncentered.opposite,#buddypress div.rtmedia-activity-container .columns.medium-uncentered.opposite{float:right !important}.rtmedia-container .push-1,.rtmedia-activity-container .push-1,#buddypress div.rtmedia-activity-container .push-1{position:relative;left:8.33333%;right:auto}.rtmedia-container .pull-1,.rtmedia-activity-container .pull-1,#buddypress div.rtmedia-activity-container .pull-1{position:relative;right:8.33333%;left:auto}.rtmedia-container .push-2,.rtmedia-activity-container .push-2,#buddypress div.rtmedia-activity-container .push-2{position:relative;left:16.66667%;right:auto}.rtmedia-container .pull-2,.rtmedia-activity-container .pull-2,#buddypress div.rtmedia-activity-container .pull-2{position:relative;right:16.66667%;left:auto}.rtmedia-container .push-3,.rtmedia-activity-container .push-3,#buddypress div.rtmedia-activity-container .push-3{position:relative;left:25%;right:auto}.rtmedia-container .pull-3,.rtmedia-activity-container .pull-3,#buddypress div.rtmedia-activity-container .pull-3{position:relative;right:25%;left:auto}.rtmedia-container .push-4,.rtmedia-activity-container .push-4,#buddypress div.rtmedia-activity-container .push-4{position:relative;left:33.33333%;right:auto}.rtmedia-container .pull-4,.rtmedia-activity-container .pull-4,#buddypress div.rtmedia-activity-container .pull-4{position:relative;right:33.33333%;left:auto}.rtmedia-container .push-5,.rtmedia-activity-container .push-5,#buddypress div.rtmedia-activity-container .push-5{position:relative;left:41.66667%;right:auto}.rtmedia-container .pull-5,.rtmedia-activity-container .pull-5,#buddypress div.rtmedia-activity-container .pull-5{position:relative;right:41.66667%;left:auto}.rtmedia-container .push-6,.rtmedia-activity-container .push-6,#buddypress div.rtmedia-activity-container .push-6{position:relative;left:50%;right:auto}.rtmedia-container .pull-6,.rtmedia-activity-container .pull-6,#buddypress div.rtmedia-activity-container .pull-6{position:relative;right:50%;left:auto}.rtmedia-container .push-7,.rtmedia-activity-container .push-7,#buddypress div.rtmedia-activity-container .push-7{position:relative;left:58.33333%;right:auto}.rtmedia-container .pull-7,.rtmedia-activity-container .pull-7,#buddypress div.rtmedia-activity-container .pull-7{position:relative;right:58.33333%;left:auto}.rtmedia-container .push-8,.rtmedia-activity-container .push-8,#buddypress div.rtmedia-activity-container .push-8{position:relative;left:66.66667%;right:auto}.rtmedia-container .pull-8,.rtmedia-activity-container .pull-8,#buddypress div.rtmedia-activity-container .pull-8{position:relative;right:66.66667%;left:auto}.rtmedia-container .push-9,.rtmedia-activity-container .push-9,#buddypress div.rtmedia-activity-container .push-9{position:relative;left:75%;right:auto}.rtmedia-container .pull-9,.rtmedia-activity-container .pull-9,#buddypress div.rtmedia-activity-container .pull-9{position:relative;right:75%;left:auto}.rtmedia-container .push-10,.rtmedia-activity-container .push-10,#buddypress div.rtmedia-activity-container .push-10{position:relative;left:83.33333%;right:auto}.rtmedia-container .pull-10,.rtmedia-activity-container .pull-10,#buddypress div.rtmedia-activity-container .pull-10{position:relative;right:83.33333%;left:auto}.rtmedia-container .push-11,.rtmedia-activity-container .push-11,#buddypress div.rtmedia-activity-container .push-11{position:relative;left:91.66667%;right:auto}.rtmedia-container .pull-11,.rtmedia-activity-container .pull-11,#buddypress div.rtmedia-activity-container .pull-11{position:relative;right:91.66667%;left:auto}}@media only screen and (min-width: 64.063em){.rtmedia-container .large-push-1,.rtmedia-activity-container .large-push-1,#buddypress div.rtmedia-activity-container .large-push-1{position:relative;left:8.33333%;right:auto}.rtmedia-container .large-pull-1,.rtmedia-activity-container .large-pull-1,#buddypress div.rtmedia-activity-container .large-pull-1{position:relative;right:8.33333%;left:auto}.rtmedia-container .large-push-2,.rtmedia-activity-container .large-push-2,#buddypress div.rtmedia-activity-container .large-push-2{position:relative;left:16.66667%;right:auto}.rtmedia-container .large-pull-2,.rtmedia-activity-container .large-pull-2,#buddypress div.rtmedia-activity-container .large-pull-2{position:relative;right:16.66667%;left:auto}.rtmedia-container .large-push-3,.rtmedia-activity-container .large-push-3,#buddypress div.rtmedia-activity-container .large-push-3{position:relative;left:25%;right:auto}.rtmedia-container .large-pull-3,.rtmedia-activity-container .large-pull-3,#buddypress div.rtmedia-activity-container .large-pull-3{position:relative;right:25%;left:auto}.rtmedia-container .large-push-4,.rtmedia-activity-container .large-push-4,#buddypress div.rtmedia-activity-container .large-push-4{position:relative;left:33.33333%;right:auto}.rtmedia-container .large-pull-4,.rtmedia-activity-container .large-pull-4,#buddypress div.rtmedia-activity-container .large-pull-4{position:relative;right:33.33333%;left:auto}.rtmedia-container .large-push-5,.rtmedia-activity-container .large-push-5,#buddypress div.rtmedia-activity-container .large-push-5{position:relative;left:41.66667%;right:auto}.rtmedia-container .large-pull-5,.rtmedia-activity-container .large-pull-5,#buddypress div.rtmedia-activity-container .large-pull-5{position:relative;right:41.66667%;left:auto}.rtmedia-container .large-push-6,.rtmedia-activity-container .large-push-6,#buddypress div.rtmedia-activity-container .large-push-6{position:relative;left:50%;right:auto}.rtmedia-container .large-pull-6,.rtmedia-activity-container .large-pull-6,#buddypress div.rtmedia-activity-container .large-pull-6{position:relative;right:50%;left:auto}.rtmedia-container .large-push-7,.rtmedia-activity-container .large-push-7,#buddypress div.rtmedia-activity-container .large-push-7{position:relative;left:58.33333%;right:auto}.rtmedia-container .large-pull-7,.rtmedia-activity-container .large-pull-7,#buddypress div.rtmedia-activity-container .large-pull-7{position:relative;right:58.33333%;left:auto}.rtmedia-container .large-push-8,.rtmedia-activity-container .large-push-8,#buddypress div.rtmedia-activity-container .large-push-8{position:relative;left:66.66667%;right:auto}.rtmedia-container .large-pull-8,.rtmedia-activity-container .large-pull-8,#buddypress div.rtmedia-activity-container .large-pull-8{position:relative;right:66.66667%;left:auto}.rtmedia-container .large-push-9,.rtmedia-activity-container .large-push-9,#buddypress div.rtmedia-activity-container .large-push-9{position:relative;left:75%;right:auto}.rtmedia-container .large-pull-9,.rtmedia-activity-container .large-pull-9,#buddypress div.rtmedia-activity-container .large-pull-9{position:relative;right:75%;left:auto}.rtmedia-container .large-push-10,.rtmedia-activity-container .large-push-10,#buddypress div.rtmedia-activity-container .large-push-10{position:relative;left:83.33333%;right:auto}.rtmedia-container .large-pull-10,.rtmedia-activity-container .large-pull-10,#buddypress div.rtmedia-activity-container .large-pull-10{position:relative;right:83.33333%;left:auto}.rtmedia-container .large-push-11,.rtmedia-activity-container .large-push-11,#buddypress div.rtmedia-activity-container .large-push-11{position:relative;left:91.66667%;right:auto}.rtmedia-container .large-pull-11,.rtmedia-activity-container .large-pull-11,#buddypress div.rtmedia-activity-container .large-pull-11{position:relative;right:91.66667%;left:auto}.rtmedia-container .column,.rtmedia-activity-container .column,#buddypress div.rtmedia-activity-container .column,.rtmedia-container .columns,.rtmedia-activity-container .columns,#buddypress div.rtmedia-activity-container .columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.rtmedia-container .large-1,.rtmedia-activity-container .large-1,#buddypress div.rtmedia-activity-container .large-1{position:relative;width:8.33333%}.rtmedia-container .large-2,.rtmedia-activity-container .large-2,#buddypress div.rtmedia-activity-container .large-2{position:relative;width:16.66667%}.rtmedia-container .large-3,.rtmedia-activity-container .large-3,#buddypress div.rtmedia-activity-container .large-3{position:relative;width:25%}.rtmedia-container .large-4,.rtmedia-activity-container .large-4,#buddypress div.rtmedia-activity-container .large-4{position:relative;width:33.33333%}.rtmedia-container .large-5,.rtmedia-activity-container .large-5,#buddypress div.rtmedia-activity-container .large-5{position:relative;width:41.66667%}.rtmedia-container .large-6,.rtmedia-activity-container .large-6,#buddypress div.rtmedia-activity-container .large-6{position:relative;width:50%}.rtmedia-container .large-7,.rtmedia-activity-container .large-7,#buddypress div.rtmedia-activity-container .large-7{position:relative;width:58.33333%}.rtmedia-container .large-8,.rtmedia-activity-container .large-8,#buddypress div.rtmedia-activity-container .large-8{position:relative;width:66.66667%}.rtmedia-container .large-9,.rtmedia-activity-container .large-9,#buddypress div.rtmedia-activity-container .large-9{position:relative;width:75%}.rtmedia-container .large-10,.rtmedia-activity-container .large-10,#buddypress div.rtmedia-activity-container .large-10{position:relative;width:83.33333%}.rtmedia-container .large-11,.rtmedia-activity-container .large-11,#buddypress div.rtmedia-activity-container .large-11{position:relative;width:91.66667%}.rtmedia-container .large-12,.rtmedia-activity-container .large-12,#buddypress div.rtmedia-activity-container .large-12{position:relative;width:100%}.rtmedia-container .large-offset-0,.rtmedia-activity-container .large-offset-0,#buddypress div.rtmedia-activity-container .large-offset-0{position:relative;margin-left:0%}.rtmedia-container .large-offset-1,.rtmedia-activity-container .large-offset-1,#buddypress div.rtmedia-activity-container .large-offset-1{position:relative;margin-left:8.33333%}.rtmedia-container .large-offset-2,.rtmedia-activity-container .large-offset-2,#buddypress div.rtmedia-activity-container .large-offset-2{position:relative;margin-left:16.66667%}.rtmedia-container .large-offset-3,.rtmedia-activity-container .large-offset-3,#buddypress div.rtmedia-activity-container .large-offset-3{position:relative;margin-left:25%}.rtmedia-container .large-offset-4,.rtmedia-activity-container .large-offset-4,#buddypress div.rtmedia-activity-container .large-offset-4{position:relative;margin-left:33.33333%}.rtmedia-container .large-offset-5,.rtmedia-activity-container .large-offset-5,#buddypress div.rtmedia-activity-container .large-offset-5{position:relative;margin-left:41.66667%}.rtmedia-container .large-offset-6,.rtmedia-activity-container .large-offset-6,#buddypress div.rtmedia-activity-container .large-offset-6{position:relative;margin-left:50%}.rtmedia-container .large-offset-7,.rtmedia-activity-container .large-offset-7,#buddypress div.rtmedia-activity-container .large-offset-7{position:relative;margin-left:58.33333%}.rtmedia-container .large-offset-8,.rtmedia-activity-container .large-offset-8,#buddypress div.rtmedia-activity-container .large-offset-8{position:relative;margin-left:66.66667%}.rtmedia-container .large-offset-9,.rtmedia-activity-container .large-offset-9,#buddypress div.rtmedia-activity-container .large-offset-9{position:relative;margin-left:75%}.rtmedia-container .large-offset-10,.rtmedia-activity-container .large-offset-10,#buddypress div.rtmedia-activity-container .large-offset-10{position:relative;margin-left:83.33333%}.rtmedia-container [class*="column"]+[class*="column"]:last-child,.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child{float:right}.rtmedia-container [class*="column"]+[class*="column"].end,.rtmedia-activity-container [class*="column"]+[class*="column"].end,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"].end{float:left}.rtmedia-container .column.large-centered,.rtmedia-activity-container .column.large-centered,#buddypress div.rtmedia-activity-container .column.large-centered,.rtmedia-container .columns.large-centered,.rtmedia-activity-container .columns.large-centered,#buddypress div.rtmedia-activity-container .columns.large-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.rtmedia-container .column.large-uncentered,.rtmedia-activity-container .column.large-uncentered,#buddypress div.rtmedia-activity-container .column.large-uncentered,.rtmedia-container .columns.large-uncentered,.rtmedia-activity-container .columns.large-uncentered,#buddypress div.rtmedia-activity-container .columns.large-uncentered{margin-left:0;margin-right:0;float:left !important}.rtmedia-container .column.large-uncentered.opposite,.rtmedia-activity-container .column.large-uncentered.opposite,#buddypress div.rtmedia-activity-container .column.large-uncentered.opposite,.rtmedia-container .columns.large-uncentered.opposite,.rtmedia-activity-container .columns.large-uncentered.opposite,#buddypress div.rtmedia-activity-container .columns.large-uncentered.opposite{float:right !important}}@media only screen and (min-width: 90.063em){.rtmedia-container .xlarge-push-1,.rtmedia-activity-container .xlarge-push-1,#buddypress div.rtmedia-activity-container .xlarge-push-1{position:relative;left:8.33333%;right:auto}.rtmedia-container .xlarge-pull-1,.rtmedia-activity-container .xlarge-pull-1,#buddypress div.rtmedia-activity-container .xlarge-pull-1{position:relative;right:8.33333%;left:auto}.rtmedia-container .xlarge-push-2,.rtmedia-activity-container .xlarge-push-2,#buddypress div.rtmedia-activity-container .xlarge-push-2{position:relative;left:16.66667%;right:auto}.rtmedia-container .xlarge-pull-2,.rtmedia-activity-container .xlarge-pull-2,#buddypress div.rtmedia-activity-container .xlarge-pull-2{position:relative;right:16.66667%;left:auto}.rtmedia-container .xlarge-push-3,.rtmedia-activity-container .xlarge-push-3,#buddypress div.rtmedia-activity-container .xlarge-push-3{position:relative;left:25%;right:auto}.rtmedia-container .xlarge-pull-3,.rtmedia-activity-container .xlarge-pull-3,#buddypress div.rtmedia-activity-container .xlarge-pull-3{position:relative;right:25%;left:auto}.rtmedia-container .xlarge-push-4,.rtmedia-activity-container .xlarge-push-4,#buddypress div.rtmedia-activity-container .xlarge-push-4{position:relative;left:33.33333%;right:auto}.rtmedia-container .xlarge-pull-4,.rtmedia-activity-container .xlarge-pull-4,#buddypress div.rtmedia-activity-container .xlarge-pull-4{position:relative;right:33.33333%;left:auto}.rtmedia-container .xlarge-push-5,.rtmedia-activity-container .xlarge-push-5,#buddypress div.rtmedia-activity-container .xlarge-push-5{position:relative;left:41.66667%;right:auto}.rtmedia-container .xlarge-pull-5,.rtmedia-activity-container .xlarge-pull-5,#buddypress div.rtmedia-activity-container .xlarge-pull-5{position:relative;right:41.66667%;left:auto}.rtmedia-container .xlarge-push-6,.rtmedia-activity-container .xlarge-push-6,#buddypress div.rtmedia-activity-container .xlarge-push-6{position:relative;left:50%;right:auto}.rtmedia-container .xlarge-pull-6,.rtmedia-activity-container .xlarge-pull-6,#buddypress div.rtmedia-activity-container .xlarge-pull-6{position:relative;right:50%;left:auto}.rtmedia-container .xlarge-push-7,.rtmedia-activity-container .xlarge-push-7,#buddypress div.rtmedia-activity-container .xlarge-push-7{position:relative;left:58.33333%;right:auto}.rtmedia-container .xlarge-pull-7,.rtmedia-activity-container .xlarge-pull-7,#buddypress div.rtmedia-activity-container .xlarge-pull-7{position:relative;right:58.33333%;left:auto}.rtmedia-container .xlarge-push-8,.rtmedia-activity-container .xlarge-push-8,#buddypress div.rtmedia-activity-container .xlarge-push-8{position:relative;left:66.66667%;right:auto}.rtmedia-container .xlarge-pull-8,.rtmedia-activity-container .xlarge-pull-8,#buddypress div.rtmedia-activity-container .xlarge-pull-8{position:relative;right:66.66667%;left:auto}.rtmedia-container .xlarge-push-9,.rtmedia-activity-container .xlarge-push-9,#buddypress div.rtmedia-activity-container .xlarge-push-9{position:relative;left:75%;right:auto}.rtmedia-container .xlarge-pull-9,.rtmedia-activity-container .xlarge-pull-9,#buddypress div.rtmedia-activity-container .xlarge-pull-9{position:relative;right:75%;left:auto}.rtmedia-container .xlarge-push-10,.rtmedia-activity-container .xlarge-push-10,#buddypress div.rtmedia-activity-container .xlarge-push-10{position:relative;left:83.33333%;right:auto}.rtmedia-container .xlarge-pull-10,.rtmedia-activity-container .xlarge-pull-10,#buddypress div.rtmedia-activity-container .xlarge-pull-10{position:relative;right:83.33333%;left:auto}.rtmedia-container .xlarge-push-11,.rtmedia-activity-container .xlarge-push-11,#buddypress div.rtmedia-activity-container .xlarge-push-11{position:relative;left:91.66667%;right:auto}.rtmedia-container .xlarge-pull-11,.rtmedia-activity-container .xlarge-pull-11,#buddypress div.rtmedia-activity-container .xlarge-pull-11{position:relative;right:91.66667%;left:auto}.rtmedia-container .column,.rtmedia-activity-container .column,#buddypress div.rtmedia-activity-container .column,.rtmedia-container .columns,.rtmedia-activity-container .columns,#buddypress div.rtmedia-activity-container .columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.rtmedia-container .xlarge-1,.rtmedia-activity-container .xlarge-1,#buddypress div.rtmedia-activity-container .xlarge-1{position:relative;width:8.33333%}.rtmedia-container .xlarge-2,.rtmedia-activity-container .xlarge-2,#buddypress div.rtmedia-activity-container .xlarge-2{position:relative;width:16.66667%}.rtmedia-container .xlarge-3,.rtmedia-activity-container .xlarge-3,#buddypress div.rtmedia-activity-container .xlarge-3{position:relative;width:25%}.rtmedia-container .xlarge-4,.rtmedia-activity-container .xlarge-4,#buddypress div.rtmedia-activity-container .xlarge-4{position:relative;width:33.33333%}.rtmedia-container .xlarge-5,.rtmedia-activity-container .xlarge-5,#buddypress div.rtmedia-activity-container .xlarge-5{position:relative;width:41.66667%}.rtmedia-container .xlarge-6,.rtmedia-activity-container .xlarge-6,#buddypress div.rtmedia-activity-container .xlarge-6{position:relative;width:50%}.rtmedia-container .xlarge-7,.rtmedia-activity-container .xlarge-7,#buddypress div.rtmedia-activity-container .xlarge-7{position:relative;width:58.33333%}.rtmedia-container .xlarge-8,.rtmedia-activity-container .xlarge-8,#buddypress div.rtmedia-activity-container .xlarge-8{position:relative;width:66.66667%}.rtmedia-container .xlarge-9,.rtmedia-activity-container .xlarge-9,#buddypress div.rtmedia-activity-container .xlarge-9{position:relative;width:75%}.rtmedia-container .xlarge-10,.rtmedia-activity-container .xlarge-10,#buddypress div.rtmedia-activity-container .xlarge-10{position:relative;width:83.33333%}.rtmedia-container .xlarge-11,.rtmedia-activity-container .xlarge-11,#buddypress div.rtmedia-activity-container .xlarge-11{position:relative;width:91.66667%}.rtmedia-container .xlarge-12,.rtmedia-activity-container .xlarge-12,#buddypress div.rtmedia-activity-container .xlarge-12{position:relative;width:100%}.rtmedia-container .xlarge-offset-0,.rtmedia-activity-container .xlarge-offset-0,#buddypress div.rtmedia-activity-container .xlarge-offset-0{position:relative;margin-left:0%}.rtmedia-container .xlarge-offset-1,.rtmedia-activity-container .xlarge-offset-1,#buddypress div.rtmedia-activity-container .xlarge-offset-1{position:relative;margin-left:8.33333%}.rtmedia-container .xlarge-offset-2,.rtmedia-activity-container .xlarge-offset-2,#buddypress div.rtmedia-activity-container .xlarge-offset-2{position:relative;margin-left:16.66667%}.rtmedia-container .xlarge-offset-3,.rtmedia-activity-container .xlarge-offset-3,#buddypress div.rtmedia-activity-container .xlarge-offset-3{position:relative;margin-left:25%}.rtmedia-container .xlarge-offset-4,.rtmedia-activity-container .xlarge-offset-4,#buddypress div.rtmedia-activity-container .xlarge-offset-4{position:relative;margin-left:33.33333%}.rtmedia-container .xlarge-offset-5,.rtmedia-activity-container .xlarge-offset-5,#buddypress div.rtmedia-activity-container .xlarge-offset-5{position:relative;margin-left:41.66667%}.rtmedia-container .xlarge-offset-6,.rtmedia-activity-container .xlarge-offset-6,#buddypress div.rtmedia-activity-container .xlarge-offset-6{position:relative;margin-left:50%}.rtmedia-container .xlarge-offset-7,.rtmedia-activity-container .xlarge-offset-7,#buddypress div.rtmedia-activity-container .xlarge-offset-7{position:relative;margin-left:58.33333%}.rtmedia-container .xlarge-offset-8,.rtmedia-activity-container .xlarge-offset-8,#buddypress div.rtmedia-activity-container .xlarge-offset-8{position:relative;margin-left:66.66667%}.rtmedia-container .xlarge-offset-9,.rtmedia-activity-container .xlarge-offset-9,#buddypress div.rtmedia-activity-container .xlarge-offset-9{position:relative;margin-left:75%}.rtmedia-container .xlarge-offset-10,.rtmedia-activity-container .xlarge-offset-10,#buddypress div.rtmedia-activity-container .xlarge-offset-10{position:relative;margin-left:83.33333%}.rtmedia-container [class*="column"]+[class*="column"]:last-child,.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child{float:right}.rtmedia-container [class*="column"]+[class*="column"].end,.rtmedia-activity-container [class*="column"]+[class*="column"].end,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"].end{float:left}.rtmedia-container .column.xlarge-centered,.rtmedia-activity-container .column.xlarge-centered,#buddypress div.rtmedia-activity-container .column.xlarge-centered,.rtmedia-container .columns.xlarge-centered,.rtmedia-activity-container .columns.xlarge-centered,#buddypress div.rtmedia-activity-container .columns.xlarge-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.rtmedia-container .column.xlarge-uncentered,.rtmedia-activity-container .column.xlarge-uncentered,#buddypress div.rtmedia-activity-container .column.xlarge-uncentered,.rtmedia-container .columns.xlarge-uncentered,.rtmedia-activity-container .columns.xlarge-uncentered,#buddypress div.rtmedia-activity-container .columns.xlarge-uncentered{margin-left:0;margin-right:0;float:left !important}.rtmedia-container .column.xlarge-uncentered.opposite,.rtmedia-activity-container .column.xlarge-uncentered.opposite,#buddypress div.rtmedia-activity-container .column.xlarge-uncentered.opposite,.rtmedia-container .columns.xlarge-uncentered.opposite,.rtmedia-activity-container .columns.xlarge-uncentered.opposite,#buddypress div.rtmedia-activity-container .columns.xlarge-uncentered.opposite{float:right !important}}@media only screen and (min-width: 120.063em){.rtmedia-container .xxlarge-push-1,.rtmedia-activity-container .xxlarge-push-1,#buddypress div.rtmedia-activity-container .xxlarge-push-1{position:relative;left:8.33333%;right:auto}.rtmedia-container .xxlarge-pull-1,.rtmedia-activity-container .xxlarge-pull-1,#buddypress div.rtmedia-activity-container .xxlarge-pull-1{position:relative;right:8.33333%;left:auto}.rtmedia-container .xxlarge-push-2,.rtmedia-activity-container .xxlarge-push-2,#buddypress div.rtmedia-activity-container .xxlarge-push-2{position:relative;left:16.66667%;right:auto}.rtmedia-container .xxlarge-pull-2,.rtmedia-activity-container .xxlarge-pull-2,#buddypress div.rtmedia-activity-container .xxlarge-pull-2{position:relative;right:16.66667%;left:auto}.rtmedia-container .xxlarge-push-3,.rtmedia-activity-container .xxlarge-push-3,#buddypress div.rtmedia-activity-container .xxlarge-push-3{position:relative;left:25%;right:auto}.rtmedia-container .xxlarge-pull-3,.rtmedia-activity-container .xxlarge-pull-3,#buddypress div.rtmedia-activity-container .xxlarge-pull-3{position:relative;right:25%;left:auto}.rtmedia-container .xxlarge-push-4,.rtmedia-activity-container .xxlarge-push-4,#buddypress div.rtmedia-activity-container .xxlarge-push-4{position:relative;left:33.33333%;right:auto}.rtmedia-container .xxlarge-pull-4,.rtmedia-activity-container .xxlarge-pull-4,#buddypress div.rtmedia-activity-container .xxlarge-pull-4{position:relative;right:33.33333%;left:auto}.rtmedia-container .xxlarge-push-5,.rtmedia-activity-container .xxlarge-push-5,#buddypress div.rtmedia-activity-container .xxlarge-push-5{position:relative;left:41.66667%;right:auto}.rtmedia-container .xxlarge-pull-5,.rtmedia-activity-container .xxlarge-pull-5,#buddypress div.rtmedia-activity-container .xxlarge-pull-5{position:relative;right:41.66667%;left:auto}.rtmedia-container .xxlarge-push-6,.rtmedia-activity-container .xxlarge-push-6,#buddypress div.rtmedia-activity-container .xxlarge-push-6{position:relative;left:50%;right:auto}.rtmedia-container .xxlarge-pull-6,.rtmedia-activity-container .xxlarge-pull-6,#buddypress div.rtmedia-activity-container .xxlarge-pull-6{position:relative;right:50%;left:auto}.rtmedia-container .xxlarge-push-7,.rtmedia-activity-container .xxlarge-push-7,#buddypress div.rtmedia-activity-container .xxlarge-push-7{position:relative;left:58.33333%;right:auto}.rtmedia-container .xxlarge-pull-7,.rtmedia-activity-container .xxlarge-pull-7,#buddypress div.rtmedia-activity-container .xxlarge-pull-7{position:relative;right:58.33333%;left:auto}.rtmedia-container .xxlarge-push-8,.rtmedia-activity-container .xxlarge-push-8,#buddypress div.rtmedia-activity-container .xxlarge-push-8{position:relative;left:66.66667%;right:auto}.rtmedia-container .xxlarge-pull-8,.rtmedia-activity-container .xxlarge-pull-8,#buddypress div.rtmedia-activity-container .xxlarge-pull-8{position:relative;right:66.66667%;left:auto}.rtmedia-container .xxlarge-push-9,.rtmedia-activity-container .xxlarge-push-9,#buddypress div.rtmedia-activity-container .xxlarge-push-9{position:relative;left:75%;right:auto}.rtmedia-container .xxlarge-pull-9,.rtmedia-activity-container .xxlarge-pull-9,#buddypress div.rtmedia-activity-container .xxlarge-pull-9{position:relative;right:75%;left:auto}.rtmedia-container .xxlarge-push-10,.rtmedia-activity-container .xxlarge-push-10,#buddypress div.rtmedia-activity-container .xxlarge-push-10{position:relative;left:83.33333%;right:auto}.rtmedia-container .xxlarge-pull-10,.rtmedia-activity-container .xxlarge-pull-10,#buddypress div.rtmedia-activity-container .xxlarge-pull-10{position:relative;right:83.33333%;left:auto}.rtmedia-container .xxlarge-push-11,.rtmedia-activity-container .xxlarge-push-11,#buddypress div.rtmedia-activity-container .xxlarge-push-11{position:relative;left:91.66667%;right:auto}.rtmedia-container .xxlarge-pull-11,.rtmedia-activity-container .xxlarge-pull-11,#buddypress div.rtmedia-activity-container .xxlarge-pull-11{position:relative;right:91.66667%;left:auto}.rtmedia-container .column,.rtmedia-activity-container .column,#buddypress div.rtmedia-activity-container .column,.rtmedia-container .columns,.rtmedia-activity-container .columns,#buddypress div.rtmedia-activity-container .columns{position:relative;padding-left:0.9375rem;padding-right:0.9375rem;float:left}.rtmedia-container .xxlarge-1,.rtmedia-activity-container .xxlarge-1,#buddypress div.rtmedia-activity-container .xxlarge-1{position:relative;width:8.33333%}.rtmedia-container .xxlarge-2,.rtmedia-activity-container .xxlarge-2,#buddypress div.rtmedia-activity-container .xxlarge-2{position:relative;width:16.66667%}.rtmedia-container .xxlarge-3,.rtmedia-activity-container .xxlarge-3,#buddypress div.rtmedia-activity-container .xxlarge-3{position:relative;width:25%}.rtmedia-container .xxlarge-4,.rtmedia-activity-container .xxlarge-4,#buddypress div.rtmedia-activity-container .xxlarge-4{position:relative;width:33.33333%}.rtmedia-container .xxlarge-5,.rtmedia-activity-container .xxlarge-5,#buddypress div.rtmedia-activity-container .xxlarge-5{position:relative;width:41.66667%}.rtmedia-container .xxlarge-6,.rtmedia-activity-container .xxlarge-6,#buddypress div.rtmedia-activity-container .xxlarge-6{position:relative;width:50%}.rtmedia-container .xxlarge-7,.rtmedia-activity-container .xxlarge-7,#buddypress div.rtmedia-activity-container .xxlarge-7{position:relative;width:58.33333%}.rtmedia-container .xxlarge-8,.rtmedia-activity-container .xxlarge-8,#buddypress div.rtmedia-activity-container .xxlarge-8{position:relative;width:66.66667%}.rtmedia-container .xxlarge-9,.rtmedia-activity-container .xxlarge-9,#buddypress div.rtmedia-activity-container .xxlarge-9{position:relative;width:75%}.rtmedia-container .xxlarge-10,.rtmedia-activity-container .xxlarge-10,#buddypress div.rtmedia-activity-container .xxlarge-10{position:relative;width:83.33333%}.rtmedia-container .xxlarge-11,.rtmedia-activity-container .xxlarge-11,#buddypress div.rtmedia-activity-container .xxlarge-11{position:relative;width:91.66667%}.rtmedia-container .xxlarge-12,.rtmedia-activity-container .xxlarge-12,#buddypress div.rtmedia-activity-container .xxlarge-12{position:relative;width:100%}.rtmedia-container .xxlarge-offset-0,.rtmedia-activity-container .xxlarge-offset-0,#buddypress div.rtmedia-activity-container .xxlarge-offset-0{position:relative;margin-left:0%}.rtmedia-container .xxlarge-offset-1,.rtmedia-activity-container .xxlarge-offset-1,#buddypress div.rtmedia-activity-container .xxlarge-offset-1{position:relative;margin-left:8.33333%}.rtmedia-container .xxlarge-offset-2,.rtmedia-activity-container .xxlarge-offset-2,#buddypress div.rtmedia-activity-container .xxlarge-offset-2{position:relative;margin-left:16.66667%}.rtmedia-container .xxlarge-offset-3,.rtmedia-activity-container .xxlarge-offset-3,#buddypress div.rtmedia-activity-container .xxlarge-offset-3{position:relative;margin-left:25%}.rtmedia-container .xxlarge-offset-4,.rtmedia-activity-container .xxlarge-offset-4,#buddypress div.rtmedia-activity-container .xxlarge-offset-4{position:relative;margin-left:33.33333%}.rtmedia-container .xxlarge-offset-5,.rtmedia-activity-container .xxlarge-offset-5,#buddypress div.rtmedia-activity-container .xxlarge-offset-5{position:relative;margin-left:41.66667%}.rtmedia-container .xxlarge-offset-6,.rtmedia-activity-container .xxlarge-offset-6,#buddypress div.rtmedia-activity-container .xxlarge-offset-6{position:relative;margin-left:50%}.rtmedia-container .xxlarge-offset-7,.rtmedia-activity-container .xxlarge-offset-7,#buddypress div.rtmedia-activity-container .xxlarge-offset-7{position:relative;margin-left:58.33333%}.rtmedia-container .xxlarge-offset-8,.rtmedia-activity-container .xxlarge-offset-8,#buddypress div.rtmedia-activity-container .xxlarge-offset-8{position:relative;margin-left:66.66667%}.rtmedia-container .xxlarge-offset-9,.rtmedia-activity-container .xxlarge-offset-9,#buddypress div.rtmedia-activity-container .xxlarge-offset-9{position:relative;margin-left:75%}.rtmedia-container .xxlarge-offset-10,.rtmedia-activity-container .xxlarge-offset-10,#buddypress div.rtmedia-activity-container .xxlarge-offset-10{position:relative;margin-left:83.33333%}.rtmedia-container [class*="column"]+[class*="column"]:last-child,.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"]:last-child{float:right}.rtmedia-container [class*="column"]+[class*="column"].end,.rtmedia-activity-container [class*="column"]+[class*="column"].end,#buddypress div.rtmedia-activity-container [class*="column"]+[class*="column"].end{float:left}.rtmedia-container .column.xxlarge-centered,.rtmedia-activity-container .column.xxlarge-centered,#buddypress div.rtmedia-activity-container .column.xxlarge-centered,.rtmedia-container .columns.xxlarge-centered,.rtmedia-activity-container .columns.xxlarge-centered,#buddypress div.rtmedia-activity-container .columns.xxlarge-centered{position:relative;margin-left:auto;margin-right:auto;float:none !important}.rtmedia-container .column.xxlarge-uncentered,.rtmedia-activity-container .column.xxlarge-uncentered,#buddypress div.rtmedia-activity-container .column.xxlarge-uncentered,.rtmedia-container .columns.xxlarge-uncentered,.rtmedia-activity-container .columns.xxlarge-uncentered,#buddypress div.rtmedia-activity-container .columns.xxlarge-uncentered{margin-left:0;margin-right:0;float:left !important}.rtmedia-container .column.xxlarge-uncentered.opposite,.rtmedia-activity-container .column.xxlarge-uncentered.opposite,#buddypress div.rtmedia-activity-container .column.xxlarge-uncentered.opposite,.rtmedia-container .columns.xxlarge-uncentered.opposite,.rtmedia-activity-container .columns.xxlarge-uncentered.opposite,#buddypress div.rtmedia-activity-container .columns.xxlarge-uncentered.opposite{float:right !important}}.rtmedia-container .show-for-small,.rtmedia-activity-container .show-for-small,#buddypress div.rtmedia-activity-container .show-for-small,.rtmedia-container .show-for-small-only,.rtmedia-activity-container .show-for-small-only,#buddypress div.rtmedia-activity-container .show-for-small-only,.rtmedia-container .show-for-medium-down,.rtmedia-activity-container .show-for-medium-down,#buddypress div.rtmedia-activity-container .show-for-medium-down,.rtmedia-container .show-for-large-down,.rtmedia-activity-container .show-for-large-down,#buddypress div.rtmedia-activity-container .show-for-large-down,.rtmedia-container .hide-for-medium,.rtmedia-activity-container .hide-for-medium,#buddypress div.rtmedia-activity-container .hide-for-medium,.rtmedia-container .hide-for-medium-up,.rtmedia-activity-container .hide-for-medium-up,#buddypress div.rtmedia-activity-container .hide-for-medium-up,.rtmedia-container .hide-for-medium-only,.rtmedia-activity-container .hide-for-medium-only,#buddypress div.rtmedia-activity-container .hide-for-medium-only,.rtmedia-container .hide-for-large,.rtmedia-activity-container .hide-for-large,#buddypress div.rtmedia-activity-container .hide-for-large,.rtmedia-container .hide-for-large-up,.rtmedia-activity-container .hide-for-large-up,#buddypress div.rtmedia-activity-container .hide-for-large-up,.rtmedia-container .hide-for-large-only,.rtmedia-activity-container .hide-for-large-only,#buddypress div.rtmedia-activity-container .hide-for-large-only,.rtmedia-container .hide-for-xlarge,.rtmedia-activity-container .hide-for-xlarge,#buddypress div.rtmedia-activity-container .hide-for-xlarge,.rtmedia-container .hide-for-xlarge-up,.rtmedia-activity-container .hide-for-xlarge-up,#buddypress div.rtmedia-activity-container .hide-for-xlarge-up,.rtmedia-container .hide-for-xlarge-only,.rtmedia-activity-container .hide-for-xlarge-only,#buddypress div.rtmedia-activity-container .hide-for-xlarge-only,.rtmedia-container .hide-for-xxlarge-up,.rtmedia-activity-container .hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-up,.rtmedia-container .hide-for-xxlarge-only,.rtmedia-activity-container .hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-only{display:inherit !important}.rtmedia-container .hide-for-small,.rtmedia-activity-container .hide-for-small,#buddypress div.rtmedia-activity-container .hide-for-small,.rtmedia-container .hide-for-small-only,.rtmedia-activity-container .hide-for-small-only,#buddypress div.rtmedia-activity-container .hide-for-small-only,.rtmedia-container .hide-for-medium-down,.rtmedia-activity-container .hide-for-medium-down,#buddypress div.rtmedia-activity-container .hide-for-medium-down,.rtmedia-container .show-for-medium,.rtmedia-activity-container .show-for-medium,#buddypress div.rtmedia-activity-container .show-for-medium,.rtmedia-container .show-for-medium-up,.rtmedia-activity-container .show-for-medium-up,#buddypress div.rtmedia-activity-container .show-for-medium-up,.rtmedia-container .show-for-medium-only,.rtmedia-activity-container .show-for-medium-only,#buddypress div.rtmedia-activity-container .show-for-medium-only,.rtmedia-container .hide-for-large-down,.rtmedia-activity-container .hide-for-large-down,#buddypress div.rtmedia-activity-container .hide-for-large-down,.rtmedia-container .show-for-large,.rtmedia-activity-container .show-for-large,#buddypress div.rtmedia-activity-container .show-for-large,.rtmedia-container .show-for-large-up,.rtmedia-activity-container .show-for-large-up,#buddypress div.rtmedia-activity-container .show-for-large-up,.rtmedia-container .show-for-large-only,.rtmedia-activity-container .show-for-large-only,#buddypress div.rtmedia-activity-container .show-for-large-only,.rtmedia-container .show-for-xlarge,.rtmedia-activity-container .show-for-xlarge,#buddypress div.rtmedia-activity-container .show-for-xlarge,.rtmedia-container .show-for-xlarge-up,.rtmedia-activity-container .show-for-xlarge-up,#buddypress div.rtmedia-activity-container .show-for-xlarge-up,.rtmedia-container .show-for-xlarge-only,.rtmedia-activity-container .show-for-xlarge-only,#buddypress div.rtmedia-activity-container .show-for-xlarge-only,.rtmedia-container .show-for-xxlarge-up,.rtmedia-activity-container .show-for-xxlarge-up,#buddypress div.rtmedia-activity-container .show-for-xxlarge-up,.rtmedia-container .show-for-xxlarge-only,.rtmedia-activity-container .show-for-xxlarge-only,#buddypress div.rtmedia-activity-container .show-for-xxlarge-only{display:none !important}.rtmedia-container table.show-for-small,.rtmedia-activity-container table.show-for-small,#buddypress div.rtmedia-activity-container table.show-for-small,.rtmedia-container table.show-for-small-only,.rtmedia-activity-container table.show-for-small-only,#buddypress div.rtmedia-activity-container table.show-for-small-only,.rtmedia-container table.show-for-medium-down,.rtmedia-activity-container table.show-for-medium-down,#buddypress div.rtmedia-activity-container table.show-for-medium-down,.rtmedia-container table.show-for-large-down,.rtmedia-activity-container table.show-for-large-down,#buddypress div.rtmedia-activity-container table.show-for-large-down,.rtmedia-container table.hide-for-medium,.rtmedia-activity-container table.hide-for-medium,#buddypress div.rtmedia-activity-container table.hide-for-medium,.rtmedia-container table.hide-for-medium-up,.rtmedia-activity-container table.hide-for-medium-up,#buddypress div.rtmedia-activity-container table.hide-for-medium-up,.rtmedia-container table.hide-for-medium-only,.rtmedia-activity-container table.hide-for-medium-only,#buddypress div.rtmedia-activity-container table.hide-for-medium-only,.rtmedia-container table.hide-for-large,.rtmedia-activity-container table.hide-for-large,#buddypress div.rtmedia-activity-container table.hide-for-large,.rtmedia-container table.hide-for-large-up,.rtmedia-activity-container table.hide-for-large-up,#buddypress div.rtmedia-activity-container table.hide-for-large-up,.rtmedia-container table.hide-for-large-only,.rtmedia-activity-container table.hide-for-large-only,#buddypress div.rtmedia-activity-container table.hide-for-large-only,.rtmedia-container table.hide-for-xlarge,.rtmedia-activity-container table.hide-for-xlarge,#buddypress div.rtmedia-activity-container table.hide-for-xlarge,.rtmedia-container table.hide-for-xlarge-up,.rtmedia-activity-container table.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container table.hide-for-xlarge-up,.rtmedia-container table.hide-for-xlarge-only,.rtmedia-activity-container table.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container table.hide-for-xlarge-only,.rtmedia-container table.hide-for-xxlarge-up,.rtmedia-activity-container table.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container table.hide-for-xxlarge-up,.rtmedia-container table.hide-for-xxlarge-only,.rtmedia-activity-container table.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container table.hide-for-xxlarge-only{display:table}.rtmedia-container thead.show-for-small,.rtmedia-activity-container thead.show-for-small,#buddypress div.rtmedia-activity-container thead.show-for-small,.rtmedia-container thead.show-for-small-only,.rtmedia-activity-container thead.show-for-small-only,#buddypress div.rtmedia-activity-container thead.show-for-small-only,.rtmedia-container thead.show-for-medium-down,.rtmedia-activity-container thead.show-for-medium-down,#buddypress div.rtmedia-activity-container thead.show-for-medium-down,.rtmedia-container thead.show-for-large-down,.rtmedia-activity-container thead.show-for-large-down,#buddypress div.rtmedia-activity-container thead.show-for-large-down,.rtmedia-container thead.hide-for-medium,.rtmedia-activity-container thead.hide-for-medium,#buddypress div.rtmedia-activity-container thead.hide-for-medium,.rtmedia-container thead.hide-for-medium-up,.rtmedia-activity-container thead.hide-for-medium-up,#buddypress div.rtmedia-activity-container thead.hide-for-medium-up,.rtmedia-container thead.hide-for-medium-only,.rtmedia-activity-container thead.hide-for-medium-only,#buddypress div.rtmedia-activity-container thead.hide-for-medium-only,.rtmedia-container thead.hide-for-large,.rtmedia-activity-container thead.hide-for-large,#buddypress div.rtmedia-activity-container thead.hide-for-large,.rtmedia-container thead.hide-for-large-up,.rtmedia-activity-container thead.hide-for-large-up,#buddypress div.rtmedia-activity-container thead.hide-for-large-up,.rtmedia-container thead.hide-for-large-only,.rtmedia-activity-container thead.hide-for-large-only,#buddypress div.rtmedia-activity-container thead.hide-for-large-only,.rtmedia-container thead.hide-for-xlarge,.rtmedia-activity-container thead.hide-for-xlarge,#buddypress div.rtmedia-activity-container thead.hide-for-xlarge,.rtmedia-container thead.hide-for-xlarge-up,.rtmedia-activity-container thead.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container thead.hide-for-xlarge-up,.rtmedia-container thead.hide-for-xlarge-only,.rtmedia-activity-container thead.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container thead.hide-for-xlarge-only,.rtmedia-container thead.hide-for-xxlarge-up,.rtmedia-activity-container thead.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container thead.hide-for-xxlarge-up,.rtmedia-container thead.hide-for-xxlarge-only,.rtmedia-activity-container thead.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container thead.hide-for-xxlarge-only{display:table-header-group !important}.rtmedia-container tbody.show-for-small,.rtmedia-activity-container tbody.show-for-small,#buddypress div.rtmedia-activity-container tbody.show-for-small,.rtmedia-container tbody.show-for-small-only,.rtmedia-activity-container tbody.show-for-small-only,#buddypress div.rtmedia-activity-container tbody.show-for-small-only,.rtmedia-container tbody.show-for-medium-down,.rtmedia-activity-container tbody.show-for-medium-down,#buddypress div.rtmedia-activity-container tbody.show-for-medium-down,.rtmedia-container tbody.show-for-large-down,.rtmedia-activity-container tbody.show-for-large-down,#buddypress div.rtmedia-activity-container tbody.show-for-large-down,.rtmedia-container tbody.hide-for-medium,.rtmedia-activity-container tbody.hide-for-medium,#buddypress div.rtmedia-activity-container tbody.hide-for-medium,.rtmedia-container tbody.hide-for-medium-up,.rtmedia-activity-container tbody.hide-for-medium-up,#buddypress div.rtmedia-activity-container tbody.hide-for-medium-up,.rtmedia-container tbody.hide-for-medium-only,.rtmedia-activity-container tbody.hide-for-medium-only,#buddypress div.rtmedia-activity-container tbody.hide-for-medium-only,.rtmedia-container tbody.hide-for-large,.rtmedia-activity-container tbody.hide-for-large,#buddypress div.rtmedia-activity-container tbody.hide-for-large,.rtmedia-container tbody.hide-for-large-up,.rtmedia-activity-container tbody.hide-for-large-up,#buddypress div.rtmedia-activity-container tbody.hide-for-large-up,.rtmedia-container tbody.hide-for-large-only,.rtmedia-activity-container tbody.hide-for-large-only,#buddypress div.rtmedia-activity-container tbody.hide-for-large-only,.rtmedia-container tbody.hide-for-xlarge,.rtmedia-activity-container tbody.hide-for-xlarge,#buddypress div.rtmedia-activity-container tbody.hide-for-xlarge,.rtmedia-container tbody.hide-for-xlarge-up,.rtmedia-activity-container tbody.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container tbody.hide-for-xlarge-up,.rtmedia-container tbody.hide-for-xlarge-only,.rtmedia-activity-container tbody.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container tbody.hide-for-xlarge-only,.rtmedia-container tbody.hide-for-xxlarge-up,.rtmedia-activity-container tbody.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container tbody.hide-for-xxlarge-up,.rtmedia-container tbody.hide-for-xxlarge-only,.rtmedia-activity-container tbody.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container tbody.hide-for-xxlarge-only{display:table-row-group !important}.rtmedia-container tr.show-for-small,.rtmedia-activity-container tr.show-for-small,#buddypress div.rtmedia-activity-container tr.show-for-small,.rtmedia-container tr.show-for-small-only,.rtmedia-activity-container tr.show-for-small-only,#buddypress div.rtmedia-activity-container tr.show-for-small-only,.rtmedia-container tr.show-for-medium-down,.rtmedia-activity-container tr.show-for-medium-down,#buddypress div.rtmedia-activity-container tr.show-for-medium-down,.rtmedia-container tr.show-for-large-down,.rtmedia-activity-container tr.show-for-large-down,#buddypress div.rtmedia-activity-container tr.show-for-large-down,.rtmedia-container tr.hide-for-medium,.rtmedia-activity-container tr.hide-for-medium,#buddypress div.rtmedia-activity-container tr.hide-for-medium,.rtmedia-container tr.hide-for-medium-up,.rtmedia-activity-container tr.hide-for-medium-up,#buddypress div.rtmedia-activity-container tr.hide-for-medium-up,.rtmedia-container tr.hide-for-medium-only,.rtmedia-activity-container tr.hide-for-medium-only,#buddypress div.rtmedia-activity-container tr.hide-for-medium-only,.rtmedia-container tr.hide-for-large,.rtmedia-activity-container tr.hide-for-large,#buddypress div.rtmedia-activity-container tr.hide-for-large,.rtmedia-container tr.hide-for-large-up,.rtmedia-activity-container tr.hide-for-large-up,#buddypress div.rtmedia-activity-container tr.hide-for-large-up,.rtmedia-container tr.hide-for-large-only,.rtmedia-activity-container tr.hide-for-large-only,#buddypress div.rtmedia-activity-container tr.hide-for-large-only,.rtmedia-container tr.hide-for-xlarge,.rtmedia-activity-container tr.hide-for-xlarge,#buddypress div.rtmedia-activity-container tr.hide-for-xlarge,.rtmedia-container tr.hide-for-xlarge-up,.rtmedia-activity-container tr.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container tr.hide-for-xlarge-up,.rtmedia-container tr.hide-for-xlarge-only,.rtmedia-activity-container tr.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container tr.hide-for-xlarge-only,.rtmedia-container tr.hide-for-xxlarge-up,.rtmedia-activity-container tr.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container tr.hide-for-xxlarge-up,.rtmedia-container tr.hide-for-xxlarge-only,.rtmedia-activity-container tr.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container tr.hide-for-xxlarge-only{display:table-row !important}.rtmedia-container td.show-for-small,.rtmedia-activity-container td.show-for-small,#buddypress div.rtmedia-activity-container td.show-for-small,.rtmedia-container td.show-for-small-only,.rtmedia-activity-container td.show-for-small-only,#buddypress div.rtmedia-activity-container td.show-for-small-only,.rtmedia-container td.show-for-medium-down .rtmedia-container td.show-for-large-down,.rtmedia-activity-container td.show-for-medium-down .rtmedia-container td.show-for-large-down,#buddypress div.rtmedia-activity-container td.show-for-medium-down .rtmedia-container td.show-for-large-down,.rtmedia-container td.show-for-medium-down .rtmedia-activity-container td.show-for-large-down,.rtmedia-activity-container td.show-for-medium-down .rtmedia-activity-container td.show-for-large-down,#buddypress div.rtmedia-activity-container td.show-for-medium-down .rtmedia-activity-container td.show-for-large-down,.rtmedia-container td.show-for-medium-down #buddypress div.rtmedia-activity-container td.show-for-large-down,#buddypress .rtmedia-container td.show-for-medium-down div.rtmedia-activity-container td.show-for-large-down,.rtmedia-activity-container td.show-for-medium-down #buddypress div.rtmedia-activity-container td.show-for-large-down,#buddypress .rtmedia-activity-container td.show-for-medium-down div.rtmedia-activity-container td.show-for-large-down,.rtmedia-container td.hide-for-medium,.rtmedia-activity-container td.hide-for-medium,#buddypress div.rtmedia-activity-container td.hide-for-medium,.rtmedia-container td.hide-for-medium-up,.rtmedia-activity-container td.hide-for-medium-up,#buddypress div.rtmedia-activity-container td.hide-for-medium-up,.rtmedia-container td.hide-for-large,.rtmedia-activity-container td.hide-for-large,#buddypress div.rtmedia-activity-container td.hide-for-large,.rtmedia-container td.hide-for-large-up,.rtmedia-activity-container td.hide-for-large-up,#buddypress div.rtmedia-activity-container td.hide-for-large-up,.rtmedia-container td.hide-for-xlarge .rtmedia-container td.hide-for-xlarge-up,.rtmedia-activity-container td.hide-for-xlarge .rtmedia-container td.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container td.hide-for-xlarge .rtmedia-container td.hide-for-xlarge-up,.rtmedia-container td.hide-for-xlarge .rtmedia-activity-container td.hide-for-xlarge-up,.rtmedia-activity-container td.hide-for-xlarge .rtmedia-activity-container td.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container td.hide-for-xlarge .rtmedia-activity-container td.hide-for-xlarge-up,.rtmedia-container td.hide-for-xlarge #buddypress div.rtmedia-activity-container td.hide-for-xlarge-up,#buddypress .rtmedia-container td.hide-for-xlarge div.rtmedia-activity-container td.hide-for-xlarge-up,.rtmedia-activity-container td.hide-for-xlarge #buddypress div.rtmedia-activity-container td.hide-for-xlarge-up,#buddypress .rtmedia-activity-container td.hide-for-xlarge div.rtmedia-activity-container td.hide-for-xlarge-up,.rtmedia-container td.hide-for-xxlarge-up,.rtmedia-activity-container td.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container td.hide-for-xxlarge-up,.rtmedia-container th.show-for-small,.rtmedia-activity-container th.show-for-small,#buddypress div.rtmedia-activity-container th.show-for-small,.rtmedia-container th.show-for-small-only,.rtmedia-activity-container th.show-for-small-only,#buddypress div.rtmedia-activity-container th.show-for-small-only,.rtmedia-container th.show-for-medium-down .rtmedia-container th.show-for-large-down,.rtmedia-activity-container th.show-for-medium-down .rtmedia-container th.show-for-large-down,#buddypress div.rtmedia-activity-container th.show-for-medium-down .rtmedia-container th.show-for-large-down,.rtmedia-container th.show-for-medium-down .rtmedia-activity-container th.show-for-large-down,.rtmedia-activity-container th.show-for-medium-down .rtmedia-activity-container th.show-for-large-down,#buddypress div.rtmedia-activity-container th.show-for-medium-down .rtmedia-activity-container th.show-for-large-down,.rtmedia-container th.show-for-medium-down #buddypress div.rtmedia-activity-container th.show-for-large-down,#buddypress .rtmedia-container th.show-for-medium-down div.rtmedia-activity-container th.show-for-large-down,.rtmedia-activity-container th.show-for-medium-down #buddypress div.rtmedia-activity-container th.show-for-large-down,#buddypress .rtmedia-activity-container th.show-for-medium-down div.rtmedia-activity-container th.show-for-large-down,.rtmedia-container th.hide-for-medium,.rtmedia-activity-container th.hide-for-medium,#buddypress div.rtmedia-activity-container th.hide-for-medium,.rtmedia-container th.hide-for-medium-up,.rtmedia-activity-container th.hide-for-medium-up,#buddypress div.rtmedia-activity-container th.hide-for-medium-up,.rtmedia-container th.hide-for-large,.rtmedia-activity-container th.hide-for-large,#buddypress div.rtmedia-activity-container th.hide-for-large,.rtmedia-container th.hide-for-large-up,.rtmedia-activity-container th.hide-for-large-up,#buddypress div.rtmedia-activity-container th.hide-for-large-up,.rtmedia-container th.hide-for-xlarge .rtmedia-container th.hide-for-xlarge-up,.rtmedia-activity-container th.hide-for-xlarge .rtmedia-container th.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container th.hide-for-xlarge .rtmedia-container th.hide-for-xlarge-up,.rtmedia-container th.hide-for-xlarge .rtmedia-activity-container th.hide-for-xlarge-up,.rtmedia-activity-container th.hide-for-xlarge .rtmedia-activity-container th.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container th.hide-for-xlarge .rtmedia-activity-container th.hide-for-xlarge-up,.rtmedia-container th.hide-for-xlarge #buddypress div.rtmedia-activity-container th.hide-for-xlarge-up,#buddypress .rtmedia-container th.hide-for-xlarge div.rtmedia-activity-container th.hide-for-xlarge-up,.rtmedia-activity-container th.hide-for-xlarge #buddypress div.rtmedia-activity-container th.hide-for-xlarge-up,#buddypress .rtmedia-activity-container th.hide-for-xlarge div.rtmedia-activity-container th.hide-for-xlarge-up,.rtmedia-container th.hide-for-xxlarge-up,.rtmedia-activity-container th.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container th.hide-for-xxlarge-up{display:table-cell !important}@media only screen and (min-width: 40.063em){.rtmedia-container .hide-for-small,.rtmedia-activity-container .hide-for-small,#buddypress div.rtmedia-activity-container .hide-for-small,.rtmedia-container .hide-for-small-only,.rtmedia-activity-container .hide-for-small-only,#buddypress div.rtmedia-activity-container .hide-for-small-only,.rtmedia-container .show-for-medium,.rtmedia-activity-container .show-for-medium,#buddypress div.rtmedia-activity-container .show-for-medium,.rtmedia-container .show-for-medium-down,.rtmedia-activity-container .show-for-medium-down,#buddypress div.rtmedia-activity-container .show-for-medium-down,.rtmedia-container .show-for-medium-up,.rtmedia-activity-container .show-for-medium-up,#buddypress div.rtmedia-activity-container .show-for-medium-up,.rtmedia-container .show-for-medium-only,.rtmedia-activity-container .show-for-medium-only,#buddypress div.rtmedia-activity-container .show-for-medium-only,.rtmedia-container .hide-for-large,.rtmedia-activity-container .hide-for-large,#buddypress div.rtmedia-activity-container .hide-for-large,.rtmedia-container .hide-for-large-up,.rtmedia-activity-container .hide-for-large-up,#buddypress div.rtmedia-activity-container .hide-for-large-up,.rtmedia-container .hide-for-large-only,.rtmedia-activity-container .hide-for-large-only,#buddypress div.rtmedia-activity-container .hide-for-large-only,.rtmedia-container .hide-for-xlarge,.rtmedia-activity-container .hide-for-xlarge,#buddypress div.rtmedia-activity-container .hide-for-xlarge,.rtmedia-container .hide-for-xlarge-up,.rtmedia-activity-container .hide-for-xlarge-up,#buddypress div.rtmedia-activity-container .hide-for-xlarge-up,.rtmedia-container .hide-for-xlarge-only,.rtmedia-activity-container .hide-for-xlarge-only,#buddypress div.rtmedia-activity-container .hide-for-xlarge-only,.rtmedia-container .hide-for-xxlarge-up,.rtmedia-activity-container .hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-up,.rtmedia-container .hide-for-xxlarge-only,.rtmedia-activity-container .hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-only{display:inherit !important}.rtmedia-container .show-for-small,.rtmedia-activity-container .show-for-small,#buddypress div.rtmedia-activity-container .show-for-small,.rtmedia-container .show-for-small-only,.rtmedia-activity-container .show-for-small-only,#buddypress div.rtmedia-activity-container .show-for-small-only,.rtmedia-container .hide-for-medium,.rtmedia-activity-container .hide-for-medium,#buddypress div.rtmedia-activity-container .hide-for-medium,.rtmedia-container .hide-for-medium-down,.rtmedia-activity-container .hide-for-medium-down,#buddypress div.rtmedia-activity-container .hide-for-medium-down,.rtmedia-container .hide-for-medium-up,.rtmedia-activity-container .hide-for-medium-up,#buddypress div.rtmedia-activity-container .hide-for-medium-up,.rtmedia-container .hide-for-medium-only,.rtmedia-activity-container .hide-for-medium-only,#buddypress div.rtmedia-activity-container .hide-for-medium-only,.rtmedia-container .hide-for-large-down,.rtmedia-activity-container .hide-for-large-down,#buddypress div.rtmedia-activity-container .hide-for-large-down,.rtmedia-container .show-for-large,.rtmedia-activity-container .show-for-large,#buddypress div.rtmedia-activity-container .show-for-large,.rtmedia-container .show-for-large-up,.rtmedia-activity-container .show-for-large-up,#buddypress div.rtmedia-activity-container .show-for-large-up,.rtmedia-container .show-for-large-only,.rtmedia-activity-container .show-for-large-only,#buddypress div.rtmedia-activity-container .show-for-large-only,.rtmedia-container .show-for-xlarge,.rtmedia-activity-container .show-for-xlarge,#buddypress div.rtmedia-activity-container .show-for-xlarge,.rtmedia-container .show-for-xlarge-up,.rtmedia-activity-container .show-for-xlarge-up,#buddypress div.rtmedia-activity-container .show-for-xlarge-up,.rtmedia-container .show-for-xlarge-only,.rtmedia-activity-container .show-for-xlarge-only,#buddypress div.rtmedia-activity-container .show-for-xlarge-only,.rtmedia-container .show-for-xxlarge-up,.rtmedia-activity-container .show-for-xxlarge-up,#buddypress div.rtmedia-activity-container .show-for-xxlarge-up,.rtmedia-container .show-for-xxlarge-only,.rtmedia-activity-container .show-for-xxlarge-only,#buddypress div.rtmedia-activity-container .show-for-xxlarge-only{display:none !important}.rtmedia-container table.hide-for-small,.rtmedia-activity-container table.hide-for-small,#buddypress div.rtmedia-activity-container table.hide-for-small,.rtmedia-container table.hide-for-small-only,.rtmedia-activity-container table.hide-for-small-only,#buddypress div.rtmedia-activity-container table.hide-for-small-only,.rtmedia-container table.show-for-medium,.rtmedia-activity-container table.show-for-medium,#buddypress div.rtmedia-activity-container table.show-for-medium,.rtmedia-container table.show-for-medium-down,.rtmedia-activity-container table.show-for-medium-down,#buddypress div.rtmedia-activity-container table.show-for-medium-down,.rtmedia-container table.show-for-medium-up,.rtmedia-activity-container table.show-for-medium-up,#buddypress div.rtmedia-activity-container table.show-for-medium-up,.rtmedia-container table.show-for-medium-only,.rtmedia-activity-container table.show-for-medium-only,#buddypress div.rtmedia-activity-container table.show-for-medium-only,.rtmedia-container table.hide-for-large,.rtmedia-activity-container table.hide-for-large,#buddypress div.rtmedia-activity-container table.hide-for-large,.rtmedia-container table.hide-for-large-up,.rtmedia-activity-container table.hide-for-large-up,#buddypress div.rtmedia-activity-container table.hide-for-large-up,.rtmedia-container table.hide-for-large-only,.rtmedia-activity-container table.hide-for-large-only,#buddypress div.rtmedia-activity-container table.hide-for-large-only,.rtmedia-container table.hide-for-xlarge,.rtmedia-activity-container table.hide-for-xlarge,#buddypress div.rtmedia-activity-container table.hide-for-xlarge,.rtmedia-container table.hide-for-xlarge-up,.rtmedia-activity-container table.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container table.hide-for-xlarge-up,.rtmedia-container table.hide-for-xlarge-only,.rtmedia-activity-container table.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container table.hide-for-xlarge-only,.rtmedia-container table.hide-for-xxlarge-up,.rtmedia-activity-container table.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container table.hide-for-xxlarge-up,.rtmedia-container table.hide-for-xxlarge-only,.rtmedia-activity-container table.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container table.hide-for-xxlarge-only{display:table}.rtmedia-container thead.hide-for-small,.rtmedia-activity-container thead.hide-for-small,#buddypress div.rtmedia-activity-container thead.hide-for-small,.rtmedia-container thead.hide-for-small-only,.rtmedia-activity-container thead.hide-for-small-only,#buddypress div.rtmedia-activity-container thead.hide-for-small-only,.rtmedia-container thead.show-for-medium,.rtmedia-activity-container thead.show-for-medium,#buddypress div.rtmedia-activity-container thead.show-for-medium,.rtmedia-container thead.show-for-medium-down,.rtmedia-activity-container thead.show-for-medium-down,#buddypress div.rtmedia-activity-container thead.show-for-medium-down,.rtmedia-container thead.show-for-medium-up,.rtmedia-activity-container thead.show-for-medium-up,#buddypress div.rtmedia-activity-container thead.show-for-medium-up,.rtmedia-container thead.show-for-medium-only,.rtmedia-activity-container thead.show-for-medium-only,#buddypress div.rtmedia-activity-container thead.show-for-medium-only,.rtmedia-container thead.hide-for-large,.rtmedia-activity-container thead.hide-for-large,#buddypress div.rtmedia-activity-container thead.hide-for-large,.rtmedia-container thead.hide-for-large-up,.rtmedia-activity-container thead.hide-for-large-up,#buddypress div.rtmedia-activity-container thead.hide-for-large-up,.rtmedia-container thead.hide-for-large-only,.rtmedia-activity-container thead.hide-for-large-only,#buddypress div.rtmedia-activity-container thead.hide-for-large-only,.rtmedia-container thead.hide-for-xlarge,.rtmedia-activity-container thead.hide-for-xlarge,#buddypress div.rtmedia-activity-container thead.hide-for-xlarge,.rtmedia-container thead.hide-for-xlarge-up,.rtmedia-activity-container thead.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container thead.hide-for-xlarge-up,.rtmedia-container thead.hide-for-xlarge-only,.rtmedia-activity-container thead.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container thead.hide-for-xlarge-only,.rtmedia-container thead.hide-for-xxlarge-up,.rtmedia-activity-container thead.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container thead.hide-for-xxlarge-up,.rtmedia-container thead.hide-for-xxlarge-only,.rtmedia-activity-container thead.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container thead.hide-for-xxlarge-only{display:table-header-group !important}.rtmedia-container tbody.hide-for-small,.rtmedia-activity-container tbody.hide-for-small,#buddypress div.rtmedia-activity-container tbody.hide-for-small,.rtmedia-container tbody.hide-for-small-only,.rtmedia-activity-container tbody.hide-for-small-only,#buddypress div.rtmedia-activity-container tbody.hide-for-small-only,.rtmedia-container tbody.show-for-medium,.rtmedia-activity-container tbody.show-for-medium,#buddypress div.rtmedia-activity-container tbody.show-for-medium,.rtmedia-container tbody.show-for-medium-down,.rtmedia-activity-container tbody.show-for-medium-down,#buddypress div.rtmedia-activity-container tbody.show-for-medium-down,.rtmedia-container tbody.show-for-medium-up,.rtmedia-activity-container tbody.show-for-medium-up,#buddypress div.rtmedia-activity-container tbody.show-for-medium-up,.rtmedia-container tbody.show-for-medium-only,.rtmedia-activity-container tbody.show-for-medium-only,#buddypress div.rtmedia-activity-container tbody.show-for-medium-only,.rtmedia-container tbody.hide-for-large,.rtmedia-activity-container tbody.hide-for-large,#buddypress div.rtmedia-activity-container tbody.hide-for-large,.rtmedia-container tbody.hide-for-large-up,.rtmedia-activity-container tbody.hide-for-large-up,#buddypress div.rtmedia-activity-container tbody.hide-for-large-up,.rtmedia-container tbody.hide-for-large-only,.rtmedia-activity-container tbody.hide-for-large-only,#buddypress div.rtmedia-activity-container tbody.hide-for-large-only,.rtmedia-container tbody.hide-for-xlarge,.rtmedia-activity-container tbody.hide-for-xlarge,#buddypress div.rtmedia-activity-container tbody.hide-for-xlarge,.rtmedia-container tbody.hide-for-xlarge-up,.rtmedia-activity-container tbody.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container tbody.hide-for-xlarge-up,.rtmedia-container tbody.hide-for-xlarge-only,.rtmedia-activity-container tbody.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container tbody.hide-for-xlarge-only,.rtmedia-container tbody.hide-for-xxlarge-up,.rtmedia-activity-container tbody.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container tbody.hide-for-xxlarge-up,.rtmedia-container tbody.hide-for-xxlarge-only,.rtmedia-activity-container tbody.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container tbody.hide-for-xxlarge-only{display:table-row-group !important}.rtmedia-container tr.hide-for-small,.rtmedia-activity-container tr.hide-for-small,#buddypress div.rtmedia-activity-container tr.hide-for-small,.rtmedia-container tr.hide-for-small-only,.rtmedia-activity-container tr.hide-for-small-only,#buddypress div.rtmedia-activity-container tr.hide-for-small-only,.rtmedia-container tr.show-for-medium,.rtmedia-activity-container tr.show-for-medium,#buddypress div.rtmedia-activity-container tr.show-for-medium,.rtmedia-container tr.show-for-medium-down,.rtmedia-activity-container tr.show-for-medium-down,#buddypress div.rtmedia-activity-container tr.show-for-medium-down,.rtmedia-container tr.show-for-medium-up,.rtmedia-activity-container tr.show-for-medium-up,#buddypress div.rtmedia-activity-container tr.show-for-medium-up,.rtmedia-container tr.show-for-medium-only,.rtmedia-activity-container tr.show-for-medium-only,#buddypress div.rtmedia-activity-container tr.show-for-medium-only,.rtmedia-container tr.hide-for-large,.rtmedia-activity-container tr.hide-for-large,#buddypress div.rtmedia-activity-container tr.hide-for-large,.rtmedia-container tr.hide-for-large-up,.rtmedia-activity-container tr.hide-for-large-up,#buddypress div.rtmedia-activity-container tr.hide-for-large-up,.rtmedia-container tr.hide-for-large-only,.rtmedia-activity-container tr.hide-for-large-only,#buddypress div.rtmedia-activity-container tr.hide-for-large-only,.rtmedia-container tr.hide-for-xlarge,.rtmedia-activity-container tr.hide-for-xlarge,#buddypress div.rtmedia-activity-container tr.hide-for-xlarge,.rtmedia-container tr.hide-for-xlarge-up,.rtmedia-activity-container tr.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container tr.hide-for-xlarge-up,.rtmedia-container tr.hide-for-xlarge-only,.rtmedia-activity-container tr.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container tr.hide-for-xlarge-only,.rtmedia-container tr.hide-for-xxlarge-up,.rtmedia-activity-container tr.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container tr.hide-for-xxlarge-up,.rtmedia-container tr.hide-for-xxlarge-only,.rtmedia-activity-container tr.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container tr.hide-for-xxlarge-only{display:table-row !important}.rtmedia-container td.hide-for-small,.rtmedia-activity-container td.hide-for-small,#buddypress div.rtmedia-activity-container td.hide-for-small,.rtmedia-container td.hide-for-small-only,.rtmedia-activity-container td.hide-for-small-only,#buddypress div.rtmedia-activity-container td.hide-for-small-only,.rtmedia-container td.show-for-medium,.rtmedia-activity-container td.show-for-medium,#buddypress div.rtmedia-activity-container td.show-for-medium,.rtmedia-container td.show-for-medium-down,.rtmedia-activity-container td.show-for-medium-down,#buddypress div.rtmedia-activity-container td.show-for-medium-down,.rtmedia-container td.show-for-medium-up,.rtmedia-activity-container td.show-for-medium-up,#buddypress div.rtmedia-activity-container td.show-for-medium-up,.rtmedia-container td.show-for-medium-only,.rtmedia-activity-container td.show-for-medium-only,#buddypress div.rtmedia-activity-container td.show-for-medium-only,.rtmedia-container td.hide-for-large,.rtmedia-activity-container td.hide-for-large,#buddypress div.rtmedia-activity-container td.hide-for-large,.rtmedia-container td.hide-for-large-up,.rtmedia-activity-container td.hide-for-large-up,#buddypress div.rtmedia-activity-container td.hide-for-large-up,.rtmedia-container td.hide-for-large-only,.rtmedia-activity-container td.hide-for-large-only,#buddypress div.rtmedia-activity-container td.hide-for-large-only,.rtmedia-container td.hide-for-xlarge,.rtmedia-activity-container td.hide-for-xlarge,#buddypress div.rtmedia-activity-container td.hide-for-xlarge,.rtmedia-container td.hide-for-xlarge-up,.rtmedia-activity-container td.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container td.hide-for-xlarge-up,.rtmedia-container td.hide-for-xlarge-only,.rtmedia-activity-container td.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container td.hide-for-xlarge-only,.rtmedia-container td.hide-for-xxlarge-up,.rtmedia-activity-container td.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container td.hide-for-xxlarge-up,.rtmedia-container td.hide-for-xxlarge-only,.rtmedia-activity-container td.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container td.hide-for-xxlarge-only,.rtmedia-container th.hide-for-small,.rtmedia-activity-container th.hide-for-small,#buddypress div.rtmedia-activity-container th.hide-for-small,.rtmedia-container th.hide-for-small-only,.rtmedia-activity-container th.hide-for-small-only,#buddypress div.rtmedia-activity-container th.hide-for-small-only,.rtmedia-container th.show-for-medium,.rtmedia-activity-container th.show-for-medium,#buddypress div.rtmedia-activity-container th.show-for-medium,.rtmedia-container th.show-for-medium-down,.rtmedia-activity-container th.show-for-medium-down,#buddypress div.rtmedia-activity-container th.show-for-medium-down,.rtmedia-container th.show-for-medium-up,.rtmedia-activity-container th.show-for-medium-up,#buddypress div.rtmedia-activity-container th.show-for-medium-up,.rtmedia-container th.show-for-medium-only,.rtmedia-activity-container th.show-for-medium-only,#buddypress div.rtmedia-activity-container th.show-for-medium-only,.rtmedia-container th.hide-for-large,.rtmedia-activity-container th.hide-for-large,#buddypress div.rtmedia-activity-container th.hide-for-large,.rtmedia-container th.hide-for-large-up,.rtmedia-activity-container th.hide-for-large-up,#buddypress div.rtmedia-activity-container th.hide-for-large-up,.rtmedia-container th.hide-for-large-only,.rtmedia-activity-container th.hide-for-large-only,#buddypress div.rtmedia-activity-container th.hide-for-large-only,.rtmedia-container th.hide-for-xlarge,.rtmedia-activity-container th.hide-for-xlarge,#buddypress div.rtmedia-activity-container th.hide-for-xlarge,.rtmedia-container th.hide-for-xlarge-up,.rtmedia-activity-container th.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container th.hide-for-xlarge-up,.rtmedia-container th.hide-for-xlarge-only,.rtmedia-activity-container th.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container th.hide-for-xlarge-only,.rtmedia-container th.hide-for-xxlarge-up,.rtmedia-activity-container th.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container th.hide-for-xxlarge-up,.rtmedia-container th.hide-for-xxlarge-only,.rtmedia-activity-container th.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container th.hide-for-xxlarge-only{display:table-cell !important}}@media only screen and (min-width: 64.063em){.rtmedia-container .hide-for-small,.rtmedia-activity-container .hide-for-small,#buddypress div.rtmedia-activity-container .hide-for-small,.rtmedia-container .hide-for-small-only,.rtmedia-activity-container .hide-for-small-only,#buddypress div.rtmedia-activity-container .hide-for-small-only,.rtmedia-container .hide-for-medium,.rtmedia-activity-container .hide-for-medium,#buddypress div.rtmedia-activity-container .hide-for-medium,.rtmedia-container .hide-for-medium-down,.rtmedia-activity-container .hide-for-medium-down,#buddypress div.rtmedia-activity-container .hide-for-medium-down,.rtmedia-container .hide-for-medium-only,.rtmedia-activity-container .hide-for-medium-only,#buddypress div.rtmedia-activity-container .hide-for-medium-only,.rtmedia-container .show-for-medium-up,.rtmedia-activity-container .show-for-medium-up,#buddypress div.rtmedia-activity-container .show-for-medium-up,.rtmedia-container .show-for-large,.rtmedia-activity-container .show-for-large,#buddypress div.rtmedia-activity-container .show-for-large,.rtmedia-container .show-for-large-up,.rtmedia-activity-container .show-for-large-up,#buddypress div.rtmedia-activity-container .show-for-large-up,.rtmedia-container .show-for-large-only,.rtmedia-activity-container .show-for-large-only,#buddypress div.rtmedia-activity-container .show-for-large-only,.rtmedia-container .hide-for-xlarge,.rtmedia-activity-container .hide-for-xlarge,#buddypress div.rtmedia-activity-container .hide-for-xlarge,.rtmedia-container .hide-for-xlarge-up,.rtmedia-activity-container .hide-for-xlarge-up,#buddypress div.rtmedia-activity-container .hide-for-xlarge-up,.rtmedia-container .hide-for-xlarge-only,.rtmedia-activity-container .hide-for-xlarge-only,#buddypress div.rtmedia-activity-container .hide-for-xlarge-only,.rtmedia-container .hide-for-xxlarge-up,.rtmedia-activity-container .hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-up,.rtmedia-container .hide-for-xxlarge-only,.rtmedia-activity-container .hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-only{display:inherit !important}.rtmedia-container .show-for-small-only,.rtmedia-activity-container .show-for-small-only,#buddypress div.rtmedia-activity-container .show-for-small-only,.rtmedia-container .show-for-medium,.rtmedia-activity-container .show-for-medium,#buddypress div.rtmedia-activity-container .show-for-medium,.rtmedia-container .show-for-medium-down,.rtmedia-activity-container .show-for-medium-down,#buddypress div.rtmedia-activity-container .show-for-medium-down,.rtmedia-container .show-for-medium-only,.rtmedia-activity-container .show-for-medium-only,#buddypress div.rtmedia-activity-container .show-for-medium-only,.rtmedia-container .hide-for-large,.rtmedia-activity-container .hide-for-large,#buddypress div.rtmedia-activity-container .hide-for-large,.rtmedia-container .hide-for-large-up,.rtmedia-activity-container .hide-for-large-up,#buddypress div.rtmedia-activity-container .hide-for-large-up,.rtmedia-container .hide-for-large-only,.rtmedia-activity-container .hide-for-large-only,#buddypress div.rtmedia-activity-container .hide-for-large-only,.rtmedia-container .show-for-xlarge,.rtmedia-activity-container .show-for-xlarge,#buddypress div.rtmedia-activity-container .show-for-xlarge,.rtmedia-container .show-for-xlarge-up,.rtmedia-activity-container .show-for-xlarge-up,#buddypress div.rtmedia-activity-container .show-for-xlarge-up,.rtmedia-container .show-for-xlarge-only,.rtmedia-activity-container .show-for-xlarge-only,#buddypress div.rtmedia-activity-container .show-for-xlarge-only,.rtmedia-container .show-for-xxlarge-up,.rtmedia-activity-container .show-for-xxlarge-up,#buddypress div.rtmedia-activity-container .show-for-xxlarge-up,.rtmedia-container .show-for-xxlarge-only,.rtmedia-activity-container .show-for-xxlarge-only,#buddypress div.rtmedia-activity-container .show-for-xxlarge-only{display:none !important}.rtmedia-container table.hide-for-small,.rtmedia-activity-container table.hide-for-small,#buddypress div.rtmedia-activity-container table.hide-for-small,.rtmedia-container table.hide-for-small-only,.rtmedia-activity-container table.hide-for-small-only,#buddypress div.rtmedia-activity-container table.hide-for-small-only,.rtmedia-container table.hide-for-medium,.rtmedia-activity-container table.hide-for-medium,#buddypress div.rtmedia-activity-container table.hide-for-medium,.rtmedia-container table.hide-for-medium-down,.rtmedia-activity-container table.hide-for-medium-down,#buddypress div.rtmedia-activity-container table.hide-for-medium-down,.rtmedia-container table.hide-for-medium-only,.rtmedia-activity-container table.hide-for-medium-only,#buddypress div.rtmedia-activity-container table.hide-for-medium-only,.rtmedia-container table.show-for-medium-up,.rtmedia-activity-container table.show-for-medium-up,#buddypress div.rtmedia-activity-container table.show-for-medium-up,.rtmedia-container table.show-for-large,.rtmedia-activity-container table.show-for-large,#buddypress div.rtmedia-activity-container table.show-for-large,.rtmedia-container table.show-for-large-up,.rtmedia-activity-container table.show-for-large-up,#buddypress div.rtmedia-activity-container table.show-for-large-up,.rtmedia-container table.show-for-large-only,.rtmedia-activity-container table.show-for-large-only,#buddypress div.rtmedia-activity-container table.show-for-large-only,.rtmedia-container table.hide-for-xlarge,.rtmedia-activity-container table.hide-for-xlarge,#buddypress div.rtmedia-activity-container table.hide-for-xlarge,.rtmedia-container table.hide-for-xlarge-up,.rtmedia-activity-container table.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container table.hide-for-xlarge-up,.rtmedia-container table.hide-for-xlarge-only,.rtmedia-activity-container table.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container table.hide-for-xlarge-only,.rtmedia-container table.hide-for-xxlarge-up,.rtmedia-activity-container table.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container table.hide-for-xxlarge-up,.rtmedia-container table.hide-for-xxlarge-only,.rtmedia-activity-container table.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container table.hide-for-xxlarge-only{display:table}.rtmedia-container thead.hide-for-small,.rtmedia-activity-container thead.hide-for-small,#buddypress div.rtmedia-activity-container thead.hide-for-small,.rtmedia-container thead.hide-for-small-only,.rtmedia-activity-container thead.hide-for-small-only,#buddypress div.rtmedia-activity-container thead.hide-for-small-only,.rtmedia-container thead.hide-for-medium,.rtmedia-activity-container thead.hide-for-medium,#buddypress div.rtmedia-activity-container thead.hide-for-medium,.rtmedia-container thead.hide-for-medium-down,.rtmedia-activity-container thead.hide-for-medium-down,#buddypress div.rtmedia-activity-container thead.hide-for-medium-down,.rtmedia-container thead.hide-for-medium-only,.rtmedia-activity-container thead.hide-for-medium-only,#buddypress div.rtmedia-activity-container thead.hide-for-medium-only,.rtmedia-container thead.show-for-medium-up,.rtmedia-activity-container thead.show-for-medium-up,#buddypress div.rtmedia-activity-container thead.show-for-medium-up,.rtmedia-container thead.show-for-large,.rtmedia-activity-container thead.show-for-large,#buddypress div.rtmedia-activity-container thead.show-for-large,.rtmedia-container thead.show-for-large-up,.rtmedia-activity-container thead.show-for-large-up,#buddypress div.rtmedia-activity-container thead.show-for-large-up,.rtmedia-container thead.show-for-large-only,.rtmedia-activity-container thead.show-for-large-only,#buddypress div.rtmedia-activity-container thead.show-for-large-only,.rtmedia-container thead.hide-for-xlarge,.rtmedia-activity-container thead.hide-for-xlarge,#buddypress div.rtmedia-activity-container thead.hide-for-xlarge,.rtmedia-container thead.hide-for-xlarge-up,.rtmedia-activity-container thead.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container thead.hide-for-xlarge-up,.rtmedia-container thead.hide-for-xlarge-only,.rtmedia-activity-container thead.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container thead.hide-for-xlarge-only,.rtmedia-container thead.hide-for-xxlarge-up,.rtmedia-activity-container thead.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container thead.hide-for-xxlarge-up,.rtmedia-container thead.hide-for-xxlarge-only,.rtmedia-activity-container thead.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container thead.hide-for-xxlarge-only{display:table-header-group !important}.rtmedia-container tbody.hide-for-small,.rtmedia-activity-container tbody.hide-for-small,#buddypress div.rtmedia-activity-container tbody.hide-for-small,.rtmedia-container tbody.hide-for-small-only,.rtmedia-activity-container tbody.hide-for-small-only,#buddypress div.rtmedia-activity-container tbody.hide-for-small-only,.rtmedia-container tbody.hide-for-medium,.rtmedia-activity-container tbody.hide-for-medium,#buddypress div.rtmedia-activity-container tbody.hide-for-medium,.rtmedia-container tbody.hide-for-medium-down,.rtmedia-activity-container tbody.hide-for-medium-down,#buddypress div.rtmedia-activity-container tbody.hide-for-medium-down,.rtmedia-container tbody.hide-for-medium-only,.rtmedia-activity-container tbody.hide-for-medium-only,#buddypress div.rtmedia-activity-container tbody.hide-for-medium-only,.rtmedia-container tbody.show-for-medium-up,.rtmedia-activity-container tbody.show-for-medium-up,#buddypress div.rtmedia-activity-container tbody.show-for-medium-up,.rtmedia-container tbody.show-for-large,.rtmedia-activity-container tbody.show-for-large,#buddypress div.rtmedia-activity-container tbody.show-for-large,.rtmedia-container tbody.show-for-large-up,.rtmedia-activity-container tbody.show-for-large-up,#buddypress div.rtmedia-activity-container tbody.show-for-large-up,.rtmedia-container tbody.show-for-large-only,.rtmedia-activity-container tbody.show-for-large-only,#buddypress div.rtmedia-activity-container tbody.show-for-large-only,.rtmedia-container tbody.hide-for-xlarge,.rtmedia-activity-container tbody.hide-for-xlarge,#buddypress div.rtmedia-activity-container tbody.hide-for-xlarge,.rtmedia-container tbody.hide-for-xlarge-up,.rtmedia-activity-container tbody.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container tbody.hide-for-xlarge-up,.rtmedia-container tbody.hide-for-xlarge-only,.rtmedia-activity-container tbody.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container tbody.hide-for-xlarge-only,.rtmedia-container tbody.hide-for-xxlarge-up,.rtmedia-activity-container tbody.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container tbody.hide-for-xxlarge-up,.rtmedia-container tbody.hide-for-xxlarge-only,.rtmedia-activity-container tbody.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container tbody.hide-for-xxlarge-only{display:table-row-group !important}.rtmedia-container tr.hide-for-small,.rtmedia-activity-container tr.hide-for-small,#buddypress div.rtmedia-activity-container tr.hide-for-small,.rtmedia-container tr.hide-for-small-only,.rtmedia-activity-container tr.hide-for-small-only,#buddypress div.rtmedia-activity-container tr.hide-for-small-only,.rtmedia-container tr.hide-for-medium,.rtmedia-activity-container tr.hide-for-medium,#buddypress div.rtmedia-activity-container tr.hide-for-medium,.rtmedia-container tr.hide-for-medium-down,.rtmedia-activity-container tr.hide-for-medium-down,#buddypress div.rtmedia-activity-container tr.hide-for-medium-down,.rtmedia-container tr.hide-for-medium-only,.rtmedia-activity-container tr.hide-for-medium-only,#buddypress div.rtmedia-activity-container tr.hide-for-medium-only,.rtmedia-container tr.show-for-medium-up,.rtmedia-activity-container tr.show-for-medium-up,#buddypress div.rtmedia-activity-container tr.show-for-medium-up,.rtmedia-container tr.show-for-large,.rtmedia-activity-container tr.show-for-large,#buddypress div.rtmedia-activity-container tr.show-for-large,.rtmedia-container tr.show-for-large-up,.rtmedia-activity-container tr.show-for-large-up,#buddypress div.rtmedia-activity-container tr.show-for-large-up,.rtmedia-container tr.show-for-large-only,.rtmedia-activity-container tr.show-for-large-only,#buddypress div.rtmedia-activity-container tr.show-for-large-only,.rtmedia-container tr.hide-for-xlarge,.rtmedia-activity-container tr.hide-for-xlarge,#buddypress div.rtmedia-activity-container tr.hide-for-xlarge,.rtmedia-container tr.hide-for-xlarge-up,.rtmedia-activity-container tr.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container tr.hide-for-xlarge-up,.rtmedia-container tr.hide-for-xlarge-only,.rtmedia-activity-container tr.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container tr.hide-for-xlarge-only,.rtmedia-container tr.hide-for-xxlarge-up,.rtmedia-activity-container tr.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container tr.hide-for-xxlarge-up,.rtmedia-container tr.hide-for-xxlarge-only,.rtmedia-activity-container tr.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container tr.hide-for-xxlarge-only{display:table-row !important}.rtmedia-container td.hide-for-small,.rtmedia-activity-container td.hide-for-small,#buddypress div.rtmedia-activity-container td.hide-for-small,.rtmedia-container td.hide-for-small-only,.rtmedia-activity-container td.hide-for-small-only,#buddypress div.rtmedia-activity-container td.hide-for-small-only,.rtmedia-container td.hide-for-medium,.rtmedia-activity-container td.hide-for-medium,#buddypress div.rtmedia-activity-container td.hide-for-medium,.rtmedia-container td.hide-for-medium-down,.rtmedia-activity-container td.hide-for-medium-down,#buddypress div.rtmedia-activity-container td.hide-for-medium-down,.rtmedia-container td.hide-for-medium-only,.rtmedia-activity-container td.hide-for-medium-only,#buddypress div.rtmedia-activity-container td.hide-for-medium-only,.rtmedia-container td.show-for-medium-up,.rtmedia-activity-container td.show-for-medium-up,#buddypress div.rtmedia-activity-container td.show-for-medium-up,.rtmedia-container td.show-for-large,.rtmedia-activity-container td.show-for-large,#buddypress div.rtmedia-activity-container td.show-for-large,.rtmedia-container td.show-for-large-up,.rtmedia-activity-container td.show-for-large-up,#buddypress div.rtmedia-activity-container td.show-for-large-up,.rtmedia-container td.show-for-large-only,.rtmedia-activity-container td.show-for-large-only,#buddypress div.rtmedia-activity-container td.show-for-large-only,.rtmedia-container td.hide-for-xlarge,.rtmedia-activity-container td.hide-for-xlarge,#buddypress div.rtmedia-activity-container td.hide-for-xlarge,.rtmedia-container td.hide-for-xlarge-up,.rtmedia-activity-container td.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container td.hide-for-xlarge-up,.rtmedia-container td.hide-for-xlarge-only,.rtmedia-activity-container td.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container td.hide-for-xlarge-only,.rtmedia-container td.hide-for-xxlarge-up,.rtmedia-activity-container td.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container td.hide-for-xxlarge-up,.rtmedia-container td.hide-for-xxlarge-only,.rtmedia-activity-container td.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container td.hide-for-xxlarge-only,.rtmedia-container th.hide-for-small,.rtmedia-activity-container th.hide-for-small,#buddypress div.rtmedia-activity-container th.hide-for-small,.rtmedia-container th.hide-for-small-only,.rtmedia-activity-container th.hide-for-small-only,#buddypress div.rtmedia-activity-container th.hide-for-small-only,.rtmedia-container th.hide-for-medium,.rtmedia-activity-container th.hide-for-medium,#buddypress div.rtmedia-activity-container th.hide-for-medium,.rtmedia-container th.hide-for-medium-down,.rtmedia-activity-container th.hide-for-medium-down,#buddypress div.rtmedia-activity-container th.hide-for-medium-down,.rtmedia-container th.hide-for-medium-only,.rtmedia-activity-container th.hide-for-medium-only,#buddypress div.rtmedia-activity-container th.hide-for-medium-only,.rtmedia-container th.show-for-medium-up,.rtmedia-activity-container th.show-for-medium-up,#buddypress div.rtmedia-activity-container th.show-for-medium-up,.rtmedia-container th.show-for-large,.rtmedia-activity-container th.show-for-large,#buddypress div.rtmedia-activity-container th.show-for-large,.rtmedia-container th.show-for-large-up,.rtmedia-activity-container th.show-for-large-up,#buddypress div.rtmedia-activity-container th.show-for-large-up,.rtmedia-container th.show-for-large-only,.rtmedia-activity-container th.show-for-large-only,#buddypress div.rtmedia-activity-container th.show-for-large-only,.rtmedia-container th.hide-for-xlarge,.rtmedia-activity-container th.hide-for-xlarge,#buddypress div.rtmedia-activity-container th.hide-for-xlarge,.rtmedia-container th.hide-for-xlarge-up,.rtmedia-activity-container th.hide-for-xlarge-up,#buddypress div.rtmedia-activity-container th.hide-for-xlarge-up,.rtmedia-container th.hide-for-xlarge-only,.rtmedia-activity-container th.hide-for-xlarge-only,#buddypress div.rtmedia-activity-container th.hide-for-xlarge-only,.rtmedia-container th.hide-for-xxlarge-up,.rtmedia-activity-container th.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container th.hide-for-xxlarge-up,.rtmedia-container th.hide-for-xxlarge-only,.rtmedia-activity-container th.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container th.hide-for-xxlarge-only{display:table-cell !important}}@media only screen and (min-width: 90.063em){.rtmedia-container .hide-for-small,.rtmedia-activity-container .hide-for-small,#buddypress div.rtmedia-activity-container .hide-for-small,.rtmedia-container .hide-for-small-only,.rtmedia-activity-container .hide-for-small-only,#buddypress div.rtmedia-activity-container .hide-for-small-only,.rtmedia-container .hide-for-medium,.rtmedia-activity-container .hide-for-medium,#buddypress div.rtmedia-activity-container .hide-for-medium,.rtmedia-container .hide-for-medium-down,.rtmedia-activity-container .hide-for-medium-down,#buddypress div.rtmedia-activity-container .hide-for-medium-down,.rtmedia-container .hide-for-medium-only,.rtmedia-activity-container .hide-for-medium-only,#buddypress div.rtmedia-activity-container .hide-for-medium-only,.rtmedia-container .show-for-medium-up,.rtmedia-activity-container .show-for-medium-up,#buddypress div.rtmedia-activity-container .show-for-medium-up,.rtmedia-container .show-for-large-up,.rtmedia-activity-container .show-for-large-up,#buddypress div.rtmedia-activity-container .show-for-large-up,.rtmedia-container .show-for-xlarge,.rtmedia-activity-container .show-for-xlarge,#buddypress div.rtmedia-activity-container .show-for-xlarge,.rtmedia-container .show-for-xlarge-up,.rtmedia-activity-container .show-for-xlarge-up,#buddypress div.rtmedia-activity-container .show-for-xlarge-up,.rtmedia-container .show-for-xlarge-only,.rtmedia-activity-container .show-for-xlarge-only,#buddypress div.rtmedia-activity-container .show-for-xlarge-only,.rtmedia-container .hide-for-xxlarge-up,.rtmedia-activity-container .hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-up,.rtmedia-container .hide-for-xxlarge-only,.rtmedia-activity-container .hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-only{display:inherit !important}.rtmedia-container .show-for-small-only,.rtmedia-activity-container .show-for-small-only,#buddypress div.rtmedia-activity-container .show-for-small-only,.rtmedia-container .show-for-medium,.rtmedia-activity-container .show-for-medium,#buddypress div.rtmedia-activity-container .show-for-medium,.rtmedia-container .show-for-medium-down,.rtmedia-activity-container .show-for-medium-down,#buddypress div.rtmedia-activity-container .show-for-medium-down,.rtmedia-container .show-for-medium-only,.rtmedia-activity-container .show-for-medium-only,#buddypress div.rtmedia-activity-container .show-for-medium-only,.rtmedia-container .show-for-large,.rtmedia-activity-container .show-for-large,#buddypress div.rtmedia-activity-container .show-for-large,.rtmedia-container .show-for-large-only,.rtmedia-activity-container .show-for-large-only,#buddypress div.rtmedia-activity-container .show-for-large-only,.rtmedia-container .show-for-large-down,.rtmedia-activity-container .show-for-large-down,#buddypress div.rtmedia-activity-container .show-for-large-down,.rtmedia-container .hide-for-xlarge,.rtmedia-activity-container .hide-for-xlarge,#buddypress div.rtmedia-activity-container .hide-for-xlarge,.rtmedia-container .hide-for-xlarge-up,.rtmedia-activity-container .hide-for-xlarge-up,#buddypress div.rtmedia-activity-container .hide-for-xlarge-up,.rtmedia-container .hide-for-xlarge-only,.rtmedia-activity-container .hide-for-xlarge-only,#buddypress div.rtmedia-activity-container .hide-for-xlarge-only,.rtmedia-container .show-for-xxlarge-up,.rtmedia-activity-container .show-for-xxlarge-up,#buddypress div.rtmedia-activity-container .show-for-xxlarge-up,.rtmedia-container .show-for-xxlarge-only,.rtmedia-activity-container .show-for-xxlarge-only,#buddypress div.rtmedia-activity-container .show-for-xxlarge-only{display:none !important}.rtmedia-container table.hide-for-small,.rtmedia-activity-container table.hide-for-small,#buddypress div.rtmedia-activity-container table.hide-for-small,.rtmedia-container table.hide-for-small-only,.rtmedia-activity-container table.hide-for-small-only,#buddypress div.rtmedia-activity-container table.hide-for-small-only,.rtmedia-container table.hide-for-medium,.rtmedia-activity-container table.hide-for-medium,#buddypress div.rtmedia-activity-container table.hide-for-medium,.rtmedia-container table.hide-for-medium-down,.rtmedia-activity-container table.hide-for-medium-down,#buddypress div.rtmedia-activity-container table.hide-for-medium-down,.rtmedia-container table.hide-for-medium-only,.rtmedia-activity-container table.hide-for-medium-only,#buddypress div.rtmedia-activity-container table.hide-for-medium-only,.rtmedia-container table.show-for-medium-up,.rtmedia-activity-container table.show-for-medium-up,#buddypress div.rtmedia-activity-container table.show-for-medium-up,.rtmedia-container table.show-for-large-up,.rtmedia-activity-container table.show-for-large-up,#buddypress div.rtmedia-activity-container table.show-for-large-up,.rtmedia-container table.show-for-xlarge,.rtmedia-activity-container table.show-for-xlarge,#buddypress div.rtmedia-activity-container table.show-for-xlarge,.rtmedia-container table.show-for-xlarge-up,.rtmedia-activity-container table.show-for-xlarge-up,#buddypress div.rtmedia-activity-container table.show-for-xlarge-up,.rtmedia-container table.show-for-xlarge-only,.rtmedia-activity-container table.show-for-xlarge-only,#buddypress div.rtmedia-activity-container table.show-for-xlarge-only,.rtmedia-container table.hide-for-xxlarge-up,.rtmedia-activity-container table.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container table.hide-for-xxlarge-up,.rtmedia-container table.hide-for-xxlarge-only,.rtmedia-activity-container table.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container table.hide-for-xxlarge-only{display:table}.rtmedia-container thead.hide-for-small,.rtmedia-activity-container thead.hide-for-small,#buddypress div.rtmedia-activity-container thead.hide-for-small,.rtmedia-container thead.hide-for-small-only,.rtmedia-activity-container thead.hide-for-small-only,#buddypress div.rtmedia-activity-container thead.hide-for-small-only,.rtmedia-container thead.hide-for-medium,.rtmedia-activity-container thead.hide-for-medium,#buddypress div.rtmedia-activity-container thead.hide-for-medium,.rtmedia-container thead.hide-for-medium-down,.rtmedia-activity-container thead.hide-for-medium-down,#buddypress div.rtmedia-activity-container thead.hide-for-medium-down,.rtmedia-container thead.hide-for-medium-only,.rtmedia-activity-container thead.hide-for-medium-only,#buddypress div.rtmedia-activity-container thead.hide-for-medium-only,.rtmedia-container thead.show-for-medium-up,.rtmedia-activity-container thead.show-for-medium-up,#buddypress div.rtmedia-activity-container thead.show-for-medium-up,.rtmedia-container thead.show-for-large-up,.rtmedia-activity-container thead.show-for-large-up,#buddypress div.rtmedia-activity-container thead.show-for-large-up,.rtmedia-container thead.show-for-xlarge,.rtmedia-activity-container thead.show-for-xlarge,#buddypress div.rtmedia-activity-container thead.show-for-xlarge,.rtmedia-container thead.show-for-xlarge-up,.rtmedia-activity-container thead.show-for-xlarge-up,#buddypress div.rtmedia-activity-container thead.show-for-xlarge-up,.rtmedia-container thead.show-for-xlarge-only,.rtmedia-activity-container thead.show-for-xlarge-only,#buddypress div.rtmedia-activity-container thead.show-for-xlarge-only,.rtmedia-container thead.hide-for-xxlarge-up,.rtmedia-activity-container thead.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container thead.hide-for-xxlarge-up,.rtmedia-container thead.hide-for-xxlarge-only,.rtmedia-activity-container thead.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container thead.hide-for-xxlarge-only{display:table-header-group !important}.rtmedia-container tbody.hide-for-small,.rtmedia-activity-container tbody.hide-for-small,#buddypress div.rtmedia-activity-container tbody.hide-for-small,.rtmedia-container tbody.hide-for-small-only,.rtmedia-activity-container tbody.hide-for-small-only,#buddypress div.rtmedia-activity-container tbody.hide-for-small-only,.rtmedia-container tbody.hide-for-medium,.rtmedia-activity-container tbody.hide-for-medium,#buddypress div.rtmedia-activity-container tbody.hide-for-medium,.rtmedia-container tbody.hide-for-medium-down,.rtmedia-activity-container tbody.hide-for-medium-down,#buddypress div.rtmedia-activity-container tbody.hide-for-medium-down,.rtmedia-container tbody.hide-for-medium-only,.rtmedia-activity-container tbody.hide-for-medium-only,#buddypress div.rtmedia-activity-container tbody.hide-for-medium-only,.rtmedia-container tbody.show-for-medium-up,.rtmedia-activity-container tbody.show-for-medium-up,#buddypress div.rtmedia-activity-container tbody.show-for-medium-up,.rtmedia-container tbody.show-for-large-up,.rtmedia-activity-container tbody.show-for-large-up,#buddypress div.rtmedia-activity-container tbody.show-for-large-up,.rtmedia-container tbody.show-for-xlarge,.rtmedia-activity-container tbody.show-for-xlarge,#buddypress div.rtmedia-activity-container tbody.show-for-xlarge,.rtmedia-container tbody.show-for-xlarge-up,.rtmedia-activity-container tbody.show-for-xlarge-up,#buddypress div.rtmedia-activity-container tbody.show-for-xlarge-up,.rtmedia-container tbody.show-for-xlarge-only,.rtmedia-activity-container tbody.show-for-xlarge-only,#buddypress div.rtmedia-activity-container tbody.show-for-xlarge-only,.rtmedia-container tbody.hide-for-xxlarge-up,.rtmedia-activity-container tbody.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container tbody.hide-for-xxlarge-up,.rtmedia-container tbody.hide-for-xxlarge-only,.rtmedia-activity-container tbody.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container tbody.hide-for-xxlarge-only{display:table-row-group !important}.rtmedia-container tr.hide-for-small,.rtmedia-activity-container tr.hide-for-small,#buddypress div.rtmedia-activity-container tr.hide-for-small,.rtmedia-container tr.hide-for-small-only,.rtmedia-activity-container tr.hide-for-small-only,#buddypress div.rtmedia-activity-container tr.hide-for-small-only,.rtmedia-container tr.hide-for-medium,.rtmedia-activity-container tr.hide-for-medium,#buddypress div.rtmedia-activity-container tr.hide-for-medium,.rtmedia-container tr.hide-for-medium-down,.rtmedia-activity-container tr.hide-for-medium-down,#buddypress div.rtmedia-activity-container tr.hide-for-medium-down,.rtmedia-container tr.hide-for-medium-only,.rtmedia-activity-container tr.hide-for-medium-only,#buddypress div.rtmedia-activity-container tr.hide-for-medium-only,.rtmedia-container tr.show-for-medium-up,.rtmedia-activity-container tr.show-for-medium-up,#buddypress div.rtmedia-activity-container tr.show-for-medium-up,.rtmedia-container tr.show-for-large-up,.rtmedia-activity-container tr.show-for-large-up,#buddypress div.rtmedia-activity-container tr.show-for-large-up,.rtmedia-container tr.show-for-xlarge,.rtmedia-activity-container tr.show-for-xlarge,#buddypress div.rtmedia-activity-container tr.show-for-xlarge,.rtmedia-container tr.show-for-xlarge-up,.rtmedia-activity-container tr.show-for-xlarge-up,#buddypress div.rtmedia-activity-container tr.show-for-xlarge-up,.rtmedia-container tr.show-for-xlarge-only,.rtmedia-activity-container tr.show-for-xlarge-only,#buddypress div.rtmedia-activity-container tr.show-for-xlarge-only,.rtmedia-container tr.hide-for-xxlarge-up,.rtmedia-activity-container tr.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container tr.hide-for-xxlarge-up,.rtmedia-container tr.hide-for-xxlarge-only,.rtmedia-activity-container tr.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container tr.hide-for-xxlarge-only{display:table-row !important}.rtmedia-container td.hide-for-small,.rtmedia-activity-container td.hide-for-small,#buddypress div.rtmedia-activity-container td.hide-for-small,.rtmedia-container td.hide-for-small-only,.rtmedia-activity-container td.hide-for-small-only,#buddypress div.rtmedia-activity-container td.hide-for-small-only,.rtmedia-container td.hide-for-medium,.rtmedia-activity-container td.hide-for-medium,#buddypress div.rtmedia-activity-container td.hide-for-medium,.rtmedia-container td.hide-for-medium-down,.rtmedia-activity-container td.hide-for-medium-down,#buddypress div.rtmedia-activity-container td.hide-for-medium-down,.rtmedia-container td.hide-for-medium-only,.rtmedia-activity-container td.hide-for-medium-only,#buddypress div.rtmedia-activity-container td.hide-for-medium-only,.rtmedia-container td.show-for-medium-up,.rtmedia-activity-container td.show-for-medium-up,#buddypress div.rtmedia-activity-container td.show-for-medium-up,.rtmedia-container td.show-for-large-up,.rtmedia-activity-container td.show-for-large-up,#buddypress div.rtmedia-activity-container td.show-for-large-up,.rtmedia-container td.show-for-xlarge,.rtmedia-activity-container td.show-for-xlarge,#buddypress div.rtmedia-activity-container td.show-for-xlarge,.rtmedia-container td.show-for-xlarge-up,.rtmedia-activity-container td.show-for-xlarge-up,#buddypress div.rtmedia-activity-container td.show-for-xlarge-up,.rtmedia-container td.show-for-xlarge-only,.rtmedia-activity-container td.show-for-xlarge-only,#buddypress div.rtmedia-activity-container td.show-for-xlarge-only,.rtmedia-container td.hide-for-xxlarge-up,.rtmedia-activity-container td.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container td.hide-for-xxlarge-up,.rtmedia-container td.hide-for-xxlarge-only,.rtmedia-activity-container td.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container td.hide-for-xxlarge-only,.rtmedia-container th.hide-for-small,.rtmedia-activity-container th.hide-for-small,#buddypress div.rtmedia-activity-container th.hide-for-small,.rtmedia-container th.hide-for-small-only,.rtmedia-activity-container th.hide-for-small-only,#buddypress div.rtmedia-activity-container th.hide-for-small-only,.rtmedia-container th.hide-for-medium,.rtmedia-activity-container th.hide-for-medium,#buddypress div.rtmedia-activity-container th.hide-for-medium,.rtmedia-container th.hide-for-medium-down,.rtmedia-activity-container th.hide-for-medium-down,#buddypress div.rtmedia-activity-container th.hide-for-medium-down,.rtmedia-container th.hide-for-medium-only,.rtmedia-activity-container th.hide-for-medium-only,#buddypress div.rtmedia-activity-container th.hide-for-medium-only,.rtmedia-container th.show-for-medium-up,.rtmedia-activity-container th.show-for-medium-up,#buddypress div.rtmedia-activity-container th.show-for-medium-up,.rtmedia-container th.show-for-large-up,.rtmedia-activity-container th.show-for-large-up,#buddypress div.rtmedia-activity-container th.show-for-large-up,.rtmedia-container th.show-for-xlarge,.rtmedia-activity-container th.show-for-xlarge,#buddypress div.rtmedia-activity-container th.show-for-xlarge,.rtmedia-container th.show-for-xlarge-up,.rtmedia-activity-container th.show-for-xlarge-up,#buddypress div.rtmedia-activity-container th.show-for-xlarge-up,.rtmedia-container th.show-for-xlarge-only,.rtmedia-activity-container th.show-for-xlarge-only,#buddypress div.rtmedia-activity-container th.show-for-xlarge-only,.rtmedia-container th.hide-for-xxlarge-up,.rtmedia-activity-container th.hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container th.hide-for-xxlarge-up,.rtmedia-container th.hide-for-xxlarge-only,.rtmedia-activity-container th.hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container th.hide-for-xxlarge-only{display:table-cell !important}}@media only screen and (min-width: 120.063em){.rtmedia-container .hide-for-small,.rtmedia-activity-container .hide-for-small,#buddypress div.rtmedia-activity-container .hide-for-small,.rtmedia-container .hide-for-small-only,.rtmedia-activity-container .hide-for-small-only,#buddypress div.rtmedia-activity-container .hide-for-small-only,.rtmedia-container .hide-for-medium,.rtmedia-activity-container .hide-for-medium,#buddypress div.rtmedia-activity-container .hide-for-medium,.rtmedia-container .hide-for-medium-down,.rtmedia-activity-container .hide-for-medium-down,#buddypress div.rtmedia-activity-container .hide-for-medium-down,.rtmedia-container .hide-for-medium-only,.rtmedia-activity-container .hide-for-medium-only,#buddypress div.rtmedia-activity-container .hide-for-medium-only,.rtmedia-container .show-for-medium-up,.rtmedia-activity-container .show-for-medium-up,#buddypress div.rtmedia-activity-container .show-for-medium-up,.rtmedia-container .show-for-large-up,.rtmedia-activity-container .show-for-large-up,#buddypress div.rtmedia-activity-container .show-for-large-up,.rtmedia-container .show-for-xlarge-up,.rtmedia-activity-container .show-for-xlarge-up,#buddypress div.rtmedia-activity-container .show-for-xlarge-up,.rtmedia-container .show-for-xxlarge-up,.rtmedia-activity-container .show-for-xxlarge-up,#buddypress div.rtmedia-activity-container .show-for-xxlarge-up,.rtmedia-container .show-for-xxlarge-only,.rtmedia-activity-container .show-for-xxlarge-only,#buddypress div.rtmedia-activity-container .show-for-xxlarge-only{display:inherit !important}.rtmedia-container .show-for-small-only,.rtmedia-activity-container .show-for-small-only,#buddypress div.rtmedia-activity-container .show-for-small-only,.rtmedia-container .show-for-medium,.rtmedia-activity-container .show-for-medium,#buddypress div.rtmedia-activity-container .show-for-medium,.rtmedia-container .show-for-medium-down,.rtmedia-activity-container .show-for-medium-down,#buddypress div.rtmedia-activity-container .show-for-medium-down,.rtmedia-container .show-for-medium-only,.rtmedia-activity-container .show-for-medium-only,#buddypress div.rtmedia-activity-container .show-for-medium-only,.rtmedia-container .show-for-large,.rtmedia-activity-container .show-for-large,#buddypress div.rtmedia-activity-container .show-for-large,.rtmedia-container .show-for-large-only,.rtmedia-activity-container .show-for-large-only,#buddypress div.rtmedia-activity-container .show-for-large-only,.rtmedia-container .show-for-large-down,.rtmedia-activity-container .show-for-large-down,#buddypress div.rtmedia-activity-container .show-for-large-down,.rtmedia-container .hide-for-xlarge,.rtmedia-activity-container .hide-for-xlarge,#buddypress div.rtmedia-activity-container .hide-for-xlarge,.rtmedia-container .show-for-xlarge-only,.rtmedia-activity-container .show-for-xlarge-only,#buddypress div.rtmedia-activity-container .show-for-xlarge-only,.rtmedia-container .hide-for-xxlarge-up,.rtmedia-activity-container .hide-for-xxlarge-up,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-up,.rtmedia-container .hide-for-xxlarge-only,.rtmedia-activity-container .hide-for-xxlarge-only,#buddypress div.rtmedia-activity-container .hide-for-xxlarge-only{display:none !important}.rtmedia-container table.hide-for-small,.rtmedia-activity-container table.hide-for-small,#buddypress div.rtmedia-activity-container table.hide-for-small,.rtmedia-container table.hide-for-small-only,.rtmedia-activity-container table.hide-for-small-only,#buddypress div.rtmedia-activity-container table.hide-for-small-only,.rtmedia-container table.hide-for-medium,.rtmedia-activity-container table.hide-for-medium,#buddypress div.rtmedia-activity-container table.hide-for-medium,.rtmedia-container table.hide-for-medium-down,.rtmedia-activity-container table.hide-for-medium-down,#buddypress div.rtmedia-activity-container table.hide-for-medium-down,.rtmedia-container table.hide-for-medium-only,.rtmedia-activity-container table.hide-for-medium-only,#buddypress div.rtmedia-activity-container table.hide-for-medium-only,.rtmedia-container table.show-for-medium-up,.rtmedia-activity-container table.show-for-medium-up,#buddypress div.rtmedia-activity-container table.show-for-medium-up,.rtmedia-container table.show-for-large-up,.rtmedia-activity-container table.show-for-large-up,#buddypress div.rtmedia-activity-container table.show-for-large-up,.rtmedia-container table.show-for-xlarge-up,.rtmedia-activity-container table.show-for-xlarge-up,#buddypress div.rtmedia-activity-container table.show-for-xlarge-up,.rtmedia-container table.show-for-xxlarge-up,.rtmedia-activity-container table.show-for-xxlarge-up,#buddypress div.rtmedia-activity-container table.show-for-xxlarge-up,.rtmedia-container table.show-for-xxlarge-only,.rtmedia-activity-container table.show-for-xxlarge-only,#buddypress div.rtmedia-activity-container table.show-for-xxlarge-only{display:table}.rtmedia-container thead.hide-for-small,.rtmedia-activity-container thead.hide-for-small,#buddypress div.rtmedia-activity-container thead.hide-for-small,.rtmedia-container thead.hide-for-small-only,.rtmedia-activity-container thead.hide-for-small-only,#buddypress div.rtmedia-activity-container thead.hide-for-small-only,.rtmedia-container thead.hide-for-medium,.rtmedia-activity-container thead.hide-for-medium,#buddypress div.rtmedia-activity-container thead.hide-for-medium,.rtmedia-container thead.hide-for-medium-down,.rtmedia-activity-container thead.hide-for-medium-down,#buddypress div.rtmedia-activity-container thead.hide-for-medium-down,.rtmedia-container thead.hide-for-medium-only,.rtmedia-activity-container thead.hide-for-medium-only,#buddypress div.rtmedia-activity-container thead.hide-for-medium-only,.rtmedia-container thead.show-for-medium-up,.rtmedia-activity-container thead.show-for-medium-up,#buddypress div.rtmedia-activity-container thead.show-for-medium-up,.rtmedia-container thead.show-for-large-up,.rtmedia-activity-container thead.show-for-large-up,#buddypress div.rtmedia-activity-container thead.show-for-large-up,.rtmedia-container thead.show-for-xlarge-up,.rtmedia-activity-container thead.show-for-xlarge-up,#buddypress div.rtmedia-activity-container thead.show-for-xlarge-up,.rtmedia-container thead.show-for-xxlarge-up,.rtmedia-activity-container thead.show-for-xxlarge-up,#buddypress div.rtmedia-activity-container thead.show-for-xxlarge-up,.rtmedia-container thead.show-for-xxlarge-only,.rtmedia-activity-container thead.show-for-xxlarge-only,#buddypress div.rtmedia-activity-container thead.show-for-xxlarge-only{display:table-header-group !important}.rtmedia-container tbody.hide-for-small,.rtmedia-activity-container tbody.hide-for-small,#buddypress div.rtmedia-activity-container tbody.hide-for-small,.rtmedia-container tbody.hide-for-small-only,.rtmedia-activity-container tbody.hide-for-small-only,#buddypress div.rtmedia-activity-container tbody.hide-for-small-only,.rtmedia-container tbody.hide-for-medium,.rtmedia-activity-container tbody.hide-for-medium,#buddypress div.rtmedia-activity-container tbody.hide-for-medium,.rtmedia-container tbody.hide-for-medium-down,.rtmedia-activity-container tbody.hide-for-medium-down,#buddypress div.rtmedia-activity-container tbody.hide-for-medium-down,.rtmedia-container tbody.hide-for-medium-only,.rtmedia-activity-container tbody.hide-for-medium-only,#buddypress div.rtmedia-activity-container tbody.hide-for-medium-only,.rtmedia-container tbody.show-for-medium-up,.rtmedia-activity-container tbody.show-for-medium-up,#buddypress div.rtmedia-activity-container tbody.show-for-medium-up,.rtmedia-container tbody.show-for-large-up,.rtmedia-activity-container tbody.show-for-large-up,#buddypress div.rtmedia-activity-container tbody.show-for-large-up,.rtmedia-container tbody.show-for-xlarge-up,.rtmedia-activity-container tbody.show-for-xlarge-up,#buddypress div.rtmedia-activity-container tbody.show-for-xlarge-up,.rtmedia-container tbody.show-for-xxlarge-up,.rtmedia-activity-container tbody.show-for-xxlarge-up,#buddypress div.rtmedia-activity-container tbody.show-for-xxlarge-up,.rtmedia-container tbody.show-for-xxlarge-only,.rtmedia-activity-container tbody.show-for-xxlarge-only,#buddypress div.rtmedia-activity-container tbody.show-for-xxlarge-only{display:table-row-group !important}.rtmedia-container tr.hide-for-small,.rtmedia-activity-container tr.hide-for-small,#buddypress div.rtmedia-activity-container tr.hide-for-small,.rtmedia-container tr.hide-for-small-only,.rtmedia-activity-container tr.hide-for-small-only,#buddypress div.rtmedia-activity-container tr.hide-for-small-only,.rtmedia-container tr.hide-for-medium,.rtmedia-activity-container tr.hide-for-medium,#buddypress div.rtmedia-activity-container tr.hide-for-medium,.rtmedia-container tr.hide-for-medium-down,.rtmedia-activity-container tr.hide-for-medium-down,#buddypress div.rtmedia-activity-container tr.hide-for-medium-down,.rtmedia-container tr.hide-for-medium-only,.rtmedia-activity-container tr.hide-for-medium-only,#buddypress div.rtmedia-activity-container tr.hide-for-medium-only,.rtmedia-container tr.show-for-medium-up,.rtmedia-activity-container tr.show-for-medium-up,#buddypress div.rtmedia-activity-container tr.show-for-medium-up,.rtmedia-container tr.show-for-large-up,.rtmedia-activity-container tr.show-for-large-up,#buddypress div.rtmedia-activity-container tr.show-for-large-up,.rtmedia-container tr.show-for-xlarge-up,.rtmedia-activity-container tr.show-for-xlarge-up,#buddypress div.rtmedia-activity-container tr.show-for-xlarge-up,.rtmedia-container tr.show-for-xxlarge-up,.rtmedia-activity-container tr.show-for-xxlarge-up,#buddypress div.rtmedia-activity-container tr.show-for-xxlarge-up,.rtmedia-container tr.show-for-xxlarge-only,.rtmedia-activity-container tr.show-for-xxlarge-only,#buddypress div.rtmedia-activity-container tr.show-for-xxlarge-only{display:table-row !important}.rtmedia-container td.hide-for-small,.rtmedia-activity-container td.hide-for-small,#buddypress div.rtmedia-activity-container td.hide-for-small,.rtmedia-container td.hide-for-small-only,.rtmedia-activity-container td.hide-for-small-only,#buddypress div.rtmedia-activity-container td.hide-for-small-only,.rtmedia-container td.hide-for-medium,.rtmedia-activity-container td.hide-for-medium,#buddypress div.rtmedia-activity-container td.hide-for-medium,.rtmedia-container td.hide-for-medium-down,.rtmedia-activity-container td.hide-for-medium-down,#buddypress div.rtmedia-activity-container td.hide-for-medium-down,.rtmedia-container td.hide-for-medium-only,.rtmedia-activity-container td.hide-for-medium-only,#buddypress div.rtmedia-activity-container td.hide-for-medium-only,.rtmedia-container td.show-for-medium-up,.rtmedia-activity-container td.show-for-medium-up,#buddypress div.rtmedia-activity-container td.show-for-medium-up,.rtmedia-container td.show-for-large-up,.rtmedia-activity-container td.show-for-large-up,#buddypress div.rtmedia-activity-container td.show-for-large-up,.rtmedia-container td.show-for-xlarge-up,.rtmedia-activity-container td.show-for-xlarge-up,#buddypress div.rtmedia-activity-container td.show-for-xlarge-up,.rtmedia-container td.show-for-xxlarge-up,.rtmedia-activity-container td.show-for-xxlarge-up,#buddypress div.rtmedia-activity-container td.show-for-xxlarge-up,.rtmedia-container td.show-for-xxlarge-only,.rtmedia-activity-container td.show-for-xxlarge-only,#buddypress div.rtmedia-activity-container td.show-for-xxlarge-only,.rtmedia-container th.hide-for-small,.rtmedia-activity-container th.hide-for-small,#buddypress div.rtmedia-activity-container th.hide-for-small,.rtmedia-container th.hide-for-small-only,.rtmedia-activity-container th.hide-for-small-only,#buddypress div.rtmedia-activity-container th.hide-for-small-only,.rtmedia-container th.hide-for-medium,.rtmedia-activity-container th.hide-for-medium,#buddypress div.rtmedia-activity-container th.hide-for-medium,.rtmedia-container th.hide-for-medium-down,.rtmedia-activity-container th.hide-for-medium-down,#buddypress div.rtmedia-activity-container th.hide-for-medium-down,.rtmedia-container th.hide-for-medium-only,.rtmedia-activity-container th.hide-for-medium-only,#buddypress div.rtmedia-activity-container th.hide-for-medium-only,.rtmedia-container th.show-for-medium-up,.rtmedia-activity-container th.show-for-medium-up,#buddypress div.rtmedia-activity-container th.show-for-medium-up,.rtmedia-container th.show-for-large-up,.rtmedia-activity-container th.show-for-large-up,#buddypress div.rtmedia-activity-container th.show-for-large-up,.rtmedia-container th.show-for-xlarge-up,.rtmedia-activity-container th.show-for-xlarge-up,#buddypress div.rtmedia-activity-container th.show-for-xlarge-up,.rtmedia-container th.show-for-xxlarge-up,.rtmedia-activity-container th.show-for-xxlarge-up,#buddypress div.rtmedia-activity-container th.show-for-xxlarge-up,.rtmedia-container th.show-for-xxlarge-only,.rtmedia-activity-container th.show-for-xxlarge-only,#buddypress div.rtmedia-activity-container th.show-for-xxlarge-only{display:table-cell !important}}.rtmedia-container .show-for-landscape,.rtmedia-activity-container .show-for-landscape,#buddypress div.rtmedia-activity-container .show-for-landscape,.rtmedia-container .hide-for-portrait,.rtmedia-activity-container .hide-for-portrait,#buddypress div.rtmedia-activity-container .hide-for-portrait{display:inherit !important}.rtmedia-container .hide-for-landscape,.rtmedia-activity-container .hide-for-landscape,#buddypress div.rtmedia-activity-container .hide-for-landscape,.rtmedia-container .show-for-portrait,.rtmedia-activity-container .show-for-portrait,#buddypress div.rtmedia-activity-container .show-for-portrait{display:none !important}.rtmedia-container table.hide-for-landscape,.rtmedia-activity-container table.hide-for-landscape,#buddypress div.rtmedia-activity-container table.hide-for-landscape,.rtmedia-container table.show-for-portrait,.rtmedia-activity-container table.show-for-portrait,#buddypress div.rtmedia-activity-container table.show-for-portrait{display:table}.rtmedia-container thead.hide-for-landscape,.rtmedia-activity-container thead.hide-for-landscape,#buddypress div.rtmedia-activity-container thead.hide-for-landscape,.rtmedia-container thead.show-for-portrait,.rtmedia-activity-container thead.show-for-portrait,#buddypress div.rtmedia-activity-container thead.show-for-portrait{display:table-header-group !important}.rtmedia-container tbody.hide-for-landscape,.rtmedia-activity-container tbody.hide-for-landscape,#buddypress div.rtmedia-activity-container tbody.hide-for-landscape,.rtmedia-container tbody.show-for-portrait,.rtmedia-activity-container tbody.show-for-portrait,#buddypress div.rtmedia-activity-container tbody.show-for-portrait{display:table-row-group !important}.rtmedia-container tr.hide-for-landscape,.rtmedia-activity-container tr.hide-for-landscape,#buddypress div.rtmedia-activity-container tr.hide-for-landscape,.rtmedia-container tr.show-for-portrait,.rtmedia-activity-container tr.show-for-portrait,#buddypress div.rtmedia-activity-container tr.show-for-portrait{display:table-row !important}.rtmedia-container td.hide-for-landscape,.rtmedia-activity-container td.hide-for-landscape,#buddypress div.rtmedia-activity-container td.hide-for-landscape,.rtmedia-container td.show-for-portrait,.rtmedia-activity-container td.show-for-portrait,#buddypress div.rtmedia-activity-container td.show-for-portrait,.rtmedia-container th.hide-for-landscape,.rtmedia-activity-container th.hide-for-landscape,#buddypress div.rtmedia-activity-container th.hide-for-landscape,.rtmedia-container th.show-for-portrait,.rtmedia-activity-container th.show-for-portrait,#buddypress div.rtmedia-activity-container th.show-for-portrait{display:table-cell !important}@media only screen and (orientation: landscape){.rtmedia-container .show-for-landscape,.rtmedia-activity-container .show-for-landscape,#buddypress div.rtmedia-activity-container .show-for-landscape,.rtmedia-container .hide-for-portrait,.rtmedia-activity-container .hide-for-portrait,#buddypress div.rtmedia-activity-container .hide-for-portrait{display:inherit !important}.rtmedia-container .hide-for-landscape,.rtmedia-activity-container .hide-for-landscape,#buddypress div.rtmedia-activity-container .hide-for-landscape,.rtmedia-container .show-for-portrait,.rtmedia-activity-container .show-for-portrait,#buddypress div.rtmedia-activity-container .show-for-portrait{display:none !important}.rtmedia-container table.show-for-landscape,.rtmedia-activity-container table.show-for-landscape,#buddypress div.rtmedia-activity-container table.show-for-landscape,.rtmedia-container table.hide-for-portrait,.rtmedia-activity-container table.hide-for-portrait,#buddypress div.rtmedia-activity-container table.hide-for-portrait{display:table}.rtmedia-container thead.show-for-landscape,.rtmedia-activity-container thead.show-for-landscape,#buddypress div.rtmedia-activity-container thead.show-for-landscape,.rtmedia-container thead.hide-for-portrait,.rtmedia-activity-container thead.hide-for-portrait,#buddypress div.rtmedia-activity-container thead.hide-for-portrait{display:table-header-group !important}.rtmedia-container tbody.show-for-landscape,.rtmedia-activity-container tbody.show-for-landscape,#buddypress div.rtmedia-activity-container tbody.show-for-landscape,.rtmedia-container tbody.hide-for-portrait,.rtmedia-activity-container tbody.hide-for-portrait,#buddypress div.rtmedia-activity-container tbody.hide-for-portrait{display:table-row-group !important}.rtmedia-container tr.show-for-landscape,.rtmedia-activity-container tr.show-for-landscape,#buddypress div.rtmedia-activity-container tr.show-for-landscape,.rtmedia-container tr.hide-for-portrait,.rtmedia-activity-container tr.hide-for-portrait,#buddypress div.rtmedia-activity-container tr.hide-for-portrait{display:table-row !important}.rtmedia-container td.show-for-landscape,.rtmedia-activity-container td.show-for-landscape,#buddypress div.rtmedia-activity-container td.show-for-landscape,.rtmedia-container td.hide-for-portrait,.rtmedia-activity-container td.hide-for-portrait,#buddypress div.rtmedia-activity-container td.hide-for-portrait,.rtmedia-container th.show-for-landscape,.rtmedia-activity-container th.show-for-landscape,#buddypress div.rtmedia-activity-container th.show-for-landscape,.rtmedia-container th.hide-for-portrait,.rtmedia-activity-container th.hide-for-portrait,#buddypress div.rtmedia-activity-container th.hide-for-portrait{display:table-cell !important}}@media only screen and (orientation: portrait){.rtmedia-container .show-for-portrait,.rtmedia-activity-container .show-for-portrait,#buddypress div.rtmedia-activity-container .show-for-portrait,.rtmedia-container .hide-for-landscape,.rtmedia-activity-container .hide-for-landscape,#buddypress div.rtmedia-activity-container .hide-for-landscape{display:inherit !important}.rtmedia-container .hide-for-portrait,.rtmedia-activity-container .hide-for-portrait,#buddypress div.rtmedia-activity-container .hide-for-portrait,.rtmedia-container .show-for-landscape,.rtmedia-activity-container .show-for-landscape,#buddypress div.rtmedia-activity-container .show-for-landscape{display:none !important}.rtmedia-container table.show-for-portrait,.rtmedia-activity-container table.show-for-portrait,#buddypress div.rtmedia-activity-container table.show-for-portrait,.rtmedia-container table.hide-for-landscape,.rtmedia-activity-container table.hide-for-landscape,#buddypress div.rtmedia-activity-container table.hide-for-landscape{display:table}.rtmedia-container thead.show-for-portrait,.rtmedia-activity-container thead.show-for-portrait,#buddypress div.rtmedia-activity-container thead.show-for-portrait,.rtmedia-container thead.hide-for-landscape,.rtmedia-activity-container thead.hide-for-landscape,#buddypress div.rtmedia-activity-container thead.hide-for-landscape{display:table-header-group !important}.rtmedia-container tbody.show-for-portrait,.rtmedia-activity-container tbody.show-for-portrait,#buddypress div.rtmedia-activity-container tbody.show-for-portrait,.rtmedia-container tbody.hide-for-landscape,.rtmedia-activity-container tbody.hide-for-landscape,#buddypress div.rtmedia-activity-container tbody.hide-for-landscape{display:table-row-group !important}.rtmedia-container tr.show-for-portrait,.rtmedia-activity-container tr.show-for-portrait,#buddypress div.rtmedia-activity-container tr.show-for-portrait,.rtmedia-container tr.hide-for-landscape,.rtmedia-activity-container tr.hide-for-landscape,#buddypress div.rtmedia-activity-container tr.hide-for-landscape{display:table-row !important}.rtmedia-container td.show-for-portrait,.rtmedia-activity-container td.show-for-portrait,#buddypress div.rtmedia-activity-container td.show-for-portrait,.rtmedia-container td.hide-for-landscape,.rtmedia-activity-container td.hide-for-landscape,#buddypress div.rtmedia-activity-container td.hide-for-landscape,.rtmedia-container th.show-for-portrait,.rtmedia-activity-container th.show-for-portrait,#buddypress div.rtmedia-activity-container th.show-for-portrait,.rtmedia-container th.hide-for-landscape,.rtmedia-activity-container th.hide-for-landscape,#buddypress div.rtmedia-activity-container th.hide-for-landscape{display:table-cell !important}}.rtmedia-container .show-for-touch,.rtmedia-activity-container .show-for-touch,#buddypress div.rtmedia-activity-container .show-for-touch{display:none !important}.rtmedia-container .hide-for-touch,.rtmedia-activity-container .hide-for-touch,#buddypress div.rtmedia-activity-container .hide-for-touch{display:inherit !important}.rtmedia-container .touch .show-for-touch,.rtmedia-activity-container .touch .show-for-touch,#buddypress div.rtmedia-activity-container .touch .show-for-touch{display:inherit !important}.rtmedia-container .touch .hide-for-touch,.rtmedia-activity-container .touch .hide-for-touch,#buddypress div.rtmedia-activity-container .touch .hide-for-touch{display:none !important}.rtmedia-container table.hide-for-touch,.rtmedia-activity-container table.hide-for-touch,#buddypress div.rtmedia-activity-container table.hide-for-touch{display:table}.rtmedia-container .touch table.show-for-touch,.rtmedia-activity-container .touch table.show-for-touch,#buddypress div.rtmedia-activity-container .touch table.show-for-touch{display:table}.rtmedia-container thead.hide-for-touch,.rtmedia-activity-container thead.hide-for-touch,#buddypress div.rtmedia-activity-container thead.hide-for-touch{display:table-header-group !important}.rtmedia-container .touch thead.show-for-touch,.rtmedia-activity-container .touch thead.show-for-touch,#buddypress div.rtmedia-activity-container .touch thead.show-for-touch{display:table-header-group !important}.rtmedia-container tbody.hide-for-touch,.rtmedia-activity-container tbody.hide-for-touch,#buddypress div.rtmedia-activity-container tbody.hide-for-touch{display:table-row-group !important}.rtmedia-container .touch tbody.show-for-touch,.rtmedia-activity-container .touch tbody.show-for-touch,#buddypress div.rtmedia-activity-container .touch tbody.show-for-touch{display:table-row-group !important}.rtmedia-container tr.hide-for-touch,.rtmedia-activity-container tr.hide-for-touch,#buddypress div.rtmedia-activity-container tr.hide-for-touch{display:table-row !important}.rtmedia-container .touch tr.show-for-touch,.rtmedia-activity-container .touch tr.show-for-touch,#buddypress div.rtmedia-activity-container .touch tr.show-for-touch{display:table-row !important}.rtmedia-container td.hide-for-touch,.rtmedia-activity-container td.hide-for-touch,#buddypress div.rtmedia-activity-container td.hide-for-touch{display:table-cell !important}.rtmedia-container .touch td.show-for-touch,.rtmedia-activity-container .touch td.show-for-touch,#buddypress div.rtmedia-activity-container .touch td.show-for-touch{display:table-cell !important}.rtmedia-container th.hide-for-touch,.rtmedia-activity-container th.hide-for-touch,#buddypress div.rtmedia-activity-container th.hide-for-touch{display:table-cell !important}.rtmedia-container .touch th.show-for-touch,.rtmedia-activity-container .touch th.show-for-touch,#buddypress div.rtmedia-activity-container .touch th.show-for-touch{display:table-cell !important}.rtmedia-container .flex-video,.rtmedia-activity-container .flex-video,#buddypress div.rtmedia-activity-container .flex-video{position:relative;padding-top:1.5625rem;padding-bottom:67.5%;height:0;margin-bottom:1rem;overflow:hidden}.rtmedia-container .flex-video.widescreen,.rtmedia-activity-container .flex-video.widescreen,#buddypress div.rtmedia-activity-container .flex-video.widescreen{padding-bottom:57.25%}.rtmedia-container .flex-video.vimeo,.rtmedia-activity-container .flex-video.vimeo,#buddypress div.rtmedia-activity-container .flex-video.vimeo{padding-top:0}.rtmedia-container .flex-video iframe,.rtmedia-activity-container .flex-video iframe,#buddypress div.rtmedia-activity-container .flex-video iframe,.rtmedia-container .flex-video object,.rtmedia-activity-container .flex-video object,#buddypress div.rtmedia-activity-container .flex-video object,.rtmedia-container .flex-video embed,.rtmedia-activity-container .flex-video embed,#buddypress div.rtmedia-activity-container .flex-video embed,.rtmedia-container .flex-video video,.rtmedia-activity-container .flex-video video,#buddypress div.rtmedia-activity-container .flex-video video{position:absolute;top:0;left:0;width:100%;height:100%}.rtmedia-container .tabs,.rtmedia-activity-container .tabs,#buddypress div.rtmedia-activity-container .tabs{*zoom:1;margin-bottom:0 !important}.rtmedia-container .tabs:before,.rtmedia-activity-container .tabs:before,#buddypress div.rtmedia-activity-container .tabs:before,.rtmedia-container .tabs:after,.rtmedia-activity-container .tabs:after,#buddypress div.rtmedia-activity-container .tabs:after{content:" ";display:table}.rtmedia-container .tabs:after,.rtmedia-activity-container .tabs:after,#buddypress div.rtmedia-activity-container .tabs:after{clear:both}.rtmedia-container .tabs dd,.rtmedia-activity-container .tabs dd,#buddypress div.rtmedia-activity-container .tabs dd{position:relative;margin-bottom:0 !important;top:1px;float:left}.rtmedia-container .tabs dd>a,.rtmedia-activity-container .tabs dd>a,#buddypress div.rtmedia-activity-container .tabs dd>a{display:block;background:#efefef;color:#222;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-family:"Helvetica Neue","Helvetica",Helvetica,Arial,sans-serif;font-size:1rem}.rtmedia-container .tabs dd>a:hover,.rtmedia-activity-container .tabs dd>a:hover,#buddypress div.rtmedia-activity-container .tabs dd>a:hover{background:#e2e2e2}.rtmedia-container .tabs dd.active a,.rtmedia-activity-container .tabs dd.active a,#buddypress div.rtmedia-activity-container .tabs dd.active a{background:#fff}.rtmedia-container .tabs.radius dd:first-child a,.rtmedia-activity-container .tabs.radius dd:first-child a,#buddypress div.rtmedia-activity-container .tabs.radius dd:first-child a{-moz-border-radius-bottomleft:3px;-moz-border-radius-topleft:3px;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.rtmedia-container .tabs.radius dd:last-child a,.rtmedia-activity-container .tabs.radius dd:last-child a,#buddypress div.rtmedia-activity-container .tabs.radius dd:last-child a{-moz-border-radius-topright:3px;-moz-border-radius-bottomright:3px;-webkit-border-top-right-radius:3px;-webkit-border-bottom-right-radius:3px;border-top-right-radius:3px;border-bottom-right-radius:3px}.rtmedia-container .tabs.vertical dd,.rtmedia-activity-container .tabs.vertical dd,#buddypress div.rtmedia-activity-container .tabs.vertical dd{position:inherit;float:none;display:block;top:auto}.rtmedia-container .tabs-content,.rtmedia-activity-container .tabs-content,#buddypress div.rtmedia-activity-container .tabs-content{*zoom:1;margin-bottom:1.5rem}.rtmedia-container .tabs-content:before,.rtmedia-activity-container .tabs-content:before,#buddypress div.rtmedia-activity-container .tabs-content:before,.rtmedia-container .tabs-content:after,.rtmedia-activity-container .tabs-content:after,#buddypress div.rtmedia-activity-container .tabs-content:after{content:" ";display:table}.rtmedia-container .tabs-content:after,.rtmedia-activity-container .tabs-content:after,#buddypress div.rtmedia-activity-container .tabs-content:after{clear:both}.rtmedia-container .tabs-content>.content,.rtmedia-activity-container .tabs-content>.content,#buddypress div.rtmedia-activity-container .tabs-content>.content{display:none;float:left;padding:0.9375rem 0}.rtmedia-container .tabs-content>.content.active,.rtmedia-activity-container .tabs-content>.content.active,#buddypress div.rtmedia-activity-container .tabs-content>.content.active{display:block}.rtmedia-container .tabs-content>.content.contained,.rtmedia-activity-container .tabs-content>.content.contained,#buddypress div.rtmedia-activity-container .tabs-content>.content.contained{padding:0.9375rem}.rtmedia-container .tabs-content.vertical,.rtmedia-activity-container .tabs-content.vertical,#buddypress div.rtmedia-activity-container .tabs-content.vertical{display:block}.rtmedia-container .tabs-content.vertical>.content,.rtmedia-activity-container .tabs-content.vertical>.content,#buddypress div.rtmedia-activity-container .tabs-content.vertical>.content{padding:0 0.9375rem}@media only screen and (min-width: 40.063em){.rtmedia-container .tabs.vertical,.rtmedia-activity-container .tabs.vertical,#buddypress div.rtmedia-activity-container .tabs.vertical{width:20%;float:left;margin-bottom:1.25rem}.rtmedia-container .tabs-content.vertical,.rtmedia-activity-container .tabs-content.vertical,#buddypress div.rtmedia-activity-container .tabs-content.vertical{width:80%;float:left;margin-left:-1px}}.rtmedia-container .rtmedia-editor-main dl.tabs dd>a,.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd>a,#buddypress div.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd>a{font-size:14px;text-decoration:none;padding:5px 15px;background:#f1f1f1}.rtmedia-container .rtmedia-editor-main dl.tabs dd>a:hover,.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd>a:hover,#buddypress div.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd>a:hover{background:#dcdcdc}.rtmedia-container .rtmedia-editor-main dl.tabs dd.active>a,.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd.active>a,#buddypress div.rtmedia-activity-container .rtmedia-editor-main dl.tabs dd.active>a{background:#50A1D7;color:#fff}.rtmedia-container .rtmedia-editor-main .tabs-content,.rtmedia-activity-container .rtmedia-editor-main .tabs-content,#buddypress div.rtmedia-activity-container .rtmedia-editor-main .tabs-content{margin-bottom:5px}.rtmedia-container .rtmedia-editor-main .tabs-content .content,.rtmedia-activity-container .rtmedia-editor-main .tabs-content .content,#buddypress div.rtmedia-activity-container .rtmedia-editor-main .tabs-content .content{float:none;padding:10px}.rtmedia-container .rtmedia-editor-main .rtmedia-title-editor,.rtmedia-activity-container .rtmedia-editor-main .rtmedia-title-editor,#buddypress div.rtmedia-activity-container .rtmedia-editor-main .rtmedia-title-editor{display:block;width:100%}.rtmedia-container .rtmedia-editor-main .rtmedia-edit-change-album,.rtmedia-activity-container .rtmedia-editor-main .rtmedia-edit-change-album,#buddypress div.rtmedia-activity-container .rtmedia-editor-main .rtmedia-edit-change-album{margin-top:15px}.rtmedia-container .rtmedia-editor-main .rtmedia-edit-title label,.rtmedia-activity-container .rtmedia-editor-main .rtmedia-edit-title label,#buddypress div.rtmedia-activity-container .rtmedia-editor-main .rtmedia-edit-title label{display:block}.rtmedia-container .primary,.rtmedia-activity-container .primary,#buddypress div.rtmedia-activity-container .primary{color:#3475BA}.rtmedia-container .secondary,.rtmedia-activity-container .secondary,#buddypress div.rtmedia-activity-container .secondary{color:#82909D}.rtmedia-container #buddypress li,.rtmedia-activity-container #buddypress li{list-style:none}.rtmedia-container .row,.rtmedia-activity-container .row,#buddypress div.rtmedia-activity-container .row{max-width:95%}.rtmedia-container .rtmedia-item-title,.rtmedia-activity-container .rtmedia-item-title,#buddypress div.rtmedia-activity-container .rtmedia-item-title{text-align:center}.rtmedia-container .rtmedia-item-title h4,.rtmedia-activity-container .rtmedia-item-title h4,#buddypress div.rtmedia-activity-container .rtmedia-item-title h4{text-overflow:ellipsis;white-space:nowrap;width:100%;overflow:hidden;font-size:1.1em;text-align:center}.rtmedia-container .rtmedia-success,.rtmedia-activity-container .rtmedia-success,#buddypress div.rtmedia-activity-container .rtmedia-success{display:block;padding:5px;margin-top:15px;border:1px solid #457A1A;background-color:#5DA423;font-weight:bold}.rtmedia-container h2,.rtmedia-activity-container h2,#buddypress div.rtmedia-activity-container h2{font-size:1.4em;font-weight:bold;line-height:2.4em}.rtmedia-container .drag-drop,.rtmedia-activity-container .drag-drop,#buddypress div.rtmedia-activity-container .drag-drop{border:4px dashed #DDD;text-align:center;background:#fafafa;overflow:hidden;color:#AAAAAA;padding:25px 0}.rtmedia-container .drag-drop.dragover,.rtmedia-activity-container .drag-drop.dragover,#buddypress div.rtmedia-activity-container .drag-drop.dragover{border-color:#83b4d8}.rtmedia-container .drag-drop .drag-drop-info,.rtmedia-activity-container .drag-drop .drag-drop-info,#buddypress div.rtmedia-activity-container .drag-drop .drag-drop-info{font-size:20px;line-height:24px}.rtmedia-container .drag-drop .rtm-album-privacy span,.rtmedia-activity-container .drag-drop .rtm-album-privacy span,#buddypress div.rtmedia-activity-container .drag-drop .rtm-album-privacy span{margin:0 30px 20px 30px;display:inline-block}.rtmedia-container .drag-drop .rtm-select-files span,.rtmedia-activity-container .drag-drop .rtm-select-files span,#buddypress div.rtmedia-activity-container .drag-drop .rtm-select-files span{vertical-align:middle}.rtmedia-container .drag-drop .rtm-seperator,.rtmedia-activity-container .drag-drop .rtm-seperator,#buddypress div.rtmedia-activity-container .drag-drop .rtm-seperator{margin:0px 20px}.rtmedia-container .drag-drop .start-media-upload,.rtmedia-activity-container .drag-drop .start-media-upload,#buddypress div.rtmedia-activity-container .drag-drop .start-media-upload{display:none;margin-top:20px}.rtmedia-container .drag-drop .rtm-file-size-limit,.rtmedia-activity-container .drag-drop .rtm-file-size-limit,#buddypress div.rtmedia-activity-container .drag-drop .rtm-file-size-limit{vertical-align:middle;font-size:16px;line-height:24px}.rtmedia-container .rtmedia-action-update,.rtmedia-activity-container .rtmedia-action-update,#buddypress div.rtmedia-activity-container .rtmedia-action-update{float:left;margin-top:12px;margin-right:10px}.rtmedia-container .rtmedia-list,.rtmedia-activity-container .rtmedia-list,#buddypress div.rtmedia-activity-container .rtmedia-list{list-style:none}.rtmedia-container .rtmedia-list .rtmedia-list-item,.rtmedia-activity-container .rtmedia-list .rtmedia-list-item,#buddypress div.rtmedia-activity-container .rtmedia-list .rtmedia-list-item{word-wrap:break-word;margin:10px;float:left;list-style:none}.rtmedia-container .rtmedia-list .rtmedia-list-item a,.rtmedia-activity-container .rtmedia-list .rtmedia-list-item a,#buddypress div.rtmedia-activity-container .rtmedia-list .rtmedia-list-item a{text-decoration:none}.rtmedia-container .rtmedia-list .rtmedia-list-item a h4,.rtmedia-activity-container .rtmedia-list .rtmedia-list-item a h4,#buddypress div.rtmedia-activity-container .rtmedia-list .rtmedia-list-item a h4{line-height:1.4em;font-size:1.2em;padding-top:10px}.rtmedia-container .rtmedia-list .rtmedia-list-item .rtmedia-item-selector,.rtmedia-activity-container .rtmedia-list .rtmedia-list-item .rtmedia-item-selector,#buddypress div.rtmedia-activity-container .rtmedia-list .rtmedia-list-item .rtmedia-item-selector{position:absolute}.rtmedia-container .rtmedia-list .rtmedia-list-item.media-type-music,.rtmedia-activity-container .rtmedia-list .rtmedia-list-item.media-type-music,#buddypress div.rtmedia-activity-container .rtmedia-list .rtmedia-list-item.media-type-music,.rtmedia-container .rtmedia-list .rtmedia-list-item.media-type-video,.rtmedia-activity-container .rtmedia-list .rtmedia-list-item.media-type-video,#buddypress div.rtmedia-activity-container .rtmedia-list .rtmedia-list-item.media-type-video{width:100%}.rtmedia-container .rtmedia-list .rtmedia-list-item.media-type-music .mejs-controls .mejs-time-rail,.rtmedia-activity-container .rtmedia-list .rtmedia-list-item.media-type-music .mejs-controls .mejs-time-rail,#buddypress div.rtmedia-activity-container .rtmedia-list .rtmedia-list-item.media-type-music .mejs-controls .mejs-time-rail,.rtmedia-container .rtmedia-list .rtmedia-list-item.media-type-video .mejs-controls .mejs-time-rail,.rtmedia-activity-container .rtmedia-list .rtmedia-list-item.media-type-video .mejs-controls .mejs-time-rail,#buddypress div.rtmedia-activity-container .rtmedia-list .rtmedia-list-item.media-type-video .mejs-controls .mejs-time-rail{margin:8px 2px 2px 0}.rtmedia-container .rtmedia-media img,.rtmedia-activity-container .rtmedia-media img,#buddypress div.rtmedia-activity-container .rtmedia-media img{max-width:100%}.rtmedia-container .rtmedia-item-thumbnail,.rtmedia-activity-container .rtmedia-item-thumbnail,#buddypress div.rtmedia-activity-container .rtmedia-item-thumbnail{text-align:center}.rtmedia-container .rtmedia-item-thumbnail img,.rtmedia-activity-container .rtmedia-item-thumbnail img,#buddypress div.rtmedia-activity-container .rtmedia-item-thumbnail img{vertical-align:middle}.rtmedia-container .rtmedia_next_prev,.rtmedia-activity-container .rtmedia_next_prev,#buddypress div.rtmedia-activity-container .rtmedia_next_prev{clear:both}.rtmedia-container .rtmedia_next_prev a,.rtmedia-activity-container .rtmedia_next_prev a,#buddypress div.rtmedia-activity-container .rtmedia_next_prev a{display:block;clear:both;background-color:#E9E9E9;padding:10px;text-align:center;text-decoration:none;color:#000;margin:15px}.rtmedia-container .rtmedia-item-comments-container,.rtmedia-activity-container .rtmedia-item-comments-container,#buddypress div.rtmedia-activity-container .rtmedia-item-comments-container{margin:3% 3%}.rtmedia-container #rtmedia_comment_ul,.rtmedia-activity-container #rtmedia_comment_ul,#buddypress div.rtmedia-activity-container #rtmedia_comment_ul{margin-left:0;margin-bottom:10px}.rtmedia-container .rtmedia-bp-header,.rtmedia-activity-container .rtmedia-bp-header,#buddypress div.rtmedia-activity-container .rtmedia-bp-header{width:460px;margin:auto}.rtmedia-container #div-attache-rtmedia,.rtmedia-activity-container #div-attache-rtmedia,#buddypress div.rtmedia-activity-container #div-attache-rtmedia{display:none}.rtmedia-container #rtMedia-update-queue-list p span,.rtmedia-activity-container #rtMedia-update-queue-list p span{margin-right:20px}.rtmedia-container .rtmedia-move-container,.rtmedia-activity-container .rtmedia-move-container,#buddypress div.rtmedia-activity-container .rtmedia-move-container{display:none;padding:10px;border:1px dashed #999}.rtmedia-container #rtmedia-add-media-button-post-update,.rtmedia-activity-container #rtmedia-add-media-button-post-update,#buddypress div.rtmedia-activity-container #rtmedia-add-media-button-post-update{float:left;margin-top:10px;margin-right:20px}.rtmedia-container #whats-new-post-in-box,.rtmedia-activity-container #whats-new-post-in-box,#buddypress div.rtmedia-activity-container #whats-new-post-in-box{float:left}.rtmedia-container .rtmedia-activity-text,.rtmedia-activity-container .rtmedia-activity-text,#buddypress div.rtmedia-activity-container .rtmedia-activity-text{display:block;padding-bottom:10px}.rtmedia-container select,.rtmedia-activity-container select,#buddypress div.rtmedia-activity-container select{width:auto}.rtmedia-container.rtmedia-single-container .row,.rtmedia-single-container.rtmedia-activity-container .row,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row{background-color:#FFF}.rtmedia-container.rtmedia-single-container .row #rtmedia-single-media-container,.rtmedia-single-container.rtmedia-activity-container .row #rtmedia-single-media-container{padding-top:10px;padding-bottom:10px}.rtmedia-container.rtmedia-single-container .row #rtmedia-single-media-container .rtmedia-media div.mejs-layers div.mejs-poster,.rtmedia-single-container.rtmedia-activity-container .row #rtmedia-single-media-container .rtmedia-media div.mejs-layers div.mejs-poster{overflow:hidden}.rtmedia-container.rtmedia-single-container .row #rtmedia-single-media-container .rtmedia-media .mejs-layers .mejs-overlay-button,.rtmedia-single-container.rtmedia-activity-container .row #rtmedia-single-media-container .rtmedia-media .mejs-layers .mejs-overlay-button{margin:-50px 0 0 -50px}.rtmedia-container.rtmedia-single-container .row #rtmedia-single-media-container .rtmedia-media .mejs-layers .mejs-poster,.rtmedia-single-container.rtmedia-activity-container .row #rtmedia-single-media-container .rtmedia-media .mejs-layers .mejs-poster{overflow:hidden}.rtmedia-container.rtmedia-single-container .row #rtmedia-single-media-container .rtmedia-media-title,.rtmedia-single-container.rtmedia-activity-container .row #rtmedia-single-media-container .rtmedia-media-title{margin:0 0 5px 0;display:block;font-weight:bold;letter-spacing:1px}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta{padding:10px}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta div.userprofile,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.userprofile,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.userprofile{float:left;padding:10px}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta div.username,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.username,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.username{padding:0 10px;line-height:16px;font-weight:bold}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta div.username a,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.username a,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.username a{text-decoration:none}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta div.username a:hover,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.username a:hover,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.username a:hover{text-decoration:underline}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta div.rtm-time-privacy,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.rtm-time-privacy,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.rtm-time-privacy{font-size:12px;line-height:24px;margin-bottom:7px;color:#808080}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta div.rtm-time-privacy i,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.rtm-time-privacy i,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.rtm-time-privacy i{margin-left:4px}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta div.rtmedia-actions-before-description,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.rtmedia-actions-before-description,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.rtmedia-actions-before-description{margin-top:10px}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta div.rtmedia-actions-before-description>div,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.rtmedia-actions-before-description>div,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta div.rtmedia-actions-before-description>div{float:left;line-height:20px;display:inline-block}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta button,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta button,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta button{color:#5E5E5E;background-color:#EBEBEB;background-repeat:repeat-x;background-image:-moz-linear-gradient(top, #f9f9f9, #ebebeb);background-image:-ms-linear-gradient(top, #f9f9f9, #ebebeb);background-image:-webkit-linear-gradient(top, #f9f9f9, #ebebeb);background-image:-o-linear-gradient(top, #f9f9f9, #ebebeb);background-image:linear-gradient(top, #f9f9f9,#ebebeb)}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta>a,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta>a,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta>a{float:left;margin:10px}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta .rtmedia-item-actions>ul>li,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions>ul>li,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions>ul>li{display:inline-block;float:left;margin-right:5px}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta .rtmedia-item-actions>ul>li .rtmedia-like,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions>ul>li .rtmedia-like,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions>ul>li .rtmedia-like{display:none}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta .rtmedia-item-actions>a,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions>a,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions>a{display:inline-block;float:left}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta .rtmedia-item-actions>form,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions>form,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions>form{float:left;margin-right:5px}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta .rtmedia-item-actions .rtmedia-action-buttons span.like-count,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions .rtmedia-action-buttons span.like-count,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-item-actions .rtmedia-action-buttons span.like-count{background:#EEE;-webkit-border-radius:50%;-moz-border-radius:50%;-ms-border-radius:50%;-o-border-radius:50%;border-radius:50%;border:1px solid #CCC;color:#999;display:inline;font-size:70%;margin-left:2px;margin-right:2px;padding:3px 6px;text-align:center;vertical-align:middle}.rtmedia-container.rtmedia-single-container .row .rtmedia-single-meta .rtmedia-media-description,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-media-description,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-single-meta .rtmedia-media-description{line-height:22px;margin:10px 0}.rtmedia-container.rtmedia-single-container .row .rtmedia-item-comments,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments{background-color:transparent}.rtmedia-container.rtmedia-single-container .row .rtmedia-item-comments div,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments div,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments div{background-color:transparent}.rtmedia-container.rtmedia-single-container .row .rtmedia-item-comments .rtm-like-comments-info,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtm-like-comments-info,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtm-like-comments-info{width:100%}.rtmedia-container.rtmedia-single-container .row .rtmedia-item-comments .rtm-like-comments-info:before,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtm-like-comments-info:before,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtm-like-comments-info:before{top:13px;left:20px}.rtmedia-container.rtmedia-single-container .row .rtmedia-item-comments .rtmedia-like-info,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtmedia-like-info,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtmedia-like-info{background-color:#EDEFF4;font-size:12px;line-height:16px;padding:3px 5px;position:relative;margin-bottom:2px}.rtmedia-container.rtmedia-single-container .row .rtmedia-item-comments .rtmedia-like-info i,.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtmedia-like-info i,#buddypress div.rtmedia-single-container.rtmedia-activity-container .row .rtmedia-item-comments .rtmedia-like-info i{margin-right:4px}.rtmedia-container #wp-description-editor-tools a.wp-switch-editor,.rtmedia-activity-container #wp-description-editor-tools a.wp-switch-editor{margin:5px 5px 0 0;padding:4px 5px 2px;float:right;cursor:pointer;border:1px solid;border-color:#DFDFDF #DFDFDF #CCC;font:13px/18px Arial,Helvetica,sans-serif normal;height:auto}.rtmedia-container #description_toolbargroup .mceToolbar td,.rtmedia-activity-container #description_toolbargroup .mceToolbar td{padding:0px}.rtmedia-container #wp-description-editor-container,.rtmedia-activity-container #wp-description-editor-container,#buddypress div.rtmedia-activity-container #wp-description-editor-container{border-width:1px;border-style:solid;-webkit-border-top-right-radius:3px;-webkit-border-top-left-radius:3px;border-top-right-radius:3px;border-top-left-radius:3px;border-color:#CCC #CCC #DFDFDF}.rtmedia-container .rtmedia-change-cover-arts p,.rtmedia-activity-container .rtmedia-change-cover-arts p,#buddypress div.rtmedia-activity-container .rtmedia-change-cover-arts p{padding:5px 0}.rtmedia-container .rtm-media-loading,.rtmedia-activity-container .rtm-media-loading,#buddypress div.rtmedia-activity-container .rtm-media-loading{text-align:center;padding:20px 0}.rt-clear:after{display:block;height:0;line-height:0;clear:both;content:'.';visibility:hidden}#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments{color:#6D84B4;line-height:18px;margin-bottom:5px}#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span{display:inline-block;margin-right:5px}#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span a,#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button,#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button.rtmedia-action-buttons{padding:0;color:#21759B;font-size:12px;line-height:14px;text-decoration:none}#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span a:hover,#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button:hover,#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button.rtmedia-action-buttons:hover{text-decoration:underline}#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span a.rtmedia-like i,#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button.rtmedia-like i,#buddypress .rtmedia-single-container .rtmedia-single-meta div.rtmedia-actions-before-comments>span button.rtmedia-action-buttons.rtmedia-like i{display:none}#buddypress button.rtm-alert-btn{background-color:#f04124;border-color:#cf280e;color:white}#buddypress div.rtmedia-activity-container ul.rtmedia-list li{float:left;padding:10px}#buddypress div.rtmedia-activity-container ul.rtmedia-list li .rtmedia-item-thumbnail{overflow:hidden}#buddypress div.rtmedia-activity-container ul.rtmedia-list li.media-type-video{float:none}#buddypress div.rtmedia-activity-container ul.rtmedia-list li.media-type-video .rtmedia-item-thumbnail{margin:0 auto;overflow:hidden}#buddypress div.rtmedia-activity-container ul.rtmedia-list li.media-type-video .rtmedia-item-thumbnail .mejs-overlay-button{margin:-50px 0 0 -50px}#buddypress .mejs-controls button,.rtmedia-container .mejs-controls button,.rtmedia-activity-container .mejs-controls button,#buddypress div.rtmedia-activity-container .mejs-controls button{padding:4px 8px;border:none;background:rgba(0,0,0,0) url("../../../lib/media-element/controls.png") no-repeat}#buddypress .mejs-controls .mejs-play button,.rtmedia-container .mejs-controls .mejs-play button,.rtmedia-activity-container .mejs-controls .mejs-play button,#buddypress div.rtmedia-activity-container .mejs-controls .mejs-play button{background-position:0 0}#buddypress .mejs-controls .mejs-pause button,.rtmedia-container .mejs-controls .mejs-pause button,.rtmedia-activity-container .mejs-controls .mejs-pause button,#buddypress div.rtmedia-activity-container .mejs-controls .mejs-pause button{background-position:0 -16px}#buddypress .mejs-controls .mejs-unmute button,.rtmedia-container .mejs-controls .mejs-unmute button,.rtmedia-activity-container .mejs-controls .mejs-unmute button,#buddypress div.rtmedia-activity-container .mejs-controls .mejs-unmute button{background-position:-16px 0}#buddypress .mejs-controls .mejs-mute button,.rtmedia-container .mejs-controls .mejs-mute button,.rtmedia-activity-container .mejs-controls .mejs-mute button,#buddypress div.rtmedia-activity-container .mejs-controls .mejs-mute button{background-position:-16px -16px}#buddypress .mejs-controls .mejs-fullscreen-button button,.rtmedia-container .mejs-controls .mejs-fullscreen-button button,.rtmedia-activity-container .mejs-controls .mejs-fullscreen-button button,#buddypress div.rtmedia-activity-container .mejs-controls .mejs-fullscreen-button button{background-position:-32px 0}#buddypress .mejs-controls .mejs-unfullscreen button,.rtmedia-container .mejs-controls .mejs-unfullscreen button,.rtmedia-activity-container .mejs-controls .mejs-unfullscreen button,#buddypress div.rtmedia-activity-container .mejs-controls .mejs-unfullscreen button{background-position:-32px -16px}.mfp-content #rtmedia-single-media-container .rtmedia-media{text-align:center;background-color:#333;overflow:hidden}.mfp-content #rtmedia-single-media-container .rtmedia-media img{max-height:95%}#rtmedia-action-update{float:left;padding-right:10px}.mfp-ready,.mfp-bg{z-index:9999}div.mfp-bg{background-color:#222222;opacity:0.7}.bp_media_content video{background-color:black}.rtmedia-success{display:block;padding:5px 10px;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;background-color:#2ECC71;color:white}.rtmedia-error{color:white;display:block;padding:10px;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;background-color:#E74C3C}.rtmp-uploaded-file{width:100%}.close{cursor:pointer;color:red}button.mfp-arrow,button.mfp-arrow:active{margin-top:-30px}button.rtp-lb-close{top:0;right:0}#object-nav li,#group-admins li,.item-list-tabs li{list-style:none}.mejs-video .mejs-controls{position:absolute}.mfp-content #rtmedia-single-media-container .wp-audio-shortcode{height:0px !important}.rtmedia-media-edit .rtmedia-single-edit-title-container,#buddypress .rtmedia-media-edit .rtmedia-single-edit-title-container{margin-bottom:20px}.rtmedia-media-edit .rtmedia-single-edit-title-container .rtmedia-title,#buddypress .rtmedia-media-edit .rtmedia-single-edit-title-container .rtmedia-title{margin:0}.rtmedia-media-edit .rtmedia-edit-title,#buddypress .rtmedia-media-edit .rtmedia-edit-title{margin-bottom:15px}.rtmedia-media-edit .rtmedia-edit-privacy,#buddypress .rtmedia-media-edit .rtmedia-edit-privacy{margin-bottom:10px}.rtmedia-media-edit .rtmedia-editor-description>label,#buddypress .rtmedia-media-edit .rtmedia-editor-description>label{display:block;line-height:24px}.rtmedia-media-edit .rtmedia-editor-description .rtmedia-desc-textarea,#buddypress .rtmedia-media-edit .rtmedia-editor-description .rtmedia-desc-textarea{width:100%;display:inline-block;padding:5px}.rtmedia-media-edit .rtmedia-image-editor-cotnainer .imgedit-menu,#buddypress .rtmedia-media-edit .rtmedia-image-editor-cotnainer .imgedit-menu{margin-bottom:15px}.rtmedia-media-edit .rtmedia-image-editor-cotnainer .imgedit-crop-wrap,.rtmedia-media-edit .rtmedia-image-editor-cotnainer .imgedit-group>p,.rtmedia-media-edit .rtmedia-image-editor-cotnainer .wp_attachment_image .thumbnail,#buddypress .rtmedia-media-edit .rtmedia-image-editor-cotnainer .imgedit-crop-wrap,#buddypress .rtmedia-media-edit .rtmedia-image-editor-cotnainer .imgedit-group>p,#buddypress .rtmedia-media-edit .rtmedia-image-editor-cotnainer .wp_attachment_image .thumbnail{margin-bottom:10px}.rtmedia-media-edit .rtmedia-image-editor-cotnainer .hidden,#buddypress .rtmedia-media-edit .rtmedia-image-editor-cotnainer .hidden{display:none}.rtmedia-media-edit .rtmedia-image-editor-cotnainer hr,#buddypress .rtmedia-media-edit .rtmedia-image-editor-cotnainer hr{margin:15px 0 25px 0}.rtmedia-media-edit #rtmedia-image-editor-cotnainer .imgedit-wrap td,#buddypress .rtmedia-media-edit #rtmedia-image-editor-cotnainer .imgedit-wrap td{vertical-align:top}.rtmedia-container #rtm-media-options,.rtmedia-activity-container #rtm-media-options,#buddypress div.rtmedia-activity-container #rtm-media-options,.rtmedia-container,.rtmedia-activity-container,#buddypress div.rtmedia-activity-container{line-height:30px}.rtmedia-container #rtm-media-options [class^="icon-"],.rtmedia-activity-container #rtm-media-options [class^="icon-"],.rtmedia-container #rtm-media-options [class*=" icon-"],.rtmedia-activity-container #rtm-media-options [class*=" icon-"],.rtmedia-container [class^="icon-"],.rtmedia-activity-container [class^="icon-"],#buddypress div.rtmedia-activity-container [class^="icon-"],.rtmedia-container [class*=" icon-"],.rtmedia-activity-container [class*=" icon-"],#buddypress div.rtmedia-activity-container [class*=" icon-"]{font-family:FontAwesome;font-style:normal;font-weight:normal;text-decoration:inherit;cursor:pointer;padding:0;border:none}.rtmedia-container #rtm-media-options [class^="icon-"].icon-2x,.rtmedia-activity-container #rtm-media-options [class^="icon-"].icon-2x,.rtmedia-container #rtm-media-options [class*=" icon-"].icon-2x,.rtmedia-activity-container #rtm-media-options [class*=" icon-"].icon-2x,.rtmedia-container [class^="icon-"].icon-2x,.rtmedia-activity-container [class^="icon-"].icon-2x,#buddypress div.rtmedia-activity-container [class^="icon-"].icon-2x,.rtmedia-container [class*=" icon-"].icon-2x,.rtmedia-activity-container [class*=" icon-"].icon-2x,#buddypress div.rtmedia-activity-container [class*=" icon-"].icon-2x{font-size:1.6em}.rtmedia-container #rtm-media-options [class^="icon-"].icon-3x,.rtmedia-activity-container #rtm-media-options [class^="icon-"].icon-3x,.rtmedia-container #rtm-media-options [class*=" icon-"].icon-3x,.rtmedia-activity-container #rtm-media-options [class*=" icon-"].icon-3x,.rtmedia-container [class^="icon-"].icon-3x,.rtmedia-activity-container [class^="icon-"].icon-3x,#buddypress div.rtmedia-activity-container [class^="icon-"].icon-3x,.rtmedia-container [class*=" icon-"].icon-3x,.rtmedia-activity-container [class*=" icon-"].icon-3x,#buddypress div.rtmedia-activity-container [class*=" icon-"].icon-3x{font-size:3em}.rtmedia-container #rtm-media-options [class^="icon-"]:visited,.rtmedia-activity-container #rtm-media-options [class^="icon-"]:visited,.rtmedia-container #rtm-media-options [class*=" icon-"]:visited,.rtmedia-activity-container #rtm-media-options [class*=" icon-"]:visited,.rtmedia-container [class^="icon-"]:visited,.rtmedia-activity-container [class^="icon-"]:visited,#buddypress div.rtmedia-activity-container [class^="icon-"]:visited,.rtmedia-container [class*=" icon-"]:visited,.rtmedia-activity-container [class*=" icon-"]:visited,#buddypress div.rtmedia-activity-container [class*=" icon-"]:visited{color:#444444}.rtmedia-container #rtm-media-options [class^="icon-"]:hover,.rtmedia-activity-container #rtm-media-options [class^="icon-"]:hover,.rtmedia-container #rtm-media-options [class*=" icon-"]:hover,.rtmedia-activity-container #rtm-media-options [class*=" icon-"]:hover,.rtmedia-container [class^="icon-"]:hover,.rtmedia-activity-container [class^="icon-"]:hover,#buddypress div.rtmedia-activity-container [class^="icon-"]:hover,.rtmedia-container [class*=" icon-"]:hover,.rtmedia-activity-container [class*=" icon-"]:hover,#buddypress div.rtmedia-activity-container [class*=" icon-"]:hover{background:none}.rtmedia-container #rtm-media-options .icon-remove,.rtmedia-activity-container #rtm-media-options .icon-remove,.rtmedia-container .icon-remove,.rtmedia-activity-container .icon-remove,#buddypress div.rtmedia-activity-container .icon-remove{color:red}#rtm-media-options{text-align:right}#rtm-media-options [class^="icon-"],#rtm-media-options [class*=" icon-"]{margin-left:10px;color:#444444}#rtm-media-options .rtmedia-upload-media-link,#rtm-media-options i,#rtm-media-options a,#rtm-media-options button,#rtm-media-options span{font-size:16px;cursor:pointer;color:#444444;text-decoration:none}#rtm-media-options .primary,#rtm-media-options .primary i{color:#3475BA}#rtm-media-options .rtmedia-delete-album{margin-left:0}.rtmedia-inline{display:inline}.rtmedia-container .rtMedia-queue-list,.rtmedia-activity-container .rtMedia-queue-list,#buddypress div.rtmedia-activity-container .rtMedia-queue-list{margin-bottom:10px;line-height:20px;width:100%}.rtmedia-container .rtMedia-queue-list tr td,.rtmedia-activity-container .rtMedia-queue-list tr td,#buddypress div.rtmedia-activity-container .rtMedia-queue-list tr td,.rtmedia-container .rtMedia-queue-list tr th,.rtmedia-activity-container .rtMedia-queue-list tr th,#buddypress div.rtmedia-activity-container .rtMedia-queue-list tr th{padding:3px 8px}.rtmedia-container .rtMedia-queue-list tr,.rtmedia-activity-container .rtMedia-queue-list tr,#buddypress div.rtmedia-activity-container .rtMedia-queue-list tr{color:#333}.rtmedia-container .rtMedia-queue-list tr>td.close,.rtmedia-activity-container .rtMedia-queue-list tr>td.close,#buddypress div.rtmedia-activity-container .rtMedia-queue-list tr>td.close{text-align:right}.rtmedia-container .rtMedia-queue-list tr.upload-waiting,.rtmedia-activity-container .rtMedia-queue-list tr.upload-waiting,#buddypress div.rtmedia-activity-container .rtMedia-queue-list tr.upload-waiting{background-color:#FFFFCC;border-bottom:1px solid #ffeca0}.rtmedia-container .rtMedia-queue-list tr.upload-error,.rtmedia-activity-container .rtMedia-queue-list tr.upload-error,#buddypress div.rtmedia-activity-container .rtMedia-queue-list tr.upload-error{background-color:#ffe5e5;border-bottom:1px solid #ffcccc}.rtmedia-container .rtMedia-queue-list tr.upload-success,.rtmedia-activity-container .rtMedia-queue-list tr.upload-success,#buddypress div.rtmedia-activity-container .rtMedia-queue-list tr.upload-success,.rtmedia-container .rtMedia-queue-list tr.upload-progress,.rtmedia-activity-container .rtMedia-queue-list tr.upload-progress,#buddypress div.rtmedia-activity-container .rtMedia-queue-list tr.upload-progress{background-color:#C2FAC1;border-bottom:1px solid #8EE888}.rtmedia-container .rtMedia-queue-list .plupload_media_edit a,.rtmedia-activity-container .rtMedia-queue-list .plupload_media_edit a,#buddypress div.rtmedia-activity-container .rtMedia-queue-list .plupload_media_edit a{text-decoration:none;color:#181818}#rtm-drop-files-title{font-size:24px;text-align:center;margin:-80px 0 40px 0;z-index:0;display:none}.rtm-drag-drop-active{border:4px dashed green !important;opacity:0.5;height:150px;display:block;z-index:9999}.drag-drop p{margin:10px 0}#drag-drop-title{position:absolute;margin-top:-30px;z-index:0}#rtm-upload-start-notice{display:none}#rtm-upload-start-notice>span{color:red;font-size:14px;line-height:20px}#rtm-media-gallery-uploader{display:none;margin-bottom:20px}#rtm-gallery-title-container{margin-bottom:15px}#rtm-gallery-title-container .rtm-gallery-title{width:59%;display:inline-block;margin:0;overflow:hidden;vertical-align:bottom}#rtm-gallery-title-container #rtm-media-options{width:40%;padding:5px 0;display:inline-block}#rtm-gallery-title-container #rtm-media-options .click-nav{float:none}#rtm-gallery-title-container #rtm-media-options .click-nav .clicker,#rtm-gallery-title-container #rtm-media-options .click-nav .clicker>i{font-size:16px}#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li a,#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li span,#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li button,#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li input{padding:2px 5px;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;background:none;color:#fff;display:block;width:100%;text-align:left;font-size:13px;line-height:24px}#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li a:hover,#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li span:hover,#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li button:hover,#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li input:hover{background-color:#fff;color:#37454D}#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li a:hover i,#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li span:hover i,#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li button:hover i,#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li input:hover i{color:#37454D}#rtm-gallery-title-container #rtm-media-options .click-nav .rtm-options li i{font-size:13px;color:#fff}.rtmedia-container ul#rtmedia_comment_ul li,.rtmedia-activity-container ul#rtmedia_comment_ul li{list-style:none;background:#EDEFF4;margin:0 0 2px 0;padding:5px;width:100%;position:relative;word-wrap:break;line-height:20px}.rtmedia-container ul#rtmedia_comment_ul li.rtmedia-no-comments,.rtmedia-activity-container ul#rtmedia_comment_ul li.rtmedia-no-comments{padding:5px;font-size:12px}.rtmedia-container ul#rtmedia_comment_ul li:hover .rtmedia-delete-comment,.rtmedia-activity-container ul#rtmedia_comment_ul li:hover .rtmedia-delete-comment{display:block}.rtmedia-container ul#rtmedia_comment_ul li .rtmedia-comment-details,.rtmedia-activity-container ul#rtmedia_comment_ul li .rtmedia-comment-details{overflow:hidden;margin:0;padding:0}.rtmedia-container ul#rtmedia_comment_ul li .rtmedia-comment-user-pic,.rtmedia-activity-container ul#rtmedia_comment_ul li .rtmedia-comment-user-pic{float:left;margin:0 10px 0 0;padding:2px 0 0 2px}.rtmedia-container ul#rtmedia_comment_ul li .rtmedia-comment-user-pic img,.rtmedia-activity-container ul#rtmedia_comment_ul li .rtmedia-comment-user-pic img{height:35px !important;width:35px !important;-webkit-border-radius:0;-moz-border-radius:0;-ms-border-radius:0;-o-border-radius:0;border-radius:0}.rtmedia-container ul#rtmedia_comment_ul li .rtmedia-comment-author,.rtmedia-activity-container ul#rtmedia_comment_ul li .rtmedia-comment-author{line-height:18px;font-size:13px;margin-right:5px}.rtmedia-container ul#rtmedia_comment_ul li .rtmedia-comment-author a,.rtmedia-activity-container ul#rtmedia_comment_ul li .rtmedia-comment-author a{color:#3B5998;font-weight:bold;text-decoration:none;line-height:18px}.rtmedia-container ul#rtmedia_comment_ul li .rtmedia-comment-author a:hover,.rtmedia-activity-container ul#rtmedia_comment_ul li .rtmedia-comment-author a:hover{text-decoration:underline}.rtmedia-container ul#rtmedia_comment_ul li .rtmedia-comment-content,.rtmedia-activity-container ul#rtmedia_comment_ul li .rtmedia-comment-content{line-height:16px;font-size:13px;padding-right:5px}.rtmedia-container ul#rtmedia_comment_ul li .rtmedia-comment-date,.rtmedia-activity-container ul#rtmedia_comment_ul li .rtmedia-comment-date{display:block;font-size:11px;color:#808080}.rtmedia-container ul#rtmedia_comment_ul li .rtmedia-delete-comment,.rtmedia-activity-container ul#rtmedia_comment_ul li .rtmedia-delete-comment{text-decoration:none;position:absolute;right:0;top:0;color:#3B59A1;display:none;cursor:pointer}.rtmedia-item-comments .rt_media_comment_form textarea{width:100%;font-size:13px;height:50px}.mfp-content{width:90%}.mfp-content #buddypress .rtm-lightbox-container{background:#333;position:relative;-webkit-box-shadow:0 0 10px rgba(0,0,0,0.5);-moz-box-shadow:0 0 10px rgba(0,0,0,0.5);box-shadow:0 0 10px rgba(0,0,0,0.5);border:1px solid #222222}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-media .tagcontainer{display:inline-block;max-width:calc(100% - 4px)}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-media .tagcontainer img{max-height:calc(100% - 4px)}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta{background:#fff;overflow:hidden;padding:20px 0 0 10px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-single-meta-contents{max-height:100%;overflow-x:hidden;overflow-y:auto;padding:0 20px 0 10px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-single-meta-contents.logged-in{height:calc(97% - 80px)}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-single-meta-contents .rtmedia-media-title{font-size:16px;line-height:22px;margin:5px 0 10px 0}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-single-meta-contents .rtmedia-media-description{font-size:13px;line-height:20px;margin-bottom:10px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-single-meta-contents .rtm-like-comments-info:before{top:13px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-single-meta-contents .rtmedia-comment .rtmedia-comment-content{font-size:12px;line-height:18px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-single-meta-contents .rtmedia-comment .rtmedia-comment-date{font-size:11px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-single-meta-contents .rtmedia-comment .rtmedia-comment-author{font-size:13px;line-height:18px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .username{padding:0 10px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .userprofile{padding:0 10px 10px 0}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .userprofile .avatar{width:40px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments{position:absolute;bottom:10px;width:95%;padding:4px;background-color:#EDEFF4}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments .row{background:none}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments textarea{min-height:30px;max-height:40px;font-size:12px;line-height:14px;padding:4px}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-single-meta .rtm-media-single-comments .rt_media_comment_submit{background-color:#5B74A8;border-color:#29447E #1A356E;color:#FFFFFF;font-weight:bold}.mfp-content #buddypress .rtm-lightbox-container .rtm-mfp-close .mfp-close{height:20px;width:24px;font-size:20px;color:grey;line-height:20px;position:absolute;right:0;z-index:2;top:0;cursor:pointer;font-weight:bold}.mfp-content #buddypress .rtm-lightbox-container .mfp-arrow{background:none;border:none;display:none}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container{padding:0 !important}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container:hover .mfp-arrow,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container:hover .rtm-ltb-title-container,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container:hover .rtm-ltb-action-container{display:block;z-index:99}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container{background-color:rgba(0,0,0,0.6);padding:0 10px;color:#fff;position:absolute;width:100%;display:none}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions{display:inline-block;vertical-align:middle;text-align:right}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions form,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions form,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions form,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions form{display:inline}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions .click-nav,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions .click-nav,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions .click-nav,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions .click-nav{float:right;margin-right:0}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions a,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions button,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions a,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions button,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions a,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions button,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions a,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions button{font-weight:bold;color:#fff;font-size:12px;opacity:0.7;padding:4px 8px}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions .rtmedia-action-buttons:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions a:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions button:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions .rtmedia-action-buttons:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions a:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions button:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions .rtmedia-action-buttons:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions a:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions button:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions .rtmedia-action-buttons:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions a:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions button:hover{opacity:1}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions .rtm-options,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions .rtm-options,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions .rtm-options,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions .rtm-options{background-color:white}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions .rtm-options:before,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions .rtm-options:before,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions .rtm-options:before,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions .rtm-options:before{border-color:rgba(0,0,0,0) rgba(0,0,0,0) #fff}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions .rtm-options li,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions .rtm-options li,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions .rtm-options li,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions .rtm-options li{display:block}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions .rtm-options li .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions .rtm-options li .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions .rtm-options li .rtmedia-action-buttons,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions .rtm-options li .rtmedia-action-buttons{width:100%;color:#000}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-actions .rtm-options li .rtmedia-action-buttons:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions .rtm-options li .rtmedia-action-buttons:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions .rtm-options li .rtmedia-action-buttons:hover,.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-author-actions .rtm-options li .rtmedia-action-buttons:hover{color:#21759B}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container{top:0}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtm-ltb-title{font-size:14px;width:55%;overflow:hidden;float:left;line-height:30px;max-height:30px;opacity:0.7}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtm-ltb-title:hover{opacity:1}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtm-ltb-title a{text-decoration:none;color:#fff}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-title-container .rtmedia-author-actions{text-align:right;width:44%}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container{bottom:0}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtmedia-actions{text-align:right;display:inline-block;max-width:69%;float:right}.mfp-content #buddypress .rtm-lightbox-container #rtmedia-single-media-container .rtm-ltb-action-container .rtm-ltb-gallery-title{display:inline-block;width:30%}.mfp-content #buddypress .rtm-lightbox-container .rtmedia-media:before{content:'';display:inline-block;height:100%;vertical-align:middle}.mfp-content #buddypress .rtm-lightbox-container #rtm-mejs-video-container{max-width:100%}.mfp-content #buddypress .rtm-lightbox-container #rtm-mejs-video-container{display:inline-block;vertical-align:middle}.mfp-content #buddypress .rtm-lightbox-container .mejs-audio{display:inline-block;max-width:400px}.rtmedia-admin-notice{padding:4px;text-align:center;margin:2px 0}.rtmedia-info{color:green}.rtmedia-warning{color:red}.mfp-content #rtmedia-single-media-container .wp-audio-shortcode{margin-left:30px}#rtm-media-options .click-nav{position:relative;float:left;margin-right:10px}.rtm-lightbox-container #rtm-media-options-list.click-nav{position:relative}.rtm-lightbox-container #rtm-media-options-list ul{left:-85px}#rtm-media-options ul,.rtm-lightbox-container #rtm-media-options-list ul{position:absolute;right:0;width:170px;z-index:9;padding:10px 5px;background-color:#37454D;margin-top:12px;-webkit-border-radius:6px;-moz-border-radius:6px;-ms-border-radius:6px;-o-border-radius:6px;border-radius:6px}#rtm-media-options ul:before,.rtm-lightbox-container #rtm-media-options-list ul:before{content:'';border-width:12px;border-style:inset inset solid;display:block;position:absolute;z-index:9;top:-24px;right:20px;border-color:rgba(0,0,0,0) rgba(0,0,0,0) #37454d}#rtm-media-options ul .clicker,.rtm-lightbox-container #rtm-media-options-list ul .clicker{position:relative}#rtm-media-options ul li,.rtm-lightbox-container #rtm-media-options-list ul li{padding:0 5px;list-style:none}#rtm-media-options ul li form,.rtm-lightbox-container #rtm-media-options-list ul li form{display:block}#rtm-media-options ul li .rtmedia-action-buttons,.rtm-lightbox-container #rtm-media-options-list ul li .rtmedia-action-buttons{display:block;padding:8px;color:#fff;width:100%;text-align:left;margin:0;font-size:12px;-webkit-border-radius:6px;-moz-border-radius:6px;-ms-border-radius:6px;-o-border-radius:6px;border-radius:6px}#rtm-media-options ul li .rtmedia-action-buttons:hover,.rtm-lightbox-container #rtm-media-options-list ul li .rtmedia-action-buttons:hover{background-color:#EDEFF4;color:#2284B5}.click-nav .no-js ul{display:none}.click-nav .no-js:hover ul{display:block}.morecontent span{display:none}.rtmedia-footer-link{text-align:center;padding:7px}#bp-default .rtmedia-container embed,#bp-default .rtmedia-activity-container embed{height:100%}#bp-default .rtmedia-container .me-plugin,#bp-default .rtmedia-activity-container .me-plugin{height:100%}#bp-default .rtmedia-activity-container .mejs-overlay-button{margin-left:-50px}.rtmedia-save-album{margin-top:15px}.rtmedia-popup{position:relative;background:#FFF;padding:20px;width:auto;max-width:600px;margin:20px auto}.rtmedia-popup .rtm-modal-title{font-size:24px;line-height:24px;margin-bottom:30px;margin-top:0}.rtmedia-popup .rtm-input-medium{width:55%}.rtmedia-popup input,.rtmedia-popup select{margin-right:10px}.rtmedia-popup p{margin-bottom:10px}.rtmedia-popup label{min-width:90px;display:inline-block}.rtmedia-popup>div button{font-size:13px;color:#777;padding:6px 14px;background:#fff;border:1px solid #c1c1c1}.rtmedia-popup>div button:hover{background:#EDEDED}
trunk/app/assets/css/rtmedia-icons/animation.css ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /*
2
+ Animation example, for spinners
3
+ */
4
+ .animate-spin {
5
+ -moz-animation: spin 2s infinite linear;
6
+ -o-animation: spin 2s infinite linear;
7
+ -webkit-animation: spin 2s infinite linear;
8
+ animation: spin 2s infinite linear;
9
+ display: inline-block;
10
+ }
11
+ @-moz-keyframes spin {
12
+ 0% {
13
+ -moz-transform: rotate(0deg);
14
+ -o-transform: rotate(0deg);
15
+ -webkit-transform: rotate(0deg);
16
+ transform: rotate(0deg);
17
+ }
18
+
19
+ 100% {
20
+ -moz-transform: rotate(359deg);
21
+ -o-transform: rotate(359deg);
22
+ -webkit-transform: rotate(359deg);
23
+ transform: rotate(359deg);
24
+ }
25
+ }
26
+ @-webkit-keyframes spin {
27
+ 0% {
28
+ -moz-transform: rotate(0deg);
29
+ -o-transform: rotate(0deg);
30
+ -webkit-transform: rotate(0deg);
31
+ transform: rotate(0deg);
32
+ }
33
+
34
+ 100% {
35
+ -moz-transform: rotate(359deg);
36
+ -o-transform: rotate(359deg);
37
+ -webkit-transform: rotate(359deg);
38
+ transform: rotate(359deg);
39
+ }
40
+ }
41
+ @-o-keyframes spin {
42
+ 0% {
43
+ -moz-transform: rotate(0deg);
44
+ -o-transform: rotate(0deg);
45
+ -webkit-transform: rotate(0deg);
46
+ transform: rotate(0deg);
47
+ }
48
+
49
+ 100% {
50
+ -moz-transform: rotate(359deg);
51
+ -o-transform: rotate(359deg);
52
+ -webkit-transform: rotate(359deg);
53
+ transform: rotate(359deg);
54
+ }
55
+ }
56
+ @-ms-keyframes spin {
57
+ 0% {
58
+ -moz-transform: rotate(0deg);
59
+ -o-transform: rotate(0deg);
60
+ -webkit-transform: rotate(0deg);
61
+ transform: rotate(0deg);
62
+ }
63
+
64
+ 100% {
65
+ -moz-transform: rotate(359deg);
66
+ -o-transform: rotate(359deg);
67
+ -webkit-transform: rotate(359deg);
68
+ transform: rotate(359deg);
69
+ }
70
+ }
71
+ @keyframes spin {
72
+ 0% {
73
+ -moz-transform: rotate(0deg);
74
+ -o-transform: rotate(0deg);
75
+ -webkit-transform: rotate(0deg);
76
+ transform: rotate(0deg);
77
+ }
78
+
79
+ 100% {
80
+ -moz-transform: rotate(359deg);
81
+ -o-transform: rotate(359deg);
82
+ -webkit-transform: rotate(359deg);
83
+ transform: rotate(359deg);
84
+ }
85
+ }
trunk/app/assets/css/rtmedia-icons/rtm_font_icons-codes.css ADDED
@@ -0,0 +1,470 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ .rtmicon-glass:before { content: '\e800'; } /* '' */
3
+ .rtmicon-hourglass:before { content: '\e9d4'; } /* '' */
4
+ .rtmicon-search:before { content: '\e802'; } /* '' */
5
+ .rtmicon-mail:before { content: '\e803'; } /* '' */
6
+ .rtmicon-mail-alt:before { content: '\e804'; } /* '' */
7
+ .rtmicon-heart:before { content: '\e805'; } /* '' */
8
+ .rtmicon-heart-empty:before { content: '\e806'; } /* '' */
9
+ .rtmicon-star:before { content: '\e807'; } /* '' */
10
+ .rtmicon-star-empty:before { content: '\e808'; } /* '' */
11
+ .rtmicon-star-half:before { content: '\e809'; } /* '' */
12
+ .rtmicon-star-half-alt:before { content: '\e80a'; } /* '' */
13
+ .rtmicon-user:before { content: '\e80b'; } /* '' */
14
+ .rtmicon-users:before { content: '\e80c'; } /* '' */
15
+ .rtmicon-male:before { content: '\e80d'; } /* '' */
16
+ .rtmicon-female:before { content: '\e80e'; } /* '' */
17
+ .rtmicon-video:before { content: '\e80f'; } /* '' */
18
+ .rtmicon-videocam:before { content: '\e810'; } /* '' */
19
+ .rtmicon-picture:before { content: '\e811'; } /* '' */
20
+ .rtmicon-camera:before { content: '\e812'; } /* '' */
21
+ .rtmicon-camera-alt:before { content: '\e813'; } /* '' */
22
+ .rtmicon-th-large:before { content: '\e814'; } /* '' */
23
+ .rtmicon-th:before { content: '\e815'; } /* '' */
24
+ .rtmicon-th-list:before { content: '\e816'; } /* '' */
25
+ .rtmicon-ok:before { content: '\e817'; } /* '' */
26
+ .rtmicon-ok-circled:before { content: '\e818'; } /* '' */
27
+ .rtmicon-ok-circled2:before { content: '\e819'; } /* '' */
28
+ .rtmicon-ok-squared:before { content: '\e81a'; } /* '' */
29
+ .rtmicon-cancel:before { content: '\e81b'; } /* '' */
30
+ .rtmicon-cancel-circled:before { content: '\e81c'; } /* '' */
31
+ .rtmicon-cancel-circled2:before { content: '\e81d'; } /* '' */
32
+ .rtmicon-plus:before { content: '\e81e'; } /* '' */
33
+ .rtmicon-plus-circled:before { content: '\e81f'; } /* '' */
34
+ .rtmicon-plus-squared:before { content: '\e820'; } /* '' */
35
+ .rtmicon-plus-squared-small:before { content: '\e821'; } /* '' */
36
+ .rtmicon-minus:before { content: '\e822'; } /* '' */
37
+ .rtmicon-minus-circled:before { content: '\e823'; } /* '' */
38
+ .rtmicon-minus-squared:before { content: '\e824'; } /* '' */
39
+ .rtmicon-minus-squared-alt:before { content: '\e825'; } /* '' */
40
+ .rtmicon-minus-squared-small:before { content: '\e826'; } /* '' */
41
+ .rtmicon-help:before { content: '\e827'; } /* '' */
42
+ .rtmicon-help-circled:before { content: '\e828'; } /* '' */
43
+ .rtmicon-info-circled:before { content: '\e829'; } /* '' */
44
+ .rtmicon-info:before { content: '\e82a'; } /* '' */
45
+ .rtmicon-home:before { content: '\e82b'; } /* '' */
46
+ .rtmicon-link:before { content: '\e82c'; } /* '' */
47
+ .rtmicon-unlink:before { content: '\e82d'; } /* '' */
48
+ .rtmicon-link-ext:before { content: '\e82e'; } /* '' */
49
+ .rtmicon-link-ext-alt:before { content: '\e82f'; } /* '' */
50
+ .rtmicon-attach:before { content: '\e830'; } /* '' */
51
+ .rtmicon-lock:before { content: '\e831'; } /* '' */
52
+ .rtmicon-lock-open:before { content: '\e832'; } /* '' */
53
+ .rtmicon-lock-open-alt:before { content: '\e833'; } /* '' */
54
+ .rtmicon-pin:before { content: '\e834'; } /* '' */
55
+ .rtmicon-eye:before { content: '\e835'; } /* '' */
56
+ .rtmicon-eye-off:before { content: '\e836'; } /* '' */
57
+ .rtmicon-tag:before { content: '\e837'; } /* '' */
58
+ .rtmicon-tags:before { content: '\e838'; } /* '' */
59
+ .rtmicon-bookmark:before { content: '\e839'; } /* '' */
60
+ .rtmicon-bookmark-empty:before { content: '\e83a'; } /* '' */
61
+ .rtmicon-flag:before { content: '\e83b'; } /* '' */
62
+ .rtmicon-flag-empty:before { content: '\e83c'; } /* '' */
63
+ .rtmicon-flag-checkered:before { content: '\e83d'; } /* '' */
64
+ .rtmicon-thumbs-up:before { content: '\e83e'; } /* '' */
65
+ .rtmicon-thumbs-down:before { content: '\e83f'; } /* '' */
66
+ .rtmicon-thumbs-up-alt:before { content: '\e840'; } /* '' */
67
+ .rtmicon-thumbs-down-alt:before { content: '\e841'; } /* '' */
68
+ .rtmicon-download:before { content: '\e842'; } /* '' */
69
+ .rtmicon-upload:before { content: '\e843'; } /* '' */
70
+ .rtmicon-download-cloud:before { content: '\e844'; } /* '' */
71
+ .rtmicon-upload-cloud:before { content: '\e845'; } /* '' */
72
+ .rtmicon-reply:before { content: '\e846'; } /* '' */
73
+ .rtmicon-reply-all:before { content: '\e847'; } /* '' */
74
+ .rtmicon-forward:before { content: '\e848'; } /* '' */
75
+ .rtmicon-quote-left:before { content: '\e849'; } /* '' */
76
+ .rtmicon-quote-right:before { content: '\e84a'; } /* '' */
77
+ .rtmicon-code:before { content: '\e84b'; } /* '' */
78
+ .rtmicon-export:before { content: '\e84c'; } /* '' */
79
+ .rtmicon-export-alt:before { content: '\e84d'; } /* '' */
80
+ .rtmicon-pencil:before { content: '\e84e'; } /* '' */
81
+ .rtmicon-pencil-squared:before { content: '\e84f'; } /* '' */
82
+ .rtmicon-edit:before { content: '\e850'; } /* '' */
83
+ .rtmicon-print:before { content: '\e851'; } /* '' */
84
+ .rtmicon-retweet:before { content: '\e852'; } /* '' */
85
+ .rtmicon-keyboard:before { content: '\e853'; } /* '' */
86
+ .rtmicon-gamepad:before { content: '\e854'; } /* '' */
87
+ .rtmicon-comment:before { content: '\e855'; } /* '' */
88
+ .rtmicon-chat:before { content: '\e856'; } /* '' */
89
+ .rtmicon-comment-empty:before { content: '\e857'; } /* '' */
90
+ .rtmicon-chat-empty:before { content: '\e858'; } /* '' */
91
+ .rtmicon-bell:before { content: '\e859'; } /* '' */
92
+ .rtmicon-bell-alt:before { content: '\e85a'; } /* '' */
93
+ .rtmicon-attention-alt:before { content: '\e85b'; } /* '' */
94
+ .rtmicon-attention:before { content: '\e85c'; } /* '' */
95
+ .rtmicon-attention-circled:before { content: '\e85d'; } /* '' */
96
+ .rtmicon-location:before { content: '\e85e'; } /* '' */
97
+ .rtmicon-direction:before { content: '\e85f'; } /* '' */
98
+ .rtmicon-compass:before { content: '\e860'; } /* '' */
99
+ .rtmicon-trash:before { content: '\e861'; } /* '' */
100
+ .rtmicon-doc:before { content: '\e862'; } /* '' */
101
+ .rtmicon-docs:before { content: '\e863'; } /* '' */
102
+ .rtmicon-doc-text:before { content: '\e864'; } /* '' */
103
+ .rtmicon-doc-inv:before { content: '\e865'; } /* '' */
104
+ .rtmicon-doc-text-inv:before { content: '\e866'; } /* '' */
105
+ .rtmicon-folder:before { content: '\e867'; } /* '' */
106
+ .rtmicon-folder-open:before { content: '\e868'; } /* '' */
107
+ .rtmicon-folder-empty:before { content: '\e869'; } /* '' */
108
+ .rtmicon-folder-open-empty:before { content: '\e86a'; } /* '' */
109
+ .rtmicon-box:before { content: '\e86b'; } /* '' */
110
+ .rtmicon-rss:before { content: '\e86c'; } /* '' */
111
+ .rtmicon-rss-squared:before { content: '\e86d'; } /* '' */
112
+ .rtmicon-phone:before { content: '\e86e'; } /* '' */
113
+ .rtmicon-phone-squared:before { content: '\e86f'; } /* '' */
114
+ .rtmicon-menu:before { content: '\e870'; } /* '' */
115
+ .rtmicon-cog:before { content: '\e871'; } /* '' */
116
+ .rtmicon-cog-alt:before { content: '\e872'; } /* '' */
117
+ .rtmicon-wrench:before { content: '\e873'; } /* '' */
118
+ .rtmicon-basket:before { content: '\e874'; } /* '' */
119
+ .rtmicon-calendar:before { content: '\e875'; } /* '' */
120
+ .rtmicon-calendar-empty:before { content: '\e876'; } /* '' */
121
+ .rtmicon-login:before { content: '\e877'; } /* '' */
122
+ .rtmicon-logout:before { content: '\e878'; } /* '' */
123
+ .rtmicon-mic:before { content: '\e879'; } /* '' */
124
+ .rtmicon-mute:before { content: '\e87a'; } /* '' */
125
+ .rtmicon-volume-off:before { content: '\e87b'; } /* '' */
126
+ .rtmicon-volume-down:before { content: '\e87c'; } /* '' */
127
+ .rtmicon-volume-up:before { content: '\e87d'; } /* '' */
128
+ .rtmicon-headphones:before { content: '\e87e'; } /* '' */
129
+ .rtmicon-clock:before { content: '\e87f'; } /* '' */
130
+ .rtmicon-lightbulb:before { content: '\e880'; } /* '' */
131
+ .rtmicon-block:before { content: '\e881'; } /* '' */
132
+ .rtmicon-resize-full:before { content: '\e882'; } /* '' */
133
+ .rtmicon-resize-full-alt:before { content: '\e883'; } /* '' */
134
+ .rtmicon-resize-small:before { content: '\e884'; } /* '' */
135
+ .rtmicon-resize-vertical:before { content: '\e885'; } /* '' */
136
+ .rtmicon-resize-horizontal:before { content: '\e886'; } /* '' */
137
+ .rtmicon-move:before { content: '\e887'; } /* '' */
138
+ .rtmicon-zoom-in:before { content: '\e888'; } /* '' */
139
+ .rtmicon-zoom-out:before { content: '\e889'; } /* '' */
140
+ .rtmicon-down-circled2:before { content: '\e88a'; } /* '' */
141
+ .rtmicon-up-circled2:before { content: '\e88b'; } /* '' */
142
+ .rtmicon-left-circled2:before { content: '\e88c'; } /* '' */
143
+ .rtmicon-right-circled2:before { content: '\e88d'; } /* '' */
144
+ .rtmicon-down-dir:before { content: '\e88e'; } /* '' */
145
+ .rtmicon-up-dir:before { content: '\e88f'; } /* '' */
146
+ .rtmicon-left-dir:before { content: '\e890'; } /* '' */
147
+ .rtmicon-right-dir:before { content: '\e891'; } /* '' */
148
+ .rtmicon-down-open:before { content: '\e892'; } /* '' */
149
+ .rtmicon-left-open:before { content: '\e893'; } /* '' */
150
+ .rtmicon-right-open:before { content: '\e894'; } /* '' */
151
+ .rtmicon-up-open:before { content: '\e895'; } /* '' */
152
+ .rtmicon-angle-left:before { content: '\e896'; } /* '' */
153
+ .rtmicon-angle-right:before { content: '\e897'; } /* '' */
154
+ .rtmicon-angle-up:before { content: '\e898'; } /* '' */
155
+ .rtmicon-angle-down:before { content: '\e899'; } /* '' */
156
+ .rtmicon-angle-circled-left:before { content: '\e89a'; } /* '' */
157
+ .rtmicon-angle-circled-right:before { content: '\e89b'; } /* '' */
158
+ .rtmicon-angle-circled-up:before { content: '\e89c'; } /* '' */
159
+ .rtmicon-angle-circled-down:before { content: '\e89d'; } /* '' */
160
+ .rtmicon-angle-double-left:before { content: '\e89e'; } /* '' */
161
+ .rtmicon-angle-double-right:before { content: '\e89f'; } /* '' */
162
+ .rtmicon-angle-double-up:before { content: '\e8a0'; } /* '' */
163
+ .rtmicon-angle-double-down:before { content: '\e8a1'; } /* '' */
164
+ .rtmicon-down:before { content: '\e8a2'; } /* '' */
165
+ .rtmicon-left:before { content: '\e8a3'; } /* '' */
166
+ .rtmicon-right:before { content: '\e8a4'; } /* '' */
167
+ .rtmicon-up:before { content: '\e8a5'; } /* '' */
168
+ .rtmicon-down-big:before { content: '\e8a6'; } /* '' */
169
+ .rtmicon-left-big:before { content: '\e8a7'; } /* '' */
170
+ .rtmicon-right-big:before { content: '\e8a8'; } /* '' */
171
+ .rtmicon-up-big:before { content: '\e8a9'; } /* '' */
172
+ .rtmicon-right-hand:before { content: '\e8aa'; } /* '' */
173
+ .rtmicon-left-hand:before { content: '\e8ab'; } /* '' */
174
+ .rtmicon-up-hand:before { content: '\e8ac'; } /* '' */
175
+ .rtmicon-down-hand:before { content: '\e8ad'; } /* '' */
176
+ .rtmicon-left-circled:before { content: '\e8ae'; } /* '' */
177
+ .rtmicon-right-circled:before { content: '\e8af'; } /* '' */
178
+ .rtmicon-up-circled:before { content: '\e8b0'; } /* '' */
179
+ .rtmicon-down-circled:before { content: '\e8b1'; } /* '' */
180
+ .rtmicon-cw:before { content: '\e8b2'; } /* '' */
181
+ .rtmicon-ccw:before { content: '\e8b3'; } /* '' */
182
+ .rtmicon-arrows-cw:before { content: '\e8b4'; } /* '' */
183
+ .rtmicon-level-up:before { content: '\e8b5'; } /* '' */
184
+ .rtmicon-level-down:before { content: '\e8b6'; } /* '' */
185
+ .rtmicon-shuffle:before { content: '\e8b7'; } /* '' */
186
+ .rtmicon-exchange:before { content: '\e8b8'; } /* '' */
187
+ .rtmicon-expand:before { content: '\e8b9'; } /* '' */
188
+ .rtmicon-collapse:before { content: '\e8ba'; } /* '' */
189
+ .rtmicon-expand-right:before { content: '\e8bb'; } /* '' */
190
+ .rtmicon-collapse-left:before { content: '\e8bc'; } /* '' */
191
+ .rtmicon-play:before { content: '\e8bd'; } /* '' */
192
+ .rtmicon-play-circled:before { content: '\e8be'; } /* '' */
193
+ .rtmicon-play-circled2:before { content: '\e8bf'; } /* '' */
194
+ .rtmicon-stop:before { content: '\e8c0'; } /* '' */
195
+ .rtmicon-pause:before { content: '\e8c1'; } /* '' */
196
+ .rtmicon-to-end:before { content: '\e8c2'; } /* '' */
197
+ .rtmicon-to-end-alt:before { content: '\e8c3'; } /* '' */
198
+ .rtmicon-to-start:before { content: '\e8c4'; } /* '' */
199
+ .rtmicon-to-start-alt:before { content: '\e8c5'; } /* '' */
200
+ .rtmicon-fast-fw:before { content: '\e8c6'; } /* '' */
201
+ .rtmicon-fast-bw:before { content: '\e8c7'; } /* '' */
202
+ .rtmicon-eject:before { content: '\e8c8'; } /* '' */
203
+ .rtmicon-target:before { content: '\e8c9'; } /* '' */
204
+ .rtmicon-signal:before { content: '\e8ca'; } /* '' */
205
+ .rtmicon-award:before { content: '\e8cb'; } /* '' */
206
+ .rtmicon-desktop:before { content: '\e8cc'; } /* '' */
207
+ .rtmicon-laptop:before { content: '\e8cd'; } /* '' */
208
+ .rtmicon-tablet:before { content: '\e8ce'; } /* '' */
209
+ .rtmicon-mobile:before { content: '\e8cf'; } /* '' */
210
+ .rtmicon-inbox:before { content: '\e8d0'; } /* '' */
211
+ .rtmicon-globe:before { content: '\e8d1'; } /* '' */
212
+ .rtmicon-sun:before { content: '\e8d2'; } /* '' */
213
+ .rtmicon-cloud:before { content: '\e8d3'; } /* '' */
214
+ .rtmicon-flash:before { content: '\e8d4'; } /* '' */
215
+ .rtmicon-moon:before { content: '\e8d5'; } /* '' */
216
+ .rtmicon-umbrella:before { content: '\e8d6'; } /* '' */
217
+ .rtmicon-flight:before { content: '\e8d7'; } /* '' */
218
+ .rtmicon-fighter-jet:before { content: '\e8d8'; } /* '' */
219
+ .rtmicon-leaf:before { content: '\e8d9'; } /* '' */
220
+ .rtmicon-font:before { content: '\e8da'; } /* '' */
221
+ .rtmicon-bold:before { content: '\e8db'; } /* '' */
222
+ .rtmicon-italic:before { content: '\e8dc'; } /* '' */
223
+ .rtmicon-text-height:before { content: '\e8dd'; } /* '' */
224
+ .rtmicon-text-width:before { content: '\e8de'; } /* '' */
225
+ .rtmicon-align-left:before { content: '\e8df'; } /* '' */
226
+ .rtmicon-align-center:before { content: '\e8e0'; } /* '' */
227
+ .rtmicon-align-right:before { content: '\e8e1'; } /* '' */
228
+ .rtmicon-align-justify:before { content: '\e8e2'; } /* '' */
229
+ .rtmicon-list:before { content: '\e8e3'; } /* '' */
230
+ .rtmicon-indent-left:before { content: '\e8e4'; } /* '' */
231
+ .rtmicon-indent-right:before { content: '\e8e5'; } /* '' */
232
+ .rtmicon-list-bullet:before { content: '\e8e6'; } /* '' */
233
+ .rtmicon-list-numbered:before { content: '\e8e7'; } /* '' */
234
+ .rtmicon-strike:before { content: '\e8e8'; } /* '' */
235
+ .rtmicon-underline:before { content: '\e8e9'; } /* '' */
236
+ .rtmicon-music:before { content: '\e801'; } /* '' */
237
+ .rtmicon-subscript:before { content: '\e8eb'; } /* '' */
238
+ .rtmicon-table:before { content: '\e8ec'; } /* '' */
239
+ .rtmicon-columns:before { content: '\e8ed'; } /* '' */
240
+ .rtmicon-crop:before { content: '\e8ee'; } /* '' */
241
+ .rtmicon-scissors:before { content: '\e8ef'; } /* '' */
242
+ .rtmicon-paste:before { content: '\e8f0'; } /* '' */
243
+ .rtmicon-briefcase:before { content: '\e8f1'; } /* '' */
244
+ .rtmicon-suitcase:before { content: '\e8f2'; } /* '' */
245
+ .rtmicon-ellipsis:before { content: '\e8f3'; } /* '' */
246
+ .rtmicon-ellipsis-vert:before { content: '\e8f4'; } /* '' */
247
+ .rtmicon-off:before { content: '\e8f5'; } /* '' */
248
+ .rtmicon-road:before { content: '\e8f6'; } /* '' */
249
+ .rtmicon-list-alt:before { content: '\e8f7'; } /* '' */
250
+ .rtmicon-qrcode:before { content: '\e8f8'; } /* '' */
251
+ .rtmicon-barcode:before { content: '\e8f9'; } /* '' */
252
+ .rtmicon-book:before { content: '\e8fa'; } /* '' */
253
+ .rtmicon-ajust:before { content: '\e8fb'; } /* '' */
254
+ .rtmicon-tint:before { content: '\e8fc'; } /* '' */
255
+ .rtmicon-check:before { content: '\e8fd'; } /* '' */
256
+ .rtmicon-check-empty:before { content: '\e8fe'; } /* '' */
257
+ .rtmicon-circle:before { content: '\e8ff'; } /* '' */
258
+ .rtmicon-circle-empty:before { content: '\e900'; } /* '' */
259
+ .rtmicon-dot-circled:before { content: '\e901'; } /* '' */
260
+ .rtmicon-asterisk:before { content: '\e902'; } /* '' */
261
+ .rtmicon-gift:before { content: '\e903'; } /* '' */
262
+ .rtmicon-fire:before { content: '\e904'; } /* '' */
263
+ .rtmicon-magnet:before { content: '\e905'; } /* '' */
264
+ .rtmicon-chart-bar:before { content: '\e906'; } /* '' */
265
+ .rtmicon-ticket:before { content: '\e907'; } /* '' */
266
+ .rtmicon-credit-card:before { content: '\e908'; } /* '' */
267
+ .rtmicon-floppy:before { content: '\e909'; } /* '' */
268
+ .rtmicon-megaphone:before { content: '\e90a'; } /* '' */
269
+ .rtmicon-hdd:before { content: '\e90b'; } /* '' */
270
+ .rtmicon-key:before { content: '\e90c'; } /* '' */
271
+ .rtmicon-fork:before { content: '\e90d'; } /* '' */
272
+ .rtmicon-rocket:before { content: '\e90e'; } /* '' */
273
+ .rtmicon-bug:before { content: '\e90f'; } /* '' */
274
+ .rtmicon-certificate:before { content: '\e910'; } /* '' */
275
+ .rtmicon-tasks:before { content: '\e911'; } /* '' */
276
+ .rtmicon-filter:before { content: '\e912'; } /* '' */
277
+ .rtmicon-beaker:before { content: '\e913'; } /* '' */
278
+ .rtmicon-magic:before { content: '\e914'; } /* '' */
279
+ .rtmicon-truck:before { content: '\e915'; } /* '' */
280
+ .rtmicon-money:before { content: '\e916'; } /* '' */
281
+ .rtmicon-euro:before { content: '\e917'; } /* '' */
282
+ .rtmicon-pound:before { content: '\e918'; } /* '' */
283
+ .rtmicon-dollar:before { content: '\e919'; } /* '' */
284
+ .rtmicon-rupee:before { content: '\e91a'; } /* '' */
285
+ .rtmicon-yen:before { content: '\e91b'; } /* '' */
286
+ .rtmicon-rouble:before { content: '\e91c'; } /* '' */
287
+ .rtmicon-try:before { content: '\e91d'; } /* '' */
288
+ .rtmicon-won:before { content: '\e91e'; } /* '' */
289
+ .rtmicon-bitcoin:before { content: '\e91f'; } /* '' */
290
+ .rtmicon-sort:before { content: '\e920'; } /* '' */
291
+ .rtmicon-sort-down:before { content: '\e921'; } /* '' */
292
+ .rtmicon-sort-up:before { content: '\e922'; } /* '' */
293
+ .rtmicon-sort-alt-up:before { content: '\e923'; } /* '' */
294
+ .rtmicon-sort-alt-down:before { content: '\e924'; } /* '' */
295
+ .rtmicon-sort-name-up:before { content: '\e925'; } /* '' */
296
+ .rtmicon-sort-name-down:before { content: '\e926'; } /* '' */
297
+ .rtmicon-sort-number-up:before { content: '\e927'; } /* '' */
298
+ .rtmicon-sort-number-down:before { content: '\e928'; } /* '' */
299
+ .rtmicon-hammer:before { content: '\e929'; } /* '' */
300
+ .rtmicon-gauge:before { content: '\e92a'; } /* '' */
301
+ .rtmicon-sitemap:before { content: '\e92b'; } /* '' */
302
+ .rtmicon-spinner:before { content: '\e92c'; } /* '' */
303
+ .rtmicon-coffee:before { content: '\e92d'; } /* '' */
304
+ .rtmicon-food:before { content: '\e92e'; } /* '' */
305
+ .rtmicon-beer:before { content: '\e92f'; } /* '' */
306
+ .rtmicon-user-md:before { content: '\e930'; } /* '' */
307
+ .rtmicon-stethoscope:before { content: '\e931'; } /* '' */
308
+ .rtmicon-ambulance:before { content: '\e932'; } /* '' */
309
+ .rtmicon-medkit:before { content: '\e933'; } /* '' */
310
+ .rtmicon-h-sigh:before { content: '\e934'; } /* '' */
311
+ .rtmicon-hospital:before { content: '\e935'; } /* '' */
312
+ .rtmicon-building:before { content: '\e936'; } /* '' */
313
+ .rtmicon-smile:before { content: '\e937'; } /* '' */
314
+ .rtmicon-frown:before { content: '\e938'; } /* '' */
315
+ .rtmicon-meh:before { content: '\e939'; } /* '' */
316
+ .rtmicon-anchor:before { content: '\e93a'; } /* '' */
317
+ .rtmicon-terminal:before { content: '\e93b'; } /* '' */
318
+ .rtmicon-eraser:before { content: '\e93c'; } /* '' */
319
+ .rtmicon-puzzle:before { content: '\e93d'; } /* '' */
320
+ .rtmicon-shield:before { content: '\e93e'; } /* '' */
321
+ .rtmicon-extinguisher:before { content: '\e93f'; } /* '' */
322
+ .rtmicon-bullseye:before { content: '\e940'; } /* '' */
323
+ .rtmicon-wheelchair:before { content: '\e941'; } /* '' */
324
+ .rtmicon-adn:before { content: '\e942'; } /* '' */
325
+ .rtmicon-android:before { content: '\e943'; } /* '' */
326
+ .rtmicon-apple:before { content: '\e944'; } /* '' */
327
+ .rtmicon-bitbucket:before { content: '\e945'; } /* '' */
328
+ .rtmicon-bitbucket-squared:before { content: '\e946'; } /* '' */
329
+ .rtmicon-css3:before { content: '\e947'; } /* '' */
330
+ .rtmicon-dribbble:before { content: '\e948'; } /* '' */
331
+ .rtmicon-dropbox:before { content: '\e949'; } /* '' */
332
+ .rtmicon-facebook:before { content: '\e94a'; } /* '' */
333
+ .rtmicon-facebook-squared:before { content: '\e94b'; } /* '' */
334
+ .rtmicon-flickr:before { content: '\e94c'; } /* '' */
335
+ .rtmicon-foursquare:before { content: '\e94d'; } /* '' */
336
+ .rtmicon-github:before { content: '\e94e'; } /* '' */
337
+ .rtmicon-github-squared:before { content: '\e94f'; } /* '' */
338
+ .rtmicon-github-circled:before { content: '\e950'; } /* '' */
339
+ .rtmicon-gittip:before { content: '\e951'; } /* '' */
340
+ .rtmicon-gplus-squared:before { content: '\e952'; } /* '' */
341
+ .rtmicon-gplus:before { content: '\e953'; } /* '' */
342
+ .rtmicon-html5:before { content: '\e954'; } /* '' */
343
+ .rtmicon-instagramm:before { content: '\e955'; } /* '' */
344
+ .rtmicon-linkedin-squared:before { content: '\e956'; } /* '' */
345
+ .rtmicon-linux:before { content: '\e957'; } /* '' */
346
+ .rtmicon-linkedin:before { content: '\e958'; } /* '' */
347
+ .rtmicon-maxcdn:before { content: '\e959'; } /* '' */
348
+ .rtmicon-pagelines:before { content: '\e95a'; } /* '' */
349
+ .rtmicon-pinterest-circled:before { content: '\e95b'; } /* '' */
350
+ .rtmicon-pinterest-squared:before { content: '\e95c'; } /* '' */
351
+ .rtmicon-renren:before { content: '\e95d'; } /* '' */
352
+ .rtmicon-skype:before { content: '\e95e'; } /* '' */
353
+ .rtmicon-stackexchange:before { content: '\e95f'; } /* '' */
354
+ .rtmicon-stackoverflow:before { content: '\e960'; } /* '' */
355
+ .rtmicon-trello:before { content: '\e961'; } /* '' */
356
+ .rtmicon-tumblr:before { content: '\e962'; } /* '' */
357
+ .rtmicon-tumblr-squared:before { content: '\e963'; } /* '' */
358
+ .rtmicon-twitter-squared:before { content: '\e964'; } /* '' */
359
+ .rtmicon-twitter:before { content: '\e965'; } /* '' */
360
+ .rtmicon-vimeo-squared:before { content: '\e966'; } /* '' */
361
+ .rtmicon-vkontakte:before { content: '\e967'; } /* '' */
362
+ .rtmicon-weibo:before { content: '\e968'; } /* '' */
363
+ .rtmicon-windows:before { content: '\e969'; } /* '' */
364
+ .rtmicon-xing:before { content: '\e96a'; } /* '' */
365
+ .rtmicon-xing-squared:before { content: '\e96b'; } /* '' */
366
+ .rtmicon-youtube:before { content: '\e96c'; } /* '' */
367
+ .rtmicon-youtube-squared:before { content: '\e96d'; } /* '' */
368
+ .rtmicon-youtube-play:before { content: '\e96e'; } /* '' */
369
+ .rtmicon-blank:before { content: '\e96f'; } /* '' */
370
+ .rtmicon-lemon:before { content: '\e970'; } /* '' */
371
+ .rtmicon-note:before { content: '\e971'; } /* '' */
372
+ .rtmicon-note-beamed:before { content: '\e972'; } /* '' */
373
+ .rtmicon-music-1:before { content: '\e973'; } /* '' */
374
+ .rtmicon-search-1:before { content: '\e974'; } /* '' */
375
+ .rtmicon-flashlight:before { content: '\e975'; } /* '' */
376
+ .rtmicon-mail-1:before { content: '\e976'; } /* '' */
377
+ .rtmicon-heart-1:before { content: '\e977'; } /* '' */
378
+ .rtmicon-heart-empty-1:before { content: '\e978'; } /* '' */
379
+ .rtmicon-star-1:before { content: '\e979'; } /* '' */
380
+ .rtmicon-star-empty-1:before { content: '\e97a'; } /* '' */
381
+ .rtmicon-user-1:before { content: '\e97b'; } /* '' */
382
+ .rtmicon-users-1:before { content: '\e97c'; } /* '' */
383
+ .rtmicon-user-add:before { content: '\e97d'; } /* '' */
384
+ .rtmicon-video-1:before { content: '\e97e'; } /* '' */
385
+ .rtmicon-picture-1:before { content: '\e97f'; } /* '' */
386
+ .rtmicon-camera-1:before { content: '\e980'; } /* '' */
387
+ .rtmicon-layout:before { content: '\e981'; } /* '' */
388
+ .rtmicon-menu-1:before { content: '\e982'; } /* '' */
389
+ .rtmicon-check-1:before { content: '\e983'; } /* '' */
390
+ .rtmicon-cancel-1:before { content: '\e984'; } /* '' */
391
+ .rtmicon-cancel-circled-1:before { content: '\e985'; } /* '' */
392
+ .rtmicon-cancel-squared:before { content: '\e986'; } /* '' */
393
+ .rtmicon-plus-1:before { content: '\e987'; } /* '' */
394
+ .rtmicon-plus-circled-1:before { content: '\e988'; } /* '' */
395
+ .rtmicon-plus-squared-1:before { content: '\e989'; } /* '' */
396
+ .rtmicon-minus-1:before { content: '\e98a'; } /* '' */
397
+ .rtmicon-minus-circled-1:before { content: '\e98b'; } /* '' */
398
+ .rtmicon-minus-squared-1:before { content: '\e98c'; } /* '' */
399
+ .rtmicon-help-1:before { content: '\e98d'; } /* '' */
400
+ .rtmicon-help-circled-1:before { content: '\e98e'; } /* '' */
401
+ .rtmicon-info-1:before { content: '\e98f'; } /* '' */
402
+ .rtmicon-info-circled-1:before { content: '\e990'; } /* '' */
403
+ .rtmicon-back:before { content: '\e991'; } /* '' */
404
+ .rtmicon-home-1:before { content: '\e992'; } /* '' */
405
+ .rtmicon-link-1:before { content: '\e993'; } /* '' */
406
+ .rtmicon-attach-1:before { content: '\e994'; } /* '' */
407
+ .rtmicon-lock-1:before { content: '\e995'; } /* '' */
408
+ .rtmicon-lock-open-1:before { content: '\e996'; } /* '' */
409
+ .rtmicon-eye-1:before { content: '\e997'; } /* '' */
410
+ .rtmicon-tag-1:before { content: '\e998'; } /* '' */
411
+ .rtmicon-bookmark-1:before { content: '\e999'; } /* '' */
412
+ .rtmicon-bookmarks:before { content: '\e99a'; } /* '' */
413
+ .rtmicon-flag-1:before { content: '\e99b'; } /* '' */
414
+ .rtmicon-thumbs-up-1:before { content: '\e99c'; } /* '' */
415
+ .rtmicon-thumbs-down-1:before { content: '\e99d'; } /* '' */
416
+ .rtmicon-download-1:before { content: '\e99e'; } /* '' */
417
+ .rtmicon-upload-1:before { content: '\e99f'; } /* '' */
418
+ .rtmicon-upload-cloud-1:before { content: '\e9a0'; } /* '' */
419
+ .rtmicon-reply-1:before { content: '\e9a1'; } /* '' */
420
+ .rtmicon-reply-all-1:before { content: '\e9a2'; } /* '' */
421
+ .rtmicon-forward-1:before { content: '\e9a3'; } /* '' */
422
+ .rtmicon-quote:before { content: '\e9a4'; } /* '' */
423
+ .rtmicon-code-1:before { content: '\e9a5'; } /* '' */
424
+ .rtmicon-export-1:before { content: '\e9a6'; } /* '' */
425
+ .rtmicon-pencil-1:before { content: '\e9a7'; } /* '' */
426
+ .rtmicon-feather:before { content: '\e9a8'; } /* '' */
427
+ .rtmicon-print-1:before { content: '\e9a9'; } /* '' */
428
+ .rtmicon-retweet-1:before { content: '\e9aa'; } /* '' */
429
+ .rtmicon-keyboard-1:before { content: '\e9ab'; } /* '' */
430
+ .rtmicon-comment-1:before { content: '\e9ac'; } /* '' */
431
+ .rtmicon-chat-1:before { content: '\e9ad'; } /* '' */
432
+ .rtmicon-bell-1:before { content: '\e9ae'; } /* '' */
433
+ .rtmicon-attention-1:before { content: '\e9af'; } /* '' */
434
+ .rtmicon-alert:before { content: '\e9b0'; } /* '' */
435
+ .rtmicon-vcard:before { content: '\e9b1'; } /* '' */
436
+ .rtmicon-address:before { content: '\e9b2'; } /* '' */
437
+ .rtmicon-location-1:before { content: '\e9b3'; } /* '' */
438
+ .rtmicon-map:before { content: '\e9b4'; } /* '' */
439
+ .rtmicon-direction-1:before { content: '\e9b5'; } /* '' */
440
+ .rtmicon-compass-1:before { content: '\e9b6'; } /* '' */
441
+ .rtmicon-cup:before { content: '\e9b7'; } /* '' */
442
+ .rtmicon-trash-1:before { content: '\e9b8'; } /* '' */
443
+ .rtmicon-doc-1:before { content: '\e9b9'; } /* '' */
444
+ .rtmicon-docs-1:before { content: '\e9ba'; } /* '' */
445
+ .rtmicon-doc-landscape:before { content: '\e9bb'; } /* '' */
446
+ .rtmicon-doc-text-1:before { content: '\e9bc'; } /* '' */
447
+ .rtmicon-doc-text-inv-1:before { content: '\e9bd'; } /* '' */
448
+ .rtmicon-newspaper:before { content: '\e9be'; } /* '' */
449
+ .rtmicon-book-open:before { content: '\e9bf'; } /* '' */
450
+ .rtmicon-book-1:before { content: '\e9c0'; } /* '' */
451
+ .rtmicon-folder-1:before { content: '\e9c1'; } /* '' */
452
+ .rtmicon-archive:before { content: '\e9c2'; } /* '' */
453
+ .rtmicon-box-1:before { content: '\e9c3'; } /* '' */
454
+ .rtmicon-rss-1:before { content: '\e9c4'; } /* '' */
455
+ .rtmicon-phone-1:before { content: '\e9c5'; } /* '' */
456
+ .rtmicon-cog-1:before { content: '\e9c6'; } /* '' */
457
+ .rtmicon-tools:before { content: '\e9c7'; } /* '' */
458
+ .rtmicon-share:before { content: '\e9c8'; } /* '' */
459
+ .rtmicon-shareable:before { content: '\e9c9'; } /* '' */
460
+ .rtmicon-basket-1:before { content: '\e9ca'; } /* '' */
461
+ .rtmicon-bag:before { content: '\e9cb'; } /* '' */
462
+ .rtmicon-calendar-1:before { content: '\e9cc'; } /* '' */
463
+ .rtmicon-login-1:before { content: '\e9cd'; } /* '' */
464
+ .rtmicon-logout-1:before { content: '\e9ce'; } /* '' */
465
+ .rtmicon-mic-1:before { content: '\e9cf'; } /* '' */
466
+ .rtmicon-mute-1:before { content: '\e9d0'; } /* '' */
467
+ .rtmicon-sound:before { content: '\e9d1'; } /* '' */
468
+ .rtmicon-volume:before { content: '\e9d2'; } /* '' */
469
+ .rtmicon-clock-1:before { content: '\e9d3'; } /* '' */
470
+ .rtmicon-superscript:before { content: '\e8ea'; } /* '' */
trunk/app/assets/css/rtmedia-icons/rtm_font_icons-embedded.css ADDED
@@ -0,0 +1,523 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @font-face {
2
+ font-family: 'rtm_font_icons';
3
+ src: url('../font/rtm_font_icons.eot?13024617');
4
+ src: url('../font/rtm_font_icons.eot?13024617#iefix') format('embedded-opentype'),
5
+ url('../font/rtm_font_icons.svg?13024617#rtm_font_icons') format('svg');
6
+ font-weight: normal;
7
+ font-style: normal;
8
+ }
9
+ @font-face {
10
+ font-family: 'rtm_font_icons';
11
+ src: url('data:application/octet-stream;base64,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') format('woff'),
12
+ url('data:application/octet-stream;base64,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A1kAAAFlAAADoAAAA6AAAAOgAAAD6AAAA1kAAAMRAAACggAAA6AAAAKCAAACggAAA+gAAAPoAAADWQAABC8AAALKAAACygAAA+gAAAPoAAAD6AAAA1kAAANZAAADoAAAA6AAAAOgAAADoAAABC8AAAQvAAAD6AAAA+gAAAPoAAADoAAAA6AAAAQvAAADoAAAA1kAAANZAAADWQAAA+gAAAOgAAAELwAABC8AAAQvAAAD6AAAA+gAAAPoAAAD6AAAA6AAAAOgAAABZQAAA+gAAANZAAACOwAAAxEAAANZAAADEQAAAsoAAAPoAAACygAAAsoAAALKAAADoAAABC8AAAOgAAAELwAAA+gAAAMRAAADWQAAAxEAAANZAAADWQAAA1kAAAQvAAADoAAAA6AAAAOgAAADoAAAA1kAAAOgAAACggAAAxEAAAGsAAACggAAA6AAAAOgAAADWQAAAjsAAANZAAADWQAAA1kAAANZAAABrAAAA+gAAAPoAAADoAAAA6AAAANZAAADWQAAA1kAAANZAAACOwAAAjsAAAFlAAABZQAAA6AAAAKCAAACggAAA6AAAAFlAAABZQAAAoIAAAKCAAADWQAAA1kAAANZAAADWQAAAjsAAAI7AAACggAAAoIAAAGsAAAD6AAAA+gAAAGsAAADoAAAA1kAAANZAAADoAAAA+gAAAPoAAADWQAAA1kAAANZAAADWQAAA1kAAANZAAADWQAAA1kAAANZAAACOwAAAjsAAAPoAAAD6AAAA1kAAANZAAADWQAAA1kAAAMRAAADWQAAA1kAAANZAAADWQAAAjsAAAPoAAACOwAAA+gAAAOgAAADoAAAA1oAAANZAAAD6AAAA6AAAAQvAAAELwAAAoIAAAGsAAADWQAAA1kAAAPoAAAELwAAAfQAAANZAAADoAAAAxEAAAQvAAAD6AAAA6AAAAMRAAACOwAAA+gAAANZAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA+gAAAPoAAAD6AAAA1kAAANZAAADWQAAA6AAAAOgAAADoAAAA+gAAAPoAAAD6AAAA+gAAAMRAAAA1gAAA1kAAAQvAAAD6AAAAxEAAAPoAAADoAAAA1kAAAI7AAADoAAAAxEAAANZAAADWQAAA1kAAAOgAAADWQAAAxEAAANZAAAELwAAA+gAAAQvAAADWQAA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ASwBLQEuAS8BMAExATIBMwE0ATUBNgE3ATgBOQE6ATsBPAE9AT4BPwFAAUEBQgFDAUQBRQFGAUcBSAFJAUoBSwFMAU0BTgFPAVABUQFSAVMBVAFVAVYBVwFYAVkBWgFbAVwBXQFeAV8BYAFhAWIBYwFkAWUBZgFnAWgBaQFqAWsBbAFtAW4BbwFwAXEBcgFzAXQBdQF2AXcBeAF5AXoBewF8AX0BfgF/AYABgQGCAYMBhAGFAYYBhwGIAYkBigGLAYwBjQGOAY8BkAGRAZIBkwGUAZUBlgGXAZgBmQGaAZsBnAGdAZ4BnwGgAaEBogGjAaQBpQGmAacBqAGpAaoBqwGsAa0BrgGvAbABsQGyAbMBtAG1AbYBtwG4AbkBugG7AbwBvQG+Ab8BwAHBAcIBwwHEAcUBxgHHAcgByQHKAcsBzAHNAc4BzwHQAdEB0gHTAdQB1QHWAdcB2AHZAdoB2wHcAd0B3gHfAeAB4QHiAeMB5AHlAeYB5wHoAekB6gHrAewB7QHuAe8B8AHxAfIB8wH0AfUB9gH3AfgB+QH6AfsB/AH9Af4B/wIAAgECAgIDAgQCBQIGAgcCCAIJAgoCCwIMAg0CDgIPAhACEQISAhMCFAIVAhYCFwIYAhkCGgIbAhwCHQIeAh8CIAIhAiICIwIkAiUCJgInAigCKQIqAisCLAItAi4CLwIwAjECMgIzAjQCNQI2AjcCOAI5AjoCOwI8Aj0CPgI/AkACQQJCAkMCRAJFAkYCRwJIAkkCSgJLAkwCTQJOAk8CUAJRAlICUwJUAlUCVgJXAlgCWQJaAlsCXAJdAl4CXwJgAmECYgJjAmQCZQJmAmcCaAJpAmoCawJsAm0CbgJvAnACcQJyAnMCdAJ1AnYCdwJ4AnkCegJ7AnwCfQJ+An8CgAKBAoICgwKEAoUChgKHAogCiQKKAosCjAKNAo4CjwKQApECkgKTApQClQKWApcCmAKZApoCmwKcAp0CngKfAqACoQKiAqMCpAKlAqYCpwKoAqkCqgKrAqwCrQKuAq8CsAKxArICswK0ArUCtgK3ArgCuQK6ArsCvAK9Ar4CvwLAAsECwgLDAsQCxQLGAscCyALJAsoCywLMAs0CzgLPAtAC0QLSAtMC1ALVAtYFZ2xhc3MFbXVzaWMGc2VhcmNoBG1haWwIbWFpbC1hbHQFaGVhcnQLaGVhcnQtZW1wdHkEc3RhcgpzdGFyLWVtcHR5CXN0YXItaGFsZg1zdGFyLWhhbGYtYWx0BHVzZXIFdXNlcnMEbWFsZQZmZW1hbGUFdmlkZW8IdmlkZW9jYW0HcGljdHVyZQZjYW1lcmEKY2FtZXJhLWFsdAh0aC1sYXJnZQJ0aAd0aC1saXN0Am9rCm9rLWNpcmNsZWQLb2stY2lyY2xlZDIKb2stc3F1YXJlZAZjYW5jZWwOY2FuY2VsLWNpcmNsZWQPY2FuY2VsLWNpcmNsZWQyBHBsdXMMcGx1cy1jaXJjbGVkDHBsdXMtc3F1YXJlZBJwbHVzLXNxdWFyZWQtc21hbGwFbWludXMNbWludXMtY2lyY2xlZA1taW51cy1zcXVhcmVkEW1pbnVzLXNxdWFyZWQtYWx0E21pbnVzLXNxdWFyZWQtc21hbGwEaGVscAxoZWxwLWNpcmNsZWQMaW5mby1jaXJjbGVkBGluZm8EaG9tZQRsaW5rBnVubGluawhsaW5rLWV4dAxsaW5rLWV4dC1hbHQGYXR0YWNoBGxvY2sJbG9jay1vcGVuDWxvY2stb3Blbi1hbHQDcGluA2V5ZQdleWUtb2ZmA3RhZwR0YWdzCGJvb2ttYXJrDmJvb2ttYXJrLWVtcHR5BGZsYWcKZmxhZy1lbXB0eQ5mbGFnLWNoZWNrZXJlZAl0aHVtYnMtdXALdGh1bWJzLWRvd24NdGh1bWJzLXVwLWFsdA90aHVtYnMtZG93bi1hbHQIZG93bmxvYWQGdXBsb2FkDmRvd25sb2FkLWNsb3VkDHVwbG9hZC1jbG91ZAVyZXBseQlyZXBseS1hbGwHZm9yd2FyZApxdW90ZS1sZWZ0C3F1b3RlLXJpZ2h0BGNvZGUGZXhwb3J0CmV4cG9ydC1hbHQGcGVuY2lsDnBlbmNpbC1zcXVhcmVkBGVkaXQFcHJpbnQHcmV0d2VldAhrZXlib2FyZAdnYW1lcGFkB2NvbW1lbnQEY2hhdA1jb21tZW50LWVtcHR5CmNoYXQtZW1wdHkEYmVsbAhiZWxsLWFsdA1hdHRlbnRpb24tYWx0CWF0dGVudGlvbhFhdHRlbnRpb24tY2lyY2xlZAhsb2NhdGlvbglkaXJlY3Rpb24HY29tcGFzcwV0cmFzaANkb2MEZG9jcwhkb2MtdGV4dAdkb2MtaW52DGRvYy10ZXh0LWludgZmb2xkZXILZm9sZGVyLW9wZW4MZm9sZGVyLWVtcHR5EWZvbGRlci1vcGVuLWVtcHR5A2JveANyc3MLcnNzLXNxdWFyZWQFcGhvbmUNcGhvbmUtc3F1YXJlZARtZW51A2NvZwdjb2ctYWx0BndyZW5jaAZiYXNrZXQIY2FsZW5kYXIOY2FsZW5kYXItZW1wdHkFbG9naW4GbG9nb3V0A21pYwRtdXRlCnZvbHVtZS1vZmYLdm9sdW1lLWRvd24Jdm9sdW1lLXVwCmhlYWRwaG9uZXMFY2xvY2sJbGlnaHRidWxiBWJsb2NrC3Jlc2l6ZS1mdWxsD3Jlc2l6ZS1mdWxsLWFsdAxyZXNpemUtc21hbGwPcmVzaXplLXZlcnRpY2FsEXJlc2l6ZS1ob3Jpem9udGFsBG1vdmUHem9vbS1pbgh6b29tLW91dA1kb3duLWNpcmNsZWQyC3VwLWNpcmNsZWQyDWxlZnQtY2lyY2xlZDIOcmlnaHQtY2lyY2xlZDIIZG93bi1kaXIGdXAtZGlyCGxlZnQtZGlyCXJpZ2h0LWRpcglkb3duLW9wZW4JbGVmdC1vcGVuCnJpZ2h0LW9wZW4HdXAtb3BlbgphbmdsZS1sZWZ0C2FuZ2xlLXJpZ2h0CGFuZ2xlLXVwCmFuZ2xlLWRvd24SYW5nbGUtY2lyY2xlZC1sZWZ0E2FuZ2xlLWNpcmNsZWQtcmlnaHQQYW5nbGUtY2lyY2xlZC11cBJhbmdsZS1jaXJjbGVkLWRvd24RYW5nbGUtZG91YmxlLWxlZnQSYW5nbGUtZG91YmxlLXJpZ2h0D2FuZ2xlLWRvdWJsZS11cBFhbmdsZS1kb3VibGUtZG93bgRkb3duBGxlZnQFcmlnaHQCdXAIZG93bi1iaWcIbGVmdC1iaWcJcmlnaHQtYmlnBnVwLWJpZwpyaWdodC1oYW5kCWxlZnQtaGFuZAd1cC1oYW5kCWRvd24taGFuZAxsZWZ0LWNpcmNsZWQNcmlnaHQtY2lyY2xlZAp1cC1jaXJjbGVkDGRvd24tY2lyY2xlZAJjdwNjY3cJYXJyb3dzLWN3CGxldmVsLXVwCmxldmVsLWRvd24Hc2h1ZmZsZQhleGNoYW5nZQZleHBhbmQIY29sbGFwc2UMZXhwYW5kLXJpZ2h0DWNvbGxhcHNlLWxlZnQEcGxheQxwbGF5LWNpcmNsZWQNcGxheS1jaXJjbGVkMgRzdG9wBXBhdXNlBnRvLWVuZAp0by1lbmQtYWx0CHRvLXN0YXJ0DHRvLXN0YXJ0LWFsdAdmYXN0LWZ3B2Zhc3QtYncFZWplY3QGdGFyZ2V0BnNpZ25hbAVhd2FyZAdkZXNrdG9wBmxhcHRvcAZ0YWJsZXQGbW9iaWxlBWluYm94BWdsb2JlA3N1bgVjbG91ZAVmbGFzaARtb29uCHVtYnJlbGxhBmZsaWdodAtmaWdodGVyLWpldARsZWFmBGZvbnQEYm9sZAZpdGFsaWMLdGV4dC1oZWlnaHQKdGV4dC13aWR0aAphbGlnbi1sZWZ0DGFsaWduLWNlbnRlcgthbGlnbi1yaWdodA1hbGlnbi1qdXN0aWZ5BGxpc3QLaW5kZW50LWxlZnQMaW5kZW50LXJpZ2h0C2xpc3QtYnVsbGV0DWxpc3QtbnVtYmVyZWQGc3RyaWtlCXVuZGVybGluZQtzdXBlcnNjcmlwdAlzdWJzY3JpcHQFdGFibGUHY29sdW1ucwRjcm9wCHNjaXNzb3JzBXBhc3RlCWJyaWVmY2FzZQhzdWl0Y2FzZQhlbGxpcHNpcw1lbGxpcHNpcy12ZXJ0A29mZgRyb2FkCGxpc3QtYWx0BnFyY29kZQdiYXJjb2RlBGJvb2sFYWp1c3QEdGludAVjaGVjawtjaGVjay1lbXB0eQZjaXJjbGUMY2lyY2xlLWVtcHR5C2RvdC1jaXJjbGVkCGFzdGVyaXNrBGdpZnQEZmlyZQZtYWduZXQJY2hhcnQtYmFyBnRpY2tldAtjcmVkaXQtY2FyZAZmbG9wcHkJbWVnYXBob25lA2hkZANrZXkEZm9yawZyb2NrZXQDYnVnC2NlcnRpZmljYXRlBXRhc2tzBmZpbHRlcgZiZWFrZXIFbWFnaWMFdHJ1Y2sFbW9uZXkEZXVybwVwb3VuZAZkb2xsYXIFcnVwZWUDeWVuBnJvdWJsZQN0cnkDd29uB2JpdGNvaW4Ec29ydAlzb3J0LWRvd24Hc29ydC11cAtzb3J0LWFsdC11cA1zb3J0LWFsdC1kb3duDHNvcnQtbmFtZS11cA5zb3J0LW5hbWUtZG93bg5zb3J0LW51bWJlci11cBBzb3J0LW51bWJlci1kb3duBmhhbW1lcgVnYXVnZQdzaXRlbWFwB3NwaW5uZXIGY29mZmVlBGZvb2QEYmVlcgd1c2VyLW1kC3N0ZXRob3Njb3BlCWFtYnVsYW5jZQZtZWRraXQGaC1zaWdoCGhvc3BpdGFsCGJ1aWxkaW5nBXNtaWxlBWZyb3duA21laAZhbmNob3IIdGVybWluYWwGZXJhc2VyBnB1enpsZQZzaGllbGQMZXh0aW5ndWlzaGVyCGJ1bGxzZXllCndoZWVsY2hhaXIDYWRuB2FuZHJvaWQFYXBwbGUJYml0YnVja2V0EWJpdGJ1Y2tldC1zcXVhcmVkBGNzczMIZHJpYmJibGUHZHJvcGJveAhmYWNlYm9vaxBmYWNlYm9vay1zcXVhcmVkBmZsaWNrcgpmb3Vyc3F1YXJlBmdpdGh1Yg5naXRodWItc3F1YXJlZA5naXRodWItY2lyY2xlZAZnaXR0aXANZ3BsdXMtc3F1YXJlZAVncGx1cwVodG1sNQppbnN0YWdyYW1tEGxpbmtlZGluLXNxdWFyZWQFbGludXgIbGlua2VkaW4GbWF4Y2RuCXBhZ2VsaW5lcxFwaW50ZXJlc3QtY2lyY2xlZBFwaW50ZXJlc3Qtc3F1YXJlZAZyZW5yZW4Fc2t5cGUNc3RhY2tleGNoYW5nZQ1zdGFja292ZXJmbG93BnRyZWxsbwZ0dW1ibHIOdHVtYmxyLXNxdWFyZWQPdHdpdHRlci1zcXVhcmVkB3R3aXR0ZXINdmltZW8tc3F1YXJlZAl2a29udGFrdGUFd2VpYm8Hd2luZG93cwR4aW5nDHhpbmctc3F1YXJlZAd5b3V0dWJlD3lvdXR1YmUtc3F1YXJlZAx5b3V0dWJlLXBsYXkFYmxhbmsFbGVtb24Ebm90ZQtub3RlLWJlYW1lZAdtdXNpYy0xCHNlYXJjaC0xCmZsYXNobGlnaHQGbWFpbC0xB2hlYXJ0LTENaGVhcnQtZW1wdHktMQZzdGFyLTEMc3Rhci1lbXB0eS0xBnVzZXItMQd1c2Vycy0xCHVzZXItYWRkB3ZpZGVvLTEJcGljdHVyZS0xCGNhbWVyYS0xBmxheW91dAZtZW51LTEHY2hlY2stMQhjYW5jZWwtMRBjYW5jZWwtY2lyY2xlZC0xDmNhbmNlbC1zcXVhcmVkBnBsdXMtMQ5wbHVzLWNpcmNsZWQtMQ5wbHVzLXNxdWFyZWQtMQdtaW51cy0xD21pbnVzLWNpcmNsZWQtMQ9taW51cy1zcXVhcmVkLTEGaGVscC0xDmhlbHAtY2lyY2xlZC0xBmluZm8tMQ5pbmZvLWNpcmNsZWQtMQRiYWNrBmhvbWUtMQZsaW5rLTEIYXR0YWNoLTEGbG9jay0xC2xvY2stb3Blbi0xBWV5ZS0xBXRhZy0xCmJvb2ttYXJrLTEJYm9va21hcmtzBmZsYWctMQt0aHVtYnMtdXAtMQ10aHVtYnMtZG93bi0xCmRvd25sb2FkLTEIdXBsb2FkLTEOdXBsb2FkLWNsb3VkLTEHcmVwbHktMQtyZXBseS1hbGwtMQlmb3J3YXJkLTEFcXVvdGUGY29kZS0xCGV4cG9ydC0xCHBlbmNpbC0xB2ZlYXRoZXIHcHJpbnQtMQlyZXR3ZWV0LTEKa2V5Ym9hcmQtMQljb21tZW50LTEGY2hhdC0xBmJlbGwtMQthdHRlbnRpb24tMQVhbGVydAV2Y2FyZAdhZGRyZXNzCmxvY2F0aW9uLTEDbWFwC2RpcmVjdGlvbi0xCWNvbXBhc3MtMQNjdXAHdHJhc2gtMQVkb2MtMQZkb2NzLTENZG9jLWxhbmRzY2FwZQpkb2MtdGV4dC0xDmRvYy10ZXh0LWludi0xCW5ld3NwYXBlcglib29rLW9wZW4GYm9vay0xCGZvbGRlci0xB2FyY2hpdmUFYm94LTEFcnNzLTEHcGhvbmUtMQVjb2ctMQV0b29scwVzaGFyZQlzaGFyZWFibGUIYmFza2V0LTEDYmFnCmNhbGVuZGFyLTEHbG9naW4tMQhsb2dvdXQtMQVtaWMtMQZtdXRlLTEFc291bmQGdm9sdW1lB2Nsb2NrLTEJaG91cmdsYXNzAAAAAAAAAQAB//8ADwAAAAAAAAAAAAAAAAAAAAAAMgAyA2D/WgNg/1qwACywIGBmLbABLCBkILDAULAEJlqwBEVbWCEjIRuKWCCwUFBYIbBAWRsgsDhQWCGwOFlZILAKRWFksChQWCGwCkUgsDBQWCGwMFkbILDAUFggZiCKimEgsApQWGAbILAgUFghsApgGyCwNlBYIbA2YBtgWVlZG7AAK1lZI7AAUFhlWVktsAIsIEUgsAQlYWQgsAVDUFiwBSNCsAYjQhshIVmwAWAtsAMsIyEjISBksQViQiCwBiNCsgoAAiohILAGQyCK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E7AtKi2wQiywLyotsEMssAAWRSMgLiBGiiNhOLEmARQrLbBELLAII0KwQystsEUssgAAPCstsEYssgABPCstsEcssgEAPCstsEgssgEBPCstsEkssgAAPSstsEossgABPSstsEsssgEAPSstsEwssgEBPSstsE0ssgAAOSstsE4ssgABOSstsE8ssgEAOSstsFAssgEBOSstsFEssgAAOystsFIssgABOystsFMssgEAOystsFQssgEBOystsFUssgAAPistsFYssgABPistsFcssgEAPistsFgssgEBPistsFkssgAAOistsFossgABOistsFsssgEAOistsFwssgEBOistsF0ssDIrLrEmARQrLbBeLLAyK7A2Ky2wXyywMiuwNystsGAssAAWsDIrsDgrLbBhLLAzKy6xJgEUKy2wYiywMyuwNistsGMssDMrsDcrLbBkLLAzK7A4Ky2wZSywNCsusSYBFCstsGYssDQrsDYrLbBnLLA0K7A3Ky2waCywNCuwOCstsGkssDUrLrEmARQrLbBqLLA1K7A2Ky2wayywNSuwNystsGwssDUrsDgrLbBtLCuwCGWwAyRQeLABFTAtAAAAS7gAyFJYsQEBjlm5CAAIAGMgsAEjRLADI3CyBCgJRVJEsgoCByqxBgFEsSQBiFFYsECIWLEGA0SxJgGIUVi4BACIWLEGAURZWVlZuAH/hbAEjbEFAEQAAA==') format('truetype');
13
+ }
14
+ /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
15
+ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
16
+ /*
17
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
18
+ @font-face {
19
+ font-family: 'rtm_font_icons';
20
+ src: url('../font/rtm_font_icons.svg?13024617#rtm_font_icons') format('svg');
21
+ }
22
+ }
23
+ */
24
+
25
+ [class^="rtmicon-"]:before, [class*=" rtmicon-"]:before {
26
+ font-family: "rtm_font_icons";
27
+ font-style: normal;
28
+ font-weight: normal;
29
+ speak: none;
30
+
31
+ display: inline-block;
32
+ text-decoration: inherit;
33
+ width: 1em;
34
+ margin-right: .2em;
35
+ text-align: center;
36
+ /* opacity: .8; */
37
+
38
+ /* For safety - reset parent styles, that can break glyph codes*/
39
+ font-variant: normal;
40
+ text-transform: none;
41
+
42
+ /* fix buttons height, for twitter bootstrap */
43
+ line-height: 1em;
44
+
45
+ /* Animation center compensation - margins should be symmetric */
46
+ /* remove if not needed */
47
+ margin-left: .2em;
48
+
49
+ /* you can be more comfortable with increased icons size */
50
+ /* font-size: 120%; */
51
+
52
+ /* Uncomment for 3D effect */
53
+ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
54
+ }
55
+ .rtmicon-glass:before { content: '\e800'; } /* '' */
56
+ .rtmicon-hourglass:before { content: '\e9d4'; } /* '' */
57
+ .rtmicon-search:before { content: '\e802'; } /* '' */
58
+ .rtmicon-mail:before { content: '\e803'; } /* '' */
59
+ .rtmicon-mail-alt:before { content: '\e804'; } /* '' */
60
+ .rtmicon-heart:before { content: '\e805'; } /* '' */
61
+ .rtmicon-heart-empty:before { content: '\e806'; } /* '' */
62
+ .rtmicon-star:before { content: '\e807'; } /* '' */
63
+ .rtmicon-star-empty:before { content: '\e808'; } /* '' */
64
+ .rtmicon-star-half:before { content: '\e809'; } /* '' */
65
+ .rtmicon-star-half-alt:before { content: '\e80a'; } /* '' */
66
+ .rtmicon-user:before { content: '\e80b'; } /* '' */
67
+ .rtmicon-users:before { content: '\e80c'; } /* '' */
68
+ .rtmicon-male:before { content: '\e80d'; } /* '' */
69
+ .rtmicon-female:before { content: '\e80e'; } /* '' */
70
+ .rtmicon-video:before { content: '\e80f'; } /* '' */
71
+ .rtmicon-videocam:before { content: '\e810'; } /* '' */
72
+ .rtmicon-picture:before { content: '\e811'; } /* '' */
73
+ .rtmicon-camera:before { content: '\e812'; } /* '' */
74
+ .rtmicon-camera-alt:before { content: '\e813'; } /* '' */
75
+ .rtmicon-th-large:before { content: '\e814'; } /* '' */
76
+ .rtmicon-th:before { content: '\e815'; } /* '' */
77
+ .rtmicon-th-list:before { content: '\e816'; } /* '' */
78
+ .rtmicon-ok:before { content: '\e817'; } /* '' */
79
+ .rtmicon-ok-circled:before { content: '\e818'; } /* '' */
80
+ .rtmicon-ok-circled2:before { content: '\e819'; } /* '' */
81
+ .rtmicon-ok-squared:before { content: '\e81a'; } /* '' */
82
+ .rtmicon-cancel:before { content: '\e81b'; } /* '' */
83
+ .rtmicon-cancel-circled:before { content: '\e81c'; } /* '' */
84
+ .rtmicon-cancel-circled2:before { content: '\e81d'; } /* '' */
85
+ .rtmicon-plus:before { content: '\e81e'; } /* '' */
86
+ .rtmicon-plus-circled:before { content: '\e81f'; } /* '' */
87
+ .rtmicon-plus-squared:before { content: '\e820'; } /* '' */
88
+ .rtmicon-plus-squared-small:before { content: '\e821'; } /* '' */
89
+ .rtmicon-minus:before { content: '\e822'; } /* '' */
90
+ .rtmicon-minus-circled:before { content: '\e823'; } /* '' */
91
+ .rtmicon-minus-squared:before { content: '\e824'; } /* '' */
92
+ .rtmicon-minus-squared-alt:before { content: '\e825'; } /* '' */
93
+ .rtmicon-minus-squared-small:before { content: '\e826'; } /* '' */
94
+ .rtmicon-help:before { content: '\e827'; } /* '' */
95
+ .rtmicon-help-circled:before { content: '\e828'; } /* '' */
96
+ .rtmicon-info-circled:before { content: '\e829'; } /* '' */
97
+ .rtmicon-info:before { content: '\e82a'; } /* '' */
98
+ .rtmicon-home:before { content: '\e82b'; } /* '' */
99
+ .rtmicon-link:before { content: '\e82c'; } /* '' */
100
+ .rtmicon-unlink:before { content: '\e82d'; } /* '' */
101
+ .rtmicon-link-ext:before { content: '\e82e'; } /* '' */
102
+ .rtmicon-link-ext-alt:before { content: '\e82f'; } /* '' */
103
+ .rtmicon-attach:before { content: '\e830'; } /* '' */
104
+ .rtmicon-lock:before { content: '\e831'; } /* '' */
105
+ .rtmicon-lock-open:before { content: '\e832'; } /* '' */
106
+ .rtmicon-lock-open-alt:before { content: '\e833'; } /* '' */
107
+ .rtmicon-pin:before { content: '\e834'; } /* '' */
108
+ .rtmicon-eye:before { content: '\e835'; } /* '' */
109
+ .rtmicon-eye-off:before { content: '\e836'; } /* '' */
110
+ .rtmicon-tag:before { content: '\e837'; } /* '' */
111
+ .rtmicon-tags:before { content: '\e838'; } /* '' */
112
+ .rtmicon-bookmark:before { content: '\e839'; } /* '' */
113
+ .rtmicon-bookmark-empty:before { content: '\e83a'; } /* '' */
114
+ .rtmicon-flag:before { content: '\e83b'; } /* '' */
115
+ .rtmicon-flag-empty:before { content: '\e83c'; } /* '' */
116
+ .rtmicon-flag-checkered:before { content: '\e83d'; } /* '' */
117
+ .rtmicon-thumbs-up:before { content: '\e83e'; } /* '' */
118
+ .rtmicon-thumbs-down:before { content: '\e83f'; } /* '' */
119
+ .rtmicon-thumbs-up-alt:before { content: '\e840'; } /* '' */
120
+ .rtmicon-thumbs-down-alt:before { content: '\e841'; } /* '' */
121
+ .rtmicon-download:before { content: '\e842'; } /* '' */
122
+ .rtmicon-upload:before { content: '\e843'; } /* '' */
123
+ .rtmicon-download-cloud:before { content: '\e844'; } /* '' */
124
+ .rtmicon-upload-cloud:before { content: '\e845'; } /* '' */
125
+ .rtmicon-reply:before { content: '\e846'; } /* '' */
126
+ .rtmicon-reply-all:before { content: '\e847'; } /* '' */
127
+ .rtmicon-forward:before { content: '\e848'; } /* '' */
128
+ .rtmicon-quote-left:before { content: '\e849'; } /* '' */
129
+ .rtmicon-quote-right:before { content: '\e84a'; } /* '' */
130
+ .rtmicon-code:before { content: '\e84b'; } /* '' */
131
+ .rtmicon-export:before { content: '\e84c'; } /* '' */
132
+ .rtmicon-export-alt:before { content: '\e84d'; } /* '' */
133
+ .rtmicon-pencil:before { content: '\e84e'; } /* '' */
134
+ .rtmicon-pencil-squared:before { content: '\e84f'; } /* '' */
135
+ .rtmicon-edit:before { content: '\e850'; } /* '' */
136
+ .rtmicon-print:before { content: '\e851'; } /* '' */
137
+ .rtmicon-retweet:before { content: '\e852'; } /* '' */
138
+ .rtmicon-keyboard:before { content: '\e853'; } /* '' */
139
+ .rtmicon-gamepad:before { content: '\e854'; } /* '' */
140
+ .rtmicon-comment:before { content: '\e855'; } /* '' */
141
+ .rtmicon-chat:before { content: '\e856'; } /* '' */
142
+ .rtmicon-comment-empty:before { content: '\e857'; } /* '' */
143
+ .rtmicon-chat-empty:before { content: '\e858'; } /* '' */
144
+ .rtmicon-bell:before { content: '\e859'; } /* '' */
145
+ .rtmicon-bell-alt:before { content: '\e85a'; } /* '' */
146
+ .rtmicon-attention-alt:before { content: '\e85b'; } /* '' */
147
+ .rtmicon-attention:before { content: '\e85c'; } /* '' */
148
+ .rtmicon-attention-circled:before { content: '\e85d'; } /* '' */
149
+ .rtmicon-location:before { content: '\e85e'; } /* '' */
150
+ .rtmicon-direction:before { content: '\e85f'; } /* '' */
151
+ .rtmicon-compass:before { content: '\e860'; } /* '' */
152
+ .rtmicon-trash:before { content: '\e861'; } /* '' */
153
+ .rtmicon-doc:before { content: '\e862'; } /* '' */
154
+ .rtmicon-docs:before { content: '\e863'; } /* '' */
155
+ .rtmicon-doc-text:before { content: '\e864'; } /* '' */
156
+ .rtmicon-doc-inv:before { content: '\e865'; } /* '' */
157
+ .rtmicon-doc-text-inv:before { content: '\e866'; } /* '' */
158
+ .rtmicon-folder:before { content: '\e867'; } /* '' */
159
+ .rtmicon-folder-open:before { content: '\e868'; } /* '' */
160
+ .rtmicon-folder-empty:before { content: '\e869'; } /* '' */
161
+ .rtmicon-folder-open-empty:before { content: '\e86a'; } /* '' */
162
+ .rtmicon-box:before { content: '\e86b'; } /* '' */
163
+ .rtmicon-rss:before { content: '\e86c'; } /* '' */
164
+ .rtmicon-rss-squared:before { content: '\e86d'; } /* '' */
165
+ .rtmicon-phone:before { content: '\e86e'; } /* '' */
166
+ .rtmicon-phone-squared:before { content: '\e86f'; } /* '' */
167
+ .rtmicon-menu:before { content: '\e870'; } /* '' */
168
+ .rtmicon-cog:before { content: '\e871'; } /* '' */
169
+ .rtmicon-cog-alt:before { content: '\e872'; } /* '' */
170
+ .rtmicon-wrench:before { content: '\e873'; } /* '' */
171
+ .rtmicon-basket:before { content: '\e874'; } /* '' */
172
+ .rtmicon-calendar:before { content: '\e875'; } /* '' */
173
+ .rtmicon-calendar-empty:before { content: '\e876'; } /* '' */
174
+ .rtmicon-login:before { content: '\e877'; } /* '' */
175
+ .rtmicon-logout:before { content: '\e878'; } /* '' */
176
+ .rtmicon-mic:before { content: '\e879'; } /* '' */
177
+ .rtmicon-mute:before { content: '\e87a'; } /* '' */
178
+ .rtmicon-volume-off:before { content: '\e87b'; } /* '' */
179
+ .rtmicon-volume-down:before { content: '\e87c'; } /* '' */
180
+ .rtmicon-volume-up:before { content: '\e87d'; } /* '' */
181
+ .rtmicon-headphones:before { content: '\e87e'; } /* '' */
182
+ .rtmicon-clock:before { content: '\e87f'; } /* '' */
183
+ .rtmicon-lightbulb:before { content: '\e880'; } /* '' */
184
+ .rtmicon-block:before { content: '\e881'; } /* '' */
185
+ .rtmicon-resize-full:before { content: '\e882'; } /* '' */
186
+ .rtmicon-resize-full-alt:before { content: '\e883'; } /* '' */
187
+ .rtmicon-resize-small:before { content: '\e884'; } /* '' */
188
+ .rtmicon-resize-vertical:before { content: '\e885'; } /* '' */
189
+ .rtmicon-resize-horizontal:before { content: '\e886'; } /* '' */
190
+ .rtmicon-move:before { content: '\e887'; } /* '' */
191
+ .rtmicon-zoom-in:before { content: '\e888'; } /* '' */
192
+ .rtmicon-zoom-out:before { content: '\e889'; } /* '' */
193
+ .rtmicon-down-circled2:before { content: '\e88a'; } /* '' */
194
+ .rtmicon-up-circled2:before { content: '\e88b'; } /* '' */
195
+ .rtmicon-left-circled2:before { content: '\e88c'; } /* '' */
196
+ .rtmicon-right-circled2:before { content: '\e88d'; } /* '' */
197
+ .rtmicon-down-dir:before { content: '\e88e'; } /* '' */
198
+ .rtmicon-up-dir:before { content: '\e88f'; } /* '' */
199
+ .rtmicon-left-dir:before { content: '\e890'; } /* '' */
200
+ .rtmicon-right-dir:before { content: '\e891'; } /* '' */
201
+ .rtmicon-down-open:before { content: '\e892'; } /* '' */
202
+ .rtmicon-left-open:before { content: '\e893'; } /* '' */
203
+ .rtmicon-right-open:before { content: '\e894'; } /* '' */
204
+ .rtmicon-up-open:before { content: '\e895'; } /* '' */
205
+ .rtmicon-angle-left:before { content: '\e896'; } /* '' */
206
+ .rtmicon-angle-right:before { content: '\e897'; } /* '' */
207
+ .rtmicon-angle-up:before { content: '\e898'; } /* '' */
208
+ .rtmicon-angle-down:before { content: '\e899'; } /* '' */
209
+ .rtmicon-angle-circled-left:before { content: '\e89a'; } /* '' */
210
+ .rtmicon-angle-circled-right:before { content: '\e89b'; } /* '' */
211
+ .rtmicon-angle-circled-up:before { content: '\e89c'; } /* '' */
212
+ .rtmicon-angle-circled-down:before { content: '\e89d'; } /* '' */
213
+ .rtmicon-angle-double-left:before { content: '\e89e'; } /* '' */
214
+ .rtmicon-angle-double-right:before { content: '\e89f'; } /* '' */
215
+ .rtmicon-angle-double-up:before { content: '\e8a0'; } /* '' */
216
+ .rtmicon-angle-double-down:before { content: '\e8a1'; } /* '' */
217
+ .rtmicon-down:before { content: '\e8a2'; } /* '' */
218
+ .rtmicon-left:before { content: '\e8a3'; } /* '' */
219
+ .rtmicon-right:before { content: '\e8a4'; } /* '' */
220
+ .rtmicon-up:before { content: '\e8a5'; } /* '' */
221
+ .rtmicon-down-big:before { content: '\e8a6'; } /* '' */
222
+ .rtmicon-left-big:before { content: '\e8a7'; } /* '' */
223
+ .rtmicon-right-big:before { content: '\e8a8'; } /* '' */
224
+ .rtmicon-up-big:before { content: '\e8a9'; } /* '' */
225
+ .rtmicon-right-hand:before { content: '\e8aa'; } /* '' */
226
+ .rtmicon-left-hand:before { content: '\e8ab'; } /* '' */
227
+ .rtmicon-up-hand:before { content: '\e8ac'; } /* '' */
228
+ .rtmicon-down-hand:before { content: '\e8ad'; } /* '' */
229
+ .rtmicon-left-circled:before { content: '\e8ae'; } /* '' */
230
+ .rtmicon-right-circled:before { content: '\e8af'; } /* '' */
231
+ .rtmicon-up-circled:before { content: '\e8b0'; } /* '' */
232
+ .rtmicon-down-circled:before { content: '\e8b1'; } /* '' */
233
+ .rtmicon-cw:before { content: '\e8b2'; } /* '' */
234
+ .rtmicon-ccw:before { content: '\e8b3'; } /* '' */
235
+ .rtmicon-arrows-cw:before { content: '\e8b4'; } /* '' */
236
+ .rtmicon-level-up:before { content: '\e8b5'; } /* '' */
237
+ .rtmicon-level-down:before { content: '\e8b6'; } /* '' */
238
+ .rtmicon-shuffle:before { content: '\e8b7'; } /* '' */
239
+ .rtmicon-exchange:before { content: '\e8b8'; } /* '' */
240
+ .rtmicon-expand:before { content: '\e8b9'; } /* '' */
241
+ .rtmicon-collapse:before { content: '\e8ba'; } /* '' */
242
+ .rtmicon-expand-right:before { content: '\e8bb'; } /* '' */
243
+ .rtmicon-collapse-left:before { content: '\e8bc'; } /* '' */
244
+ .rtmicon-play:before { content: '\e8bd'; } /* '' */
245
+ .rtmicon-play-circled:before { content: '\e8be'; } /* '' */
246
+ .rtmicon-play-circled2:before { content: '\e8bf'; } /* '' */
247
+ .rtmicon-stop:before { content: '\e8c0'; } /* '' */
248
+ .rtmicon-pause:before { content: '\e8c1'; } /* '' */
249
+ .rtmicon-to-end:before { content: '\e8c2'; } /* '' */
250
+ .rtmicon-to-end-alt:before { content: '\e8c3'; } /* '' */
251
+ .rtmicon-to-start:before { content: '\e8c4'; } /* '' */
252
+ .rtmicon-to-start-alt:before { content: '\e8c5'; } /* '' */
253
+ .rtmicon-fast-fw:before { content: '\e8c6'; } /* '' */
254
+ .rtmicon-fast-bw:before { content: '\e8c7'; } /* '' */
255
+ .rtmicon-eject:before { content: '\e8c8'; } /* '' */
256
+ .rtmicon-target:before { content: '\e8c9'; } /* '' */
257
+ .rtmicon-signal:before { content: '\e8ca'; } /* '' */
258
+ .rtmicon-award:before { content: '\e8cb'; } /* '' */
259
+ .rtmicon-desktop:before { content: '\e8cc'; } /* '' */
260
+ .rtmicon-laptop:before { content: '\e8cd'; } /* '' */
261
+ .rtmicon-tablet:before { content: '\e8ce'; } /* '' */
262
+ .rtmicon-mobile:before { content: '\e8cf'; } /* '' */
263
+ .rtmicon-inbox:before { content: '\e8d0'; } /* '' */
264
+ .rtmicon-globe:before { content: '\e8d1'; } /* '' */
265
+ .rtmicon-sun:before { content: '\e8d2'; } /* '' */
266
+ .rtmicon-cloud:before { content: '\e8d3'; } /* '' */
267
+ .rtmicon-flash:before { content: '\e8d4'; } /* '' */
268
+ .rtmicon-moon:before { content: '\e8d5'; } /* '' */
269
+ .rtmicon-umbrella:before { content: '\e8d6'; } /* '' */
270
+ .rtmicon-flight:before { content: '\e8d7'; } /* '' */
271
+ .rtmicon-fighter-jet:before { content: '\e8d8'; } /* '' */
272
+ .rtmicon-leaf:before { content: '\e8d9'; } /* '' */
273
+ .rtmicon-font:before { content: '\e8da'; } /* '' */
274
+ .rtmicon-bold:before { content: '\e8db'; } /* '' */
275
+ .rtmicon-italic:before { content: '\e8dc'; } /* '' */
276
+ .rtmicon-text-height:before { content: '\e8dd'; } /* '' */
277
+ .rtmicon-text-width:before { content: '\e8de'; } /* '' */
278
+ .rtmicon-align-left:before { content: '\e8df'; } /* '' */
279
+ .rtmicon-align-center:before { content: '\e8e0'; } /* '' */
280
+ .rtmicon-align-right:before { content: '\e8e1'; } /* '' */
281
+ .rtmicon-align-justify:before { content: '\e8e2'; } /* '' */
282
+ .rtmicon-list:before { content: '\e8e3'; } /* '' */
283
+ .rtmicon-indent-left:before { content: '\e8e4'; } /* '' */
284
+ .rtmicon-indent-right:before { content: '\e8e5'; } /* '' */
285
+ .rtmicon-list-bullet:before { content: '\e8e6'; } /* '' */
286
+ .rtmicon-list-numbered:before { content: '\e8e7'; } /* '' */
287
+ .rtmicon-strike:before { content: '\e8e8'; } /* '' */
288
+ .rtmicon-underline:before { content: '\e8e9'; } /* '' */
289
+ .rtmicon-music:before { content: '\e801'; } /* '' */
290
+ .rtmicon-subscript:before { content: '\e8eb'; } /* '' */
291
+ .rtmicon-table:before { content: '\e8ec'; } /* '' */
292
+ .rtmicon-columns:before { content: '\e8ed'; } /* '' */
293
+ .rtmicon-crop:before { content: '\e8ee'; } /* '' */
294
+ .rtmicon-scissors:before { content: '\e8ef'; } /* '' */
295
+ .rtmicon-paste:before { content: '\e8f0'; } /* '' */
296
+ .rtmicon-briefcase:before { content: '\e8f1'; } /* '' */
297
+ .rtmicon-suitcase:before { content: '\e8f2'; } /* '' */
298
+ .rtmicon-ellipsis:before { content: '\e8f3'; } /* '' */
299
+ .rtmicon-ellipsis-vert:before { content: '\e8f4'; } /* '' */
300
+ .rtmicon-off:before { content: '\e8f5'; } /* '' */
301
+ .rtmicon-road:before { content: '\e8f6'; } /* '' */
302
+ .rtmicon-list-alt:before { content: '\e8f7'; } /* '' */
303
+ .rtmicon-qrcode:before { content: '\e8f8'; } /* '' */
304
+ .rtmicon-barcode:before { content: '\e8f9'; } /* '' */
305
+ .rtmicon-book:before { content: '\e8fa'; } /* '' */
306
+ .rtmicon-ajust:before { content: '\e8fb'; } /* '' */
307
+ .rtmicon-tint:before { content: '\e8fc'; } /* '' */
308
+ .rtmicon-check:before { content: '\e8fd'; } /* '' */
309
+ .rtmicon-check-empty:before { content: '\e8fe'; } /* '' */
310
+ .rtmicon-circle:before { content: '\e8ff'; } /* '' */
311
+ .rtmicon-circle-empty:before { content: '\e900'; } /* '' */
312
+ .rtmicon-dot-circled:before { content: '\e901'; } /* '' */
313
+ .rtmicon-asterisk:before { content: '\e902'; } /* '' */
314
+ .rtmicon-gift:before { content: '\e903'; } /* '' */
315
+ .rtmicon-fire:before { content: '\e904'; } /* '' */
316
+ .rtmicon-magnet:before { content: '\e905'; } /* '' */
317
+ .rtmicon-chart-bar:before { content: '\e906'; } /* '' */
318
+ .rtmicon-ticket:before { content: '\e907'; } /* '' */
319
+ .rtmicon-credit-card:before { content: '\e908'; } /* '' */
320
+ .rtmicon-floppy:before { content: '\e909'; } /* '' */
321
+ .rtmicon-megaphone:before { content: '\e90a'; } /* '' */
322
+ .rtmicon-hdd:before { content: '\e90b'; } /* '' */
323
+ .rtmicon-key:before { content: '\e90c'; } /* '' */
324
+ .rtmicon-fork:before { content: '\e90d'; } /* '' */
325
+ .rtmicon-rocket:before { content: '\e90e'; } /* '' */
326
+ .rtmicon-bug:before { content: '\e90f'; } /* '' */
327
+ .rtmicon-certificate:before { content: '\e910'; } /* '' */
328
+ .rtmicon-tasks:before { content: '\e911'; } /* '' */
329
+ .rtmicon-filter:before { content: '\e912'; } /* '' */
330
+ .rtmicon-beaker:before { content: '\e913'; } /* '' */
331
+ .rtmicon-magic:before { content: '\e914'; } /* '' */
332
+ .rtmicon-truck:before { content: '\e915'; } /* '' */
333
+ .rtmicon-money:before { content: '\e916'; } /* '' */
334
+ .rtmicon-euro:before { content: '\e917'; } /* '' */
335
+ .rtmicon-pound:before { content: '\e918'; } /* '' */
336
+ .rtmicon-dollar:before { content: '\e919'; } /* '' */
337
+ .rtmicon-rupee:before { content: '\e91a'; } /* '' */
338
+ .rtmicon-yen:before { content: '\e91b'; } /* '' */
339
+ .rtmicon-rouble:before { content: '\e91c'; } /* '' */
340
+ .rtmicon-try:before { content: '\e91d'; } /* '' */
341
+ .rtmicon-won:before { content: '\e91e'; } /* '' */
342
+ .rtmicon-bitcoin:before { content: '\e91f'; } /* '' */
343
+ .rtmicon-sort:before { content: '\e920'; } /* '' */
344
+ .rtmicon-sort-down:before { content: '\e921'; } /* '' */
345
+ .rtmicon-sort-up:before { content: '\e922'; } /* '' */
346
+ .rtmicon-sort-alt-up:before { content: '\e923'; } /* '' */
347
+ .rtmicon-sort-alt-down:before { content: '\e924'; } /* '' */
348
+ .rtmicon-sort-name-up:before { content: '\e925'; } /* '' */
349
+ .rtmicon-sort-name-down:before { content: '\e926'; } /* '' */
350
+ .rtmicon-sort-number-up:before { content: '\e927'; } /* '' */
351
+ .rtmicon-sort-number-down:before { content: '\e928'; } /* '' */
352
+ .rtmicon-hammer:before { content: '\e929'; } /* '' */
353
+ .rtmicon-gauge:before { content: '\e92a'; } /* '' */
354
+ .rtmicon-sitemap:before { content: '\e92b'; } /* '' */
355
+ .rtmicon-spinner:before { content: '\e92c'; } /* '' */
356
+ .rtmicon-coffee:before { content: '\e92d'; } /* '' */
357
+ .rtmicon-food:before { content: '\e92e'; } /* '' */
358
+ .rtmicon-beer:before { content: '\e92f'; } /* '' */
359
+ .rtmicon-user-md:before { content: '\e930'; } /* '' */
360
+ .rtmicon-stethoscope:before { content: '\e931'; } /* '' */
361
+ .rtmicon-ambulance:before { content: '\e932'; } /* '' */
362
+ .rtmicon-medkit:before { content: '\e933'; } /* '' */
363
+ .rtmicon-h-sigh:before { content: '\e934'; } /* '' */
364
+ .rtmicon-hospital:before { content: '\e935'; } /* '' */
365
+ .rtmicon-building:before { content: '\e936'; } /* '' */
366
+ .rtmicon-smile:before { content: '\e937'; } /* '' */
367
+ .rtmicon-frown:before { content: '\e938'; } /* '' */
368
+ .rtmicon-meh:before { content: '\e939'; } /* '' */
369
+ .rtmicon-anchor:before { content: '\e93a'; } /* '' */
370
+ .rtmicon-terminal:before { content: '\e93b'; } /* '' */
371
+ .rtmicon-eraser:before { content: '\e93c'; } /* '' */
372
+ .rtmicon-puzzle:before { content: '\e93d'; } /* '' */
373
+ .rtmicon-shield:before { content: '\e93e'; } /* '' */
374
+ .rtmicon-extinguisher:before { content: '\e93f'; } /* '' */
375
+ .rtmicon-bullseye:before { content: '\e940'; } /* '' */
376
+ .rtmicon-wheelchair:before { content: '\e941'; } /* '' */
377
+ .rtmicon-adn:before { content: '\e942'; } /* '' */
378
+ .rtmicon-android:before { content: '\e943'; } /* '' */
379
+ .rtmicon-apple:before { content: '\e944'; } /* '' */
380
+ .rtmicon-bitbucket:before { content: '\e945'; } /* '' */
381
+ .rtmicon-bitbucket-squared:before { content: '\e946'; } /* '' */
382
+ .rtmicon-css3:before { content: '\e947'; } /* '' */
383
+ .rtmicon-dribbble:before { content: '\e948'; } /* '' */
384
+ .rtmicon-dropbox:before { content: '\e949'; } /* '' */
385
+ .rtmicon-facebook:before { content: '\e94a'; } /* '' */
386
+ .rtmicon-facebook-squared:before { content: '\e94b'; } /* '' */
387
+ .rtmicon-flickr:before { content: '\e94c'; } /* '' */
388
+ .rtmicon-foursquare:before { content: '\e94d'; } /* '' */
389
+ .rtmicon-github:before { content: '\e94e'; } /* '' */
390
+ .rtmicon-github-squared:before { content: '\e94f'; } /* '' */
391
+ .rtmicon-github-circled:before { content: '\e950'; } /* '' */
392
+ .rtmicon-gittip:before { content: '\e951'; } /* '' */
393
+ .rtmicon-gplus-squared:before { content: '\e952'; } /* '' */
394
+ .rtmicon-gplus:before { content: '\e953'; } /* '' */
395
+ .rtmicon-html5:before { content: '\e954'; } /* '' */
396
+ .rtmicon-instagramm:before { content: '\e955'; } /* '' */
397
+ .rtmicon-linkedin-squared:before { content: '\e956'; } /* '' */
398
+ .rtmicon-linux:before { content: '\e957'; } /* '' */
399
+ .rtmicon-linkedin:before { content: '\e958'; } /* '' */
400
+ .rtmicon-maxcdn:before { content: '\e959'; } /* '' */
401
+ .rtmicon-pagelines:before { content: '\e95a'; } /* '' */
402
+ .rtmicon-pinterest-circled:before { content: '\e95b'; } /* '' */
403
+ .rtmicon-pinterest-squared:before { content: '\e95c'; } /* '' */
404
+ .rtmicon-renren:before { content: '\e95d'; } /* '' */
405
+ .rtmicon-skype:before { content: '\e95e'; } /* '' */
406
+ .rtmicon-stackexchange:before { content: '\e95f'; } /* '' */
407
+ .rtmicon-stackoverflow:before { content: '\e960'; } /* '' */
408
+ .rtmicon-trello:before { content: '\e961'; } /* '' */
409
+ .rtmicon-tumblr:before { content: '\e962'; } /* '' */
410
+ .rtmicon-tumblr-squared:before { content: '\e963'; } /* '' */
411
+ .rtmicon-twitter-squared:before { content: '\e964'; } /* '' */
412
+ .rtmicon-twitter:before { content: '\e965'; } /* '' */
413
+ .rtmicon-vimeo-squared:before { content: '\e966'; } /* '' */
414
+ .rtmicon-vkontakte:before { content: '\e967'; } /* '' */
415
+ .rtmicon-weibo:before { content: '\e968'; } /* '' */
416
+ .rtmicon-windows:before { content: '\e969'; } /* '' */
417
+ .rtmicon-xing:before { content: '\e96a'; } /* '' */
418
+ .rtmicon-xing-squared:before { content: '\e96b'; } /* '' */
419
+ .rtmicon-youtube:before { content: '\e96c'; } /* '' */
420
+ .rtmicon-youtube-squared:before { content: '\e96d'; } /* '' */
421
+ .rtmicon-youtube-play:before { content: '\e96e'; } /* '' */
422
+ .rtmicon-blank:before { content: '\e96f'; } /* '' */
423
+ .rtmicon-lemon:before { content: '\e970'; } /* '' */
424
+ .rtmicon-note:before { content: '\e971'; } /* '' */
425
+ .rtmicon-note-beamed:before { content: '\e972'; } /* '' */
426
+ .rtmicon-music-1:before { content: '\e973'; } /* '' */
427
+ .rtmicon-search-1:before { content: '\e974'; } /* '' */
428
+ .rtmicon-flashlight:before { content: '\e975'; } /* '' */
429
+ .rtmicon-mail-1:before { content: '\e976'; } /* '' */
430
+ .rtmicon-heart-1:before { content: '\e977'; } /* '' */
431
+ .rtmicon-heart-empty-1:before { content: '\e978'; } /* '' */
432
+ .rtmicon-star-1:before { content: '\e979'; } /* '' */
433
+ .rtmicon-star-empty-1:before { content: '\e97a'; } /* '' */
434
+ .rtmicon-user-1:before { content: '\e97b'; } /* '' */
435
+ .rtmicon-users-1:before { content: '\e97c'; } /* '' */
436
+ .rtmicon-user-add:before { content: '\e97d'; } /* '' */
437
+ .rtmicon-video-1:before { content: '\e97e'; } /* '' */
438
+ .rtmicon-picture-1:before { content: '\e97f'; } /* '' */
439
+ .rtmicon-camera-1:before { content: '\e980'; } /* '' */
440
+ .rtmicon-layout:before { content: '\e981'; } /* '' */
441
+ .rtmicon-menu-1:before { content: '\e982'; } /* '' */
442
+ .rtmicon-check-1:before { content: '\e983'; } /* '' */
443
+ .rtmicon-cancel-1:before { content: '\e984'; } /* '' */
444
+ .rtmicon-cancel-circled-1:before { content: '\e985'; } /* '' */
445
+ .rtmicon-cancel-squared:before { content: '\e986'; } /* '' */
446
+ .rtmicon-plus-1:before { content: '\e987'; } /* '' */
447
+ .rtmicon-plus-circled-1:before { content: '\e988'; } /* '' */
448
+ .rtmicon-plus-squared-1:before { content: '\e989'; } /* '' */
449
+ .rtmicon-minus-1:before { content: '\e98a'; } /* '' */
450
+ .rtmicon-minus-circled-1:before { content: '\e98b'; } /* '' */
451
+ .rtmicon-minus-squared-1:before { content: '\e98c'; } /* '' */
452
+ .rtmicon-help-1:before { content: '\e98d'; } /* '' */
453
+ .rtmicon-help-circled-1:before { content: '\e98e'; } /* '' */
454
+ .rtmicon-info-1:before { content: '\e98f'; } /* '' */
455
+ .rtmicon-info-circled-1:before { content: '\e990'; } /* '' */
456
+ .rtmicon-back:before { content: '\e991'; } /* '' */
457
+ .rtmicon-home-1:before { content: '\e992'; } /* '' */
458
+ .rtmicon-link-1:before { content: '\e993'; } /* '' */
459
+ .rtmicon-attach-1:before { content: '\e994'; } /* '' */
460
+ .rtmicon-lock-1:before { content: '\e995'; } /* '' */
461
+ .rtmicon-lock-open-1:before { content: '\e996'; } /* '' */
462
+ .rtmicon-eye-1:before { content: '\e997'; } /* '' */
463
+ .rtmicon-tag-1:before { content: '\e998'; } /* '' */
464
+ .rtmicon-bookmark-1:before { content: '\e999'; } /* '' */
465
+ .rtmicon-bookmarks:before { content: '\e99a'; } /* '' */
466
+ .rtmicon-flag-1:before { content: '\e99b'; } /* '' */
467
+ .rtmicon-thumbs-up-1:before { content: '\e99c'; } /* '' */
468
+ .rtmicon-thumbs-down-1:before { content: '\e99d'; } /* '' */
469
+ .rtmicon-download-1:before { content: '\e99e'; } /* '' */
470
+ .rtmicon-upload-1:before { content: '\e99f'; } /* '' */
471
+ .rtmicon-upload-cloud-1:before { content: '\e9a0'; } /* '' */
472
+ .rtmicon-reply-1:before { content: '\e9a1'; } /* '' */
473
+ .rtmicon-reply-all-1:before { content: '\e9a2'; } /* '' */
474
+ .rtmicon-forward-1:before { content: '\e9a3'; } /* '' */
475
+ .rtmicon-quote:before { content: '\e9a4'; } /* '' */
476
+ .rtmicon-code-1:before { content: '\e9a5'; } /* '' */
477
+ .rtmicon-export-1:before { content: '\e9a6'; } /* '' */
478
+ .rtmicon-pencil-1:before { content: '\e9a7'; } /* '' */
479
+ .rtmicon-feather:before { content: '\e9a8'; } /* '' */
480
+ .rtmicon-print-1:before { content: '\e9a9'; } /* '' */
481
+ .rtmicon-retweet-1:before { content: '\e9aa'; } /* '' */
482
+ .rtmicon-keyboard-1:before { content: '\e9ab'; } /* '' */
483
+ .rtmicon-comment-1:before { content: '\e9ac'; } /* '' */
484
+ .rtmicon-chat-1:before { content: '\e9ad'; } /* '' */
485
+ .rtmicon-bell-1:before { content: '\e9ae'; } /* '' */
486
+ .rtmicon-attention-1:before { content: '\e9af'; } /* '' */
487
+ .rtmicon-alert:before { content: '\e9b0'; } /* '' */
488
+ .rtmicon-vcard:before { content: '\e9b1'; } /* '' */
489
+ .rtmicon-address:before { content: '\e9b2'; } /* '' */
490
+ .rtmicon-location-1:before { content: '\e9b3'; } /* '' */
491
+ .rtmicon-map:before { content: '\e9b4'; } /* '' */
492
+ .rtmicon-direction-1:before { content: '\e9b5'; } /* '' */
493
+ .rtmicon-compass-1:before { content: '\e9b6'; } /* '' */
494
+ .rtmicon-cup:before { content: '\e9b7'; } /* '' */
495
+ .rtmicon-trash-1:before { content: '\e9b8'; } /* '' */
496
+ .rtmicon-doc-1:before { content: '\e9b9'; } /* '' */
497
+ .rtmicon-docs-1:before { content: '\e9ba'; } /* '' */
498
+ .rtmicon-doc-landscape:before { content: '\e9bb'; } /* '' */
499
+ .rtmicon-doc-text-1:before { content: '\e9bc'; } /* '' */
500
+ .rtmicon-doc-text-inv-1:before { content: '\e9bd'; } /* '' */
501
+ .rtmicon-newspaper:before { content: '\e9be'; } /* '' */
502
+ .rtmicon-book-open:before { content: '\e9bf'; } /* '' */
503
+ .rtmicon-book-1:before { content: '\e9c0'; } /* '' */
504
+ .rtmicon-folder-1:before { content: '\e9c1'; } /* '' */
505
+ .rtmicon-archive:before { content: '\e9c2'; } /* '' */
506
+ .rtmicon-box-1:before { content: '\e9c3'; } /* '' */
507
+ .rtmicon-rss-1:before { content: '\e9c4'; } /* '' */
508
+ .rtmicon-phone-1:before { content: '\e9c5'; } /* '' */
509
+ .rtmicon-cog-1:before { content: '\e9c6'; } /* '' */
510
+ .rtmicon-tools:before { content: '\e9c7'; } /* '' */
511
+ .rtmicon-share:before { content: '\e9c8'; } /* '' */
512
+ .rtmicon-shareable:before { content: '\e9c9'; } /* '' */
513
+ .rtmicon-basket-1:before { content: '\e9ca'; } /* '' */
514
+ .rtmicon-bag:before { content: '\e9cb'; } /* '' */
515
+ .rtmicon-calendar-1:before { content: '\e9cc'; } /* '' */
516
+ .rtmicon-login-1:before { content: '\e9cd'; } /* '' */
517
+ .rtmicon-logout-1:before { content: '\e9ce'; } /* '' */
518
+ .rtmicon-mic-1:before { content: '\e9cf'; } /* '' */
519
+ .rtmicon-mute-1:before { content: '\e9d0'; } /* '' */
520
+ .rtmicon-sound:before { content: '\e9d1'; } /* '' */
521
+ .rtmicon-volume:before { content: '\e9d2'; } /* '' */
522
+ .rtmicon-clock-1:before { content: '\e9d3'; } /* '' */
523
+ .rtmicon-superscript:before { content: '\e8ea'; } /* '' */
trunk/app/assets/css/rtmedia-icons/rtm_font_icons-ie7-codes.css ADDED
@@ -0,0 +1,470 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ .rtmicon-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
3
+ .rtmicon-hourglass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d4;&nbsp;'); }
4
+ .rtmicon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
5
+ .rtmicon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
6
+ .rtmicon-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
7
+ .rtmicon-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
8
+ .rtmicon-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
9
+ .rtmicon-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
10
+ .rtmicon-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
11
+ .rtmicon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
12
+ .rtmicon-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
13
+ .rtmicon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
14
+ .rtmicon-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
15
+ .rtmicon-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
16
+ .rtmicon-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
17
+ .rtmicon-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
18
+ .rtmicon-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
19
+ .rtmicon-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
20
+ .rtmicon-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
21
+ .rtmicon-camera-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
22
+ .rtmicon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
23
+ .rtmicon-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
24
+ .rtmicon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
25
+ .rtmicon-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
26
+ .rtmicon-ok-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
27
+ .rtmicon-ok-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
28
+ .rtmicon-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
29
+ .rtmicon-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
30
+ .rtmicon-cancel-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
31
+ .rtmicon-cancel-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
32
+ .rtmicon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
33
+ .rtmicon-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
34
+ .rtmicon-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
35
+ .rtmicon-plus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
36
+ .rtmicon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
37
+ .rtmicon-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
38
+ .rtmicon-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
39
+ .rtmicon-minus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
40
+ .rtmicon-minus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
41
+ .rtmicon-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
42
+ .rtmicon-help-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
43
+ .rtmicon-info-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
44
+ .rtmicon-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
45
+ .rtmicon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
46
+ .rtmicon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
47
+ .rtmicon-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
48
+ .rtmicon-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
49
+ .rtmicon-link-ext-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
50
+ .rtmicon-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
51
+ .rtmicon-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
52
+ .rtmicon-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
53
+ .rtmicon-lock-open-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
54
+ .rtmicon-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
55
+ .rtmicon-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
56
+ .rtmicon-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
57
+ .rtmicon-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
58
+ .rtmicon-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
59
+ .rtmicon-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
60
+ .rtmicon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
61
+ .rtmicon-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
62
+ .rtmicon-flag-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
63
+ .rtmicon-flag-checkered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
64
+ .rtmicon-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
65
+ .rtmicon-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
66
+ .rtmicon-thumbs-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
67
+ .rtmicon-thumbs-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
68
+ .rtmicon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
69
+ .rtmicon-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
70
+ .rtmicon-download-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
71
+ .rtmicon-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
72
+ .rtmicon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
73
+ .rtmicon-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
74
+ .rtmicon-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
75
+ .rtmicon-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
76
+ .rtmicon-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
77
+ .rtmicon-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
78
+ .rtmicon-export { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
79
+ .rtmicon-export-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
80
+ .rtmicon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
81
+ .rtmicon-pencil-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
82
+ .rtmicon-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
83
+ .rtmicon-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
84
+ .rtmicon-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
85
+ .rtmicon-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
86
+ .rtmicon-gamepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
87
+ .rtmicon-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
88
+ .rtmicon-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
89
+ .rtmicon-comment-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
90
+ .rtmicon-chat-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
91
+ .rtmicon-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
92
+ .rtmicon-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
93
+ .rtmicon-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
94
+ .rtmicon-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
95
+ .rtmicon-attention-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
96
+ .rtmicon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
97
+ .rtmicon-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
98
+ .rtmicon-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
99
+ .rtmicon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
100
+ .rtmicon-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
101
+ .rtmicon-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
102
+ .rtmicon-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
103
+ .rtmicon-doc-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
104
+ .rtmicon-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
105
+ .rtmicon-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
106
+ .rtmicon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
107
+ .rtmicon-folder-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
108
+ .rtmicon-folder-open-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
109
+ .rtmicon-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
110
+ .rtmicon-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
111
+ .rtmicon-rss-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
112
+ .rtmicon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
113
+ .rtmicon-phone-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
114
+ .rtmicon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
115
+ .rtmicon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
116
+ .rtmicon-cog-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
117
+ .rtmicon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
118
+ .rtmicon-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
119
+ .rtmicon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
120
+ .rtmicon-calendar-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
121
+ .rtmicon-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
122
+ .rtmicon-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
123
+ .rtmicon-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
124
+ .rtmicon-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
125
+ .rtmicon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
126
+ .rtmicon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
127
+ .rtmicon-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
128
+ .rtmicon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
129
+ .rtmicon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
130
+ .rtmicon-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
131
+ .rtmicon-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
132
+ .rtmicon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
133
+ .rtmicon-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
134
+ .rtmicon-resize-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
135
+ .rtmicon-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
136
+ .rtmicon-resize-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
137
+ .rtmicon-move { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
138
+ .rtmicon-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
139
+ .rtmicon-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
140
+ .rtmicon-down-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
141
+ .rtmicon-up-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
142
+ .rtmicon-left-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
143
+ .rtmicon-right-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
144
+ .rtmicon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
145
+ .rtmicon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
146
+ .rtmicon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
147
+ .rtmicon-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
148
+ .rtmicon-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
149
+ .rtmicon-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
150
+ .rtmicon-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
151
+ .rtmicon-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
152
+ .rtmicon-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
153
+ .rtmicon-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
154
+ .rtmicon-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
155
+ .rtmicon-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
156
+ .rtmicon-angle-circled-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
157
+ .rtmicon-angle-circled-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
158
+ .rtmicon-angle-circled-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
159
+ .rtmicon-angle-circled-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
160
+ .rtmicon-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
161
+ .rtmicon-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
162
+ .rtmicon-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
163
+ .rtmicon-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
164
+ .rtmicon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
165
+ .rtmicon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
166
+ .rtmicon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
167
+ .rtmicon-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
168
+ .rtmicon-down-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
169
+ .rtmicon-left-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
170
+ .rtmicon-right-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
171
+ .rtmicon-up-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
172
+ .rtmicon-right-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
173
+ .rtmicon-left-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
174
+ .rtmicon-up-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
175
+ .rtmicon-down-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
176
+ .rtmicon-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
177
+ .rtmicon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
178
+ .rtmicon-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
179
+ .rtmicon-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
180
+ .rtmicon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
181
+ .rtmicon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
182
+ .rtmicon-arrows-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b4;&nbsp;'); }
183
+ .rtmicon-level-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
184
+ .rtmicon-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
185
+ .rtmicon-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
186
+ .rtmicon-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
187
+ .rtmicon-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
188
+ .rtmicon-collapse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
189
+ .rtmicon-expand-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
190
+ .rtmicon-collapse-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
191
+ .rtmicon-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
192
+ .rtmicon-play-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
193
+ .rtmicon-play-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
194
+ .rtmicon-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
195
+ .rtmicon-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
196
+ .rtmicon-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
197
+ .rtmicon-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
198
+ .rtmicon-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
199
+ .rtmicon-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
200
+ .rtmicon-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
201
+ .rtmicon-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
202
+ .rtmicon-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
203
+ .rtmicon-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
204
+ .rtmicon-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
205
+ .rtmicon-award { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
206
+ .rtmicon-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
207
+ .rtmicon-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
208
+ .rtmicon-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
209
+ .rtmicon-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
210
+ .rtmicon-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d0;&nbsp;'); }
211
+ .rtmicon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
212
+ .rtmicon-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
213
+ .rtmicon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
214
+ .rtmicon-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
215
+ .rtmicon-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
216
+ .rtmicon-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
217
+ .rtmicon-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
218
+ .rtmicon-fighter-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
219
+ .rtmicon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
220
+ .rtmicon-font { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
221
+ .rtmicon-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
222
+ .rtmicon-italic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
223
+ .rtmicon-text-height { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
224
+ .rtmicon-text-width { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
225
+ .rtmicon-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
226
+ .rtmicon-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
227
+ .rtmicon-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e1;&nbsp;'); }
228
+ .rtmicon-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
229
+ .rtmicon-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e3;&nbsp;'); }
230
+ .rtmicon-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e4;&nbsp;'); }
231
+ .rtmicon-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
232
+ .rtmicon-list-bullet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
233
+ .rtmicon-list-numbered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
234
+ .rtmicon-strike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&nbsp;'); }
235
+ .rtmicon-underline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
236
+ .rtmicon-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
237
+ .rtmicon-subscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8eb;&nbsp;'); }
238
+ .rtmicon-table { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
239
+ .rtmicon-columns { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
240
+ .rtmicon-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
241
+ .rtmicon-scissors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ef;&nbsp;'); }
242
+ .rtmicon-paste { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f0;&nbsp;'); }
243
+ .rtmicon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f1;&nbsp;'); }
244
+ .rtmicon-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
245
+ .rtmicon-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
246
+ .rtmicon-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
247
+ .rtmicon-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
248
+ .rtmicon-road { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
249
+ .rtmicon-list-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
250
+ .rtmicon-qrcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
251
+ .rtmicon-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
252
+ .rtmicon-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
253
+ .rtmicon-ajust { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
254
+ .rtmicon-tint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
255
+ .rtmicon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
256
+ .rtmicon-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
257
+ .rtmicon-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
258
+ .rtmicon-circle-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
259
+ .rtmicon-dot-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
260
+ .rtmicon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
261
+ .rtmicon-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe903;&nbsp;'); }
262
+ .rtmicon-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe904;&nbsp;'); }
263
+ .rtmicon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
264
+ .rtmicon-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe906;&nbsp;'); }
265
+ .rtmicon-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe907;&nbsp;'); }
266
+ .rtmicon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
267
+ .rtmicon-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe909;&nbsp;'); }
268
+ .rtmicon-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90a;&nbsp;'); }
269
+ .rtmicon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90b;&nbsp;'); }
270
+ .rtmicon-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
271
+ .rtmicon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
272
+ .rtmicon-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
273
+ .rtmicon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90f;&nbsp;'); }
274
+ .rtmicon-certificate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe910;&nbsp;'); }
275
+ .rtmicon-tasks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe911;&nbsp;'); }
276
+ .rtmicon-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe912;&nbsp;'); }
277
+ .rtmicon-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe913;&nbsp;'); }
278
+ .rtmicon-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe914;&nbsp;'); }
279
+ .rtmicon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe915;&nbsp;'); }
280
+ .rtmicon-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe916;&nbsp;'); }
281
+ .rtmicon-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe917;&nbsp;'); }
282
+ .rtmicon-pound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe918;&nbsp;'); }
283
+ .rtmicon-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe919;&nbsp;'); }
284
+ .rtmicon-rupee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91a;&nbsp;'); }
285
+ .rtmicon-yen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91b;&nbsp;'); }
286
+ .rtmicon-rouble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91c;&nbsp;'); }
287
+ .rtmicon-try { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
288
+ .rtmicon-won { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91e;&nbsp;'); }
289
+ .rtmicon-bitcoin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91f;&nbsp;'); }
290
+ .rtmicon-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe920;&nbsp;'); }
291
+ .rtmicon-sort-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe921;&nbsp;'); }
292
+ .rtmicon-sort-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe922;&nbsp;'); }
293
+ .rtmicon-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe923;&nbsp;'); }
294
+ .rtmicon-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe924;&nbsp;'); }
295
+ .rtmicon-sort-name-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe925;&nbsp;'); }
296
+ .rtmicon-sort-name-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe926;&nbsp;'); }
297
+ .rtmicon-sort-number-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe927;&nbsp;'); }
298
+ .rtmicon-sort-number-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe928;&nbsp;'); }
299
+ .rtmicon-hammer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe929;&nbsp;'); }
300
+ .rtmicon-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92a;&nbsp;'); }
301
+ .rtmicon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92b;&nbsp;'); }
302
+ .rtmicon-spinner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92c;&nbsp;'); }
303
+ .rtmicon-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92d;&nbsp;'); }
304
+ .rtmicon-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92e;&nbsp;'); }
305
+ .rtmicon-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92f;&nbsp;'); }
306
+ .rtmicon-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe930;&nbsp;'); }
307
+ .rtmicon-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe931;&nbsp;'); }
308
+ .rtmicon-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe932;&nbsp;'); }
309
+ .rtmicon-medkit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe933;&nbsp;'); }
310
+ .rtmicon-h-sigh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe934;&nbsp;'); }
311
+ .rtmicon-hospital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe935;&nbsp;'); }
312
+ .rtmicon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe936;&nbsp;'); }
313
+ .rtmicon-smile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe937;&nbsp;'); }
314
+ .rtmicon-frown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe938;&nbsp;'); }
315
+ .rtmicon-meh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe939;&nbsp;'); }
316
+ .rtmicon-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93a;&nbsp;'); }
317
+ .rtmicon-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93b;&nbsp;'); }
318
+ .rtmicon-eraser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93c;&nbsp;'); }
319
+ .rtmicon-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93d;&nbsp;'); }
320
+ .rtmicon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
321
+ .rtmicon-extinguisher { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93f;&nbsp;'); }
322
+ .rtmicon-bullseye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe940;&nbsp;'); }
323
+ .rtmicon-wheelchair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe941;&nbsp;'); }
324
+ .rtmicon-adn { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe942;&nbsp;'); }
325
+ .rtmicon-android { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe943;&nbsp;'); }
326
+ .rtmicon-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe944;&nbsp;'); }
327
+ .rtmicon-bitbucket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe945;&nbsp;'); }
328
+ .rtmicon-bitbucket-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe946;&nbsp;'); }
329
+ .rtmicon-css3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe947;&nbsp;'); }
330
+ .rtmicon-dribbble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe948;&nbsp;'); }
331
+ .rtmicon-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe949;&nbsp;'); }
332
+ .rtmicon-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94a;&nbsp;'); }
333
+ .rtmicon-facebook-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
334
+ .rtmicon-flickr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
335
+ .rtmicon-foursquare { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94d;&nbsp;'); }
336
+ .rtmicon-github { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94e;&nbsp;'); }
337
+ .rtmicon-github-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94f;&nbsp;'); }
338
+ .rtmicon-github-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe950;&nbsp;'); }
339
+ .rtmicon-gittip { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe951;&nbsp;'); }
340
+ .rtmicon-gplus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe952;&nbsp;'); }
341
+ .rtmicon-gplus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
342
+ .rtmicon-html5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe954;&nbsp;'); }
343
+ .rtmicon-instagramm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe955;&nbsp;'); }
344
+ .rtmicon-linkedin-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe956;&nbsp;'); }
345
+ .rtmicon-linux { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe957;&nbsp;'); }
346
+ .rtmicon-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe958;&nbsp;'); }
347
+ .rtmicon-maxcdn { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
348
+ .rtmicon-pagelines { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95a;&nbsp;'); }
349
+ .rtmicon-pinterest-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
350
+ .rtmicon-pinterest-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95c;&nbsp;'); }
351
+ .rtmicon-renren { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95d;&nbsp;'); }
352
+ .rtmicon-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95e;&nbsp;'); }
353
+ .rtmicon-stackexchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95f;&nbsp;'); }
354
+ .rtmicon-stackoverflow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe960;&nbsp;'); }
355
+ .rtmicon-trello { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
356
+ .rtmicon-tumblr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
357
+ .rtmicon-tumblr-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
358
+ .rtmicon-twitter-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe964;&nbsp;'); }
359
+ .rtmicon-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
360
+ .rtmicon-vimeo-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
361
+ .rtmicon-vkontakte { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
362
+ .rtmicon-weibo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe968;&nbsp;'); }
363
+ .rtmicon-windows { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe969;&nbsp;'); }
364
+ .rtmicon-xing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96a;&nbsp;'); }
365
+ .rtmicon-xing-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96b;&nbsp;'); }
366
+ .rtmicon-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96c;&nbsp;'); }
367
+ .rtmicon-youtube-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96d;&nbsp;'); }
368
+ .rtmicon-youtube-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96e;&nbsp;'); }
369
+ .rtmicon-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96f;&nbsp;'); }
370
+ .rtmicon-lemon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe970;&nbsp;'); }
371
+ .rtmicon-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe971;&nbsp;'); }
372
+ .rtmicon-note-beamed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe972;&nbsp;'); }
373
+ .rtmicon-music-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
374
+ .rtmicon-search-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe974;&nbsp;'); }
375
+ .rtmicon-flashlight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
376
+ .rtmicon-mail-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe976;&nbsp;'); }
377
+ .rtmicon-heart-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe977;&nbsp;'); }
378
+ .rtmicon-heart-empty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe978;&nbsp;'); }
379
+ .rtmicon-star-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe979;&nbsp;'); }
380
+ .rtmicon-star-empty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97a;&nbsp;'); }
381
+ .rtmicon-user-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97b;&nbsp;'); }
382
+ .rtmicon-users-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97c;&nbsp;'); }
383
+ .rtmicon-user-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97d;&nbsp;'); }
384
+ .rtmicon-video-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97e;&nbsp;'); }
385
+ .rtmicon-picture-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97f;&nbsp;'); }
386
+ .rtmicon-camera-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe980;&nbsp;'); }
387
+ .rtmicon-layout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe981;&nbsp;'); }
388
+ .rtmicon-menu-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe982;&nbsp;'); }
389
+ .rtmicon-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe983;&nbsp;'); }
390
+ .rtmicon-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe984;&nbsp;'); }
391
+ .rtmicon-cancel-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe985;&nbsp;'); }
392
+ .rtmicon-cancel-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe986;&nbsp;'); }
393
+ .rtmicon-plus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe987;&nbsp;'); }
394
+ .rtmicon-plus-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe988;&nbsp;'); }
395
+ .rtmicon-plus-squared-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe989;&nbsp;'); }
396
+ .rtmicon-minus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98a;&nbsp;'); }
397
+ .rtmicon-minus-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98b;&nbsp;'); }
398
+ .rtmicon-minus-squared-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98c;&nbsp;'); }
399
+ .rtmicon-help-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98d;&nbsp;'); }
400
+ .rtmicon-help-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98e;&nbsp;'); }
401
+ .rtmicon-info-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98f;&nbsp;'); }
402
+ .rtmicon-info-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe990;&nbsp;'); }
403
+ .rtmicon-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe991;&nbsp;'); }
404
+ .rtmicon-home-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
405
+ .rtmicon-link-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe993;&nbsp;'); }
406
+ .rtmicon-attach-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe994;&nbsp;'); }
407
+ .rtmicon-lock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe995;&nbsp;'); }
408
+ .rtmicon-lock-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe996;&nbsp;'); }
409
+ .rtmicon-eye-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe997;&nbsp;'); }
410
+ .rtmicon-tag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe998;&nbsp;'); }
411
+ .rtmicon-bookmark-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe999;&nbsp;'); }
412
+ .rtmicon-bookmarks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
413
+ .rtmicon-flag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99b;&nbsp;'); }
414
+ .rtmicon-thumbs-up-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99c;&nbsp;'); }
415
+ .rtmicon-thumbs-down-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99d;&nbsp;'); }
416
+ .rtmicon-download-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99e;&nbsp;'); }
417
+ .rtmicon-upload-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99f;&nbsp;'); }
418
+ .rtmicon-upload-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a0;&nbsp;'); }
419
+ .rtmicon-reply-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a1;&nbsp;'); }
420
+ .rtmicon-reply-all-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a2;&nbsp;'); }
421
+ .rtmicon-forward-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); }
422
+ .rtmicon-quote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); }
423
+ .rtmicon-code-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); }
424
+ .rtmicon-export-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a6;&nbsp;'); }
425
+ .rtmicon-pencil-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a7;&nbsp;'); }
426
+ .rtmicon-feather { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a8;&nbsp;'); }
427
+ .rtmicon-print-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); }
428
+ .rtmicon-retweet-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); }
429
+ .rtmicon-keyboard-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
430
+ .rtmicon-comment-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ac;&nbsp;'); }
431
+ .rtmicon-chat-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ad;&nbsp;'); }
432
+ .rtmicon-bell-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ae;&nbsp;'); }
433
+ .rtmicon-attention-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
434
+ .rtmicon-alert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b0;&nbsp;'); }
435
+ .rtmicon-vcard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b1;&nbsp;'); }
436
+ .rtmicon-address { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b2;&nbsp;'); }
437
+ .rtmicon-location-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b3;&nbsp;'); }
438
+ .rtmicon-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b4;&nbsp;'); }
439
+ .rtmicon-direction-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b5;&nbsp;'); }
440
+ .rtmicon-compass-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b6;&nbsp;'); }
441
+ .rtmicon-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b7;&nbsp;'); }
442
+ .rtmicon-trash-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b8;&nbsp;'); }
443
+ .rtmicon-doc-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b9;&nbsp;'); }
444
+ .rtmicon-docs-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ba;&nbsp;'); }
445
+ .rtmicon-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bb;&nbsp;'); }
446
+ .rtmicon-doc-text-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bc;&nbsp;'); }
447
+ .rtmicon-doc-text-inv-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bd;&nbsp;'); }
448
+ .rtmicon-newspaper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9be;&nbsp;'); }
449
+ .rtmicon-book-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bf;&nbsp;'); }
450
+ .rtmicon-book-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c0;&nbsp;'); }
451
+ .rtmicon-folder-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c1;&nbsp;'); }
452
+ .rtmicon-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c2;&nbsp;'); }
453
+ .rtmicon-box-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c3;&nbsp;'); }
454
+ .rtmicon-rss-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c4;&nbsp;'); }
455
+ .rtmicon-phone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c5;&nbsp;'); }
456
+ .rtmicon-cog-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c6;&nbsp;'); }
457
+ .rtmicon-tools { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c7;&nbsp;'); }
458
+ .rtmicon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c8;&nbsp;'); }
459
+ .rtmicon-shareable { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c9;&nbsp;'); }
460
+ .rtmicon-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ca;&nbsp;'); }
461
+ .rtmicon-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cb;&nbsp;'); }
462
+ .rtmicon-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cc;&nbsp;'); }
463
+ .rtmicon-login-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
464
+ .rtmicon-logout-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ce;&nbsp;'); }
465
+ .rtmicon-mic-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cf;&nbsp;'); }
466
+ .rtmicon-mute-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d0;&nbsp;'); }
467
+ .rtmicon-sound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d1;&nbsp;'); }
468
+ .rtmicon-volume { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d2;&nbsp;'); }
469
+ .rtmicon-clock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d3;&nbsp;'); }
470
+ .rtmicon-superscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
trunk/app/assets/css/rtmedia-icons/rtm_font_icons-ie7.css ADDED
@@ -0,0 +1,481 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [class^="rtmicon-"], [class*=" rtmicon-"] {
2
+ font-family: 'rtm_font_icons';
3
+ font-style: normal;
4
+ font-weight: normal;
5
+
6
+ /* fix buttons height */
7
+ line-height: 1em;
8
+
9
+ /* you can be more comfortable with increased icons size */
10
+ /* font-size: 120%; */
11
+ }
12
+
13
+ .rtmicon-glass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe800;&nbsp;'); }
14
+ .rtmicon-hourglass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d4;&nbsp;'); }
15
+ .rtmicon-search { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe802;&nbsp;'); }
16
+ .rtmicon-mail { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe803;&nbsp;'); }
17
+ .rtmicon-mail-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe804;&nbsp;'); }
18
+ .rtmicon-heart { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe805;&nbsp;'); }
19
+ .rtmicon-heart-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe806;&nbsp;'); }
20
+ .rtmicon-star { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe807;&nbsp;'); }
21
+ .rtmicon-star-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe808;&nbsp;'); }
22
+ .rtmicon-star-half { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe809;&nbsp;'); }
23
+ .rtmicon-star-half-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80a;&nbsp;'); }
24
+ .rtmicon-user { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80b;&nbsp;'); }
25
+ .rtmicon-users { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80c;&nbsp;'); }
26
+ .rtmicon-male { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80d;&nbsp;'); }
27
+ .rtmicon-female { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80e;&nbsp;'); }
28
+ .rtmicon-video { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe80f;&nbsp;'); }
29
+ .rtmicon-videocam { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe810;&nbsp;'); }
30
+ .rtmicon-picture { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe811;&nbsp;'); }
31
+ .rtmicon-camera { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe812;&nbsp;'); }
32
+ .rtmicon-camera-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe813;&nbsp;'); }
33
+ .rtmicon-th-large { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe814;&nbsp;'); }
34
+ .rtmicon-th { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe815;&nbsp;'); }
35
+ .rtmicon-th-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe816;&nbsp;'); }
36
+ .rtmicon-ok { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe817;&nbsp;'); }
37
+ .rtmicon-ok-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe818;&nbsp;'); }
38
+ .rtmicon-ok-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe819;&nbsp;'); }
39
+ .rtmicon-ok-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81a;&nbsp;'); }
40
+ .rtmicon-cancel { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81b;&nbsp;'); }
41
+ .rtmicon-cancel-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81c;&nbsp;'); }
42
+ .rtmicon-cancel-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81d;&nbsp;'); }
43
+ .rtmicon-plus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81e;&nbsp;'); }
44
+ .rtmicon-plus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe81f;&nbsp;'); }
45
+ .rtmicon-plus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe820;&nbsp;'); }
46
+ .rtmicon-plus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe821;&nbsp;'); }
47
+ .rtmicon-minus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe822;&nbsp;'); }
48
+ .rtmicon-minus-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe823;&nbsp;'); }
49
+ .rtmicon-minus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe824;&nbsp;'); }
50
+ .rtmicon-minus-squared-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe825;&nbsp;'); }
51
+ .rtmicon-minus-squared-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe826;&nbsp;'); }
52
+ .rtmicon-help { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe827;&nbsp;'); }
53
+ .rtmicon-help-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe828;&nbsp;'); }
54
+ .rtmicon-info-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe829;&nbsp;'); }
55
+ .rtmicon-info { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82a;&nbsp;'); }
56
+ .rtmicon-home { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82b;&nbsp;'); }
57
+ .rtmicon-link { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82c;&nbsp;'); }
58
+ .rtmicon-unlink { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82d;&nbsp;'); }
59
+ .rtmicon-link-ext { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82e;&nbsp;'); }
60
+ .rtmicon-link-ext-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe82f;&nbsp;'); }
61
+ .rtmicon-attach { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe830;&nbsp;'); }
62
+ .rtmicon-lock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe831;&nbsp;'); }
63
+ .rtmicon-lock-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe832;&nbsp;'); }
64
+ .rtmicon-lock-open-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe833;&nbsp;'); }
65
+ .rtmicon-pin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe834;&nbsp;'); }
66
+ .rtmicon-eye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe835;&nbsp;'); }
67
+ .rtmicon-eye-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe836;&nbsp;'); }
68
+ .rtmicon-tag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe837;&nbsp;'); }
69
+ .rtmicon-tags { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe838;&nbsp;'); }
70
+ .rtmicon-bookmark { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe839;&nbsp;'); }
71
+ .rtmicon-bookmark-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83a;&nbsp;'); }
72
+ .rtmicon-flag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83b;&nbsp;'); }
73
+ .rtmicon-flag-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83c;&nbsp;'); }
74
+ .rtmicon-flag-checkered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83d;&nbsp;'); }
75
+ .rtmicon-thumbs-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83e;&nbsp;'); }
76
+ .rtmicon-thumbs-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe83f;&nbsp;'); }
77
+ .rtmicon-thumbs-up-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe840;&nbsp;'); }
78
+ .rtmicon-thumbs-down-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe841;&nbsp;'); }
79
+ .rtmicon-download { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe842;&nbsp;'); }
80
+ .rtmicon-upload { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe843;&nbsp;'); }
81
+ .rtmicon-download-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe844;&nbsp;'); }
82
+ .rtmicon-upload-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe845;&nbsp;'); }
83
+ .rtmicon-reply { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe846;&nbsp;'); }
84
+ .rtmicon-reply-all { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe847;&nbsp;'); }
85
+ .rtmicon-forward { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe848;&nbsp;'); }
86
+ .rtmicon-quote-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe849;&nbsp;'); }
87
+ .rtmicon-quote-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84a;&nbsp;'); }
88
+ .rtmicon-code { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84b;&nbsp;'); }
89
+ .rtmicon-export { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84c;&nbsp;'); }
90
+ .rtmicon-export-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84d;&nbsp;'); }
91
+ .rtmicon-pencil { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84e;&nbsp;'); }
92
+ .rtmicon-pencil-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe84f;&nbsp;'); }
93
+ .rtmicon-edit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe850;&nbsp;'); }
94
+ .rtmicon-print { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe851;&nbsp;'); }
95
+ .rtmicon-retweet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe852;&nbsp;'); }
96
+ .rtmicon-keyboard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe853;&nbsp;'); }
97
+ .rtmicon-gamepad { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe854;&nbsp;'); }
98
+ .rtmicon-comment { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe855;&nbsp;'); }
99
+ .rtmicon-chat { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe856;&nbsp;'); }
100
+ .rtmicon-comment-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe857;&nbsp;'); }
101
+ .rtmicon-chat-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe858;&nbsp;'); }
102
+ .rtmicon-bell { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe859;&nbsp;'); }
103
+ .rtmicon-bell-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85a;&nbsp;'); }
104
+ .rtmicon-attention-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85b;&nbsp;'); }
105
+ .rtmicon-attention { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85c;&nbsp;'); }
106
+ .rtmicon-attention-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85d;&nbsp;'); }
107
+ .rtmicon-location { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85e;&nbsp;'); }
108
+ .rtmicon-direction { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe85f;&nbsp;'); }
109
+ .rtmicon-compass { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe860;&nbsp;'); }
110
+ .rtmicon-trash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe861;&nbsp;'); }
111
+ .rtmicon-doc { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe862;&nbsp;'); }
112
+ .rtmicon-docs { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe863;&nbsp;'); }
113
+ .rtmicon-doc-text { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe864;&nbsp;'); }
114
+ .rtmicon-doc-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe865;&nbsp;'); }
115
+ .rtmicon-doc-text-inv { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe866;&nbsp;'); }
116
+ .rtmicon-folder { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe867;&nbsp;'); }
117
+ .rtmicon-folder-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe868;&nbsp;'); }
118
+ .rtmicon-folder-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe869;&nbsp;'); }
119
+ .rtmicon-folder-open-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86a;&nbsp;'); }
120
+ .rtmicon-box { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86b;&nbsp;'); }
121
+ .rtmicon-rss { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86c;&nbsp;'); }
122
+ .rtmicon-rss-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86d;&nbsp;'); }
123
+ .rtmicon-phone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86e;&nbsp;'); }
124
+ .rtmicon-phone-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe86f;&nbsp;'); }
125
+ .rtmicon-menu { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe870;&nbsp;'); }
126
+ .rtmicon-cog { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe871;&nbsp;'); }
127
+ .rtmicon-cog-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe872;&nbsp;'); }
128
+ .rtmicon-wrench { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe873;&nbsp;'); }
129
+ .rtmicon-basket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe874;&nbsp;'); }
130
+ .rtmicon-calendar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe875;&nbsp;'); }
131
+ .rtmicon-calendar-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe876;&nbsp;'); }
132
+ .rtmicon-login { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe877;&nbsp;'); }
133
+ .rtmicon-logout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe878;&nbsp;'); }
134
+ .rtmicon-mic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe879;&nbsp;'); }
135
+ .rtmicon-mute { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87a;&nbsp;'); }
136
+ .rtmicon-volume-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87b;&nbsp;'); }
137
+ .rtmicon-volume-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87c;&nbsp;'); }
138
+ .rtmicon-volume-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87d;&nbsp;'); }
139
+ .rtmicon-headphones { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87e;&nbsp;'); }
140
+ .rtmicon-clock { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe87f;&nbsp;'); }
141
+ .rtmicon-lightbulb { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe880;&nbsp;'); }
142
+ .rtmicon-block { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe881;&nbsp;'); }
143
+ .rtmicon-resize-full { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe882;&nbsp;'); }
144
+ .rtmicon-resize-full-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe883;&nbsp;'); }
145
+ .rtmicon-resize-small { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe884;&nbsp;'); }
146
+ .rtmicon-resize-vertical { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe885;&nbsp;'); }
147
+ .rtmicon-resize-horizontal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe886;&nbsp;'); }
148
+ .rtmicon-move { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe887;&nbsp;'); }
149
+ .rtmicon-zoom-in { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe888;&nbsp;'); }
150
+ .rtmicon-zoom-out { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe889;&nbsp;'); }
151
+ .rtmicon-down-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88a;&nbsp;'); }
152
+ .rtmicon-up-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88b;&nbsp;'); }
153
+ .rtmicon-left-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88c;&nbsp;'); }
154
+ .rtmicon-right-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88d;&nbsp;'); }
155
+ .rtmicon-down-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88e;&nbsp;'); }
156
+ .rtmicon-up-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe88f;&nbsp;'); }
157
+ .rtmicon-left-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe890;&nbsp;'); }
158
+ .rtmicon-right-dir { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe891;&nbsp;'); }
159
+ .rtmicon-down-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe892;&nbsp;'); }
160
+ .rtmicon-left-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe893;&nbsp;'); }
161
+ .rtmicon-right-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe894;&nbsp;'); }
162
+ .rtmicon-up-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe895;&nbsp;'); }
163
+ .rtmicon-angle-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe896;&nbsp;'); }
164
+ .rtmicon-angle-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe897;&nbsp;'); }
165
+ .rtmicon-angle-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe898;&nbsp;'); }
166
+ .rtmicon-angle-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe899;&nbsp;'); }
167
+ .rtmicon-angle-circled-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89a;&nbsp;'); }
168
+ .rtmicon-angle-circled-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89b;&nbsp;'); }
169
+ .rtmicon-angle-circled-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89c;&nbsp;'); }
170
+ .rtmicon-angle-circled-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89d;&nbsp;'); }
171
+ .rtmicon-angle-double-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89e;&nbsp;'); }
172
+ .rtmicon-angle-double-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe89f;&nbsp;'); }
173
+ .rtmicon-angle-double-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a0;&nbsp;'); }
174
+ .rtmicon-angle-double-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a1;&nbsp;'); }
175
+ .rtmicon-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a2;&nbsp;'); }
176
+ .rtmicon-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a3;&nbsp;'); }
177
+ .rtmicon-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a4;&nbsp;'); }
178
+ .rtmicon-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a5;&nbsp;'); }
179
+ .rtmicon-down-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a6;&nbsp;'); }
180
+ .rtmicon-left-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a7;&nbsp;'); }
181
+ .rtmicon-right-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a8;&nbsp;'); }
182
+ .rtmicon-up-big { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8a9;&nbsp;'); }
183
+ .rtmicon-right-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8aa;&nbsp;'); }
184
+ .rtmicon-left-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ab;&nbsp;'); }
185
+ .rtmicon-up-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ac;&nbsp;'); }
186
+ .rtmicon-down-hand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ad;&nbsp;'); }
187
+ .rtmicon-left-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ae;&nbsp;'); }
188
+ .rtmicon-right-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8af;&nbsp;'); }
189
+ .rtmicon-up-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b0;&nbsp;'); }
190
+ .rtmicon-down-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b1;&nbsp;'); }
191
+ .rtmicon-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b2;&nbsp;'); }
192
+ .rtmicon-ccw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b3;&nbsp;'); }
193
+ .rtmicon-arrows-cw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b4;&nbsp;'); }
194
+ .rtmicon-level-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b5;&nbsp;'); }
195
+ .rtmicon-level-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b6;&nbsp;'); }
196
+ .rtmicon-shuffle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b7;&nbsp;'); }
197
+ .rtmicon-exchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b8;&nbsp;'); }
198
+ .rtmicon-expand { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8b9;&nbsp;'); }
199
+ .rtmicon-collapse { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ba;&nbsp;'); }
200
+ .rtmicon-expand-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bb;&nbsp;'); }
201
+ .rtmicon-collapse-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bc;&nbsp;'); }
202
+ .rtmicon-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bd;&nbsp;'); }
203
+ .rtmicon-play-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8be;&nbsp;'); }
204
+ .rtmicon-play-circled2 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8bf;&nbsp;'); }
205
+ .rtmicon-stop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c0;&nbsp;'); }
206
+ .rtmicon-pause { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c1;&nbsp;'); }
207
+ .rtmicon-to-end { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c2;&nbsp;'); }
208
+ .rtmicon-to-end-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c3;&nbsp;'); }
209
+ .rtmicon-to-start { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c4;&nbsp;'); }
210
+ .rtmicon-to-start-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c5;&nbsp;'); }
211
+ .rtmicon-fast-fw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c6;&nbsp;'); }
212
+ .rtmicon-fast-bw { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c7;&nbsp;'); }
213
+ .rtmicon-eject { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c8;&nbsp;'); }
214
+ .rtmicon-target { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8c9;&nbsp;'); }
215
+ .rtmicon-signal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ca;&nbsp;'); }
216
+ .rtmicon-award { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cb;&nbsp;'); }
217
+ .rtmicon-desktop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cc;&nbsp;'); }
218
+ .rtmicon-laptop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cd;&nbsp;'); }
219
+ .rtmicon-tablet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ce;&nbsp;'); }
220
+ .rtmicon-mobile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8cf;&nbsp;'); }
221
+ .rtmicon-inbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d0;&nbsp;'); }
222
+ .rtmicon-globe { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d1;&nbsp;'); }
223
+ .rtmicon-sun { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d2;&nbsp;'); }
224
+ .rtmicon-cloud { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d3;&nbsp;'); }
225
+ .rtmicon-flash { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d4;&nbsp;'); }
226
+ .rtmicon-moon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d5;&nbsp;'); }
227
+ .rtmicon-umbrella { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d6;&nbsp;'); }
228
+ .rtmicon-flight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d7;&nbsp;'); }
229
+ .rtmicon-fighter-jet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d8;&nbsp;'); }
230
+ .rtmicon-leaf { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8d9;&nbsp;'); }
231
+ .rtmicon-font { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8da;&nbsp;'); }
232
+ .rtmicon-bold { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8db;&nbsp;'); }
233
+ .rtmicon-italic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dc;&nbsp;'); }
234
+ .rtmicon-text-height { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8dd;&nbsp;'); }
235
+ .rtmicon-text-width { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8de;&nbsp;'); }
236
+ .rtmicon-align-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8df;&nbsp;'); }
237
+ .rtmicon-align-center { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e0;&nbsp;'); }
238
+ .rtmicon-align-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e1;&nbsp;'); }
239
+ .rtmicon-align-justify { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e2;&nbsp;'); }
240
+ .rtmicon-list { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e3;&nbsp;'); }
241
+ .rtmicon-indent-left { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e4;&nbsp;'); }
242
+ .rtmicon-indent-right { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e5;&nbsp;'); }
243
+ .rtmicon-list-bullet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e6;&nbsp;'); }
244
+ .rtmicon-list-numbered { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e7;&nbsp;'); }
245
+ .rtmicon-strike { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e8;&nbsp;'); }
246
+ .rtmicon-underline { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8e9;&nbsp;'); }
247
+ .rtmicon-music { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe801;&nbsp;'); }
248
+ .rtmicon-subscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8eb;&nbsp;'); }
249
+ .rtmicon-table { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ec;&nbsp;'); }
250
+ .rtmicon-columns { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ed;&nbsp;'); }
251
+ .rtmicon-crop { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ee;&nbsp;'); }
252
+ .rtmicon-scissors { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ef;&nbsp;'); }
253
+ .rtmicon-paste { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f0;&nbsp;'); }
254
+ .rtmicon-briefcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f1;&nbsp;'); }
255
+ .rtmicon-suitcase { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f2;&nbsp;'); }
256
+ .rtmicon-ellipsis { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f3;&nbsp;'); }
257
+ .rtmicon-ellipsis-vert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f4;&nbsp;'); }
258
+ .rtmicon-off { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f5;&nbsp;'); }
259
+ .rtmicon-road { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f6;&nbsp;'); }
260
+ .rtmicon-list-alt { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f7;&nbsp;'); }
261
+ .rtmicon-qrcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f8;&nbsp;'); }
262
+ .rtmicon-barcode { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8f9;&nbsp;'); }
263
+ .rtmicon-book { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fa;&nbsp;'); }
264
+ .rtmicon-ajust { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fb;&nbsp;'); }
265
+ .rtmicon-tint { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fc;&nbsp;'); }
266
+ .rtmicon-check { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fd;&nbsp;'); }
267
+ .rtmicon-check-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8fe;&nbsp;'); }
268
+ .rtmicon-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ff;&nbsp;'); }
269
+ .rtmicon-circle-empty { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe900;&nbsp;'); }
270
+ .rtmicon-dot-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe901;&nbsp;'); }
271
+ .rtmicon-asterisk { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe902;&nbsp;'); }
272
+ .rtmicon-gift { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe903;&nbsp;'); }
273
+ .rtmicon-fire { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe904;&nbsp;'); }
274
+ .rtmicon-magnet { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe905;&nbsp;'); }
275
+ .rtmicon-chart-bar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe906;&nbsp;'); }
276
+ .rtmicon-ticket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe907;&nbsp;'); }
277
+ .rtmicon-credit-card { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe908;&nbsp;'); }
278
+ .rtmicon-floppy { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe909;&nbsp;'); }
279
+ .rtmicon-megaphone { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90a;&nbsp;'); }
280
+ .rtmicon-hdd { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90b;&nbsp;'); }
281
+ .rtmicon-key { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90c;&nbsp;'); }
282
+ .rtmicon-fork { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90d;&nbsp;'); }
283
+ .rtmicon-rocket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90e;&nbsp;'); }
284
+ .rtmicon-bug { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe90f;&nbsp;'); }
285
+ .rtmicon-certificate { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe910;&nbsp;'); }
286
+ .rtmicon-tasks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe911;&nbsp;'); }
287
+ .rtmicon-filter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe912;&nbsp;'); }
288
+ .rtmicon-beaker { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe913;&nbsp;'); }
289
+ .rtmicon-magic { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe914;&nbsp;'); }
290
+ .rtmicon-truck { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe915;&nbsp;'); }
291
+ .rtmicon-money { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe916;&nbsp;'); }
292
+ .rtmicon-euro { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe917;&nbsp;'); }
293
+ .rtmicon-pound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe918;&nbsp;'); }
294
+ .rtmicon-dollar { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe919;&nbsp;'); }
295
+ .rtmicon-rupee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91a;&nbsp;'); }
296
+ .rtmicon-yen { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91b;&nbsp;'); }
297
+ .rtmicon-rouble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91c;&nbsp;'); }
298
+ .rtmicon-try { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91d;&nbsp;'); }
299
+ .rtmicon-won { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91e;&nbsp;'); }
300
+ .rtmicon-bitcoin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe91f;&nbsp;'); }
301
+ .rtmicon-sort { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe920;&nbsp;'); }
302
+ .rtmicon-sort-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe921;&nbsp;'); }
303
+ .rtmicon-sort-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe922;&nbsp;'); }
304
+ .rtmicon-sort-alt-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe923;&nbsp;'); }
305
+ .rtmicon-sort-alt-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe924;&nbsp;'); }
306
+ .rtmicon-sort-name-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe925;&nbsp;'); }
307
+ .rtmicon-sort-name-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe926;&nbsp;'); }
308
+ .rtmicon-sort-number-up { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe927;&nbsp;'); }
309
+ .rtmicon-sort-number-down { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe928;&nbsp;'); }
310
+ .rtmicon-hammer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe929;&nbsp;'); }
311
+ .rtmicon-gauge { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92a;&nbsp;'); }
312
+ .rtmicon-sitemap { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92b;&nbsp;'); }
313
+ .rtmicon-spinner { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92c;&nbsp;'); }
314
+ .rtmicon-coffee { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92d;&nbsp;'); }
315
+ .rtmicon-food { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92e;&nbsp;'); }
316
+ .rtmicon-beer { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe92f;&nbsp;'); }
317
+ .rtmicon-user-md { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe930;&nbsp;'); }
318
+ .rtmicon-stethoscope { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe931;&nbsp;'); }
319
+ .rtmicon-ambulance { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe932;&nbsp;'); }
320
+ .rtmicon-medkit { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe933;&nbsp;'); }
321
+ .rtmicon-h-sigh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe934;&nbsp;'); }
322
+ .rtmicon-hospital { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe935;&nbsp;'); }
323
+ .rtmicon-building { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe936;&nbsp;'); }
324
+ .rtmicon-smile { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe937;&nbsp;'); }
325
+ .rtmicon-frown { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe938;&nbsp;'); }
326
+ .rtmicon-meh { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe939;&nbsp;'); }
327
+ .rtmicon-anchor { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93a;&nbsp;'); }
328
+ .rtmicon-terminal { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93b;&nbsp;'); }
329
+ .rtmicon-eraser { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93c;&nbsp;'); }
330
+ .rtmicon-puzzle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93d;&nbsp;'); }
331
+ .rtmicon-shield { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93e;&nbsp;'); }
332
+ .rtmicon-extinguisher { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe93f;&nbsp;'); }
333
+ .rtmicon-bullseye { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe940;&nbsp;'); }
334
+ .rtmicon-wheelchair { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe941;&nbsp;'); }
335
+ .rtmicon-adn { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe942;&nbsp;'); }
336
+ .rtmicon-android { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe943;&nbsp;'); }
337
+ .rtmicon-apple { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe944;&nbsp;'); }
338
+ .rtmicon-bitbucket { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe945;&nbsp;'); }
339
+ .rtmicon-bitbucket-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe946;&nbsp;'); }
340
+ .rtmicon-css3 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe947;&nbsp;'); }
341
+ .rtmicon-dribbble { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe948;&nbsp;'); }
342
+ .rtmicon-dropbox { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe949;&nbsp;'); }
343
+ .rtmicon-facebook { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94a;&nbsp;'); }
344
+ .rtmicon-facebook-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94b;&nbsp;'); }
345
+ .rtmicon-flickr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94c;&nbsp;'); }
346
+ .rtmicon-foursquare { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94d;&nbsp;'); }
347
+ .rtmicon-github { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94e;&nbsp;'); }
348
+ .rtmicon-github-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe94f;&nbsp;'); }
349
+ .rtmicon-github-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe950;&nbsp;'); }
350
+ .rtmicon-gittip { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe951;&nbsp;'); }
351
+ .rtmicon-gplus-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe952;&nbsp;'); }
352
+ .rtmicon-gplus { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe953;&nbsp;'); }
353
+ .rtmicon-html5 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe954;&nbsp;'); }
354
+ .rtmicon-instagramm { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe955;&nbsp;'); }
355
+ .rtmicon-linkedin-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe956;&nbsp;'); }
356
+ .rtmicon-linux { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe957;&nbsp;'); }
357
+ .rtmicon-linkedin { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe958;&nbsp;'); }
358
+ .rtmicon-maxcdn { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe959;&nbsp;'); }
359
+ .rtmicon-pagelines { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95a;&nbsp;'); }
360
+ .rtmicon-pinterest-circled { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95b;&nbsp;'); }
361
+ .rtmicon-pinterest-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95c;&nbsp;'); }
362
+ .rtmicon-renren { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95d;&nbsp;'); }
363
+ .rtmicon-skype { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95e;&nbsp;'); }
364
+ .rtmicon-stackexchange { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe95f;&nbsp;'); }
365
+ .rtmicon-stackoverflow { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe960;&nbsp;'); }
366
+ .rtmicon-trello { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe961;&nbsp;'); }
367
+ .rtmicon-tumblr { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe962;&nbsp;'); }
368
+ .rtmicon-tumblr-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe963;&nbsp;'); }
369
+ .rtmicon-twitter-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe964;&nbsp;'); }
370
+ .rtmicon-twitter { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe965;&nbsp;'); }
371
+ .rtmicon-vimeo-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe966;&nbsp;'); }
372
+ .rtmicon-vkontakte { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe967;&nbsp;'); }
373
+ .rtmicon-weibo { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe968;&nbsp;'); }
374
+ .rtmicon-windows { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe969;&nbsp;'); }
375
+ .rtmicon-xing { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96a;&nbsp;'); }
376
+ .rtmicon-xing-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96b;&nbsp;'); }
377
+ .rtmicon-youtube { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96c;&nbsp;'); }
378
+ .rtmicon-youtube-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96d;&nbsp;'); }
379
+ .rtmicon-youtube-play { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96e;&nbsp;'); }
380
+ .rtmicon-blank { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe96f;&nbsp;'); }
381
+ .rtmicon-lemon { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe970;&nbsp;'); }
382
+ .rtmicon-note { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe971;&nbsp;'); }
383
+ .rtmicon-note-beamed { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe972;&nbsp;'); }
384
+ .rtmicon-music-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe973;&nbsp;'); }
385
+ .rtmicon-search-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe974;&nbsp;'); }
386
+ .rtmicon-flashlight { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe975;&nbsp;'); }
387
+ .rtmicon-mail-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe976;&nbsp;'); }
388
+ .rtmicon-heart-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe977;&nbsp;'); }
389
+ .rtmicon-heart-empty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe978;&nbsp;'); }
390
+ .rtmicon-star-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe979;&nbsp;'); }
391
+ .rtmicon-star-empty-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97a;&nbsp;'); }
392
+ .rtmicon-user-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97b;&nbsp;'); }
393
+ .rtmicon-users-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97c;&nbsp;'); }
394
+ .rtmicon-user-add { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97d;&nbsp;'); }
395
+ .rtmicon-video-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97e;&nbsp;'); }
396
+ .rtmicon-picture-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe97f;&nbsp;'); }
397
+ .rtmicon-camera-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe980;&nbsp;'); }
398
+ .rtmicon-layout { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe981;&nbsp;'); }
399
+ .rtmicon-menu-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe982;&nbsp;'); }
400
+ .rtmicon-check-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe983;&nbsp;'); }
401
+ .rtmicon-cancel-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe984;&nbsp;'); }
402
+ .rtmicon-cancel-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe985;&nbsp;'); }
403
+ .rtmicon-cancel-squared { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe986;&nbsp;'); }
404
+ .rtmicon-plus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe987;&nbsp;'); }
405
+ .rtmicon-plus-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe988;&nbsp;'); }
406
+ .rtmicon-plus-squared-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe989;&nbsp;'); }
407
+ .rtmicon-minus-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98a;&nbsp;'); }
408
+ .rtmicon-minus-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98b;&nbsp;'); }
409
+ .rtmicon-minus-squared-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98c;&nbsp;'); }
410
+ .rtmicon-help-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98d;&nbsp;'); }
411
+ .rtmicon-help-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98e;&nbsp;'); }
412
+ .rtmicon-info-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe98f;&nbsp;'); }
413
+ .rtmicon-info-circled-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe990;&nbsp;'); }
414
+ .rtmicon-back { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe991;&nbsp;'); }
415
+ .rtmicon-home-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe992;&nbsp;'); }
416
+ .rtmicon-link-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe993;&nbsp;'); }
417
+ .rtmicon-attach-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe994;&nbsp;'); }
418
+ .rtmicon-lock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe995;&nbsp;'); }
419
+ .rtmicon-lock-open-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe996;&nbsp;'); }
420
+ .rtmicon-eye-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe997;&nbsp;'); }
421
+ .rtmicon-tag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe998;&nbsp;'); }
422
+ .rtmicon-bookmark-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe999;&nbsp;'); }
423
+ .rtmicon-bookmarks { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99a;&nbsp;'); }
424
+ .rtmicon-flag-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99b;&nbsp;'); }
425
+ .rtmicon-thumbs-up-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99c;&nbsp;'); }
426
+ .rtmicon-thumbs-down-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99d;&nbsp;'); }
427
+ .rtmicon-download-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99e;&nbsp;'); }
428
+ .rtmicon-upload-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe99f;&nbsp;'); }
429
+ .rtmicon-upload-cloud-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a0;&nbsp;'); }
430
+ .rtmicon-reply-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a1;&nbsp;'); }
431
+ .rtmicon-reply-all-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a2;&nbsp;'); }
432
+ .rtmicon-forward-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a3;&nbsp;'); }
433
+ .rtmicon-quote { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a4;&nbsp;'); }
434
+ .rtmicon-code-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a5;&nbsp;'); }
435
+ .rtmicon-export-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a6;&nbsp;'); }
436
+ .rtmicon-pencil-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a7;&nbsp;'); }
437
+ .rtmicon-feather { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a8;&nbsp;'); }
438
+ .rtmicon-print-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9a9;&nbsp;'); }
439
+ .rtmicon-retweet-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9aa;&nbsp;'); }
440
+ .rtmicon-keyboard-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ab;&nbsp;'); }
441
+ .rtmicon-comment-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ac;&nbsp;'); }
442
+ .rtmicon-chat-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ad;&nbsp;'); }
443
+ .rtmicon-bell-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ae;&nbsp;'); }
444
+ .rtmicon-attention-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9af;&nbsp;'); }
445
+ .rtmicon-alert { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b0;&nbsp;'); }
446
+ .rtmicon-vcard { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b1;&nbsp;'); }
447
+ .rtmicon-address { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b2;&nbsp;'); }
448
+ .rtmicon-location-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b3;&nbsp;'); }
449
+ .rtmicon-map { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b4;&nbsp;'); }
450
+ .rtmicon-direction-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b5;&nbsp;'); }
451
+ .rtmicon-compass-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b6;&nbsp;'); }
452
+ .rtmicon-cup { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b7;&nbsp;'); }
453
+ .rtmicon-trash-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b8;&nbsp;'); }
454
+ .rtmicon-doc-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9b9;&nbsp;'); }
455
+ .rtmicon-docs-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ba;&nbsp;'); }
456
+ .rtmicon-doc-landscape { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bb;&nbsp;'); }
457
+ .rtmicon-doc-text-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bc;&nbsp;'); }
458
+ .rtmicon-doc-text-inv-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bd;&nbsp;'); }
459
+ .rtmicon-newspaper { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9be;&nbsp;'); }
460
+ .rtmicon-book-open { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9bf;&nbsp;'); }
461
+ .rtmicon-book-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c0;&nbsp;'); }
462
+ .rtmicon-folder-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c1;&nbsp;'); }
463
+ .rtmicon-archive { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c2;&nbsp;'); }
464
+ .rtmicon-box-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c3;&nbsp;'); }
465
+ .rtmicon-rss-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c4;&nbsp;'); }
466
+ .rtmicon-phone-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c5;&nbsp;'); }
467
+ .rtmicon-cog-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c6;&nbsp;'); }
468
+ .rtmicon-tools { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c7;&nbsp;'); }
469
+ .rtmicon-share { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c8;&nbsp;'); }
470
+ .rtmicon-shareable { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9c9;&nbsp;'); }
471
+ .rtmicon-basket-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ca;&nbsp;'); }
472
+ .rtmicon-bag { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cb;&nbsp;'); }
473
+ .rtmicon-calendar-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cc;&nbsp;'); }
474
+ .rtmicon-login-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cd;&nbsp;'); }
475
+ .rtmicon-logout-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9ce;&nbsp;'); }
476
+ .rtmicon-mic-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9cf;&nbsp;'); }
477
+ .rtmicon-mute-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d0;&nbsp;'); }
478
+ .rtmicon-sound { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d1;&nbsp;'); }
479
+ .rtmicon-volume { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d2;&nbsp;'); }
480
+ .rtmicon-clock-1 { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe9d3;&nbsp;'); }
481
+ .rtmicon-superscript { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = '&#xe8ea;&nbsp;'); }
trunk/app/assets/css/rtmedia-icons/rtm_font_icons.css ADDED
@@ -0,0 +1,521 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ @font-face {
2
+ font-family: 'rtm_font_icons';
3
+ src: url('../../font/rtm_font_icons.eot?21456257');
4
+ src: url('../../font/rtm_font_icons.eot?21456257#iefix') format('embedded-opentype'),
5
+ url('../../font/rtm_font_icons.woff?21456257') format('woff'),
6
+ url('../../font/rtm_font_icons.ttf?21456257') format('truetype'),
7
+ url('../../font/rtm_font_icons.svg?21456257#rtm_font_icons') format('svg');
8
+ font-weight: normal;
9
+ font-style: normal;
10
+ }
11
+ /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */
12
+ /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */
13
+ /*
14
+ @media screen and (-webkit-min-device-pixel-ratio:0) {
15
+ @font-face {
16
+ font-family: 'rtm_font_icons';
17
+ src: url('../font/rtm_font_icons.svg?21456257#rtm_font_icons') format('svg');
18
+ }
19
+ }
20
+ */
21
+
22
+ [class^="rtmicon-"]:before, [class*=" rtmicon-"]:before {
23
+ font-family: "rtm_font_icons";
24
+ font-style: normal;
25
+ font-weight: normal;
26
+ speak: none;
27
+
28
+ display: inline-block;
29
+ text-decoration: inherit;
30
+ width: 1em;
31
+ margin-right: .2em;
32
+ text-align: center;
33
+ /* opacity: .8; */
34
+
35
+ /* For safety - reset parent styles, that can break glyph codes*/
36
+ font-variant: normal;
37
+ text-transform: none;
38
+
39
+ /* fix buttons height, for twitter bootstrap */
40
+ line-height: 1em;
41
+
42
+ /* Animation center compensation - margins should be symmetric */
43
+ /* remove if not needed */
44
+ margin-left: .2em;
45
+
46
+ /* you can be more comfortable with increased icons size */
47
+ /* font-size: 120%; */
48
+
49
+ /* Uncomment for 3D effect */
50
+ /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
51
+ }
52
+
53
+ .rtmicon-glass:before { content: '\e800'; } /* '' */
54
+ .rtmicon-hourglass:before { content: '\e9d4'; } /* '' */
55
+ .rtmicon-search:before { content: '\e802'; } /* '' */
56
+ .rtmicon-mail:before { content: '\e803'; } /* '' */
57
+ .rtmicon-mail-alt:before { content: '\e804'; } /* '' */
58
+ .rtmicon-heart:before { content: '\e805'; } /* '' */
59
+ .rtmicon-heart-empty:before { content: '\e806'; } /* '' */
60
+ .rtmicon-star:before { content: '\e807'; } /* '' */
61
+ .rtmicon-star-empty:before { content: '\e808'; } /* '' */
62
+ .rtmicon-star-half:before { content: '\e809'; } /* '' */
63
+ .rtmicon-star-half-alt:before { content: '\e80a'; } /* '' */
64
+ .rtmicon-user:before { content: '\e80b'; } /* '' */
65
+ .rtmicon-users:before { content: '\e80c'; } /* '' */
66
+ .rtmicon-male:before { content: '\e80d'; } /* '' */
67
+ .rtmicon-female:before { content: '\e80e'; } /* '' */
68
+ .rtmicon-video:before { content: '\e80f'; } /* '' */
69
+ .rtmicon-videocam:before { content: '\e810'; } /* '' */
70
+ .rtmicon-picture:before { content: '\e811'; } /* '' */
71
+ .rtmicon-camera:before { content: '\e812'; } /* '' */
72
+ .rtmicon-camera-alt:before { content: '\e813'; } /* '' */
73
+ .rtmicon-th-large:before { content: '\e814'; } /* '' */
74
+ .rtmicon-th:before { content: '\e815'; } /* '' */
75
+ .rtmicon-th-list:before { content: '\e816'; } /* '' */
76
+ .rtmicon-ok:before { content: '\e817'; } /* '' */
77
+ .rtmicon-ok-circled:before { content: '\e818'; } /* '' */
78
+ .rtmicon-ok-circled2:before { content: '\e819'; } /* '' */
79
+ .rtmicon-ok-squared:before { content: '\e81a'; } /* '' */
80
+ .rtmicon-cancel:before { content: '\e81b'; } /* '' */
81
+ .rtmicon-cancel-circled:before { content: '\e81c'; } /* '' */
82
+ .rtmicon-cancel-circled2:before { content: '\e81d'; } /* '' */
83
+ .rtmicon-plus:before { content: '\e81e'; } /* '' */
84
+ .rtmicon-plus-circled:before { content: '\e81f'; } /* '' */
85
+ .rtmicon-plus-squared:before { content: '\e820'; } /* '' */
86
+ .rtmicon-plus-squared-small:before { content: '\e821'; } /* '' */
87
+ .rtmicon-minus:before { content: '\e822'; } /* '' */
88
+ .rtmicon-minus-circled:before { content: '\e823'; } /* '' */
89
+ .rtmicon-minus-squared:before { content: '\e824'; } /* '' */
90
+ .rtmicon-minus-squared-alt:before { content: '\e825'; } /* '' */
91
+ .rtmicon-minus-squared-small:before { content: '\e826'; } /* '' */
92
+ .rtmicon-help:before { content: '\e827'; } /* '' */
93
+ .rtmicon-help-circled:before { content: '\e828'; } /* '' */
94
+ .rtmicon-info-circled:before { content: '\e829'; } /* '' */
95
+ .rtmicon-info:before { content: '\e82a'; } /* '' */
96
+ .rtmicon-home:before { content: '\e82b'; } /* '' */
97
+ .rtmicon-link:before { content: '\e82c'; } /* '' */
98
+ .rtmicon-unlink:before { content: '\e82d'; } /* '' */
99
+ .rtmicon-link-ext:before { content: '\e82e'; } /* '' */
100
+ .rtmicon-link-ext-alt:before { content: '\e82f'; } /* '' */
101
+ .rtmicon-attach:before { content: '\e830'; } /* '' */
102
+ .rtmicon-lock:before { content: '\e831'; } /* '' */
103
+ .rtmicon-lock-open:before { content: '\e832'; } /* '' */
104
+ .rtmicon-lock-open-alt:before { content: '\e833'; } /* '' */
105
+ .rtmicon-pin:before { content: '\e834'; } /* '' */
106
+ .rtmicon-eye:before { content: '\e835'; } /* '' */
107
+ .rtmicon-eye-off:before { content: '\e836'; } /* '' */
108
+ .rtmicon-tag:before { content: '\e837'; } /* '' */
109
+ .rtmicon-tags:before { content: '\e838'; } /* '' */
110
+ .rtmicon-bookmark:before { content: '\e839'; } /* '' */
111
+ .rtmicon-bookmark-empty:before { content: '\e83a'; } /* '' */
112
+ .rtmicon-flag:before { content: '\e83b'; } /* '' */
113
+ .rtmicon-flag-empty:before { content: '\e83c'; } /* '' */
114
+ .rtmicon-flag-checkered:before { content: '\e83d'; } /* '' */
115
+ .rtmicon-thumbs-up:before { content: '\e83e'; } /* '' */
116
+ .rtmicon-thumbs-down:before { content: '\e83f'; } /* '' */
117
+ .rtmicon-thumbs-up-alt:before { content: '\e840'; } /* '' */
118
+ .rtmicon-thumbs-down-alt:before { content: '\e841'; } /* '' */
119
+ .rtmicon-download:before { content: '\e842'; } /* '' */
120
+ .rtmicon-upload:before { content: '\e843'; } /* '' */
121
+ .rtmicon-download-cloud:before { content: '\e844'; } /* '' */
122
+ .rtmicon-upload-cloud:before { content: '\e845'; } /* '' */
123
+ .rtmicon-reply:before { content: '\e846'; } /* '' */
124
+ .rtmicon-reply-all:before { content: '\e847'; } /* '' */
125
+ .rtmicon-forward:before { content: '\e848'; } /* '' */
126
+ .rtmicon-quote-left:before { content: '\e849'; } /* '' */
127
+ .rtmicon-quote-right:before { content: '\e84a'; } /* '' */
128
+ .rtmicon-code:before { content: '\e84b'; } /* '' */
129
+ .rtmicon-export:before { content: '\e84c'; } /* '' */
130
+ .rtmicon-export-alt:before { content: '\e84d'; } /* '' */
131
+ .rtmicon-pencil:before { content: '\e84e'; } /* '' */
132
+ .rtmicon-pencil-squared:before { content: '\e84f'; } /* '' */
133
+ .rtmicon-edit:before { content: '\e850'; } /* '' */
134
+ .rtmicon-print:before { content: '\e851'; } /* '' */
135
+ .rtmicon-retweet:before { content: '\e852'; } /* '' */
136
+ .rtmicon-keyboard:before { content: '\e853'; } /* '' */
137
+ .rtmicon-gamepad:before { content: '\e854'; } /* '' */
138
+ .rtmicon-comment:before { content: '\e855'; } /* '' */
139
+ .rtmicon-chat:before { content: '\e856'; } /* '' */
140
+ .rtmicon-comment-empty:before { content: '\e857'; } /* '' */
141
+ .rtmicon-chat-empty:before { content: '\e858'; } /* '' */
142
+ .rtmicon-bell:before { content: '\e859'; } /* '' */
143
+ .rtmicon-bell-alt:before { content: '\e85a'; } /* '' */
144
+ .rtmicon-attention-alt:before { content: '\e85b'; } /* '' */
145
+ .rtmicon-attention:before { content: '\e85c'; } /* '' */
146
+ .rtmicon-attention-circled:before { content: '\e85d'; } /* '' */
147
+ .rtmicon-location:before { content: '\e85e'; } /* '' */
148
+ .rtmicon-direction:before { content: '\e85f'; } /* '' */
149
+ .rtmicon-compass:before { content: '\e860'; } /* '' */
150
+ .rtmicon-trash:before { content: '\e861'; } /* '' */
151
+ .rtmicon-doc:before { content: '\e862'; } /* '' */
152
+ .rtmicon-docs:before { content: '\e863'; } /* '' */
153
+ .rtmicon-doc-text:before { content: '\e864'; } /* '' */
154
+ .rtmicon-doc-inv:before { content: '\e865'; } /* '' */
155
+ .rtmicon-doc-text-inv:before { content: '\e866'; } /* '' */
156
+ .rtmicon-folder:before { content: '\e867'; } /* '' */
157
+ .rtmicon-folder-open:before { content: '\e868'; } /* '' */
158
+ .rtmicon-folder-empty:before { content: '\e869'; } /* '' */
159
+ .rtmicon-folder-open-empty:before { content: '\e86a'; } /* '' */
160
+ .rtmicon-box:before { content: '\e86b'; } /* '' */
161
+ .rtmicon-rss:before { content: '\e86c'; } /* '' */
162
+ .rtmicon-rss-squared:before { content: '\e86d'; } /* '' */
163
+ .rtmicon-phone:before { content: '\e86e'; } /* '' */
164
+ .rtmicon-phone-squared:before { content: '\e86f'; } /* '' */
165
+ .rtmicon-menu:before { content: '\e870'; } /* '' */
166
+ .rtmicon-cog:before { content: '\e871'; } /* '' */
167
+ .rtmicon-cog-alt:before { content: '\e872'; } /* '' */
168
+ .rtmicon-wrench:before { content: '\e873'; } /* '' */
169
+ .rtmicon-basket:before { content: '\e874'; } /* '' */
170
+ .rtmicon-calendar:before { content: '\e875'; } /* '' */
171
+ .rtmicon-calendar-empty:before { content: '\e876'; } /* '' */
172
+ .rtmicon-login:before { content: '\e877'; } /* '' */
173
+ .rtmicon-logout:before { content: '\e878'; } /* '' */
174
+ .rtmicon-mic:before { content: '\e879'; } /* '' */
175
+ .rtmicon-mute:before { content: '\e87a'; } /* '' */
176
+ .rtmicon-volume-off:before { content: '\e87b'; } /* '' */
177
+ .rtmicon-volume-down:before { content: '\e87c'; } /* '' */
178
+ .rtmicon-volume-up:before { content: '\e87d'; } /* '' */
179
+ .rtmicon-headphones:before { content: '\e87e'; } /* '' */
180
+ .rtmicon-clock:before { content: '\e87f'; } /* '' */
181
+ .rtmicon-lightbulb:before { content: '\e880'; } /* '' */
182
+ .rtmicon-block:before { content: '\e881'; } /* '' */
183
+ .rtmicon-resize-full:before { content: '\e882'; } /* '' */
184
+ .rtmicon-resize-full-alt:before { content: '\e883'; } /* '' */
185
+ .rtmicon-resize-small:before { content: '\e884'; } /* '' */
186
+ .rtmicon-resize-vertical:before { content: '\e885'; } /* '' */
187
+ .rtmicon-resize-horizontal:before { content: '\e886'; } /* '' */
188
+ .rtmicon-move:before { content: '\e887'; } /* '' */
189
+ .rtmicon-zoom-in:before { content: '\e888'; } /* '' */
190
+ .rtmicon-zoom-out:before { content: '\e889'; } /* '' */
191
+ .rtmicon-down-circled2:before { content: '\e88a'; } /* '' */
192
+ .rtmicon-up-circled2:before { content: '\e88b'; } /* '' */
193
+ .rtmicon-left-circled2:before { content: '\e88c'; } /* '' */
194
+ .rtmicon-right-circled2:before { content: '\e88d'; } /* '' */
195
+ .rtmicon-down-dir:before { content: '\e88e'; } /* '' */
196
+ .rtmicon-up-dir:before { content: '\e88f'; } /* '' */
197
+ .rtmicon-left-dir:before { content: '\e890'; } /* '' */
198
+ .rtmicon-right-dir:before { content: '\e891'; } /* '' */
199
+ .rtmicon-down-open:before { content: '\e892'; } /* '' */
200
+ .rtmicon-left-open:before { content: '\e893'; } /* '' */
201
+ .rtmicon-right-open:before { content: '\e894'; } /* '' */
202
+ .rtmicon-up-open:before { content: '\e895'; } /* '' */
203
+ .rtmicon-angle-left:before { content: '\e896'; } /* '' */
204
+ .rtmicon-angle-right:before { content: '\e897'; } /* '' */
205
+ .rtmicon-angle-up:before { content: '\e898'; } /* '' */
206
+ .rtmicon-angle-down:before { content: '\e899'; } /* '' */
207
+ .rtmicon-angle-circled-left:before { content: '\e89a'; } /* '' */
208
+ .rtmicon-angle-circled-right:before { content: '\e89b'; } /* '' */
209
+ .rtmicon-angle-circled-up:before { content: '\e89c'; } /* '' */
210
+ .rtmicon-angle-circled-down:before { content: '\e89d'; } /* '' */
211
+ .rtmicon-angle-double-left:before { content: '\e89e'; } /* '' */
212
+ .rtmicon-angle-double-right:before { content: '\e89f'; } /* '' */
213
+ .rtmicon-angle-double-up:before { content: '\e8a0'; } /* '' */
214
+ .rtmicon-angle-double-down:before { content: '\e8a1'; } /* '' */
215
+ .rtmicon-down:before { content: '\e8a2'; } /* '' */
216
+ .rtmicon-left:before { content: '\e8a3'; } /* '' */
217
+ .rtmicon-right:before { content: '\e8a4'; } /* '' */
218
+ .rtmicon-up:before { content: '\e8a5'; } /* '' */
219
+ .rtmicon-down-big:before { content: '\e8a6'; } /* '' */
220
+ .rtmicon-left-big:before { content: '\e8a7'; } /* '' */
221
+ .rtmicon-right-big:before { content: '\e8a8'; } /* '' */
222
+ .rtmicon-up-big:before { content: '\e8a9'; } /* '' */
223
+ .rtmicon-right-hand:before { content: '\e8aa'; } /* '' */
224
+ .rtmicon-left-hand:before { content: '\e8ab'; } /* '' */
225
+ .rtmicon-up-hand:before { content: '\e8ac'; } /* '' */
226
+ .rtmicon-down-hand:before { content: '\e8ad'; } /* '' */
227
+ .rtmicon-left-circled:before { content: '\e8ae'; } /* '' */
228
+ .rtmicon-right-circled:before { content: '\e8af'; } /* '' */
229
+ .rtmicon-up-circled:before { content: '\e8b0'; } /* '' */
230
+ .rtmicon-down-circled:before { content: '\e8b1'; } /* '' */
231
+ .rtmicon-cw:before { content: '\e8b2'; } /* '' */
232
+ .rtmicon-ccw:before { content: '\e8b3'; } /* '' */
233
+ .rtmicon-arrows-cw:before { content: '\e8b4'; } /* '' */
234
+ .rtmicon-level-up:before { content: '\e8b5'; } /* '' */
235
+ .rtmicon-level-down:before { content: '\e8b6'; } /* '' */
236
+ .rtmicon-shuffle:before { content: '\e8b7'; } /* '' */
237
+ .rtmicon-exchange:before { content: '\e8b8'; } /* '' */
238
+ .rtmicon-expand:before { content: '\e8b9'; } /* '' */
239
+ .rtmicon-collapse:before { content: '\e8ba'; } /* '' */
240
+ .rtmicon-expand-right:before { content: '\e8bb'; } /* '' */
241
+ .rtmicon-collapse-left:before { content: '\e8bc'; } /* '' */
242
+ .rtmicon-play:before { content: '\e8bd'; } /* '' */
243
+ .rtmicon-play-circled:before { content: '\e8be'; } /* '' */
244
+ .rtmicon-play-circled2:before { content: '\e8bf'; } /* '' */
245
+ .rtmicon-stop:before { content: '\e8c0'; } /* '' */
246
+ .rtmicon-pause:before { content: '\e8c1'; } /* '' */
247
+ .rtmicon-to-end:before { content: '\e8c2'; } /* '' */
248
+ .rtmicon-to-end-alt:before { content: '\e8c3'; } /* '' */
249
+ .rtmicon-to-start:before { content: '\e8c4'; } /* '' */
250
+ .rtmicon-to-start-alt:before { content: '\e8c5'; } /* '' */
251
+ .rtmicon-fast-fw:before { content: '\e8c6'; } /* '' */
252
+ .rtmicon-fast-bw:before { content: '\e8c7'; } /* '' */
253
+ .rtmicon-eject:before { content: '\e8c8'; } /* '' */
254
+ .rtmicon-target:before { content: '\e8c9'; } /* '' */
255
+ .rtmicon-signal:before { content: '\e8ca'; } /* '' */
256
+ .rtmicon-award:before { content: '\e8cb'; } /* '' */
257
+ .rtmicon-desktop:before { content: '\e8cc'; } /* '' */
258
+ .rtmicon-laptop:before { content: '\e8cd'; } /* '' */
259
+ .rtmicon-tablet:before { content: '\e8ce'; } /* '' */
260
+ .rtmicon-mobile:before { content: '\e8cf'; } /* '' */
261
+ .rtmicon-inbox:before { content: '\e8d0'; } /* '' */
262
+ .rtmicon-globe:before { content: '\e8d1'; } /* '' */
263
+ .rtmicon-sun:before { content: '\e8d2'; } /* '' */
264
+ .rtmicon-cloud:before { content: '\e8d3'; } /* '' */
265
+ .rtmicon-flash:before { content: '\e8d4'; } /* '' */
266
+ .rtmicon-moon:before { content: '\e8d5'; } /* '' */
267
+ .rtmicon-umbrella:before { content: '\e8d6'; } /* '' */
268
+ .rtmicon-flight:before { content: '\e8d7'; } /* '' */
269
+ .rtmicon-fighter-jet:before { content: '\e8d8'; } /* '' */
270
+ .rtmicon-leaf:before { content: '\e8d9'; } /* '' */
271
+ .rtmicon-font:before { content: '\e8da'; } /* '' */
272
+ .rtmicon-bold:before { content: '\e8db'; } /* '' */
273
+ .rtmicon-italic:before { content: '\e8dc'; } /* '' */
274
+ .rtmicon-text-height:before { content: '\e8dd'; } /* '' */
275
+ .rtmicon-text-width:before { content: '\e8de'; } /* '' */
276
+ .rtmicon-align-left:before { content: '\e8df'; } /* '' */
277
+ .rtmicon-align-center:before { content: '\e8e0'; } /* '' */
278
+ .rtmicon-align-right:before { content: '\e8e1'; } /* '' */
279
+ .rtmicon-align-justify:before { content: '\e8e2'; } /* '' */
280
+ .rtmicon-list:before { content: '\e8e3'; } /* '' */
281
+ .rtmicon-indent-left:before { content: '\e8e4'; } /* '' */
282
+ .rtmicon-indent-right:before { content: '\e8e5'; } /* '' */
283
+ .rtmicon-list-bullet:before { content: '\e8e6'; } /* '' */
284
+ .rtmicon-list-numbered:before { content: '\e8e7'; } /* '' */
285
+ .rtmicon-strike:before { content: '\e8e8'; } /* '' */
286
+ .rtmicon-underline:before { content: '\e8e9'; } /* '' */
287
+ .rtmicon-music:before { content: '\e801'; } /* '' */
288
+ .rtmicon-subscript:before { content: '\e8eb'; } /* '' */
289
+ .rtmicon-table:before { content: '\e8ec'; } /* '' */
290
+ .rtmicon-columns:before { content: '\e8ed'; } /* '' */
291
+ .rtmicon-crop:before { content: '\e8ee'; } /* '' */
292
+ .rtmicon-scissors:before { content: '\e8ef'; } /* '' */
293
+ .rtmicon-paste:before { content: '\e8f0'; } /* '' */
294
+ .rtmicon-briefcase:before { content: '\e8f1'; } /* '' */
295
+ .rtmicon-suitcase:before { content: '\e8f2'; } /* '' */
296
+ .rtmicon-ellipsis:before { content: '\e8f3'; } /* '' */
297
+ .rtmicon-ellipsis-vert:before { content: '\e8f4'; } /* '' */
298
+ .rtmicon-off:before { content: '\e8f5'; } /* '' */
299
+ .rtmicon-road:before { content: '\e8f6'; } /* '' */
300
+ .rtmicon-list-alt:before { content: '\e8f7'; } /* '' */
301
+ .rtmicon-qrcode:before { content: '\e8f8'; } /* '' */
302
+ .rtmicon-barcode:before { content: '\e8f9'; } /* '' */
303
+ .rtmicon-book:before { content: '\e8fa'; } /* '' */
304
+ .rtmicon-ajust:before { content: '\e8fb'; } /* '' */
305
+ .rtmicon-tint:before { content: '\e8fc'; } /* '' */
306
+ .rtmicon-check:before { content: '\e8fd'; } /* '' */
307
+ .rtmicon-check-empty:before { content: '\e8fe'; } /* '' */
308
+ .rtmicon-circle:before { content: '\e8ff'; } /* '' */
309
+ .rtmicon-circle-empty:before { content: '\e900'; } /* '' */
310
+ .rtmicon-dot-circled:before { content: '\e901'; } /* '' */
311
+ .rtmicon-asterisk:before { content: '\e902'; } /* '' */
312
+ .rtmicon-gift:before { content: '\e903'; } /* '' */
313
+ .rtmicon-fire:before { content: '\e904'; } /* '' */
314
+ .rtmicon-magnet:before { content: '\e905'; } /* '' */
315
+ .rtmicon-chart-bar:before { content: '\e906'; } /* '' */
316
+ .rtmicon-ticket:before { content: '\e907'; } /* '' */
317
+ .rtmicon-credit-card:before { content: '\e908'; } /* '' */
318
+ .rtmicon-floppy:before { content: '\e909'; } /* '' */
319
+ .rtmicon-megaphone:before { content: '\e90a'; } /* '' */
320
+ .rtmicon-hdd:before { content: '\e90b'; } /* '' */
321
+ .rtmicon-key:before { content: '\e90c'; } /* '' */
322
+ .rtmicon-fork:before { content: '\e90d'; } /* '' */
323
+ .rtmicon-rocket:before { content: '\e90e'; } /* '' */
324
+ .rtmicon-bug:before { content: '\e90f'; } /* '' */
325
+ .rtmicon-certificate:before { content: '\e910'; } /* '' */
326
+ .rtmicon-tasks:before { content: '\e911'; } /* '' */
327
+ .rtmicon-filter:before { content: '\e912'; } /* '' */
328
+ .rtmicon-beaker:before { content: '\e913'; } /* '' */
329
+ .rtmicon-magic:before { content: '\e914'; } /* '' */
330
+ .rtmicon-truck:before { content: '\e915'; } /* '' */
331
+ .rtmicon-money:before { content: '\e916'; } /* '' */
332
+ .rtmicon-euro:before { content: '\e917'; } /* '' */
333
+ .rtmicon-pound:before { content: '\e918'; } /* '' */
334
+ .rtmicon-dollar:before { content: '\e919'; } /* '' */
335
+ .rtmicon-rupee:before { content: '\e91a'; } /* '' */
336
+ .rtmicon-yen:before { content: '\e91b'; } /* '' */
337
+ .rtmicon-rouble:before { content: '\e91c'; } /* '' */
338
+ .rtmicon-try:before { content: '\e91d'; } /* '' */
339
+ .rtmicon-won:before { content: '\e91e'; } /* '' */
340
+ .rtmicon-bitcoin:before { content: '\e91f'; } /* '' */
341
+ .rtmicon-sort:before { content: '\e920'; } /* '' */
342
+ .rtmicon-sort-down:before { content: '\e921'; } /* '' */
343
+ .rtmicon-sort-up:before { content: '\e922'; } /* '' */
344
+ .rtmicon-sort-alt-up:before { content: '\e923'; } /* '' */
345
+ .rtmicon-sort-alt-down:before { content: '\e924'; } /* '' */
346
+ .rtmicon-sort-name-up:before { content: '\e925'; } /* '' */
347
+ .rtmicon-sort-name-down:before { content: '\e926'; } /* '' */
348
+ .rtmicon-sort-number-up:before { content: '\e927'; } /* '' */
349
+ .rtmicon-sort-number-down:before { content: '\e928'; } /* '' */
350
+ .rtmicon-hammer:before { content: '\e929'; } /* '' */
351
+ .rtmicon-gauge:before { content: '\e92a'; } /* '' */
352
+ .rtmicon-sitemap:before { content: '\e92b'; } /* '' */
353
+ .rtmicon-spinner:before { content: '\e92c'; } /* '' */
354
+ .rtmicon-coffee:before { content: '\e92d'; } /* '' */
355
+ .rtmicon-food:before { content: '\e92e'; } /* '' */
356
+ .rtmicon-beer:before { content: '\e92f'; } /* '' */
357
+ .rtmicon-user-md:before { content: '\e930'; } /* '' */
358
+ .rtmicon-stethoscope:before { content: '\e931'; } /* '' */
359
+ .rtmicon-ambulance:before { content: '\e932'; } /* '' */
360
+ .rtmicon-medkit:before { content: '\e933'; } /* '' */
361
+ .rtmicon-h-sigh:before { content: '\e934'; } /* '' */
362
+ .rtmicon-hospital:before { content: '\e935'; } /* '' */
363
+ .rtmicon-building:before { content: '\e936'; } /* '' */
364
+ .rtmicon-smile:before { content: '\e937'; } /* '' */
365
+ .rtmicon-frown:before { content: '\e938'; } /* '' */
366
+ .rtmicon-meh:before { content: '\e939'; } /* '' */
367
+ .rtmicon-anchor:before { content: '\e93a'; } /* '' */
368
+ .rtmicon-terminal:before { content: '\e93b'; } /* '' */
369
+ .rtmicon-eraser:before { content: '\e93c'; } /* '' */
370
+ .rtmicon-puzzle:before { content: '\e93d'; } /* '' */
371
+ .rtmicon-shield:before { content: '\e93e'; } /* '' */
372
+ .rtmicon-extinguisher:before { content: '\e93f'; } /* '' */
373
+ .rtmicon-bullseye:before { content: '\e940'; } /* '' */
374
+ .rtmicon-wheelchair:before { content: '\e941'; } /* '' */
375
+ .rtmicon-adn:before { content: '\e942'; } /* '' */
376
+ .rtmicon-android:before { content: '\e943'; } /* '' */
377
+ .rtmicon-apple:before { content: '\e944'; } /* '' */
378
+ .rtmicon-bitbucket:before { content: '\e945'; } /* '' */
379
+ .rtmicon-bitbucket-squared:before { content: '\e946'; } /* '' */
380
+ .rtmicon-css3:before { content: '\e947'; } /* '' */
381
+ .rtmicon-dribbble:before { content: '\e948'; } /* '' */
382
+ .rtmicon-dropbox:before { content: '\e949'; } /* '' */
383
+ .rtmicon-facebook:before { content: '\e94a'; } /* '' */
384
+ .rtmicon-facebook-squared:before { content: '\e94b'; } /* '' */
385
+ .rtmicon-flickr:before { content: '\e94c'; } /* '' */
386
+ .rtmicon-foursquare:before { content: '\e94d'; } /* '' */
387
+ .rtmicon-github:before { content: '\e94e'; } /* '' */
388
+ .rtmicon-github-squared:before { content: '\e94f'; } /* '' */
389
+ .rtmicon-github-circled:before { content: '\e950'; } /* '' */
390
+ .rtmicon-gittip:before { content: '\e951'; } /* '' */
391
+ .rtmicon-gplus-squared:before { content: '\e952'; } /* '' */
392
+ .rtmicon-gplus:before { content: '\e953'; } /* '' */
393
+ .rtmicon-html5:before { content: '\e954'; } /* '' */
394
+ .rtmicon-instagramm:before { content: '\e955'; } /* '' */
395
+ .rtmicon-linkedin-squared:before { content: '\e956'; } /* '' */
396
+ .rtmicon-linux:before { content: '\e957'; } /* '' */
397
+ .rtmicon-linkedin:before { content: '\e958'; } /* '' */
398
+ .rtmicon-maxcdn:before { content: '\e959'; } /* '' */
399
+ .rtmicon-pagelines:before { content: '\e95a'; } /* '' */
400
+ .rtmicon-pinterest-circled:before { content: '\e95b'; } /* '' */
401
+ .rtmicon-pinterest-squared:before { content: '\e95c'; } /* '' */
402
+ .rtmicon-renren:before { content: '\e95d'; } /* '' */
403
+ .rtmicon-skype:before { content: '\e95e'; } /* '' */
404
+ .rtmicon-stackexchange:before { content: '\e95f'; } /* '' */
405
+ .rtmicon-stackoverflow:before { content: '\e960'; } /* '' */
406
+ .rtmicon-trello:before { content: '\e961'; } /* '' */
407
+ .rtmicon-tumblr:before { content: '\e962'; } /* '' */
408
+ .rtmicon-tumblr-squared:before { content: '\e963'; } /* '' */
409
+ .rtmicon-twitter-squared:before { content: '\e964'; } /* '' */
410
+ .rtmicon-twitter:before { content: '\e965'; } /* '' */
411
+ .rtmicon-vimeo-squared:before { content: '\e966'; } /* '' */
412
+ .rtmicon-vkontakte:before { content: '\e967'; } /* '' */
413
+ .rtmicon-weibo:before { content: '\e968'; } /* '' */
414
+ .rtmicon-windows:before { content: '\e969'; } /* '' */
415
+ .rtmicon-xing:before { content: '\e96a'; } /* '' */
416
+ .rtmicon-xing-squared:before { content: '\e96b'; } /* '' */
417
+ .rtmicon-youtube:before { content: '\e96c'; } /* '' */
418
+ .rtmicon-youtube-squared:before { content: '\e96d'; } /* '' */
419
+ .rtmicon-youtube-play:before { content: '\e96e'; } /* '' */
420
+ .rtmicon-blank:before { content: '\e96f'; } /* '' */
421
+ .rtmicon-lemon:before { content: '\e970'; } /* '' */
422
+ .rtmicon-note:before { content: '\e971'; } /* '' */
423
+ .rtmicon-note-beamed:before { content: '\e972'; } /* '' */
424
+ .rtmicon-music-1:before { content: '\e973'; } /* '' */
425
+ .rtmicon-search-1:before { content: '\e974'; } /* '' */
426
+ .rtmicon-flashlight:before { content: '\e975'; } /* '' */
427
+ .rtmicon-mail-1:before { content: '\e976'; } /* '' */
428
+ .rtmicon-heart-1:before { content: '\e977'; } /* '' */
429
+ .rtmicon-heart-empty-1:before { content: '\e978'; } /* '' */
430
+ .rtmicon-star-1:before { content: '\e979'; } /* '' */
431
+ .rtmicon-star-empty-1:before { content: '\e97a'; } /* '' */
432
+ .rtmicon-user-1:before { content: '\e97b'; } /* '' */
433
+ .rtmicon-users-1:before { content: '\e97c'; } /* '' */
434
+ .rtmicon-user-add:before { content: '\e97d'; } /* '' */
435
+ .rtmicon-video-1:before { content: '\e97e'; } /* '' */
436
+ .rtmicon-picture-1:before { content: '\e97f'; } /* '' */
437
+ .rtmicon-camera-1:before { content: '\e980'; } /* '' */
438
+ .rtmicon-layout:before { content: '\e981'; } /* '' */
439
+ .rtmicon-menu-1:before { content: '\e982'; } /* '' */
440
+ .rtmicon-check-1:before { content: '\e983'; } /* '' */
441
+ .rtmicon-cancel-1:before { content: '\e984'; } /* '' */
442
+ .rtmicon-cancel-circled-1:before { content: '\e985'; } /* '' */
443
+ .rtmicon-cancel-squared:before { content: '\e986'; } /* '' */
444
+ .rtmicon-plus-1:before { content: '\e987'; } /* '' */
445
+ .rtmicon-plus-circled-1:before { content: '\e988'; } /* '' */
446
+ .rtmicon-plus-squared-1:before { content: '\e989'; } /* '' */
447
+ .rtmicon-minus-1:before { content: '\e98a'; } /* '' */
448
+ .rtmicon-minus-circled-1:before { content: '\e98b'; } /* '' */
449
+ .rtmicon-minus-squared-1:before { content: '\e98c'; } /* '' */
450
+ .rtmicon-help-1:before { content: '\e98d'; } /* '' */
451
+ .rtmicon-help-circled-1:before { content: '\e98e'; } /* '' */
452
+ .rtmicon-info-1:before { content: '\e98f'; } /* '' */
453
+ .rtmicon-info-circled-1:before { content: '\e990'; } /* '' */
454
+ .rtmicon-back:before { content: '\e991'; } /* '' */
455
+ .rtmicon-home-1:before { content: '\e992'; } /* '' */
456
+ .rtmicon-link-1:before { content: '\e993'; } /* '' */
457
+ .rtmicon-attach-1:before { content: '\e994'; } /* '' */
458
+ .rtmicon-lock-1:before { content: '\e995'; } /* '' */
459
+ .rtmicon-lock-open-1:before { content: '\e996'; } /* '' */
460
+ .rtmicon-eye-1:before { content: '\e997'; } /* '' */
461
+ .rtmicon-tag-1:before { content: '\e998'; } /* '' */
462
+ .rtmicon-bookmark-1:before { content: '\e999'; } /* '' */
463
+ .rtmicon-bookmarks:before { content: '\e99a'; } /* '' */
464
+ .rtmicon-flag-1:before { content: '\e99b'; } /* '' */
465
+ .rtmicon-thumbs-up-1:before { content: '\e99c'; } /* '' */
466
+ .rtmicon-thumbs-down-1:before { content: '\e99d'; } /* '' */
467
+ .rtmicon-download-1:before { content: '\e99e'; } /* '' */
468
+ .rtmicon-upload-1:before { content: '\e99f'; } /* '' */
469
+ .rtmicon-upload-cloud-1:before { content: '\e9a0'; } /* '' */
470
+ .rtmicon-reply-1:before { content: '\e9a1'; } /* '' */
471
+ .rtmicon-reply-all-1:before { content: '\e9a2'; } /* '' */
472
+ .rtmicon-forward-1:before { content: '\e9a3'; } /* '' */
473
+ .rtmicon-quote:before { content: '\e9a4'; } /* '' */
474
+ .rtmicon-code-1:before { content: '\e9a5'; } /* '' */
475
+ .rtmicon-export-1:before { content: '\e9a6'; } /* '' */
476
+ .rtmicon-pencil-1:before { content: '\e9a7'; } /* '' */
477
+ .rtmicon-feather:before { content: '\e9a8'; } /* '' */
478
+ .rtmicon-print-1:before { content: '\e9a9'; } /* '' */
479
+ .rtmicon-retweet-1:before { content: '\e9aa'; } /* '' */
480
+ .rtmicon-keyboard-1:before { content: '\e9ab'; } /* '' */
481
+ .rtmicon-comment-1:before { content: '\e9ac'; } /* '' */
482
+ .rtmicon-chat-1:before { content: '\e9ad'; } /* '' */
483
+ .rtmicon-bell-1:before { content: '\e9ae'; } /* '' */
484
+ .rtmicon-attention-1:before { content: '\e9af'; } /* '' */
485
+ .rtmicon-alert:before { content: '\e9b0'; } /* '' */
486
+ .rtmicon-vcard:before { content: '\e9b1'; } /* '' */
487
+ .rtmicon-address:before { content: '\e9b2'; } /* '' */
488
+ .rtmicon-location-1:before { content: '\e9b3'; } /* '' */
489
+ .rtmicon-map:before { content: '\e9b4'; } /* '' */
490
+ .rtmicon-direction-1:before { content: '\e9b5'; } /* '' */
491
+ .rtmicon-compass-1:before { content: '\e9b6'; } /* '' */
492
+ .rtmicon-cup:before { content: '\e9b7'; } /* '' */
493
+ .rtmicon-trash-1:before { content: '\e9b8'; } /* '' */
494
+ .rtmicon-doc-1:before { content: '\e9b9'; } /* '' */
495
+ .rtmicon-docs-1:before { content: '\e9ba'; } /* '' */
496
+ .rtmicon-doc-landscape:before { content: '\e9bb'; } /* '' */
497
+ .rtmicon-doc-text-1:before { content: '\e9bc'; } /* '' */
498
+ .rtmicon-doc-text-inv-1:before { content: '\e9bd'; } /* '' */
499
+ .rtmicon-newspaper:before { content: '\e9be'; } /* '' */
500
+ .rtmicon-book-open:before { content: '\e9bf'; } /* '' */
501
+ .rtmicon-book-1:before { content: '\e9c0'; } /* '' */
502
+ .rtmicon-folder-1:before { content: '\e9c1'; } /* '' */
503
+ .rtmicon-archive:before { content: '\e9c2'; } /* '' */
504
+ .rtmicon-box-1:before { content: '\e9c3'; } /* '' */
505
+ .rtmicon-rss-1:before { content: '\e9c4'; } /* '