Plugin Directory

Changeset 3158876


Ignore:
Timestamp:
09/27/2024 04:02:46 PM (17 months ago)
Author:
megabase
Message:

Release v2.5.12

Location:
musicidb-calendar
Files:
145 added
28 edited

Legend:

Unmodified
Added
Removed
  • musicidb-calendar/trunk/admin/admin-page-sc.php

    r3080024 r3158876  
    66    // check user capabilities
    77    if ( !current_user_can( 'manage_options' ) )
    8         wp_die( 'Not allowed' );
     8        wp_die( 'Not allowed' );     
    99
    1010    $is_modal = get_query_var( 'is_modal', false );
     
    1212?>
    1313
    14 <div id="musicidb-events-settings-sc" class="admin-tab">
     14<div id="musicidb-events-settings-sc" class="admin-tab musicidb-settings">
    1515    <ul class="musicidb-admin-tabs tabs">
    1616        <li>
     
    2525    </ul>
    2626
    27     <div id="musicidb-events-settings-calendar" class="admin-tab">
    28         <h2>Shortcode Options</h2>
    29         <?php if($connected == 0): ?>
    30             <p>You have not successfully connected your API key, please visit the <a href="<?php echo site_url();?>/wp-admin/admin.php?page=musicidb-integration">settings page</a> to do so.</p>
    31         <?php else: ?>
    32             <ul class="optionList">
    33                 <li>
    34                     <label for="themeSelect">Website Theme</label>
    35                     <select name="themeSelect" id="themeSelect">
    36                         <option value="light">Light</option>
    37                         <option value="dark">Dark</option>
    38                     </select>
    39                 </li>
    40 
    41                 <li>
    42                     <label>
    43                         Event list to display
    44                         <span class="small">Select one or more</span>
    45                     </label>
    46 
    47                     <div id="idSelect" name="idSelect">
    48                         <?php foreach( $associated_entities as $type => $mappings ): ?>
    49                            
    50                             <h2><?php esc_attr_e( ucfirst( $type ) ); ?></h2>
    51 
    52                             <ul class="selectedEntities">
    53                                 <?php
    54                                     foreach( $mappings as $id => $entity ) {
    55 
    56                                         $checked = ( $id == $default_id && $type == $default_type ) ? ' checked' : '';
    57 
    58                                         printf(
    59                                             '<li><input type="checkbox" id="entity-%d" value="%d" data-type="%s"%s><label for="entity-%d">%s</label></li>',
    60                                             esc_attr( $id ),
    61                                             esc_attr( $id ),
    62                                             esc_attr( $type ),
    63                                             $checked,
    64                                             esc_attr( $id ),
    65                                             esc_html( $entity->get_name() )
    66                                         );
    67 
    68                                     }
    69                                 ?>
    70                             </ul>
    71 
    72                         <?php endforeach; ?>
    73                     </div>
    74                 </li>
    75 
    76                 <li>
    77                     <label for="listStyleSelect">List Style</label>
    78                     <select id="listStyleSelect" name="listStyleSelect">
    79                         <option value="full" <?php echo ( $default_style == 'full' ) ? 'selected' : ''; ?>>Events List with Pictures (popular for venues)</option>
    80                         <option value="compact"  <?php echo ( $default_style == 'compact' ) ? 'selected' : ''; ?>>Simple List (popular for artists)</option>
    81                         <option value="posterboard" <?php echo ( $default_style == 'posterboard' ) ? 'selected' : ''; ?>>Posterboard View</option>
    82                     </select>
    83                 </li>
    84 
    85                 <?php if( !empty( $associated_entities['venue'] ) ): ?>
    86                     <li>
    87                         <label for="defaultView">Default View</label>
    88                         <select name="defaultView" id="defaultView">
    89                             <option value="list">List View</option>
    90                             <option value="cal">Calendar View</option>
     27    <div id="musicidb-events-settings-calendar" class="admin-tab megaFlexSection">
     28        <!-- Event List Calendar -->
     29
     30        <div class="leftArea">
     31           
     32            <h2>Shortcode Options</h2>
     33
     34            <?php if($connected == 0): ?>
     35
     36                <p>You have not successfully connected your API key, please visit the <a href="<?php echo site_url();?>/wp-admin/admin.php?page=musicidb-integration">settings page</a> to do so.</p>
     37
     38            <?php else: ?>
     39
     40                <ul class="optionList">
     41                    <li>
     42                        <label for="themeSelect">Website Theme</label>
     43                        <select name="themeSelect" id="themeSelect">
     44                            <option value="light">Light</option>
     45                            <option value="dark">Dark</option>
    9146                        </select>
    9247                    </li>
    9348
    9449                    <li>
    95                         <label for="displyImgs">Display Images on Calendar? </label>
    96                         <input type="checkbox" checked="checked" name="displyImgs" id="displyImgs" />
    97                     </li>
    98 
    99                     <li>
    100                         <label for="showDesc">Expanded Descriptions on List? </label>
    101                         <input type="checkbox" name="showDesc" id="showDesc" />
    102                     </li>
     50                        <label>
     51                            Event list to display
     52                            <span class="small">Select one or more</span>
     53                        </label>
     54
     55                        <div id="idSelect" name="idSelect">
     56                            <?php foreach( $associated_entities as $type => $mappings ): ?>
     57                               
     58                                <h2><?php esc_attr_e( ucfirst( $type ) ); ?></h2>
     59
     60                                <ul class="selectedEntities">
     61                                    <?php
     62                                        foreach( $mappings as $id => $entity ) {
     63
     64                                            $checked = ( $id == $default_id && $type == $default_type ) ? ' checked' : '';
     65
     66                                            printf(
     67                                                '<li><input type="checkbox" id="entity-%d" value="%d" data-type="%s"%s><label for="entity-%d">%s</label></li>',
     68                                                esc_attr( $id ),
     69                                                esc_attr( $id ),
     70                                                esc_attr( $type ),
     71                                                $checked,
     72                                                esc_attr( $id ),
     73                                                esc_html( $entity->get_name() )
     74                                            );
     75
     76                                        }
     77                                    ?>
     78                                </ul>
     79
     80                            <?php endforeach; ?>
     81                        </div>
     82                    </li>
     83
     84                     <?php if( !empty( $associated_entities['venue'] ) ): ?>
     85                        <li>
     86                            <label for="defaultView">Default to Calendar or List?</label>
     87                            <select name="defaultView" id="defaultView">
     88                                <option value="list">List View</option>
     89                                <option value="cal">Calendar View</option>
     90                            </select>
     91                        </li>
     92                    <?php endif; ?>
     93
     94                    <li>
     95                        <label for="listStyleSelect">List Layout</label>
     96                        <select id="listStyleSelect" name="listStyleSelect">
     97                            <option value="listwithpics" <?php echo ( $default_style == 'listwithpics' ) ? 'selected' : ''; ?>>
     98                                List with Pics
     99                            </option>
     100                            <option value="bigpics"  <?php echo ( $default_style == 'bigpics' ) ? 'selected' : ''; ?>>
     101                                List with Big Pics
     102                            </option>
     103                            <option value="posterboard" <?php echo ( $default_style == 'posterboard' ) ? 'selected' : ''; ?>>
     104                                Posterboard
     105                            </option>
     106                            <option value="simple"  <?php echo ( $default_style == 'simple' ) ? 'selected' : ''; ?>>
     107                                Simple List (popular for artists)
     108                            </option>                       
     109                        </select>
     110                    </li>
     111
     112                    <?php if( !empty( $associated_entities['venue'] ) ): ?>                   
     113
     114                        <li>
     115                            <label for="displyImgs">Display Images on Calendar?</label>
     116                            <input type="checkbox" checked="checked" name="displyImgs" id="displyImgs" />
     117                        </li>
     118
     119                        <li>
     120                            <label for="showDesc">Expanded Descriptions on List?</label>
     121                            <input type="checkbox" name="showDesc" id="showDesc" />
     122                        </li>
     123                    <?php endif; ?>
     124
     125                </ul>
     126
     127                <h2>Copy/Paste this Shortcode onto any page</h2>
     128                <input type="text" readonly="readonly" class="shortcode" value='[musicidb]' size="50" />
     129               
     130                <?php if( true === $is_modal ): ?>
     131                    <a href="#" class="insertShortcode button button-primary" data-target-class="shortcode">Insert Code</a>
    103132                <?php endif; ?>
    104133
    105                 <li>
    106                     <label for="largePicsOption">Large Images on List View?</label>
    107                     <input type="checkbox" name="largePicsOption" id="largePicsOption" />
    108                 </li>
    109 
    110             </ul>
    111 
    112             <h2>Copy/Paste this Shortcode onto any page</h2>
    113             <input type="text" readonly="readonly" class="shortcode" value='[musicidb display="img" style="<?php echo esc_attr( $default_style ); ?>"]' size="50" />
    114            
    115             <?php if( true === $is_modal ): ?>
    116                 <a href="#" class="insertShortcode button button-primary" data-target-class="shortcode">Insert Code</a>
     134                <a href="#" class="copyToClipboard button <?php esc_attr_e( $copy_button_class ); ?>">Copy to Clipboard</a>
     135               
     136                <span class="copySuccess green hidden">Copied!</span>
     137                <span class="copyFail red hidden">Sorry, there was a problem please try again...</span>
     138
     139                <h3>Advanced</h3>
     140
     141                <ul class="optionList">
     142
     143                    <?php if( !empty( $associated_entities['venue'] ) ): ?>
     144                        <li>
     145                            <label for="">Show / Hide Venue Name</label>
     146                            <select name="showVenue" id="showVenue">
     147                                <option value="show" <?php echo ( $default_style == 'compact' ) ? 'selected' : ''; ?>>Show</option>
     148                                <option value="hide" <?php echo ( $default_style == 'full' ) ? 'selected' : ''; ?>>Hide</option>
     149                            </select>
     150                        </li>
     151                    <?php endif; ?>
     152
     153                    <?php if( !empty( $associated_entities['artist'] ) ): ?>
     154                        <li>
     155                            <label for="">Show / Hide Artist Name</label>
     156                            <select name="showArtist" id="showArtist">
     157                                <option value="show" selected>Show</option>
     158                                <option value="hide">Hide</option>
     159                            </select>
     160                        </li>                   
     161                    <?php endif; ?>
     162
     163                    <li>
     164                        <label for="buttonPositions">Event Buttons Position</label>
     165                        <select name="buttonPositions" id="buttonPositions">
     166                            <option value="left">Left Aligned</option>
     167                            <option value="center">Center</option>
     168                            <option value="right">Right</option>
     169                        </select>
     170                    </li>
     171                </ul>
     172
    117173            <?php endif; ?>
    118174
    119             <a href="#" class="copyToClipboard button <?php esc_attr_e( $copy_button_class ); ?>">Copy to Clipboard</a>
    120            
    121             <span class="copySuccess green hidden">Copied!</span>
    122             <span class="copyFail red hidden">Sorry, there was a problem please try again...</span>
    123 
    124             <h3>Advanced</h3>
    125 
    126             <ul class="optionList">
    127 
    128                 <?php if( !empty( $associated_entities['venue'] ) ): ?>
    129                     <li>
    130                         <label for="">Show / Hide Venue Name</label>
    131                         <select name="showVenue" id="showVenue">
    132                             <option value="show" <?php echo ( $default_style == 'compact' ) ? 'selected' : ''; ?>>Show</option>
    133                             <option value="hide" <?php echo ( $default_style == 'full' ) ? 'selected' : ''; ?>>Hide</option>
    134                         </select>
    135                     </li>
    136                 <?php endif; ?>
    137 
    138                 <?php if( !empty( $associated_entities['artist'] ) ): ?>
    139                     <li>
    140                         <label for="">Show / Hide Artist Name</label>
    141                         <select name="showArtist" id="showArtist">
    142                             <option value="show" selected>Show</option>
    143                             <option value="hide">Hide</option>
    144                         </select>
    145                     </li>                   
    146                 <?php endif; ?>
    147 
    148                 <li>
    149                     <label for="buttonPositions">Event Buttons Position</label>
    150                     <select name="buttonPositions" id="buttonPositions">
    151                         <option value="left">Left Aligned</option>
    152                         <option value="center">Center</option>
    153                         <option value="right">Right</option>
    154                     </select>
    155                 </li>
    156             </ul>
    157 
    158 
    159         <?php endif; ?>
     175        </div>
     176         <div class="rightArea">               
     177            <?php
     178            $examples = plugins_url('/images/MusicIDB-List-Styles-Collage.png', MUSICIDB_PLUGIN );
     179            ?>
     180            <img src="<?php echo esc_url( $examples ); ?>" 
     181            alt="MusicIDB Calendar List Examples"
     182            class="listExamplesPic" />
     183        </div>
     184
    160185    </div>
    161186
     187   
    162188    <?php if( !empty( $associated_entities['venue'] ) ): ?>
     189        <!-- Featured Events Slider -->
    163190        <div id="musicidb-events-settings-featured-slider" class="admin-tab">
    164191            <h2>Shortcode Options</h2>
  • musicidb-calendar/trunk/class-musicidb-integration.php

    r3080024 r3158876  
    44 *  Description: A Modern Calendar and Event List for Artists, Venues, Bars, Restaurants and Companies with a focus on live music and entertainment features.
    55 *  Author: MusicIDB.com
    6  *  Version: 2.5.11
     6 *  Version: 2.5.12
    77 *  Author URI: https://musicidb.com/
    88 *
     
    456456
    457457        <div id="musicidb-events-settings" class="wrap">
    458             <a href="https://www.musicindustrydatabase.com" target="_blank" class="MusicIDBlogo">
    459                 <img src="<?php echo plugin_dir_url(__FILE__) . 'images/MusicIDB-Logo.png'; ?>"
    460                      alt="MusicIDB Events Calendar"/>
     458            <a href="https://musicidb.com" target="_blank" class="MusicIDBlogo">
     459                <img
     460                src="<?php echo esc_url(plugin_dir_url(__FILE__) . 'images/MusicIDB-Logo.png'); ?>"
     461                alt="MusicIDB - The Music Industry Database" />
    461462            </a>
    462463
     
    494495            <div id="musicidb-events" class="admin-tab">
    495496                <h2>Manage Your Calendar and Events</h2>
    496                 <p>Visit <a href="http://MusicIDB.com" target="_blank">MusicIDB</a> to manage your calendar</p>
     497                <p>Visit <a href="https://MusicIDB.com" target="_blank">MusicIDB</a> to manage your calendar</p>
    497498                <p>For help, please email <a href="mailto:[email protected]">[email protected]</a></p>
    498499            </div>
     
    680681        $page = (isset($_POST['page']) && $_POST['page'] && is_numeric($_POST['page'])) ? intval($_POST['page']) : 1;
    681682        $resultsPerPage = (isset($_POST['resultsPerPage']) && $_POST['resultsPerPage'] && is_numeric($_POST['resultsPerPage'])) ? intval($_POST['resultsPerPage']) : 15;
    682         $descrip = (isset($_POST['descrip']) && is_bool($_POST['descrip']) && $_POST['descrip'] == true) ? TRUE : FALSE;
     683        $descrip = (isset($_POST['descrip']) && intval( $_POST['descrip'] == 1)) ? true: false;
    683684        $buttons = (isset($_POST['buttons']) && $_POST['buttons'] && is_string($_POST['buttons'])) ? sanitize_text_field($_POST['buttons']) : 'left';
    684685        $listStyle = ( !empty( $_POST['list_style'] ) && is_string( $_POST['list_style'] ) ) ? sanitize_text_field( $_POST['list_style'] ) : $default_style;
     
    688689        $page = $this->musicidb_strip_unicode( $page );
    689690        $resultsPerPage = $this->musicidb_strip_unicode( $resultsPerPage );
    690         $descrip = $this->musicidb_strip_unicode( $descrip );
    691691        $buttons = $this->musicidb_strip_unicode( $buttons );
    692         $listStyle = $this->musicidb_strip_unicode( $listStyle );
    693 
    694         if( !in_array( $listStyle, array( 'full', 'compact', 'posterboard' ) ) ) {
    695             $listStyle = 'full';
    696         }
     692        $listStyle = musicidb_map_list_style( $this->musicidb_strip_unicode( $listStyle ) );
    697693
    698694        $show_venue = ('compact' == $listStyle) ? 'show' : 'hide';
     
    705701            $show_artist = $_POST['show_artist'];
    706702        }
     703
     704        $template = musicidb_map_list_template( $listStyle );
    707705
    708706        // Repetitive & can be abstracted, but
     
    738736        }
    739737
    740         require_once musicidb_get_template_part( 'musicidb', 'view-' . $listStyle, false );
     738        require_once musicidb_get_template_part( 'musicidb', 'view-' . $template, false );
    741739       
    742740        wp_die();
     
    755753
    756754        $list_style = ( !empty( $_POST['list_style'] ) && is_string( $_POST['list_style'] ) ) ? sanitize_text_field( $_POST['list_style'] ) : $default_style;
     755
     756        $list_style = musicidb_map_list_style( $list_style );
    757757
    758758        $show_venue = ('compact' == $list_style) ? 'show' : 'hide';
     
    10011001    function musicidb_action_links( $links ) {
    10021002       $links[] = '<a href="'. esc_url( get_admin_url(null, 'admin.php?page=musicidb-integration') ) .'">Settings</a>';
    1003        $links[] = '<a href="https://musicindustrydatabase.com" target="_blank">MusicIDB.com</a>';
     1003       $links[] = '<a href="https://musicidb.com" target="_blank">MusicIDB.com</a>';
    10041004
    10051005       return $links;
     
    10621062add_shortcode('musicidb', array($MusicIDBIntegration, 'sc_musicidb_events'));
    10631063add_shortcode('musicidb-featured-slider', array($MusicIDBIntegration, 'sc_musicidb_featured_events'));
     1064
     1065if( !function_exists( 'musicidb_map_list_style' ) ) {
     1066
     1067    function musicidb_map_list_style( $list_style ) {
     1068
     1069        $styles = apply_filters( 'musicidb_list_style_names', array(
     1070            // Full
     1071            'full' => 'full',
     1072            'listwithpics' => 'full',
     1073           
     1074            // Big Pics
     1075            'largepics' => 'largepics',
     1076            'bigpics' => 'largepics',
     1077
     1078            // Posterboard
     1079            'posterboard' => 'posterboard',
     1080           
     1081            // Compact
     1082            'compact' => 'compact',
     1083            'simple' => 'compact',
     1084        ) );
     1085
     1086        return !empty( $styles[$list_style] ) ? $styles[$list_style] : 'full';
     1087
     1088    }
     1089
     1090}
     1091
     1092if( !function_exists( 'musicidb_map_list_template' ) ) {
     1093
     1094    function musicidb_map_list_template( $list_style ) {
     1095
     1096        $templates = apply_filters( 'musicidb_list_templates', array(
     1097            // Full
     1098            'full' => 'full',
     1099            'listwithpics' => 'full',
     1100           
     1101            // Big Pics
     1102            'largepics' => 'full',
     1103            'bigpics' => 'full',
     1104
     1105            // Posterboard
     1106            'posterboard' => 'posterboard',
     1107           
     1108            // Compact
     1109            'compact' => 'compact',
     1110            'simple' => 'compact',
     1111        ) );
     1112
     1113        return !empty( $templates[$list_style] ) ? $templates[$list_style] : 'full';
     1114
     1115    }
     1116
     1117}
    10641118
    10651119if (!function_exists('musicidb_featured_events')) {
     
    12681322            'type' => '',
    12691323            'style' => $default_style,
    1270             'display' => 'text',
     1324            'display' => 'img',
    12711325            'theme' => 'light',
    12721326            'descrip' => FALSE,
  • musicidb-calendar/trunk/css/admin-styles.css

    r2980848 r3158876  
    1 @font-face{font-family:'Glyphter';src:url("./font/Glyphter.eot");src:url("./font/Glyphter.eot?#iefix") format("embedded-opentype"),url("./font/Glyphter.woff") format("woff"),url("./font/Glyphter.ttf") format("truetype"),url("./font/Glyphter.svg#Glyphter") format("svg");font-weight:normal;font-style:normal}[class*='custicon-']:before{display:inline-block;font-family:'Glyphter';font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.custicon-MusicIDBiconPunchout:before{content:'\0041'}.custicon-MusicIDBicon:before{content:'\0042'}#musicidb-events-settings .musicidb-admin-tabs{margin:0 !important;padding:0 !important}#musicidb-events-settings .musicidb-admin-tabs:before,#musicidb-events-settings .musicidb-admin-tabs:after{content:" ";display:table}#musicidb-events-settings .musicidb-admin-tabs:after{clear:both}#musicidb-events-settings .musicidb-admin-tabs li{position:relative;top:1px;display:block;float:left;margin:0 !important}#musicidb-events-settings .musicidb-admin-tabs li:before{content:'' !important}#musicidb-events-settings .musicidb-admin-tabs li a{display:block;background:#ddd;color:#545454;padding:10px 15px;border-left:#d8d8d8 1px solid;border-top:#d8d8d8 1px solid;font-size:15px;line-height:19px;text-decoration:none}#musicidb-events-settings .musicidb-admin-tabs li a:hover{background:#ccc}#musicidb-events-settings .musicidb-admin-tabs li a:focus{-webkit-box-shadow:none;box-shadow:none}#musicidb-events-settings .musicidb-admin-tabs li a.current{background:#fff}#musicidb-events-settings .musicidb-admin-tabs li:last-child a{border-right:#d8d8d8 1px solid}#musicidb-events-settings a,#musicidb-events-settings a:focus{outline:none !important;-webkit-box-shadow:none !important;box-shadow:none !important}#musicidb-events-settings .admin-tab{background:#fff;padding:10px 20px;border:#d8d8d8 1px solid}#musicidb-events-settings .admin-tab.current{display:block}#musicidb-events-settings .admin-tab li:before{content:'' !important}#musicidb-events-settings #musicidb-events-settings-general .connected,#musicidb-events-settings #musicidb-events-settings-general .not-connected{font-weight:bold}#musicidb-events-settings #musicidb-events-settings-general .green{color:#0F0}#musicidb-events-settings #musicidb-events-settings-general .red{color:#F00}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li{margin-bottom:20px}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li:before,#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li:after{content:" ";display:table}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li:after{clear:both}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li>label{text-align:right;width:240px;margin-right:30px;float:left}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li>label span.small{display:block;font-size:9px}#musicidb-events-settings #musicidb-events-settings-sc div#idSelect,#musicidb-events-settings #musicidb-events-settings-sc div#selected-venue{float:left}#musicidb-events-settings #musicidb-events-settings-sc div#idSelect ul.selectedEntities>li input,#musicidb-events-settings #musicidb-events-settings-sc div#selected-venue ul.selectedEntities>li input{margin-right:10px}#musicidb-events-settings #musicidb-events-settings-sc input.shortcode,#musicidb-events-settings #musicidb-events-settings-sc input.shortcode-slider{width:60%}#musicidb-events-settings .MusicIDBlogo{float:right;margin:0;position:relative;top:7px}#musicidb-events-settings .MusicIDBlogo img{height:auto;width:200px}#musiscidb-insert-shortcode .wp-media-buttons-icon{padding-bottom:3px;padding-right:3px}#musiscidb-insert-shortcode .wp-media-buttons-icon img{padding:0}
    2 
     1@font-face{font-family:"Glyphter";src:url("./font/Glyphter.eot");src:url("./font/Glyphter.eot?#iefix") format("embedded-opentype"),url("./font/Glyphter.woff") format("woff"),url("./font/Glyphter.ttf") format("truetype"),url("./font/Glyphter.svg#Glyphter") format("svg");font-weight:normal;font-style:normal}[class*=custicon-]:before{display:inline-block;font-family:"Glyphter";font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.custicon-MusicIDBiconPunchout:before{content:"A"}.custicon-MusicIDBicon:before{content:"B"}#musicidb-events-settings .musicidb-admin-tabs{margin:0 !important;padding:0 !important}#musicidb-events-settings .musicidb-admin-tabs:before,#musicidb-events-settings .musicidb-admin-tabs:after{content:" ";display:table}#musicidb-events-settings .musicidb-admin-tabs:after{clear:both}#musicidb-events-settings .musicidb-admin-tabs li{position:relative;top:1px;display:block;float:left;margin:0 !important}#musicidb-events-settings .musicidb-admin-tabs li:before{content:"" !important}#musicidb-events-settings .musicidb-admin-tabs li a{display:block;background:#ddd;color:#545454;padding:10px 15px;border-left:#d8d8d8 1px solid;border-top:#d8d8d8 1px solid;font-size:15px;line-height:19px;text-decoration:none}#musicidb-events-settings .musicidb-admin-tabs li a:hover{background:#ccc}#musicidb-events-settings .musicidb-admin-tabs li a:focus{box-shadow:none}#musicidb-events-settings .musicidb-admin-tabs li a.current{background:#fff}#musicidb-events-settings .musicidb-admin-tabs li:last-child a{border-right:#d8d8d8 1px solid}#musicidb-events-settings a,#musicidb-events-settings a:focus{outline:none !important;box-shadow:none !important}#musicidb-events-settings .admin-tab{background:#fff;padding:10px 20px;border:#d8d8d8 1px solid}#musicidb-events-settings .admin-tab.current{display:block}#musicidb-events-settings .admin-tab li:before{content:"" !important}#musicidb-events-settings #musicidb-events-settings-general .connected,#musicidb-events-settings #musicidb-events-settings-general .not-connected{font-weight:bold}#musicidb-events-settings #musicidb-events-settings-general .green{color:lime}#musicidb-events-settings #musicidb-events-settings-general .red{color:red}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li{margin-bottom:20px;display:flex}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li:before,#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li:after{content:" ";display:table}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li:after{clear:both}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li>label{text-align:right;width:38%;box-sizing:border-box;padding-right:30px}#musicidb-events-settings #musicidb-events-settings-sc ul.optionList>li>label span.small{display:block;font-size:9px}#musicidb-events-settings #musicidb-events-settings-sc div#idSelect ul.selectedEntities>li input,#musicidb-events-settings #musicidb-events-settings-sc div#selected-venue ul.selectedEntities>li input{margin-right:10px}#musicidb-events-settings #musicidb-events-settings-sc input.shortcode,#musicidb-events-settings #musicidb-events-settings-sc input.shortcode-slider{width:60%}#musicidb-events-settings .MusicIDBlogo{float:right;margin:0;position:relative;top:7px}#musicidb-events-settings .MusicIDBlogo img{height:auto;width:200px}.musicidb-settings .megaFlexSection{display:flex;width:100%;box-sizing:border-box}.musicidb-settings .megaFlexSection .leftArea{width:65%}.musicidb-settings .megaFlexSection .rightArea{padding:20px;width:35%}.musicidb-settings .megaFlexSection .rightArea img.listExamplesPic{max-width:100%;height:auto}#musiscidb-insert-shortcode .wp-media-buttons-icon{padding-bottom:3px;padding-right:3px}#musiscidb-insert-shortcode .wp-media-buttons-icon img{padding:0}@media only screen and (max-width: 1000px){.musicidb-settings .megacal-account-details{position:relative;top:0;right:0;padding:10px 15px;margin:15px 0}.musicidb-settings .megaFlexSection{display:flex;width:100%;box-sizing:border-box;flex-direction:column}.musicidb-settings .megaFlexSection .leftArea{width:100%}.musicidb-settings .megaFlexSection .rightArea{padding:20px;width:100%}.musicidb-settings .megaFlexSection .rightArea img.listExamplesPic{max-width:100%;height:auto}}
    32/*# sourceMappingURL=maps/admin-styles.css.map */
  • musicidb-calendar/trunk/css/maps/admin-styles.css.map

    r2980848 r3158876  
    1 {"version":3,"sources":["admin-styles.scss"],"names":[],"mappings":"AAWA,WACI,uBACA,+BACA,6MAIA,mBACA,iBAAkB,CAAA,4BAGrB,qBACE,uBACA,kBACA,mBACA,cACA,mCACA,iCACH,CAAC,sCACqC,eAAe,CAAG,8BAC1B,eAAe,CAAG,+CAK9C,oBACA,oBAAqB,CApCtB,2GAEC,YACA,aAAc,CACd,qDAEA,UAAW,CACX,kDAgCC,kBACA,QACA,cACA,WACA,mBAAoB,CAXvB,yDAcI,qBAAsB,CAd1B,oDAkBI,cACA,gBACA,cACA,kBACA,8BACA,6BACA,eACA,iBACA,oBAAqB,CA1BzB,0DA6BK,eAAgB,CA7BrB,0DAiCK,wBAAA,AAAgB,eAAA,CAjCrB,4DAqCK,eAAgB,CArCrB,+DA0CI,8BAA+B,CA1CnC,8DAgDE,wBACA,mCAAA,AAA0B,0BAAA,CAjD5B,qCAqDE,gBACA,kBACA,wBAAyB,CAvD3B,6CA0DG,aAAc,CA1DjB,+CA+DI,qBAAsB,CA/D1B,kJAyEG,gBAAiB,CAzEpB,mEA6EG,UAAW,CA7Ed,iEAiFG,UAAW,CAjFd,wEAyFI,kBAAmB,CAzHtB,6JAEC,YACA,aAAc,CACd,8EAEA,UAAW,CACX,8EAqHG,iBACA,YACA,kBACA,UAAU,CA/Ff,yFAiGM,cACA,aAAc,CAlGpB,8IA0GG,UAAW,CA1Gd,wMA+GM,iBAAkB,CA/GxB,qJAuHG,SAAU,CAvHb,wCA6HE,YACA,SACA,kBACA,OAAO,CAhIT,4CAkIG,YACA,WAAW,CACX,mDAQD,mBACA,iBAAkB,CALpB,uDAQG,SAAU,CACV","file":"../admin-styles.css","sourcesContent":["@mixin clearfix() {\r\n\t&:before,\r\n\t&:after {\r\n\t\tcontent: \" \";\r\n\t\tdisplay: table;\r\n\t}\r\n\t&:after {\r\n\t\tclear: both;\r\n\t}\r\n}\r\n/* Generated by Glyphter (http://www.glyphter.com) on  Sat Jun 23 2018*/\r\n@font-face {\r\n    font-family: 'Glyphter';\r\n    src: url('./font/Glyphter.eot');\r\n    src: url('./font/Glyphter.eot?#iefix') format('embedded-opentype'),\r\n         url('./font/Glyphter.woff') format('woff'),\r\n         url('./font/Glyphter.ttf') format('truetype'),\r\n         url('./font/Glyphter.svg#Glyphter') format('svg');\r\n    font-weight: normal;\r\n    font-style: normal;\r\n}\r\n[class*='custicon-']:before{\r\n\tdisplay: inline-block;\r\n   font-family: 'Glyphter';\r\n   font-style: normal;\r\n   font-weight: normal;\r\n   line-height: 1;\r\n   -webkit-font-smoothing: antialiased;\r\n   -moz-osx-font-smoothing: grayscale\r\n}\r\n.custicon-MusicIDBiconPunchout:before{content:'\\0041';}\r\n.custicon-MusicIDBicon:before{content:'\\0042';}\r\n\r\n#musicidb-events-settings {\r\n\t.musicidb-admin-tabs {\r\n\t\t@include clearfix();\r\n\t\tmargin: 0 !important;\r\n\t\tpadding: 0 !important;\r\n\r\n\t\tli {\r\n\t\t\tposition: relative;\r\n\t\t\ttop: 1px;\r\n\t\t\tdisplay: block;\r\n\t\t\tfloat: left;\r\n\t\t\tmargin: 0 !important;\r\n\r\n\t\t\t&:before {\r\n\t\t\t\tcontent: '' !important;\r\n\t\t\t}\r\n\r\n\t\t\ta {\r\n\t\t\t\tdisplay: block;\r\n\t\t\t\tbackground: #ddd;\r\n\t\t\t\tcolor: #545454;\r\n\t\t\t\tpadding: 10px 15px;\r\n\t\t\t\tborder-left: #d8d8d8 1px solid;\r\n\t\t\t\tborder-top: #d8d8d8 1px solid;\r\n\t\t\t\tfont-size: 15px;\r\n\t\t\t\tline-height: 19px;\r\n\t\t\t\ttext-decoration: none;\r\n\r\n\t\t\t\t&:hover {\r\n\t\t\t\t\tbackground: #ccc;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t&:focus {\r\n\t\t\t\t\tbox-shadow: none;\r\n\t\t\t\t}\r\n\r\n\t\t\t\t&.current {\r\n\t\t\t\t\tbackground: #fff;\r\n\t\t\t\t}\r\n\t\t\t}\r\n\r\n\t\t\t&:last-child a {\r\n\t\t\t\tborder-right: #d8d8d8 1px solid;\r\n\t\t\t}\r\n\t\t}\r\n\t}\r\n\r\n\ta, a:focus {\r\n\t\toutline:none !important;\r\n\t\tbox-shadow:none !important;\r\n\t}\r\n\r\n\t.admin-tab {\r\n\t\tbackground: #fff;\r\n\t\tpadding: 10px 20px;\r\n\t\tborder: #d8d8d8 1px solid;\r\n\r\n\t\t&.current {\r\n\t\t\tdisplay: block;\r\n\t\t}\r\n\r\n\t\tli {\r\n\t\t\t&:before {\r\n\t\t\t\tcontent: '' !important;\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t}\r\n\r\n\r\n\t#musicidb-events-settings-general {\r\n\t\t.connected,\r\n\t\t.not-connected {\r\n\t\t\tfont-weight: bold;\r\n\t\t}\r\n\r\n\t\t.green {\r\n\t\t\tcolor: #0F0;\r\n\t\t}\r\n\r\n\t\t.red {\r\n\t\t\tcolor: #F00;\r\n\t\t}\r\n\t}\r\n\r\n\t#musicidb-events-settings-sc {\r\n\t\tul.optionList {\r\n\t\t\t> li {\r\n\t\t\t\t@include clearfix();\r\n\t\t\t\tmargin-bottom: 20px;\r\n\t\t\t\t\r\n\t\t\t\t> label {\r\n\t\t\t\t\ttext-align:right;\r\n\t\t\t\t\twidth:240px;\r\n\t\t\t\t\tmargin-right:30px;\r\n\t\t\t\t\tfloat:left;\t\t\r\n\t\t\t\t\tspan.small {\r\n\t\t\t\t\t\tdisplay: block;\r\n\t\t\t\t\t\tfont-size: 9px;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\t\t\t\r\n\t\t}\r\n\r\n\t\tdiv#idSelect,\r\n\t\tdiv#selected-venue {\r\n\t\t\tfloat: left;\r\n\r\n\t\t\tul.selectedEntities {\r\n\t\t\t\t> li {\r\n\t\t\t\t\tinput {\r\n\t\t\t\t\t\tmargin-right: 10px;\r\n\t\t\t\t\t}\r\n\t\t\t\t}\r\n\t\t\t}\r\n\t\t}\r\n\r\n\t\tinput.shortcode,\r\n\t\tinput.shortcode-slider {\r\n\t\t\twidth: 60%;\r\n\t\t}\r\n\r\n\t}\r\n\r\n\t.MusicIDBlogo {\t\t\r\n\t\tfloat:right;\r\n\t\tmargin:0;\r\n\t\tposition:relative;\r\n\t\ttop:7px;\r\n\t\timg {\r\n\t\t\theight:auto;\t\t\r\n\t\t\twidth:200px;\r\n\t\t}\r\n\t}\r\n}\r\n\r\n#musiscidb-insert-shortcode {\r\n\r\n\t.wp-media-buttons-icon {\r\n\t\t\r\n\t\tpadding-bottom: 3px;\r\n\t\tpadding-right: 3px;\r\n\r\n\t\timg {\r\n\t\t\tpadding: 0;\r\n\t\t}\r\n\r\n\t}\r\n\r\n}"]}
     1{"version":3,"sources":["_admin.scss","_admin-responsive.scss"],"names":[],"mappings":"AAWA,WACI,sBAAA,CACA,8BAAA,CACA,4MAAA,CAIA,kBAAA,CACA,iBAAA,CAEJ,0BACC,oBAAA,CACE,sBAAA,CACA,iBAAA,CACA,kBAAA,CACA,aAAA,CACA,kCAAA,CACA,iCAAA,CAEH,sCAAA,WAAA,CACA,8BAAA,WAAA,CAGC,+CAEC,mBAAA,CACA,oBAAA,CApCD,2GAEC,WAAA,CACA,aAAA,CAED,qDACC,UAAA,CAgCA,kDACC,iBAAA,CACA,OAAA,CACA,aAAA,CACA,UAAA,CACA,mBAAA,CAEA,yDACC,qBAAA,CAGD,oDACC,aAAA,CACA,eAAA,CACA,aAAA,CACA,iBAAA,CACA,6BAAA,CACA,4BAAA,CACA,cAAA,CACA,gBAAA,CACA,oBAAA,CAEA,0DACC,eAAA,CAGD,0DACC,eAAA,CAGD,4DACC,eAAA,CAIF,+DACC,8BAAA,CAKH,8DACC,uBAAA,CACA,0BAAA,CAGD,qCACC,eAAA,CACA,iBAAA,CACA,wBAAA,CAEA,6CACC,aAAA,CAIA,+CACC,qBAAA,CAQF,kJAEC,gBAAA,CAGD,mEACC,UAAA,CAGD,iEACC,SAAA,CAMA,wEAEC,kBAAA,CACA,YAAA,CA1HH,6JAEC,WAAA,CACA,aAAA,CAED,8EACC,UAAA,CAqHE,8EACC,gBAAA,CACA,SAAA,CACA,qBAAA,CACA,kBAAA,CACA,yFACC,aAAA,CACA,aAAA,CAYD,wMACC,iBAAA,CAMJ,qJAEC,SAAA,CAKF,wCACC,WAAA,CACA,QAAA,CACA,iBAAA,CACA,OAAA,CACA,4CACC,WAAA,CACA,WAAA,CAKF,oCACC,YAAA,CACA,UAAA,CACA,qBAAA,CACA,8CACC,SAAA,CAED,+CACC,YAAA,CACA,SAAA,CACA,mEACC,cAAA,CACA,WAAA,CAOH,mDAEC,kBAAA,CACA,iBAAA,CAEA,uDACC,SAAA,CC/LF,2CACC,4CACC,iBAAA,CACG,KAAA,CACA,OAAA,CACA,iBAAA,CACA,aAAA,CA0BH,oCACC,YAAA,CACA,UAAA,CACG,qBAAA,CACA,qBAAA,CACH,8CACC,UAAA,CAED,+CACC,YAAA,CACA,UAAA,CACA,mEACC,cAAA,CACA,WAAA,CAAA","file":"../admin-styles.css","sourcesContent":["@mixin clearfix() {\n\t&:before,\n\t&:after {\n\t\tcontent: \" \";\n\t\tdisplay: table;\n\t}\n\t&:after {\n\t\tclear: both;\n\t}\n}\n/* Generated by Glyphter (http://www.glyphter.com) on  Sat Jun 23 2018*/\n@font-face {\n    font-family: 'Glyphter';\n    src: url('./font/Glyphter.eot');\n    src: url('./font/Glyphter.eot?#iefix') format('embedded-opentype'),\n         url('./font/Glyphter.woff') format('woff'),\n         url('./font/Glyphter.ttf') format('truetype'),\n         url('./font/Glyphter.svg#Glyphter') format('svg');\n    font-weight: normal;\n    font-style: normal;\n}\n[class*='custicon-']:before{\n\tdisplay: inline-block;\n   font-family: 'Glyphter';\n   font-style: normal;\n   font-weight: normal;\n   line-height: 1;\n   -webkit-font-smoothing: antialiased;\n   -moz-osx-font-smoothing: grayscale\n}\n.custicon-MusicIDBiconPunchout:before{content:'\\0041';}\n.custicon-MusicIDBicon:before{content:'\\0042';}\n\n#musicidb-events-settings {\n\t.musicidb-admin-tabs {\n\t\t@include clearfix();\n\t\tmargin: 0 !important;\n\t\tpadding: 0 !important;\n\n\t\tli {\n\t\t\tposition: relative;\n\t\t\ttop: 1px;\n\t\t\tdisplay: block;\n\t\t\tfloat: left;\n\t\t\tmargin: 0 !important;\n\n\t\t\t&:before {\n\t\t\t\tcontent: '' !important;\n\t\t\t}\n\n\t\t\ta {\n\t\t\t\tdisplay: block;\n\t\t\t\tbackground: #ddd;\n\t\t\t\tcolor: #545454;\n\t\t\t\tpadding: 10px 15px;\n\t\t\t\tborder-left: #d8d8d8 1px solid;\n\t\t\t\tborder-top: #d8d8d8 1px solid;\n\t\t\t\tfont-size: 15px;\n\t\t\t\tline-height: 19px;\n\t\t\t\ttext-decoration: none;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tbackground: #ccc;\n\t\t\t\t}\n\n\t\t\t\t&:focus {\n\t\t\t\t\tbox-shadow: none;\n\t\t\t\t}\n\n\t\t\t\t&.current {\n\t\t\t\t\tbackground: #fff;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t&:last-child a {\n\t\t\t\tborder-right: #d8d8d8 1px solid;\n\t\t\t}\n\t\t}\n\t}\n\n\ta, a:focus {\n\t\toutline:none !important;\n\t\tbox-shadow:none !important;\n\t}\n\n\t.admin-tab {\n\t\tbackground: #fff;\n\t\tpadding: 10px 20px;\n\t\tborder: #d8d8d8 1px solid;\n\n\t\t&.current {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\tli {\n\t\t\t&:before {\n\t\t\t\tcontent: '' !important;\n\t\t\t}\n\t\t}\n\n\t}\n\n\n\t#musicidb-events-settings-general {\n\t\t.connected,\n\t\t.not-connected {\n\t\t\tfont-weight: bold;\n\t\t}\n\n\t\t.green {\n\t\t\tcolor: #0F0;\n\t\t}\n\n\t\t.red {\n\t\t\tcolor: #F00;\n\t\t}\n\t}\n\n\t#musicidb-events-settings-sc {\n\t\tul.optionList {\n\t\t\t> li {\n\t\t\t\t@include clearfix();\n\t\t\t\tmargin-bottom: 20px;\n\t\t\t\tdisplay: flex;\n\t\t\t\t> label {\n\t\t\t\t\ttext-align:right;\n\t\t\t\t\twidth:38%;\n\t\t\t\t\tbox-sizing:border-box;\n\t\t\t\t\tpadding-right:30px;\t\t\t\t\t\t\n\t\t\t\t\tspan.small {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\tfont-size: 9px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\t\t\n\t\t}\n\n\t\tdiv#idSelect,\n\t\tdiv#selected-venue {\n\t\t\t//float: left;\n\n\t\t\tul.selectedEntities {\n\t\t\t\t> li {\n\t\t\t\t\tinput {\n\t\t\t\t\t\tmargin-right: 10px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\n\t\tinput.shortcode,\n\t\tinput.shortcode-slider {\n\t\t\twidth: 60%;\n\t\t}\n\n\t}\n\n\t.MusicIDBlogo {\t\t\n\t\tfloat:right;\n\t\tmargin:0;\n\t\tposition:relative;\n\t\ttop:7px;\n\t\timg {\n\t\t\theight:auto;\t\t\n\t\t\twidth:200px;\n\t\t}\n\t}\n}\n.musicidb-settings{\n\t.megaFlexSection {\n\t\tdisplay:flex;\n\t\twidth: 100%;\n\t\tbox-sizing: border-box;\t\t\n\t\t.leftArea{\n\t\t\twidth:65%;\n\t\t}\n\t\t.rightArea{\n\t\t\tpadding:20px;\n\t\t\twidth:35%;\n\t\t\timg.listExamplesPic{\n\t\t\t\tmax-width:100%;\n\t\t\t\theight:auto;\t\t\t\t\n\t\t\t}\n\t\t}\n\t}\n}\n#musiscidb-insert-shortcode {\n\n\t.wp-media-buttons-icon {\n\t\t\n\t\tpadding-bottom: 3px;\n\t\tpadding-right: 3px;\n\n\t\timg {\n\t\t\tpadding: 0;\n\t\t}\n\n\t}\n\n}","//Responsive\n\n\t/* Tablet View */\n\t@media only screen and (max-width: 1000px) {\n\t\t.musicidb-settings .megacal-account-details{\n\t\t\tposition: relative;\n\t\t    top: 0;\n\t\t    right: 0;\n\t\t    padding: 10px 15px;\n\t\t    margin: 15px 0;\n\t\t}\n\t\t// .megaCalendarWrap .mega-content .mega-toolbar{\n\t\t// \tpadding-top:57px;\n\t\t// \tposition:relative;\n\t\t// \t.mega-toolbar-add-event{\n\t\t// \t\tposition:absolute;\n\t\t// \t\ttop:4px;\n\t\t// \t}\n\t\t// \t.mega-toolbar-select-month{\t\t\t\t\n\t\t// \t}\n\t\t// \t.mega-toolbar-slider{\n\t\t// \t\tdisplay:none;\n\t\t// \t}\n\t\t// }\n\t\t// #megacal-manage-events #megacal-calendar-outer #megacal-manage-filters{\n\t\t// \twidth:auto;\n\t\t// \th3{\n\t\t// \t\tfont-size:15px;\n\t\t// \t}\n\t\t// \t.megacal-filter-cat{\n\t\t// \t\tfont-size:13px;\n\t\t// \t\tline-height:16px;\t\t\n\t\t// \t}\n\t\t// }\t\n\t\t.musicidb-settings{\n\t\t\t.megaFlexSection {\n\t\t\t\tdisplay:flex;\n\t\t\t\twidth: 100%;\n\t\t    \tbox-sizing: border-box;\t\t\n\t\t    \tflex-direction: column;\n\t\t\t\t.leftArea{\n\t\t\t\t\twidth:100%;\n\t\t\t\t}\n\t\t\t\t.rightArea{\n\t\t\t\t\tpadding:20px;\n\t\t\t\t\twidth:100%;\n\t\t\t\t\timg.listExamplesPic{\n\t\t\t\t\t\tmax-width:100%;\n\t\t\t\t\t\theight:auto;\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\n\t\t}\n\t}\n\n\t/* Mobile Devices */\n\t@media only screen and (max-width: 595px) {\n\t\t\n\t\t// .megaCalendarWrap#megacal-manage-calendar {\n\t\t// \t.mega-content .mega-view .mega-view-body .mega-view-week .mega-view-day .mega-view-day-content .megaEvent{\n\t\t// \t\t.megaEventText {\n\t\t// \t\t\t.megaTitle .megaTitlePara{\n\t\t// \t\t\t\tpadding-right:9px;\n\t\t// \t\t\t}\n\t\t// \t\t\tborder-radius: 4px 4px 4px 4px;\n\t\t// \t\t\t.megaIcons{    \n\t\t// \t\t\t\ttop: 3px;\n   \t\t// \t\t\t\tright: 1px;\n\t\t// \t\t\t\ti{\n\t\t// \t\t\t\t\tfont-size:7px;\n\t\t// \t\t\t\t}\n\t\t// \t\t\t}\t\n\t\t// \t\t}\n\t\t// \t}\n\t\t// }\t\t\n\t}\n\n\t@media only screen and (max-width: 400px) {\n\t\t\n\t}"]}
  • musicidb-calendar/trunk/css/maps/slick-theme.css.map

    r2980848 r3158876  
    1 {"version":3,"sources":["slick-theme.scss"],"names":[],"mappings":"AACA,2CAEQ,kBAEA,cACA,8BAAA,AACA,sBAAA,eAEA,yBACG,sBACC,qBACI,iBAER,2BACA,wBACA,uBACI,mBACJ,uCAAwC,CAjBhD,yCAqBQ,kBAEA,cACA,gBAEA,SACA,SAAU,CA3BlB,+CA8BQ,YAAa,CA9BrB,kDAiCQ,eACA,WAAY,CAlCpB,+GAuCQ,uCACG,AAGK,8BAA+B,CA3C/C,0CA+CQ,kBACA,MACA,OACA,cACA,iBACA,kBACA,QAAS,CArDjB,iGAyDQ,cAEA,UAAW,CA3DnB,gDA8DQ,UAAW,CA9DnB,yDAiEQ,iBAAkB,CAjE1B,0CAqEQ,aACA,WACA,YACA,cAAe,CAxEvB,sDA2EQ,WAAY,CA3EpB,8CA8EQ,cACA,gBACA,YAGA,YACA,WAAY,CApFpB,4DAuFQ,YAAa,CAvFrB,uDA0FQ,mBAAoB,CA1F5B,6DA6FQ,aAAc,CA7FtB,yDAgGQ,iBAAkB,CAhG1B,0DAmGQ,cACA,YACA,4BAA6B,CArGrC,uDAwGQ,YAAa,CAChB,WAQD,oBACA,mBACA,kBAEA,6BACA,iMAAqM,CAEzM,kFAIQ,YACA,cAEA,kBACA,QAEA,cAEA,WACA,YACA,UACA,qCACA,AACA,6BAEA,eAEA,kBACA,YACA,aACA,sBAAuB,CAxB/B,4LA8BQ,kBACA,aACA,sBAAuB,CAhC/B,wNAsCQ,SAAU,CAtClB,8HA0CQ,WAAY,CA1CpB,gGA+CQ,oBACA,eACA,cAEA,YACA,YAEA,mCACA,iCAAkC,CAvD1C,yCA2DQ,UAAW,CA3DnB,qDA8DQ,YACA,SAAU,CA/DlB,gDAkEQ,aAAS,CAAM,4DAEW,aACjB,CAAA,yCAEb,WACW,CAAA,qDAEC,WACD,UACD,CAAA,gDAEC,aACE,CAAA,4DAEU,aACV,CAAA,wDAIA,kBACT,CAAa,yCAEjB,6BACc,aACF,kBACF,cACG,WAEJ,qBACI,oBACD,gBAEE,iBAEE,CAAA,4CAEhB,kBACc,qBACD,WACJ,YACC,aACE,UACR,cACQ,CAAA,mDAEG,YACX,cACA,cACS,WAEJ,YACC,YACN,eACQ,kBACD,SACP,aACO,sBACK,CAAA,kHAGK,YACjB,CAAO,gIAGgB,SACvB,CAAA,0DAEiB,oBACJ,cACb,iBACW,kBACD,MACV,OACA,WACK,YACC,cACG,kBACG,YACZ,YACK,mCACmB,iCACC,CAAA,uEAEK,YAC9B,WACA,CAAK","file":"../slick-theme.css","sourcesContent":["/* Slider */\n.musicidb-events-integration{\n    .slick-slider{\n        position: relative;\n\n        display: block;\n        box-sizing: border-box;\n        padding: 0 15px;\n\n        -webkit-user-select: none;\n           -moz-user-select: none;\n            -ms-user-select: none;\n                user-select: none;\n\n        -webkit-touch-callout: none;\n        -khtml-user-select: none;\n        -ms-touch-action: pan-y;\n            touch-action: pan-y;\n        -webkit-tap-highlight-color: transparent;\n    }\n\n    .slick-list{\n        position: relative;\n\n        display: block;\n        overflow: hidden;\n\n        margin: 0;\n        padding: 0;\n    }\n    .slick-list:focus{\n        outline: none;\n    }\n    .slick-list.dragging{\n        cursor: pointer;\n        cursor: hand;\n    }\n\n    .slick-slider .slick-track,\n    .slick-slider .slick-list{\n        -webkit-transform: translate3d(0, 0, 0);\n           -moz-transform: translate3d(0, 0, 0);\n            -ms-transform: translate3d(0, 0, 0);\n             -o-transform: translate3d(0, 0, 0);\n                transform: translate3d(0, 0, 0);\n    }\n\n    .slick-track{\n        position: relative;\n        top: 0;\n        left: 0;\n        display: block;\n        margin-left: auto;\n        margin-right: auto;\n        margin: 0;\n    }\n    .slick-track:before,\n    .slick-track:after{\n        display: table;\n\n        content: '';\n    }\n    .slick-track:after{\n        clear: both;\n    }\n    .slick-loading .slick-track{\n        visibility: hidden;\n    }\n\n    .slick-slide{\n        display: none;\n        float: left;\n        height: 100%;\n        min-height: 1px;\n    }\n    [dir='rtl'] .slick-slide{\n        float: right;\n    }\n    .slick-slide img{\n        display: block;\n        background: none;\n        border: none;\n    /*    margin-right: 15px;*/\n    /*    margin:  0 auto;*/\n        width: 130px;\n        height: auto;\n    }\n    .slick-slide.slick-loading img{\n        display: none;\n    }\n    .slick-slide.dragging img{\n        pointer-events: none;\n    }\n    .slick-initialized .slick-slide{\n        display: block;\n    }\n    .slick-loading .slick-slide{\n        visibility: hidden;\n    }\n    .slick-vertical .slick-slide{\n        display: block;\n        height: auto;\n        border: 1px solid transparent;\n    }\n    .slick-arrow.slick-hidden {\n        display: none;\n    }\n    /* Slider */\n    .slick-loading .slick-list {\n        //background: #fff url('./ajax-loader.gif') center center no-repeat;\n    }\n}\n/* Icons */\n@font-face{\n    font-family: 'slick';\n    font-weight: normal;\n    font-style: normal;\n\n    src: url('./fonts/slick.eot');\n    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');\n}\n.musicidb-events-integration{\n    /* Arrows */\n    .slick-prev,\n    .slick-next{\n        font-size: 0;\n        line-height: 0;\n\n        position: absolute;\n        top: 50%;\n\n        display: block;\n\n        width: 20px;\n        height: 20px;\n        padding: 0;\n        -webkit-transform: translate(0, -50%);\n        -ms-transform: translate(0, -50%);\n        transform: translate(0, -50%);\n\n        cursor: pointer;\n\n        color: transparent;\n        border: none;\n        outline: none;\n        background: transparent;\n    }\n    .slick-prev:hover,\n    .slick-prev:focus,\n    .slick-next:hover,\n    .slick-next:focus{\n        color: transparent;\n        outline: none;\n        background: transparent;\n    }\n    .slick-prev:hover:before,\n    .slick-prev:focus:before,\n    .slick-next:hover:before,\n    .slick-next:focus:before{\n        opacity: 1;\n    }\n    .slick-prev.slick-disabled:before,\n    .slick-next.slick-disabled:before{\n        opacity: .25;\n    }\n\n    .slick-prev:before,\n    .slick-next:before{\n        font-family: 'slick';\n        font-size: 20px;\n        line-height: 1;\n\n        opacity: .75;\n        color: white;\n\n        -webkit-font-smoothing: antialiased;\n        -moz-osx-font-smoothing: grayscale;\n    }\n\n    .slick-prev{\n        left: -25px;\n    }\n    [dir='rtl'] .slick-prev{\n        right: -25px;\n        left: auto;\n    }\n    .slick-prev:before{\n        content: '←';\n    }\n    [dir='rtl'] .slick-prev:before{\n        content: '→';\n    }\n    .slick-next{\n        right: -25px;\n    }\n    [dir='rtl'] .slick-next{\n        right: auto;\n        left: -25px;\n    }\n    .slick-next:before{\n        content: '→';\n    }\n    [dir='rtl'] .slick-next:before{\n        content: '←';\n    }\n\n    /* Dots */\n    .slick-dotted.slick-slider{\n        margin-bottom: 30px;\n    }\n    .slick-dots {\n        position: absolute !important;\n        bottom: -25px;\n        left: 0 !important;\n        display: block;\n\n        width: 100%;\n        padding: 0 !important;\n        margin: 0 !important;\n\n        list-style: none;\n\n        text-align: center;\n    }\n    .slick-dots li{\n        position: relative;\n        display: inline-block;\n        width: 20px;\n        height: 20px;\n        margin: 0 5px;\n        padding: 0;\n        cursor: pointer;\n    }\n    .slick-dots li button{\n        font-size: 0;\n        line-height: 0;\n        display: block;\n\n        width: 20px;\n        height: 20px;\n        padding: 5px;\n        cursor: pointer;\n        color: transparent;\n        border: 0;\n        outline: none;\n        background: transparent;\n    }\n    .slick-dots li button:hover,\n    .slick-dots li button:focus{\n        outline: none;\n    }\n    .slick-dots li button:hover:before,\n    .slick-dots li button:focus:before{\n        opacity: 1;\n    }\n    .slick-dots li button:before{\n        font-family: 'slick';\n        font-size: 6px;\n        line-height: 20px;\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 20px;\n        height: 20px;\n        content: '•';\n        text-align: center;\n        opacity: .25;\n        color: black;\n        -webkit-font-smoothing: antialiased;\n        -moz-osx-font-smoothing: grayscale;\n    }\n    .slick-dots li.slick-active button:before{\n        opacity: .75;\n        color: black;\n    }\n}"]}
     1{"version":3,"sources":["slick-theme.css","slick-theme.scss"],"names":[],"mappings":"AAAA,2CCEI,iBACI,CAAA,aAEA,CAAA,qBACA,CAAA,cACA,CAAA,wBAEA,CAAA,qBACG,CACC,gBACI,CAAA,0BAER,CAAA,uBACA,CACA,kBACI,CAAA,yCACJ,CAAA,yCAGJ,iBACI,CAAA,aAEA,CAAA,eACA,CAAA,QAEA,CAAA,SACA,CAAA,+CAEJ,YACI,CAAA,kDAEJ,cACI,CAAA,WACA,CAAA,+GAQK,8BACG,CAAA,0CAGZ,iBACI,CAAA,KACA,CAAA,MACA,CAAA,aACA,CAAA,gBACA,CAAA,iBACA,CAAA,QACA,CAAA,iGAEJ,aAEI,CAAA,UAEA,CAAA,gDAEJ,UACI,CAAA,yDAEJ,iBACI,CAAA,0CAGJ,YACI,CAAA,UACA,CAAA,WACA,CAAA,cACA,CAAA,oDAEJ,WACI,CAAA,8CAEJ,aACI,CAAA,eACA,CAAA,WACA,CAAA,WAGA,CAAA,WACA,CAAA,4DAEJ,YACI,CAAA,uDAEJ,mBACI,CAAA,6DAEJ,aACI,CAAA,yDAEJ,iBACI,CAAA,0DAEJ,aACI,CAAA,WACA,CAAA,8BACA,CAAA,uDAEJ,YACI,CAAA,WAQR,mBACI,CAAA,kBACA,CAAA,iBACA,CAAA,4BAEA,CAAA,iMACA,CAAA,kFAIA,WAEI,CAAA,aACA,CAAA,iBAEA,CAAA,OACA,CAAA,aAEA,CAAA,UAEA,CAAA,WACA,CAAA,SACA,CAEA,4BACA,CAAA,cAEA,CAAA,mBAEA,CAAA,WACA,CAAA,YACA,CAAA,wBACA,CAAA,4LAEJ,mBAII,CAAA,YACA,CAAA,wBACA,CAAA,wNAEJ,SAII,CAAA,8HAEJ,WAEI,CAAA,gGAGJ,mBAEI,CAAA,cACA,CAAA,aACA,CAAA,WAEA,CAAA,UACA,CAAA,kCAEA,CAAA,iCACA,CAAA,yCAGJ,UACI,CAAA,mDAEJ,WACI,CAAA,SACA,CAAA,gDAEJ,aACI,CAAA,0DAEJ,aACI,CAAA,yCAEJ,WACI,CAAA,mDAEJ,UACI,CAAA,UACA,CAAA,gDAEJ,aACI,CAAA,0DAEJ,aACI,CAAA,wDAIJ,kBACI,CAAA,yCAEJ,4BACI,CAAA,YACA,CAAA,iBACA,CAAA,aACA,CAAA,UAEA,CAAA,oBACA,CAAA,mBACA,CAAA,eAEA,CAAA,iBAEA,CAAA,4CAEJ,iBACI,CAAA,oBACA,CAAA,UACA,CAAA,WACA,CAAA,YACA,CAAA,SACA,CAAA,cACA,CAAA,mDAEJ,WACI,CAAA,aACA,CAAA,aACA,CAAA,UAEA,CAAA,WACA,CAAA,WACA,CAAA,cACA,CAAA,mBACA,CAAA,QACA,CAAA,YACA,CAAA,wBACA,CAAA,kHAEJ,YAEI,CAAA,gIAEJ,SAEI,CAAA,0DAEJ,mBACI,CAAA,aACA,CAAA,gBACA,CAAA,iBACA,CAAA,KACA,CAAA,MACA,CAAA,UACA,CAAA,WACA,CAAA,aACA,CAAA,iBACA,CAAA,WACA,CAAA,UACA,CAAA,kCACA,CAAA,iCACA,CAAA,uEAEJ,WACI,CAAA,UACA","file":"../slick-theme.css","sourcesContent":[".musicidb-events-integration .slick-slider{position:relative;display:block;box-sizing:border-box;padding:0 15px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0)}.musicidb-events-integration .slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.musicidb-events-integration .slick-list:focus{outline:none}.musicidb-events-integration .slick-list.dragging{cursor:pointer;cursor:hand}.musicidb-events-integration .slick-slider .slick-track,.musicidb-events-integration .slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-ms-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.musicidb-events-integration .slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto;margin:0}.musicidb-events-integration .slick-track:before,.musicidb-events-integration .slick-track:after{display:table;content:\"\"}.musicidb-events-integration .slick-track:after{clear:both}.musicidb-events-integration .slick-loading .slick-track{visibility:hidden}.musicidb-events-integration .slick-slide{display:none;float:left;height:100%;min-height:1px}.musicidb-events-integration [dir=rtl] .slick-slide{float:right}.musicidb-events-integration .slick-slide img{display:block;background:none;border:none;width:130px;height:auto}.musicidb-events-integration .slick-slide.slick-loading img{display:none}.musicidb-events-integration .slick-slide.dragging img{pointer-events:none}.musicidb-events-integration .slick-initialized .slick-slide{display:block}.musicidb-events-integration .slick-loading .slick-slide{visibility:hidden}.musicidb-events-integration .slick-vertical .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0)}.musicidb-events-integration .slick-arrow.slick-hidden{display:none}@font-face{font-family:\"slick\";font-weight:normal;font-style:normal;src:url(\"./fonts/slick.eot\");src:url(\"./fonts/slick.eot?#iefix\") format(\"embedded-opentype\"),url(\"./fonts/slick.woff\") format(\"woff\"),url(\"./fonts/slick.ttf\") format(\"truetype\"),url(\"./fonts/slick.svg#slick\") format(\"svg\")}.musicidb-events-integration .slick-prev,.musicidb-events-integration .slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0, -50%);-ms-transform:translate(0, -50%);transform:translate(0, -50%);cursor:pointer;color:rgba(0,0,0,0);border:none;outline:none;background:rgba(0,0,0,0)}.musicidb-events-integration .slick-prev:hover,.musicidb-events-integration .slick-prev:focus,.musicidb-events-integration .slick-next:hover,.musicidb-events-integration .slick-next:focus{color:rgba(0,0,0,0);outline:none;background:rgba(0,0,0,0)}.musicidb-events-integration .slick-prev:hover:before,.musicidb-events-integration .slick-prev:focus:before,.musicidb-events-integration .slick-next:hover:before,.musicidb-events-integration .slick-next:focus:before{opacity:1}.musicidb-events-integration .slick-prev.slick-disabled:before,.musicidb-events-integration .slick-next.slick-disabled:before{opacity:.25}.musicidb-events-integration .slick-prev:before,.musicidb-events-integration .slick-next:before{font-family:\"slick\";font-size:20px;line-height:1;opacity:.75;color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.musicidb-events-integration .slick-prev{left:-25px}.musicidb-events-integration [dir=rtl] .slick-prev{right:-25px;left:auto}.musicidb-events-integration .slick-prev:before{content:\"←\"}.musicidb-events-integration [dir=rtl] .slick-prev:before{content:\"→\"}.musicidb-events-integration .slick-next{right:-25px}.musicidb-events-integration [dir=rtl] .slick-next{right:auto;left:-25px}.musicidb-events-integration .slick-next:before{content:\"→\"}.musicidb-events-integration [dir=rtl] .slick-next:before{content:\"←\"}.musicidb-events-integration .slick-dotted.slick-slider{margin-bottom:30px}.musicidb-events-integration .slick-dots{position:absolute !important;bottom:-25px;left:0 !important;display:block;width:100%;padding:0 !important;margin:0 !important;list-style:none;text-align:center}.musicidb-events-integration .slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.musicidb-events-integration .slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:rgba(0,0,0,0);border:0;outline:none;background:rgba(0,0,0,0)}.musicidb-events-integration .slick-dots li button:hover,.musicidb-events-integration .slick-dots li button:focus{outline:none}.musicidb-events-integration .slick-dots li button:hover:before,.musicidb-events-integration .slick-dots li button:focus:before{opacity:1}.musicidb-events-integration .slick-dots li button:before{font-family:\"slick\";font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:\"•\";text-align:center;opacity:.25;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.musicidb-events-integration .slick-dots li.slick-active button:before{opacity:.75;color:#000}","/* Slider */\n.musicidb-events-integration{\n    .slick-slider{\n        position: relative;\n\n        display: block;\n        box-sizing: border-box;\n        padding: 0 15px;\n\n        -webkit-user-select: none;\n           -moz-user-select: none;\n            -ms-user-select: none;\n                user-select: none;\n\n        -webkit-touch-callout: none;\n        -khtml-user-select: none;\n        -ms-touch-action: pan-y;\n            touch-action: pan-y;\n        -webkit-tap-highlight-color: transparent;\n    }\n\n    .slick-list{\n        position: relative;\n\n        display: block;\n        overflow: hidden;\n\n        margin: 0;\n        padding: 0;\n    }\n    .slick-list:focus{\n        outline: none;\n    }\n    .slick-list.dragging{\n        cursor: pointer;\n        cursor: hand;\n    }\n\n    .slick-slider .slick-track,\n    .slick-slider .slick-list{\n        -webkit-transform: translate3d(0, 0, 0);\n           -moz-transform: translate3d(0, 0, 0);\n            -ms-transform: translate3d(0, 0, 0);\n             -o-transform: translate3d(0, 0, 0);\n                transform: translate3d(0, 0, 0);\n    }\n\n    .slick-track{\n        position: relative;\n        top: 0;\n        left: 0;\n        display: block;\n        margin-left: auto;\n        margin-right: auto;\n        margin: 0;\n    }\n    .slick-track:before,\n    .slick-track:after{\n        display: table;\n\n        content: '';\n    }\n    .slick-track:after{\n        clear: both;\n    }\n    .slick-loading .slick-track{\n        visibility: hidden;\n    }\n\n    .slick-slide{\n        display: none;\n        float: left;\n        height: 100%;\n        min-height: 1px;\n    }\n    [dir='rtl'] .slick-slide{\n        float: right;\n    }\n    .slick-slide img{\n        display: block;\n        background: none;\n        border: none;\n    /*    margin-right: 15px;*/\n    /*    margin:  0 auto;*/\n        width: 130px;\n        height: auto;\n    }\n    .slick-slide.slick-loading img{\n        display: none;\n    }\n    .slick-slide.dragging img{\n        pointer-events: none;\n    }\n    .slick-initialized .slick-slide{\n        display: block;\n    }\n    .slick-loading .slick-slide{\n        visibility: hidden;\n    }\n    .slick-vertical .slick-slide{\n        display: block;\n        height: auto;\n        border: 1px solid transparent;\n    }\n    .slick-arrow.slick-hidden {\n        display: none;\n    }\n    /* Slider */\n    .slick-loading .slick-list {\n        //background: #fff url('./ajax-loader.gif') center center no-repeat;\n    }\n}\n/* Icons */\n@font-face{\n    font-family: 'slick';\n    font-weight: normal;\n    font-style: normal;\n\n    src: url('./fonts/slick.eot');\n    src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');\n}\n.musicidb-events-integration{\n    /* Arrows */\n    .slick-prev,\n    .slick-next{\n        font-size: 0;\n        line-height: 0;\n\n        position: absolute;\n        top: 50%;\n\n        display: block;\n\n        width: 20px;\n        height: 20px;\n        padding: 0;\n        -webkit-transform: translate(0, -50%);\n        -ms-transform: translate(0, -50%);\n        transform: translate(0, -50%);\n\n        cursor: pointer;\n\n        color: transparent;\n        border: none;\n        outline: none;\n        background: transparent;\n    }\n    .slick-prev:hover,\n    .slick-prev:focus,\n    .slick-next:hover,\n    .slick-next:focus{\n        color: transparent;\n        outline: none;\n        background: transparent;\n    }\n    .slick-prev:hover:before,\n    .slick-prev:focus:before,\n    .slick-next:hover:before,\n    .slick-next:focus:before{\n        opacity: 1;\n    }\n    .slick-prev.slick-disabled:before,\n    .slick-next.slick-disabled:before{\n        opacity: .25;\n    }\n\n    .slick-prev:before,\n    .slick-next:before{\n        font-family: 'slick';\n        font-size: 20px;\n        line-height: 1;\n\n        opacity: .75;\n        color: white;\n\n        -webkit-font-smoothing: antialiased;\n        -moz-osx-font-smoothing: grayscale;\n    }\n\n    .slick-prev{\n        left: -25px;\n    }\n    [dir='rtl'] .slick-prev{\n        right: -25px;\n        left: auto;\n    }\n    .slick-prev:before{\n        content: '←';\n    }\n    [dir='rtl'] .slick-prev:before{\n        content: '→';\n    }\n    .slick-next{\n        right: -25px;\n    }\n    [dir='rtl'] .slick-next{\n        right: auto;\n        left: -25px;\n    }\n    .slick-next:before{\n        content: '→';\n    }\n    [dir='rtl'] .slick-next:before{\n        content: '←';\n    }\n\n    /* Dots */\n    .slick-dotted.slick-slider{\n        margin-bottom: 30px;\n    }\n    .slick-dots {\n        position: absolute !important;\n        bottom: -25px;\n        left: 0 !important;\n        display: block;\n\n        width: 100%;\n        padding: 0 !important;\n        margin: 0 !important;\n\n        list-style: none;\n\n        text-align: center;\n    }\n    .slick-dots li{\n        position: relative;\n        display: inline-block;\n        width: 20px;\n        height: 20px;\n        margin: 0 5px;\n        padding: 0;\n        cursor: pointer;\n    }\n    .slick-dots li button{\n        font-size: 0;\n        line-height: 0;\n        display: block;\n\n        width: 20px;\n        height: 20px;\n        padding: 5px;\n        cursor: pointer;\n        color: transparent;\n        border: 0;\n        outline: none;\n        background: transparent;\n    }\n    .slick-dots li button:hover,\n    .slick-dots li button:focus{\n        outline: none;\n    }\n    .slick-dots li button:hover:before,\n    .slick-dots li button:focus:before{\n        opacity: 1;\n    }\n    .slick-dots li button:before{\n        font-family: 'slick';\n        font-size: 6px;\n        line-height: 20px;\n        position: absolute;\n        top: 0;\n        left: 0;\n        width: 20px;\n        height: 20px;\n        content: '•';\n        text-align: center;\n        opacity: .25;\n        color: black;\n        -webkit-font-smoothing: antialiased;\n        -moz-osx-font-smoothing: grayscale;\n    }\n    .slick-dots li.slick-active button:before{\n        opacity: .75;\n        color: black;\n    }\n}"]}
  • musicidb-calendar/trunk/css/maps/styles.css.map

    r3080024 r3158876  
    1 {"version":3,"sources":["_base.scss","_responsive.scss"],"names":[],"mappings":"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","file":"../styles.css","sourcesContent":["/*\nMusicIDB Plugin \nby Megabase, Inc.\nYou can directly edit your WordPress theme to override any styles\n*/\n\n//Colors\n\t$orangeIcons: #ff802a;\n\t$colorDarkFoot:#1a1a1a;\n\t$color_hunter_green_approx: #171717;\n\t$color_tapa_approx: #777;\n\t$color_delta_approx: #a4a4a4;\n\t$color_chicago_approx: #5d5d5d;\n\t$color_mercury_approx: #e7e7e7;\n\t$color_fuscous_gray_approx: #525252;\n\t$color_pink_swan_approx: #bbb;\n\t$color_storm_dust_approx: #656565;\n\t$color_alto_approx: #ddd;\n\t$color_mountain_mist_approx: #999;\n\t$color_log_cabin_approx: #222;\n\t$colorDarkBack: #333;\n\t$color_madang_approx: #b8ffbc;\n\t$green: #0f0;\n\t$color_sundown_approx: #ffb8b8;\n\t$red: #f00;\n\t$errored: #ffb9b5;\n\t$color_stack_approx: #8a8a8a;\n\t$black: #000;\n\t$color_bon_jour_approx: #e2e2e2;\n\t$white: #fff;\n\t$color_gunsmoke_approx: #858585;\n\t$color_matisse_approx: #0e699c;\n\t$color_cerulean_approx: #09a6d8;\n\t$color_mine_shaft_approx: #333;\n\t$color_deep_cerulean_approx: #0077af;\n\t$color_pizazz_approx: #ff8f00;\n\t$color_pelorous_approx: #37a7c5;\n\t$color_celeste_approx: #ccc;\n\t$color_tundora_approx: #444;\n\t$color_apple_approx: #2ea23b;\n\t$color_chilean_fire_approx: #ff7200;\n\t$color_supernova_approx: #fc0;\n\t$color_malachite_approx: #10c024;\n\t$color_mariner_approx: #2e67cf;\n\t$color_gallery_approx: #eee;\n\t$color_cape_cod_approx: #414141;\n\t$blaze_orange: #f60;\n\t$color_blue_ribbon_approx: #0f64ff;\n\t$color_torch_red_approx: #f70f30;\n\t$color_crusta_approx: #ff7630;\n\t$color_neon_carrot_approx: #ff8d30;\n\t$color_concrete_34_approx: rgba(243, 243, 243, 0.34);\n\t$color_pumice_approx: #cacaca;\n\t$mercury: #e5e5e5;\n\t$color_big_stone_approx: #11243b;\n\t$color_concrete_approx: #f3f3f3;\n\t$color_dove_gray_approx: #6d6d6d;\n\t$yellow: yellow;\n\t$color_ochre_approx: #cf7b24;\n\t$color_monza_approx: #e20d0d;\n\t$color_eastern_blue_approx: #12989f;\n\t$color_mountain_meadow_approx: #1abc9c;\n\t$color_fuchsia_pink_approx: #d229b7;\n\t$color_forest_green_approx: #00af18;\n\t$color_royal_blue_approx: #4f4ff3;\n\t$color_alabaster_approx: #fbfbfb;\n\t$color_perano_approx: #a3caf5;\n\t$color_dodger_blue_approx: #208bf8;\n\t$color_carrot_orange_approx: #f88b20;\n\t$color_wild_sand_approx: #f5f5f5;\n\t$white_82: rgba(255, 255, 255, 0.82);\n\t$color_shark_approx: #292929;\n\t$color_cararra_approx: #ebebeb;\n\t$alto: #dbdbdb;\n\t$black_38: rgba(0, 0, 0, 0.38);\n\t$color_masala_approx: #3c3c3c;\n\t$color_limed_spruce_approx: #354e52;\n\t$color_oxford_blue_approx: #353f52;\n\t$color_amaranth_approx: #de2c45;\n\t$color_quill_gray_approx: #d5d5d5;\n\t$gallery: #efefef;\n\t$color_tiara_approx: #c6d3d6;\n\t$color_gray_nurse_approx: #eaeaea;\n\t$color_woodsmoke_approx: #111;\n\t$color_concord_approx: #7b7b7b;\n\t$color_iron_approx: #d8d8d8;\n\t$color_san_marino_approx: #3b67bb;\n\t$color_orange_roughy_approx: #d05126;\n\t$color_lochmara_approx: #008dcc;\n\t$color_shady_lady_approx: #a7a7a7;\n\t$color_bahama_blue_approx: #016797;\n\t$color_vermilion_approx: #ff3d00;\n\t$color_suva_gray_approx: #888;\n\t$gray: #808080;\n\t$color_outrageous_orange_approx: #f36638;\n\t$color_pale_slate_approx: #c3c3c3;\n\t$color_sandal_approx: #a98870;\n\t$color_burning_orange_approx: #ff6a2f;\n\t$color_desert_approx: #b56027;\n\t$seashell: #f1f1f1;\n\t$color_gravel_approx: #4a4a4a;\n\t$color_black_rock_approx: #003;\n\t$color_bright_turquoise_approx: #0cf;\n\t$color_mirage_approx: #0c182e;\n\t$color_heavy_metal_approx: #2d2d2d;\n\t$color_sangria_approx: #9f0000;\n\t$color_juniper_approx: #6d8c99;\n\t$color_fun_green_approx: #00662d;\n\t$color_bali_hai_approx: #9097ad;\n\t$color_chathams_blue_approx: #1b516a;\n\t$color_tarawera_approx: #0c4046;\n\t$color_pomegranate_approx: #ef501d;\n\t$color_harlequin_approx: #10bb27;\n\t$color_japanese_laurel_approx:  green;\n\t$color_silver_approx: #c1c1c1;\n\t$color_star_dust_approx: #a1a1a1;\n\t$white_84: rgba(255, 255, 255, 0.84);\n\t$white_100: rgba(255, 255, 255, 1);\n\t$color_desert_storm_approx: #f8f8f8;\n\t$color_pewter_approx: #97afa1;\n\t$color_de_york_approx: #7ecea0;\n\t$color_nepal_approx: #8ebac3;\n\t$color_fountain_blue_approx: #5eb1c3;\n\t$color_black_haze_approx: #f7f7f7;\n\t$color_catskill_white_approx: #eef7f6;\n\t$color_sorrell_brown_approx: #d1ba8a;\n\t$color_double_pearl_lusta_approx: #faf1d4;\n\t$color_banana_mania_approx: #f6e4af;\n\t$color_smalt_blue_approx: #547b84;\n\t$color_fern_approx: rgb(98, 199, 114);\n\t$color_boulder_approx: #797979;\n\t$color_gray_approx: #7e7e7e;\n\t$color_surf_approx: rgb(188, 219, 188);\n\t$color_jewel_approx: #1c7032;\n\t$color_tuatara_approx: #383838;\n\t$color_ironside_gray_approx: #676767;\n\t$color_half_baked_approx: #76bdd6;\n\t$color_off_yellow_approx: rgb(255, 248, 228);\n\t$alabaster: #fafafa;\n\t$color_mustard_approx: #ffd74a;\n\t$color_mango_tango_approx: #eb7800;\n\t$color_mojo_approx: #cc4a3d;\n\t$black_90: rgba(0, 0, 0, 0.9);\n\t$mine_shaft: #323232;\n\t$mine_shaft_80: rgba(50, 50, 50, .8);\n\t$color_fuzzy_wuzzy_brown_approx: #c55959;\n\t$color_radical_red_approx: #ff3b52;\n\t$color_sinbad_approx: #9cd3d3;\n\t$color_nobel_approx: #b3b3b3;\n\t$blue:  blue;\n\t$color_arapawa_approx: #11116b;\n\t$color_silver_chalice_approx: #aaa;\n\t$black_62: rgba(0, 0, 0, 0.62);\n\t$color_bay_of_many_approx: #1b3883;\n\t$web_orange: orange;\n\t$color_anakiwa_approx: #8cdefe;\n\t$color_fiord_approx: #4a546d;\n\t$color_tangerine_approx: #e78d00;\n\t$color_laser_lemon_67_approx: rgba(255, 255, 103, 0.67);\n\t$color_spanish_green_approx: #898;\n\t$color_sapphire_approx: #2451a1;\n\t$color_log_cabin_74_approx: rgba(34, 34, 34, 0.74);\n\t$color_allports_approx: #0070a6;\n\t$white_60: rgba(255, 255, 255, .6);\n\t$color_ship_cove_approx: #6b96bb;\n\t$color_havelock_blue_approx: #4897d2;\n\t$color_gray_chateau_approx: #9fa9ae;\n\t$color_bismark_approx: #4e6d7d;\n\t$color_bull_shot_approx: #825426;\n\t$concrete: #f2f2f2;\n\t$wheat: wheat;\n\t$red_80: rgba(255, 0, 0, 0.8);\n\t$red_40: rgba(255, 0, 0, 0.4);\n\t$color_dark_fern_approx: #0d440d;\n\t$white_64: rgba(255, 255, 255, 0.64);\n\t$black_64: rgba(0, 0, 0, 0.64);\n\t$color_madang_93_approx: rgba(190, 250, 190, 0.93);\n\t$color_madang_55_approx: rgba(190, 250, 190, 0.55);\n\t$color_silver_sand_approx: #c2c2c2;\n\t$wild_sand: #f4f4f4;\n\t$black_35: rgba(0, 0, 0, 0.35);\n\t$color_rangoon_green_approx: #1b1b1b;\n\t$color_pizza_approx: #ca8f08;\n\t$color_corn_harvest_approx: #926d19;\n\n// @font-face {\n// \tfont-family: 'Montserrat-SemiBold';\n// \tsrc: url('./font/Montserrat/Montserrat-SemiBold.eot');\n// \tsrc: url('./font/Montserrat/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),\n// \turl('./font/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),\n// \turl('./font/Montserrat/Montserrat-SemiBold.woff') format('woff'),\n// \turl('./font/Montserrat/Montserrat-SemiBold.ttf') format('truetype');\n// \tfont-weight: 600;\n// \tfont-style: normal;\n// }\n\n// @font-face {\n// \tfont-family: 'Montserrat-Regular';\n// \tsrc: url('./font/Montserrat/Montserrat-Regular.eot');\n// \tsrc: url('./font/Montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),\n// \turl('./font/Montserrat/Montserrat-Regular.woff2') format('woff2'),\n// \turl('./font/Montserrat/Montserrat-Regular.woff') format('woff'),\n// \turl('./font/Montserrat/Montserrat-Regular.ttf') format('truetype');\n// \tfont-weight: normal;\n// \tfont-style: normal;\n// }\n\n//Extends\n\t\n\n\t//original selectors\n\t//.artistDetails .socialBubbleIcons li, .cardFloater .socialBubbleIcons li\n\t%extend_43 {\n\t\tfloat: right;\n\t\tpadding: 0 0 0 2px;\n\t\tmargin-bottom: 2px;   \n\t\tlist-style-type: none;\n\t}\n\n\t//original selectors\n\t//.eventInfoArea .venueInfoTile, .eventInfoArea .tilesContainer\n\t%extend_27 {\n\t\tfloat: left;\n\t\tclear: none;\n\t\twidth: 50%;\n\t}\n\n//Fonts\n\t$fontStandard: 'Arial';\t\t\t\t\n\t$fontMontserrat: 'Montserrat';\n\t$fontSans: 'sans-serif';\n\t$fontRoboto: 'Roboto';\n\t$font_24: 'Helvetica';\n\t$font_bigHead: 'Days One';\n\t$font_37: 'Flat-UI-Icons';\n\t$font_49: 'Open Sans';\n\n//Helper Classes\n\t.cf:before,\n\t.cf:after {\n\t    content: \"\";\n\t    display: table;\n\t}\n\t.cf:after {\n\t    clear: both;\n\t}\n\t.cf {\t\n\t/* For IE 6/7 (trigger hasLayout) */\n\t*zoom: 1;\n\t}\n\n//Styles\t\t\n\tbody.noScroll {\n\t\toverflow: hidden;\t\t\n\t}\n\n\t.slide {\n\t\tposition: relative;\n\n\t\t.right {\n\t\t\tposition: absolute;\n\t\t\tleft: 0;\n\t\t\ttop: 0;\n\t\t\tmin-height: 350px;\n\t\t\twidth: 20%;\n\t\t\tz-index: 10;\n\t\t\topacity: 0.8;\n\t\t\tcolor: #fff;\n\n\t\t\t.label {\n\t\t\t\tdisplay: block;\n\t\t\t\tbackground: #b4b6ba;\n\t\t\t\tcolor: #000;\n\t\t\t\t\n\t\t\t\twidth: 40%;\n\t\t\t\tmargin: 15px 0;\n\t\t\t\tpadding: 5px 15px;\n\t\t\t\ttext-align: center;\n\t\t\t\tline-height: normal;\n\t\t\t}\n\n\t\t\t.date {\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: 15px 15px 0 15px;\n\t\t\t\tfont-size: 11px;\n\n\t\t\t}\n\n\t\t\t.name {\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: 0 15px;\n\t\t\t\tclear: both;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tline-height: 1em;\n\t\t\t}\n\n\t\t\t.tickets,\n\t\t\t.view-event {\n\t\t\t\tclear: both;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: 15px;\n\t\t\t}\n\t\t}\n\n\t\t.left {\n\t\t\twidth: 100%;\n\t\t\timg {\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t}\n\n\t.musicidb-events-integration {\n\t\tposition: relative;\n\n\t\t//Links and Buttons \n\t\t\ta {\n\t\t\t\t// display: inline-block;\n\t\t\t\tborder: none;\n\t\t\t\ttext-decoration: none;\n\t\t\t\tbox-shadow: none;\n\t\t\t\toutline:none!important;\n\t\t\t}\n\t\t\ta:focus {\n\t\t\t\toutline:none!important\n\t\t\t}\n\t\t\t.controlbar {\n\t\t\t\tdisplay: table;\n\t\t\t\tmargin: 0 auto 0;\n\t\t\t\tmargin-bottom:0 !important;\n\t\t\t\twidth: auto;\n\t\t\t\tfloat: none !important;\n\t\t\t\tposition: relative;\n\t\t\t\tpadding: 0;\t\t\t\t\n\t\t\t\t.accent {\n\t\t\t\t\ttop: 24px;\n\t\t\t\t\tfont-size: 10px !important;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tmargin: auto;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tbottom: -1px;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.likeBtn {\n\t\t\t\t}\n\t\t\t\t.loveBtn {\n\t\t\t\t}\n\t\t\t\t.greenBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t\t.silverBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t\t.blueBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t\t.orangeBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t\t.mediaBtn {\n\t\t\t\t\tpadding-left: 31px !important;\n\t\t\t\t}\n\t\t\t\t.inactiveBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\tbackground: $color_mountain_mist_approx !important;\n\t\t\t\t\tcolor: $white;\n\t\t\t\t\tcursor: default;\n\t\t\t\t}\n\t\t\t\t&.mainHeadline {\n\t\t\t\t\t.likeBtn {\n\t\t\t\t\t}\n\t\t\t\t\t.loveBtn {\n\t\t\t\t\t}\n\t\t\t\t\t> li > a {\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tli {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tmargin-bottom: 4px;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tmargin-right: 4px;\n\t\t\t\t\t.link {\n\t\t\t\t\t}\n\t\t\t\t\ta.rightBorderMe {\n\t\t\t\t\t}\n\t\t\t\t\t&:last-child {\n\t\t\t\t\t\tmargin-right:0;\n\t\t\t\t\t\ta {\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ta {\n\t\t\t\t\tfont: 14px/14px Arial,'Open Sans',sans-serif!important;\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\ttext-decoration: none !important;\n\t\t\t\t\t}\n\t\t\t\t\t&.musicIDBevent img.whiteIcon {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tspan {\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\tfont: 13px/15px 'Open Sans', sans-serif;\n\t\t\t\t\t// display: table-cell;\n\t\t\t\t\t// vertical-align: middle;\n\t\t\t\t\t// float: left;\t\n\t\t\t\t\t// top: -3px;\n\t\t    \t\t// position: relative;\n\t\t\t\t}\n\n\t\t\t\t> li {\n\t\t\t\t\t> a {\n\t\t\t\t\t\tbackground: $white;\n\t\t\t\t\t\t//Instead of the line below you could use @include border-radius($radius, $vertical-radius)\n\t\t\t\t\t\tborder-radius: 4px;\n\t\t\t\t\t\tpadding: 7px 10px 4px;\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\tborder-right: none;\n\t\t\t\t\t\tcolor: $color_shark_approx;\n\t\t\t\t\t\tmax-width: 100px;\n\t\t\t\t\t\tposition: relative;\n\t\t\t\t\t\theight: 30px;\n\t\t\t\t\t\tbox-sizing:border-box;\n\t\t\t\t\t\tmin-height: inherit;\n\t\t\t\t\t\tborder: 1px solid transparent;\n\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\tbackground: $color_dove_gray_approx;\n\t\t\t\t\t\t\tbackground: $color_mine_shaft_approx;\n\t\t\t\t\t\t\tcolor: $white;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\ta.TicketLink {\n\t\t\t\t\t\tposition: relative;\n\t\t\t\t\t\t// top: -2px;\n\t\t\t\t\t\tborder:1px solid #2ea23b !important;\n\t\t\t\t\t\t// padding: 8px 18px 3px!important;\n\t\t\t\t\t\t&.ticketSmall {\n\t\t\t\t\t\t\t// padding: 4px 13px 0 !important;\n\t\t\t\t\t\t\t// top: 2px;\n\t\t\t\t\t\t\tborder: 1px solid $color_forest_green_approx!important;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\ta.orangeBtn {\n\t\t\t\t\t\tbackground: $blaze_orange;\n\t\t\t\t\t\tcolor: $white;\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\t// padding: 6px 10px 7px !important;\n\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\tbackground: $color_orange_roughy_approx;\n\t\t\t\t\t\t\ttext-decoration: none !important;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t&.msgBar {\n\t\t\t\t\tli {\n\t\t\t\t\t\tfloat: none;\n\t\t\t\t\t\tmargin: 0 -2px;\n\t\t\t\t\t}\n\t\t\t\t\ta {\n\t\t\t\t\t\theight: 16px;\n\t\t\t\t\t\tbackground: $white;\n\t\t\t\t\t\tmargin-right: 5px;\n\t\t\t\t\t}\n\t\t\t\t\t.aReplacement {\n\t\t\t\t\t\theight: 16px;\n\t\t\t\t\t\tbackground: $white;\n\t\t\t\t\t\tmargin-right: 5px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.tableize {\n\t\t\t\t\tdisplay: table;\n\t\t\t\t}\n\t\t\t\tspan {\n\t\t\t\t}\n\t\t\t\t.playBtn {\n\t\t\t\t\ttop: 0;\n\t\t\t\t}\n\t\t\t\t.claim {\n\t\t\t\t\tfloat: right;\n\t\t\t\t}\n\t\t\t\t.buttonSpinner,\n\t\t\t\t.buttonMsg {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\ttop: 3px;\n\t\t\t\t\tleft: 4px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.greenBtn {\n\t\t\t\tfont-family: $fontRoboto;\n\t\t\t\tpadding: 2px 17px;\n\t\t\t\theight: 34px;\n\t\t\t\tdisplay: table-cell;\n\t\t\t\tvertical-align: middle;\n\t\t\t\tfont-size: 16px;\n\t\t\t\ttext-transform: none;\n\t\t\t\tborder: 0;\n\t\t\t\tcursor: pointer;\n\t\t\t\tmargin-right: 10px;\n\n\t\t\t\tpadding: 9px 20px;\n\t\t\t\theight: inherit;\n\t\t\t\t//Instead of the line below you could use @include border-radius($radius, $vertical-radius)\n\t\t\t\tborder-radius: 4px;\n\t\t\t\tcolor: $white !important;\n\t\t\t\tmin-height: 18px;\n\n\t\t\t\tbackground: $color_apple_approx !important;\n\t\t\t\t&:hover {\n\t\t\t\t\ttext-decoration: none !important;\n\t\t\t\t\tbackground: $color_malachite_approx !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.eventInfoWide {\n\t\t\t\tfont-size: 12px;\n\t\t\t\tline-height: 15px;\n\t\t\t\tmargin-bottom: 13px;\n\t\t\t\ta {\n\t\t\t\t\tcolor: $color_tangerine_approx;\n\t\t\t\t\t\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tcolor: $color_tangerine_approx;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.btn {\n\t\t\t\ti {\n\t\t\t\t\tpadding: 0 7px 0 0;\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\t\t\t\n\t\t\t}\n\t\t\t.simpleBtn{\n\t\t\t\tdisplay: inline-block;\n\t\t\t    margin: 0 4px 0 0;\n\t\t\t    padding: 4px 8px;\n\t\t\t    border-radius: 5px;\n\t\t\t    border: 1px solid #ccc;\n\t\t\t    font-size: 11px !important;\n\t\t\t    background: #fff;\n\t\t\t    color: #444;\t\t\t\t\n\t\t\t}\n\t\t\t.TicketLink span,\n\t\t\t.orangeBtn span {\n\t\t\t\tfont: 14px/15px Arial,'Open Sans',sans-serif!important;\n\n\t\t\t\ti {\n\t\t\t\t\t// margin-right: 5px;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t    left: 10px;\n\t\t\t    \ttop: 5px;\n\t\t\t\t}\n\t\t\t}\n\t\t\ta.fbLinkWide {\n\t\t    \tcolor: #fff !important;\n\t\t    \tbackground: #3B5998 !important;\n\t\t\t    border: 1px solid transparent !important;\n\t\t\t    i.fui-facebook{\n\t\t\t    \tcolor:#FFF;\n\t\t\t    }\n\t\t\t    &:hover{\n\t\t\t    \tcolor:#fff !important;\n\t\t\t    \tbackground: #1919f3 !important;\n\t\t\t    }\n\t\t    }\n\t\t    &.blackBack{\n\t\t    \t.eventsList .rowView .rowColumn .simpleBtn{\n\t\t\t\t\tbackground:#181818;\t\t\t\n\t\t\t\t\tcolor:#eee;\t\n\t\t\t\t\t&:hover{\n\t\t\t\t\t\tbackground:#000;\n\t\t\t\t\t}\t\n\t\t\t\t}\n\t\t\t\t.fbLinkWide{\n\t\t\t\t\tbackground: #3B5998 !important;\n    \t\t\t\tborder: none !important;\n    \t\t\t\tborder: 1px solid transparent !important;\t\t\t\n    \t\t\t\t&:hover{\n    \t\t\t\t\tbackground: #153a85 !important;\n    \t\t\t\t\tcolor: #fff !important;;\n    \t\t\t\t}\n\t\t\t\t}\t\t\t\t\n\t\t    }\n\t\t    \n\t\t//General Styles\n\t\t\t\n\t\t\timg {\n\t\t\t\tmax-width:100%;\n\t\t\t\theight:auto;\n\t\t\t\tborder:none;\n\t\t\t\tbackground:none;\n\t\t\t}\n\t\t\t.preLoader {\n\t\t\t\tdisplay: table;\n\t\t\t\tmargin: 140px auto;\n\t\t\t}\n\t\t\t.fui-plus-circle {\n\t\t\t\tcursor: pointer;\n\t\t\t\tcolor:#797979;\n\t\t\t}\n\t\t\t.summaryToggle:hover .fui-plus-circle{\n\t\t\t\tcolor:#444;\t\n\t\t\t}\n\t\t\th2.date {\n\t\t\t\tfont-size: 20px;\n    \t\t\tmargin: 0 0 5px;\n\t\t\t}\n\n\t\t//List Styles\n\t\t\tul {\n\t\t\t\tleft:0;\n\t\t\t\tlist-style:none;\n\t\t\t\tpadding-right:0;\n\t\t\t\tmargin-left: 0;\n\t\t\t}\n\t\t\tul.eventsList {\n\t\t\t\tmargin:0 !important;\n\t\t\t\tpadding:0 !important;\n\t\t\t}\n\t\t\t.thumbTileHolder {\n\t\t\t\twidth: 220px;\n\t\t\t\theight: 220px;\n\t\t\t\tposition: relative;\n\t\t\t}\n\t\t\t.viewListPics{\n\t\t\t\t.eventsList {\n\t\t\t\t\tlist-style: none;\n\t\t\t\t\tleft:0;\n\t\t\t\t\tpadding-left: 0;\n\t\t\t\t    margin-left: 0;\n\n\t\t\t\t\t.listEvent {\n\t\t\t\t\t\tbackground: $white;  \n\t\t\t\t\t\tbackground:#ffffffe0;  \n\t\t\t\t\t\tborder: 1px solid $white !important;\n\t\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\t\tmargin: 0 0 5px 0;\n\t\t\t\t\t\tpadding: 8px 8px 5px 16px;\n\t\t\t\t\t\tposition: relative;\n\t\t\t\t\t\tclear: both;\n\n\t\t\t\t\t\t.centeredBlock {\n\t\t\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\t\t}\t\t\t\n\n\t\t\t\t\t\t&:nth-child(2n) {\n\t\t\t\t\t\t\tbackground:#fbfbfbe0;\n\t\t\t\t\t\t\tborder-top: 1px solid $gallery;\n\t\t\t\t\t\t\tborder-bottom: 1px solid $gallery;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.summaryToggle  {\n\t\t\t\t\t\t\tposition:absolute;\n\t\t\t\t\t\t\t// top: 15px;\n\t    \t\t\t\t\t// left: 5px;\n\t    \t\t\t\t\ttop: 7px;\n\t    \t\t\t\t\tleft: 10px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t&.noExpand {\n\t\t\t\t\t\t\tpadding-left: 8px;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tarticle {\n\t\t\t\t\t\t\tmargin-bottom: 5px;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.details {\n\t\t\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.navWithBubbles .bubbleContent {\n\t\t\t\t\t\t\tbottom: 44px;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\th3.date {\n\t\t\t\t\t\t\tbackground:none;\n\t\t\t\t\t\t\tpadding:1px 0px 0px;\n\t\t\t\t\t\t\tfont-size:18px;\n\t\t\t\t\t\t\tfloat:left;\n\t\t\t\t\t\t\tmargin: 4px 6px 0 0;\n\n\t\t\t\t\t\t\tspan {\n\t\t\t\t\t\t\t\tcolor: #5d5d5d !important;\n\t\t\t\t\t\t\t\tbackground: none !important;\n\t\t\t\t\t\t\t\twidth: 65px;\n\n\t\t\t\t\t\t\t\t&.monthName {\t\t\t\t\n\t\t\t\t\t\t\t\t\tfont: 15px/17px \"Arial\", \"sans-serif\";\n\t\t\t\t\t\t\t\t\tpadding: 2px 0 0;\n\t\t\t\t\t\t\t\t\theight: 15px;\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t&.dayNameAbb {\n\t\t\t\t\t\t\t\t\ttext-transform: none;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t&.dayNum {\t\n\t\t\t\t\t\t\t\t    font: 35px/35px \"Raleway\", \"Arial\", \"sans-serif\";\n\t\t\t\t\t\t\t\t    height: 39px;\t\t\n\t\t\t\t\t\t\t\t    position: relative;\n\t\t\t\t    \t\t\t\ttop: -3px;\t\t    \n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t&.yearNum{\n\t\t\t\t\t\t\t\t\tcolor: #999 !important;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.eventPosterArea {\n\t\t\t\t\t\t\tmax-height: 140px;\n\t\t\t\t\t\t\twidth: 125px;\n\t\t\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t\t\tfloat: left;\n\n\t\t\t\t\t\t\timg {\n\t\t\t\t\t\t\t\t//width: 125px !important;\n\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\theight:auto;\n\t\t\t\t\t\t\t\tmargin: 7px 0 0;\n\t\t\t\t\t\t\t\t// max-height: 210px;\n\t\t\t\t\t\t\t\tmax-height: none;\n\t\t\t\t\t\t\t\tbackground: $color_gray_nurse_approx;\n\t\t\t\t\t\t\t\tmax-width: 100%;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t&.large{\n\t\t\t\t\t\t\t\twidth:350px;\n\t\t\t\t\t\t\t\timg{\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\timg.defaultPic {\n\t\t\t\t\t\t\t\topacity: .3;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.bandPicBox img {\n\t\t\t\t\t\t\t\tmargin: 0 auto;\n\t\t\t\t\t\t\t\theight: auto;\n\t\t\t\t\t\t\t\tmin-width: 41px;\n\t\t\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.listingBody, .controlbar.moveLeft {\n\t\t\t\t\t\t\tmargin-left: 215px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.listingBody {\n\t\t\t\t\t    \t\n\t\t\t\t\t    \th3 {\n\t\t\t\t\t    \t\tmargin-bottom:12px;\n\t\t\t\t\t    \t\t.atText{\n\t\t\t\t\t\t        \tfont-size:12px;\n\t\t\t\t\t\t        }\n\t\t\t\t\t    \t}\n\t\t\t\t\t    \tp {\n\t\t\t\t\t    \t\tmargin-bottom:4px;    \n\t\t\t\t\t    \t\tpadding: 0;\n\t\t\t\t\t    \t}\n\t\t\t\t\t    }\n\n\t\t\t\t\t\t.details {\n\t\t\t\t\t\t\tmargin-bottom: 4px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.eventLogistics {\n\t\t\t\t\t\t\theight: inherit;\n\t\t\t\t\t\t\tmargin-bottom: 3px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.venueInfo .detailsRow {\n\t\t\t\t\t\t\twidth: 70%;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.fullInfo {\n\t\t\t\t\t\t    margin-top: 15px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.eventInfoWide {\n\t\t\t\t\t\t\t// font-size: 12px;\n\t\t\t\t\t\t\t// line-height: 15px;\n\t\t\t\t\t\t\t// margin-bottom: 13px;\n\t\t\t\t\t\t\t// a {\n\t\t\t\t\t\t\t// \tcolor: $color_tangerine_approx;\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t// \t&:hover {\n\t\t\t\t\t\t\t// \t\tcolor: $color_tangerine_approx;\n\t\t\t\t\t\t\t// \t}\n\t\t\t\t\t\t\t// }\n\t\t\t\t\t\t}\n\t\t\t\t\t\tspan {\n\t\t\t\t\t\t\t&.monthName, &.dayNum, &.yearNum {\n\t\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t\t\ttext-align: center;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.monthName {\n\t\t\t\t\t\t\t\tfont: 14px/20px $fontRoboto, $fontStandard, $fontSans;\n\t\t\t\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\t\t\t\tpadding: 2px 0;\n\t\t\t\t\t\t\t\twidth: 80px;\n\t\t\t\t\t\t\t\tfont-weight: bold;\n\t\t\t\t\t\t\t\theight: 19px;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.dayNum {\n\t\t\t\t\t\t\t\tfont: 60px/63px $fontRoboto, $fontStandard, $fontSans;\n\t\t\t\t\t\t\t\tfont-weight: bold;\t\t\n\t\t\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t\t\t\twidth: 80px;\n\t\t\t\t\t\t\t\theight: 80px;\n\t\t\t\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.yearNum {\n\t\t\t\t\t\t\t\tcolor: #999 !important;\n\t\t\t\t\t\t\t    font-size: 10px;\n\t\t\t\t\t\t\t    position: relative;\n\t\t\t\t\t\t\t    top: -8px;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\n\t\t\t\t\t&.largePics{\n\t\t\t\t\t\t.listEvent{\n\t\t\t\t\t\t\t.eventPosterArea{\n\t\t\t\t\t\t\t\twidth:330px;\n\t\t\t\t\t\t\t\tmax-height:none;\n\t\t\t\t\t\t\t\t.bandPics{\n\t\t\t\t\t\t\t\t\t//background:#222;\n\t\t\t\t\t\t\t\t\tdisplay:flex;\t\t\t\t\n\t\t\t\t\t\t\t\t\tjustify-content: center;\t\t\t\t\n\t\t\t\t\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t\tmax-height: 500px;\n\t\t\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\t\t\tfloat:none;\n\t\t\t\t\t\t\t\t\t\twidth:50%;\t\n\t\t\t\t\t\t\t\t\t\theight: auto;\n\t\t\t\t\t\t\t\t\t\taspect-ratio:1 / 1;\n\t\t\t\t\t        \t\t\tgap: 0px;\n\t\t\t\t\t        \t\t\talign-content:center;\n\t\t\t\t\t        \t\t\t// justify-content: center;\n\t\t\t\t\t\t\t\t\t\t// align-items: center;\t\t\n\t\t\t\t\t\t\t\t\t\t// display: block;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t&.oneBand{\n\t\t\t\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\timg{\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.listingBody, .controlbar.moveLeft{\n\t\t\t\t\t\t\t\tmargin-left:420px !important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t//Artist View / Simple Compact Event List View\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t\t.viewPosters{\n\t\t\t\tmax-width:1140px;\n\t\t\t\tul.eventsList{\n\t\t\t\t\tdisplay:flex;\n\t\t\t\t\tflex-wrap: wrap;\t\t\t\t\t\n\t\t\t\t\tjustify-content: space-between;\n\t\t\t\t\tlist-style:none;   \n\t\t\t\t\tmargin: 0 !important;\n    \t\t\t\tpadding: 0 !important;\n    \t\t\t\t//* TEMPORARY FOR TESTING: */ background:#eee;\n\t\t\t\t\tli.listEvent{\n\t\t\t\t\t\tbox-sizing:border-box;\n\t\t\t\t\t\twidth:33%;\n\t\t\t\t\t\twidth:calc(33% - 20px);\t\n\t\t\t\t\t\tmargin-bottom: 20px;\n\t\t\t\t        gap: 0px;\n\t\t\t\t\t\tdisplay:flex;        \n\t\t\t\t\t\tjustify-content: space-between;\n\t\t\t\t\t\talign-items: center;\t\t\n\t\t\t\t\t\talign-content: flex-start;\n\t\t\t\t\t\t// display: block;\n\t\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\t\tposition:relative;\n\t\t\t\t\t\t// /* TEMPORARY FOR TESTING: */ background:#fff;\n\t\t\t\t\t\t.summaryToggle {\n\t\t\t\t\t\t\tposition:absolute;\n\t\t\t\t\t\t\ttop:1px;\n\t\t\t\t\t\t\tleft:2px;\n\t\t\t\t\t\t\t.musicidb-events-integration .fui-plus-circle{\n\t\t\t\t\t\t\t\tcolor:#bbb;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdiv.eventPosterArea{\n\t\t\t\t\t\t\tbackground:#333;\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\tmargin-bottom: 10px;\n\t\t\t\t\t\t\t/* This height works with a container width 1150px; */ height: 350px; \n\t\t\t\t\t\t\toverflow:hidden;\n\t\t\t\t\t\t\tdisplay: flex;\n    \t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\t\ta{\n\t\t\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\t\t\tmargin: 0 auto;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.eventImg{\n\t\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.bandPics{\n\t\t\t\t\t\t\t\t//background:#222;\n\t\t\t\t\t\t\t\tdisplay:flex;\t\t\t\t\n\t\t\t\t\t\t\t\tjustify-content: center;\t\t\t\t\n\t\t\t\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\t\tfloat:none;\n\t\t\t\t\t\t\t\t\twidth:50%;\t\n\t\t\t\t\t\t\t\t\theight: auto;\n\t\t\t\t\t\t\t\t\taspect-ratio:1 / 1;\n\t\t\t\t        \t\t\tgap: 0px;\n\t\t\t\t        \t\t\talign-content:center;\n\t\t\t\t        \t\t\t// justify-content: center;\n\t\t\t\t\t\t\t\t\t// align-items: center;\t\t\n\t\t\t\t\t\t\t\t\t// display: block;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t&.oneBand{\n\t\t\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdiv.listingBody{\n\t\t\t\t\t\t\tpadding:0 10px;\n\t\t\t\t\t\t\tbox-sizing:border-box;\n\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\th3.date{\n\t\t\t\t\t\t\t\tmargin-bottom:8px;\n\t\t\t\t\t\t\t\tfont-size: 18px;\n\t\t\t\t\t\t\t\tline-height:1.1em;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\th3.titleofevent{\n\t\t\t\t\t\t\t\tmargin-bottom:12px;\n\t\t\t\t\t\t\t\t.cardFloater{\n\t\t\t\t\t\t\t\t\tpadding-top:0;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.eventInfoArea{\n\t\t\t\t\t\t\t\t.marginBottom{\n\t\t\t\t\t\t\t\t\tmargin-bottom:5px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tul.controlbar {\n\t\t\t\t\t\t\tleft:0;\n\t\t\t\t\t\t\tmargin-left:0;\n\t\t\t\t\t\t\tpadding:0;\n\t\t\t\t\t\t\tmargin:0;    \n\t\t\t\t\t\t\tlist-style:none;    \n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\t\tflex-wrap: nowrap;\n    \t\t\t\t\t\tjustify-content: center;\n    \t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\t\tli{\n\t\t\t\t\t\t\t\ta{\n\t\t\t\t\t\t\t\t\t&:hover, &:active, &:focus{\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.viewCompact{\n\t\t\t\t.rowView {\n\t\t\t\t        width: 100%;\n\t\t\t\t        display:table;\n\t\t\t\t\t\t.rowColumn{\n\t\t\t\t\t\t\tdisplay:table-cell;    \n\t\t\t\t\t\t\ttext-align: left;\n\t\t\t\t\t\t\tvertical-align: top;\n\t\t\t\t\t\t\twidth: 20%;    \n\t\t\t\t\t\t\tpadding: 5px 5px;\n\t\t\t    \t\t\tbox-sizing: border-box;\n\t\t\t    \t\t\t.cardFloater{\n\t\t\t    \t\t\t\t\n\t\t\t    \t\t\t}\n\t\t\t\t\t\t    &.venueColumn{\n\t\t\t\t\t\t        width:20%;\n\t\t\t\t\t\t    }\n\t\t\t\t\t\t    &.detailsColumn{\n\t\t\t\t\t\t    \tposition: relative;\n\t    \t\t\t\t\t\ttop: -13px;\n\t\t\t\t\t\t    }\n\t\t\t    \t\t\t\n\t\t\t    \t\t\t&.buttonsColumn{\n\t\t\t    \t\t\t\twidth:26%;    \n\t\t\t    \t\t\t\ttext-align: right;\n\t\t\t\t\t\t\t\tmin-width: 220px;\n\t\t\t    \t\t\t}\n\t\t\t    \t\t\t\n\t\t\t    \t\t\tspan.yearNum{\n\t\t\t    \t\t\t\ttext-align:left;\n\t\t\t    \t\t\t\tdisplay:inline;\n\t\t\t    \t\t\t\ttop:0;\n\t\t\t    \t\t\t}\n\t\t\t    \t\t\t\n\t\t\t    \t\t\t.simpleBtn{\n\t\t\t    \t\t\t\tdisplay: inline-block;\n\t\t\t\t\t\t\t    // margin: 0 4px 0 0;\n\t\t\t\t\t\t\t    // padding: 4px 8px;\n\t\t\t\t\t\t\t    // border-radius: 5px;\n\t\t\t\t\t\t\t    // border: 1px solid #ccc;\n\t\t\t\t\t\t\t    // \n\t\t\t\t\t\t\t    font-size: 11px !important;\n\t\t\t\t\t\t\t    // background: #fff;\n\t\t\t\t\t\t\t    // color: #444;\t\t\t\t\t\t    \n\t\t\t    \t\t\t\t&.fbLinkWide{\n\t\t\t    \t\t\t\t\tdisplay:inline-block;\n\t\t\t    \t\t\t\t}\n\t\t\t    \t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.locationColumn {\n\t\t\t\t        \twidth:14%;\n\t\t\t\t    \t}\n\t\t\t\t\t    .simpleTitle {\n\t\t\t\t\t        font-size: 14px;\n\t\t\t\t\t        line-height: 15px;\n\t\t\t\t\t        margin-bottom: 6px;\n\t\t\t\t\t        \n\t\t\t\t\t    }\n\t\t\t\t    }\n\t\t\t}\n\t\t\t.eventInfoArea {\n\t\t\t\t.left {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t}\n\t\t\t\t.venueInfoTile {\n\t\t\t\t\t@extend %extend_27;\n\t\t\t\t}\n\t\t\t\t.tilesContainer {\n\t\t\t\t\t@extend %extend_27;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t//Strip & Reset WYSIWYG Content for Clean Display\n\t\t\t.eventDescription {\n\t\t\t\tcolor: $color_cape_cod_approx !important;\n\t\t\t\tfont-family:Arial, sans-serif !important;\n\t\t\t\tfont-size:16px !important;\n\t\t\t\tline-height:22px !important;\n\t\t\t\tspan, div, p, \n\t\t\t\th1, h2, h3, h4, h5, h6{\n\t\t\t\t\tcolor:$color_cape_cod_approx !important;\n\t\t\t\t\tbackground:none !important;\n\t\t\t\t}\n\t\t\t\ta{\n\t\t\t\t\tbackground:none !important;\t\n\t\t\t\t}\n\t\t\t\tspan, div, p {\n\t\t\t\t\tfont-family:Arial, sans-serif !important;\n\t\t\t\t\tfont-size:16px !important;\n\t\t\t\t\tline-height:22px !important;\n\t\t\t\t}\n\t\t\t\tdiv, p {\n\t\t\t\t\tmargin-bottom:15px !important;\n\t\t\t\t\tpadding:0 !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.thumbTileHolder {\n\t\t\t\twidth: 220px;\n\t\t\t\theight: 220px;\n\t\t\t\tposition: relative;\n\t\t\t}\n\n\t\t\t.showDetailsLink:not(.simpleBtn) {\n\t        \t//padding-top: 13px;\n\t        \t//display: inline-block;\n\t        }\n\n\t\t\t.cardFloater {\n\t\t\t\tposition: relative;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tpadding-top: 9px;\n\t\t\t\tpadding-top:13px; //Better on dirty dottys..\n\t\t\t\t\n\t\t\t\t&:hover {\n\t\t\t\t\t.hoverArtist {\n\t\t\t\t\t\tcolor: $color_mine_shaft_approx;\n\t\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t\t}\n\t\t\t\t\t.thumbTileHolder {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.thumbTileHolder {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tbottom: 28px;\n\t\t\t\t\tleft: -10px;\n\t\t\t\t\toverflow: hidden; /*beta change */\n\t\t\t\t\tz-index: 3;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.linkTileHolder {\n\t\t\t\t\tborder: 8px solid $color_cararra_approx;\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.socialBubbleIcons {\t\t\t\t\t\n\t\t\t\t\tleft:auto;\n\t\t\t\t\tright: -9px;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tz-index: 3;\n\t\t\t\t\tbottom: -1px;\n\t\t\t\t\theight: 25px;\n\t\t\t\t\tpadding-right:0;    \t\t\n\t\t\t\t\tmargin: 0 !important;\n\t\t\t    \tpadding: 0 !important;\n\t\t\t\t\t// left: 8px;\n\t\t\t\t\t\n\t\t\t\t\tli {\n\t\t\t\t\t\t@extend %extend_43;\n\n\t\t\t\t\t\ta.fbLink, a.facebook { background: url(\"../images/social-icons.png\") no-repeat -133px -98px; }\n\t\t\t\t\t\ta.fbLink:hover, a.facebook:hover { background: url(\"../images/social-icons.png\") no-repeat -133px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.twitterLink { background: url(\"../images/social-icons.png\") no-repeat -67px -98px; }\n\t\t\t\t\t\ta.twitterLink:hover { background: url(\"../images/social-icons.png\") no-repeat -67px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.otherLink { background: url(\"../images/social-icons.png\") no-repeat -263px -98px; }\n\t\t\t\t\t\ta.otherLink:hover { background: url(\"../images/social-icons.png\") no-repeat -263px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.soundcloudLink { background: url(\"../images/social-icons.png\") no-repeat -100px -66px; }\n\t\t\t\t\t\ta.soundcloudLink:hover { background: url(\"../images/social-icons.png\") no-repeat -100px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.instagramLink { background: url(\"../images/social-icons.png\") no-repeat -166px -66px; }\n\t\t\t\t\t\ta.instagramLink:hover { background: url(\"../images/social-icons.png\") no-repeat -166px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.googlePlusLink { background: url(\"../images/social-icons.png\") no-repeat -199px -98px; }\n\t\t\t\t\t\ta.googlePlusLink:hover { background: url(\"../images/social-icons.png\") no-repeat -199px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.linkedinLink { background: url(\"../images/social-icons.png\") no-repeat -133px -66px; }\n\t\t\t\t\t\ta.linkedinLink:hover { background: url(\"../images/social-icons.png\") no-repeat -133px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.pinterestLink { background: url(\"../images/social-icons.png\") no-repeat -232px -98px; }\n\t\t\t\t\t\ta.pinterestLink:hover { background: url(\"../images/social-icons.png\") no-repeat -232px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.bandcampLink { background: url(\"../images/social-icons.png\") no-repeat -2px -66px; }\n\t\t\t\t\t\ta.bandcampLink:hover { background: url(\"../images/social-icons.png\") no-repeat -2px -2px; }\n\t\t\t\t\t\ta.reverbLink { background: url(\"../images/social-icons.png\") no-repeat -199px -66px; }\n\t\t\t\t\t\ta.reverbLink:hover { background: url(\"../images/social-icons.png\") no-repeat -199px -2px; }\n\t\t\t\t\t\ta.webLink { background: url(\"../images/social-icons.png\") no-repeat -67px -66px; }\n\t\t\t\t\t\ta.webLink:hover { background: url(\"../images/social-icons.png\") no-repeat -67px -2px; }\n\n\t\t\t\t\t\ta.youtubeLink { background: url(\"../images/social-icons.png\") no-repeat -2px -98px; }\n\t\t\t\t\t\ta.youtubeLink:hover { background: url(\"../images/social-icons.png\") no-repeat -2px -34px; }\n\t\t\t\t\t\ta.vevoLink { background: url(\"../images/social-icons.png\") no-repeat -35px -66px; }\n\t\t\t\t\t\ta.vevoLink:hover { background: url(\"../images/social-icons.png\") no-repeat -35px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.itunesLink { background: url(\"../images/social-icons.png\") no-repeat -232px -66px; }\n\t\t\t\t\t\ta.itunesLink:hover { background: url(\"../images/social-icons.png\") no-repeat -232px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.spotLink { background: url(\"../images/social-icons.png\") no-repeat -355px -66px; }\n\t\t\t\t\t\ta.spotLink:hover { background: url(\"../images/social-icons.png\") no-repeat -355px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.wikiLink { background: url(\"../images/social-icons.png\") no-repeat -324px -66px; }\n\t\t\t\t\t\ta.wikiLink:hover { background: url(\"../images/social-icons.png\") no-repeat -324px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.storeLink { background: url(\"../images/social-icons.png\") no-repeat -293px -98px; }\n\t\t\t\t\t\ta.storeLink:hover { background: url(\"../images/social-icons.png\") no-repeat -293px -34px; }\n\t\t\t\t\t\ta {\n\t\t\t\t\t\t    width: 21px;\n\t\t\t\t\t\t    height: 21px;\n\t\t\t\t\t\t    opacity: .8;\n\t\t\t\t\t\t    display: block;\n\t\t\t\t\t\t   \tbackground-size: 381px 123px !important;\n\t\t\t\t\t\t    &:hover {\n\t\t\t\t\t\t\t\topacity: 1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\timg {\n\t\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\t\n\t\t\t\t.oneBand .bandPicBox {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\timg {\n\t\t\t\t\t\twidth:100% !important;\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\t\n\t\t\t\t.thumbTile img {\n\t\t\t\t\tborder: none;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\tmax-width: 100%;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.thumbTile, .thumbTile .frame {\n\t\t\t\theight: 204px; /*without this the short images cause overlay text to not stick to bottom */\n\t\t\t}\n\t\t\t.thumbTile {\n\t\t\t\tposition: relative;\n\t\t\t\t//width: 220px;\n\t\t\t\t//height: 220px;    \n\t\t\t\t//height: 220px;\n\t\t\t\t\n\t\t\t\tcolor: $color_mountain_mist_approx !important;\n\t\t\t\tdisplay: block;\n\t\t\t\tbackground: $white;\n\n\t\t\t\t.tileData {\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\theight: 106px;\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tpadding:3px 10px;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\tbackground: linear-gradient(to bottom, $white_84 0, $white_84 1%, $white_100 100%);\n\t\t\t\t\tfilter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d6ffffff', endColorstr='#ffffff', GradientType=0);\n\n\t\t\t\t\tp {\n\t\t\t\t\t\tmargin-bottom: 2px;\n\t\t\t    \t\tline-height: 13px;\n\t\t\t    \t\tfont-size: 12px;\n\t\t\t\t\t}\n\n\t\t\t\t\th3 {\n\t\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\t\tcolor: $color_fuscous_gray_approx;\n\t\t\t\t\t\t// line-height: 19px;\n\t\t\t\t\t\t//font:17px/18px 'Roboto', Arial, sans-serif !important;\n\t\t\t\t\t\tfont: 18px/22px 'Roboto', Arial, sans-serif !important;\n    \t\t\t\t\tmargin-bottom: 5px;\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t&:hover {\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.frame {\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t//height: 220px;\n\t\t\t\t\tposition: relative;\n\t\t\t\t}\n\n\t\t\t\timg {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t\tdisplay: table-cell;\n\t\t\t\t}\n\n\t\t\t\t.bandPicBox {\n\t\t\t\t\twidth: 73px;\n\t\t\t\t\theight: 73px;\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\tbackground: $color_woodsmoke_approx;\n\t\t\t\t}\n\n\t\t\t\th3 {\n\t\t\t\t\tfont: 20px/19px 'Roboto', Arial, sans-serif !important;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.fourSet .bandPicBox {\n\t\t\t\t\twidth: 110px;\n\t\t\t\t\theight: 110px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.bandPicBox {\n\t\t\t\twidth: 62px;\n\t\t\t\theight: 62px;\n\t\t\t\tdisplay: block;\n\t\t\t\toverflow: hidden;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin-right: 0px;\n\t\t\t\tmargin-bottom: 0px;\n\t\t\t\tbox-sizing:border-box;\n\t\t\t\ttext-align: center;\n\n\t\t\t\t&:nth-child(2n) {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.eventsList .listEvent .oneBand .bandPicBox {\n\t\t\t\twidth: 125px;\n\t\t\t\theight: auto;\n\t\t\t\tfloat: none;\n\t\t\t\tmargin-right: 0;\n\t\t\t\timg {\n\t\t\t\t\twidth:100% !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\n\t\t//Tabs\n\t\t\t.musicidb-tabs {\n\t\t\t\t&.horizontal {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tclear: both;\n\t\t\t\t}\n\t\t\t\tul.musicidb-tabNav {\n\t\t\t\t\tleft:0;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tpadding:0;    \n\t\t\t\t\tmargin: 0 0 7px 0 !important;\n\t\t\t\t\tli {\n\t\t\t\t\t\tlist-style:none;\n\t\t\t\t\t\tfloat:left;\n\t\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\t\tmargin:0 8px 8px 0;\n\t\t\t\t\t\ta {\n\t\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\t\t// padding:5px;\n\t\t\t\t\t\t\tbackground:none;\t\t\t\t\t    \n\t\t\t\t\t\t    padding: 10px 16px;\n\t\t\t\t\t\t    border-radius: 3px;\n\t\t\t\t\t\t    &:hover {\n\t\t\t\t\t\t    \tbackground: #333;\t\n\t\t\t\t\t\t    \tcolor:#FFF;\n\t\t\t\t\t\t    }\n\t\t\t\t\t\t}\n\t\t\t\t\t\t&.current a {\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tbackground: #ececec;\t\n\t\t\t\t\t\t\tcolor: #444;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\n\n\t\t\t\t> a {\n\t\t\t    \tfont: 17px/20px 'Roboto',Arial,sans-serif;\n\t\t\t    }\n\n\t\t\t\tul.calViewButtons {\n\t\t\t\t\tfloat: right !important;\n\t\t\t\t\tposition: absolute !important;\n\t\t\t\t\tright: 5px;\n\t\t\t\t\tleft: inherit !important;\n\t\t\t\t\tz-index: 3;\n\t\t\t\t\tpadding: 0 !important;\n\t\t\t\t\tli {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\tfloat: left;   \n\t\t\t\t\t\tmargin: 0 0px 8px 0;\n\n\t\t\t\t\t\ta {\n\t\t\t\t\t\t\tborder: 1px solid #eee !important;\n\t\t\t\t\t\t\tbackground:#FFF !important;\n\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t\tpadding: 11px;\n\t\t\t\t\t\t\tfont-size: 23px;\n\t\t\t\t\t\t\tline-height: 20px;\n\t\t\t\t\t\t\tcolor: #5d5d5d;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\t\tcolor: $black;\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tborder: 1px solid #eee !important;\n\t\t\t\t\t\t\t\t// border-bottom: 1px solid #000 !important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t&#listViewToggle {\n\t\t\t\t\t\t\t\tborder-radius:3px 0px 0px 3px;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t&#calViewToggle{\n\t\t\t\t\t\t\t\tborder-radius:0px 3px 3px 0px;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t&.current a {\n\t\t\t\t\t\t\tcolor: $black;\n\t\t\t\t\t\t\tborder: 1px solid #eee !important;\n\t\t\t\t\t\t\t// border-bottom: 1px solid #000 !important;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.musicidb-tab {\n\t\t\t\tdisplay: none;\n    \t\t\tclear: both;\n\t\t\t\t&.current {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.mediaTabNav {\n\t\t\t\tdisplay: block;\n\t\t\t\tfloat: left;    \n\t\t\t\tmargin: 0;\n\t\t\t\tlist-style: none;\n    \t\t\tpadding: 0;\n\n\t\t\t\tli {\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tmargin-right: 5px;\n\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\ta {\n\t\t\t\t\t\t// padding: 5px 8px;\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tpadding:1px 8px 0px;\n\t\t\t\t\t\t// background:#f1f1f1;\n\t\t\t\t\t\tcolor: #9a9a9a;\n\t\t\t\t\t\t//Instead of the line below you could use @include border-radius($radius, $vertical-radius)\n\t\t\t\t\t\tborder-radius: 0 0 5px 5px;\n\t\t\t\t\t\tfont-family: Arial, sans-serif;\n\t\t\t\t\t\tline-height: 24px;\n\t\t\t\t\t\tfont-size: 18px;\t\t\t\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\tbackground: $color_gallery_approx;\n\t\t\t\t\t\t\tcolor: $color_storm_dust_approx;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t&.current a {\n\t\t\t\t\t\tbackground: $color_gallery_approx;\n\t\t\t\t\t\tcolor: $color_storm_dust_approx;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t//Modal Styles\n\t\t\t.eventDetailModal {\n\t\t\t\twidth: 60%;\n\t\t\t\tleft: 0 !important;\n\t\t\t\tright: 0 !important;\n\t\t\t\ttop: 39px !important;\n\t\t\t\tmargin: 0 auto;\n\t\t\t\tbox-sizing: border-box;\n\t        \tmax-height: 95%;\n\t        \tp {\n\t        \t\tmargin-bottom:5px;\n\t        \t}\n\n\t\t\t\t.cardsSlideWrap {\n\t\t\t\t\twidth: 90%;\n\t\t\t\t\tmax-width: 770px;\n\t\t\t\t\tmargin: 0 auto;\n\t\t\t\t\tpadding:0;\n\t\t\t\t\tmargin-bottom:14px;\n\t\t\t\t\n\t\t\t\t\t#artistCardsSlider {\n\t\t\t\t        padding:0 !important;\n\t\t\t\t\t\tbackground: #dcdcdc;\n\t\t\t\t\t\tmargin: 0 auto 0px;\n\n\t\t\t\t        .mediaHolder {\n\t\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\t    color: #656565;\n\t\t\t\t\t\t    background:#FFF;\n\t\t\t\t\t\t    padding:7px;\n\t\t\t\t\t\t    width: 66% !important;\n    \t\t\t\t\t\tmargin: 5px 0 0 9px !important;\n\t\t\t\t\t\t    box-sizing:border-box;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.cardFloater {\n\t\t\t\t\t\t\tpadding-top: 0;    \t\t\t\t\t\t\t\n\t\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\t\tmax-width: 28%;\n\t\t\t\t\t\t    width: 28% !important;\n\t\t\t\t\t\t    margin: 5px 0 0 2% !important;\n\t\t\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t\t\t\t.thumbTile, .linkTileHolder, .frame {\t\n\t\t\t\t\t\t\t\tmax-width:100%;\n\t\t\t\t\t\t\t\tborder:none;\n\t\t\t\t\t\t\t}\t\t\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.linkTileHolder {\n\t\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.thumbTile {\n\t\t\t\t\t\t\twidth: 250px;\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\theight: 250px;\n\t\t\t\t\t\t\tbox-sizing:border-box;\n\t\t\t\t\t\t\tpadding:7px;\n\n\t\t\t\t\t\t\t.frame {\n\t\t\t\t\t\t\t\theight:250px;\n\t\t\t\t\t\t\t\tmax-height: 100%;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.tileData {\n\t\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\t\tmax-width: 100%;\n\t\t\t\t\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t\t\t    \t\t-webkit-box-sizing: border-box;\n\t\t\t\t\t\t\t\tbox-sizing: border-box;\n\n\t\t\t\t\t\t\t\t.socialBubbleIcons {\n\t\t\t\t\t\t\t\t\tbottom:inherit;\n\t\t\t\t\t\t\t\t\ttop: 73px;\n\n\t\t\t\t\t\t\t\t\tli a {\n\t\t\t\t\t\t\t\t\t\tbackground-size: 381px 123px !important;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.artistMediaTabs {\n\t\t\t\t\t\t\theight: 208px;\n\t\t\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.artistMediaTab {\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tiframe {\n\t\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.current {\n\t\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.artistBio {\n\t\t\t\t\t\t\t\toverflow: auto;    \n\t\t\t\t\t\t\t\tbackground: white;\n\n\t\t\t\t\t\t\t\t.bioWrapper {\n\t\t\t\t\t\t\t\t\tpadding: 10px;\n\t\t\t\t\t\t\t\t\tdisplay: block;   \n\t\t\t\t\t    \t\t\tcolor: #5f5f5f;\n\t\t\t\t\t    \t\t\tfont:14px/18px Arial, sans-serif !important;\n\t\t\t\t\t\t\t\t\tspan {\n\t\t\t\t\t\t\t\t\t\tbackground: none !important;\n\t\t\t\t\t\t\t\t\t\tcolor: #5f5f5f !important;\n\t\t\t\t\t\t\t\t\t\tfont:14px/18px Arial, sans-serif !important;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.mediaHolder.noMedia{\n\t\t\t\t\t\t\tdisplay:none;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.noMedia {\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t.thumbTile {\t\n\t\t\t\t\t\t\t\tbackground: none;\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t.tileData {\n\t\t\t\t\t\t\t\t\tbackground: none;\n\t\t\t\t\t\t\t\t\t// left: 260px;\n\t\t\t\t\t\t\t\t\t// bottom: -8px;\n\t\t\t\t\t\t\t\t\t// width: 172%;\n\t\t\t\t\t\t\t\t\tleft: 210px;\n    \t\t\t\t\t\t\t\tbottom: 60px;\n\t\t\t\t\t\t\t\t\twidth: 338px;\n\t\t\t\t\t\t\t    \tmax-width: none;\n\t\t\t\t\t\t\t\t\t.socialBubbleIcons {\n\t\t\t\t\t\t\t\t\t\tleft:8px;\n\t\t\t\t\t\t\t\t\t\tright:0;\n\t\t\t\t\t\t\t\t\t\tli {\n\t\t\t\t\t\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\t\t\t\t\t} \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t    }\n\n\t\t\t\t    #artistCardsSlider, \n\t\t\t\t\t#artistCardsSlider ul.slides , \n\t\t\t\t\t#artistCardsSlider .slides li.slick-slide {\n\t\t\t\t\t\theight: 270px !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t#artistCardsList {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\n\t\t\t\t\t> h2 {\n\t\t\t\t\t\ttext-align: center;\n\t\t\t\t\t}   \n\t\t\t\t\t.artistsList {\n\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t.cardFloater {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t// text-align:left;\n\t\t\t\t\t\twidth: 236px;\n\t\t\t\t\t\tmargin: 0 auto 35px;\n\t\t\t\t\t}\n\n\t\t\t\t\t.linkTileHolder {\n\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t}\n\n\t\t\t\t\tspan.stat {\n\t\t\t\t\t\tbackground:none;\n\t\t\t\t\t\tcolor:#888\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.artistMediaExpander {\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\tpadding-bottom: 10px;\n\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\tfont-size: 22px;\n\t\t\t\t\ti {\n\t\t\t\t\t\t&.leftIcon {\n\t\t\t\t\t\t\tmargin-right: 12px;\n\t\t\t\t\t\t    top: 3px;\n\t\t\t\t\t\t    position: relative;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t&.expandCollapseIcon {\n\t\t\t\t\t\t\tfloat: right;\n\t\t\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.artistMediaSection {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tiframe {\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t.modalTickets {\n\t\t\t\t\tmax-width: 770px;\t\t\t\t\t\n\t\t\t\t    padding: 9px 0;\n    \t\t\t\tmargin: 0 auto 20px;\n    \t\t\t}\n\t\t\t\t.playNowText {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tdisplay:none;\n\t\t\t\t\tmargin-right: 15px;\n\t\t\t\t\t// color: $color_desert_storm_approx;\n\t\t\t\t}\n\t\t\t\t.eventDescription{\n\t\t\t\t\tmin-height:250px;\n\t\t\t\t}\n\t\t\t\t.eventTopDetails, \n\t\t\t\t.eventDescription {\t\n\t\t\t\t\tpadding: 0;\t    \n\t\t\t\t    width: 770px;\n\t\t\t\t    max-width: 90%;\n\t\t\t\t    margin:0 auto 10px;\n\t\t\t\t}\n\t\t\t\t.eventTopDetails{\n\t\t\t\t\tmargin-top:5px;\n\t\t\t\t\th2.date {\n\t\t\t\t\t\tpadding-top:25px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.eventArtistStats {\n\t\t\t\tfloat: right;\n\t\t\t\tposition: relative;\n\t\t\t    top: 4px;\n\t\t\t\tspan {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tmargin-right: 5px;\n\t\t\t\t\t// color: $color_desert_storm_approx; \n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\tline-height: 19px;\n\t\t\t\t\t&.pageLink {\n\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t    position: relative;\n\t\t\t\t\t    color: #999;\n\t\t\t\t\t    top: 3px;\n\t\t\t\t\t}\n\t\t\t\t\ti {\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t}\n\t\t\t\t\ta {\n\t\t\t\t\t\t// color: $color_desert_storm_approx;\n\t\t\t\t\t\t// text-decoration: underline;\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\ttext-decoration: none;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t&:last-child {\n\t\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\t}\n\t\t\t\t\t&.stat {\n\t\t\t\t\t\t// background: $color_storm_dust_approx;\n\t\t\t\t\t\tpadding: 2px 5px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.musicidb-integration-mask {\n\t\t\t\tdisplay: none;\n\t\t\t\tposition: fixed;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tcursor:pointer;\n\t\t\t\twidth: 100% !important;\n\t\t\t\theight: 100% !important;\n\t\t\t\tz-index: 9000;\n\t\t\t\tbackground-color: rgba(0, 0, 0, 0.87);\n\t\t\t}\n\n\t\t\t.window {\n\t\t\t\tdisplay: none;\n\t\t\t\tposition: fixed;\n\t\t\t\tz-index: 9999;\n\t\t\t\tborder: 12px solid #ffffff;\n\t\t\t\tborder-radius: 10px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\tbackground-clip: padding-box;\n\t\t\t\tbackground: $color_desert_storm_approx;\n\t\t\t\twidth: 85%;\n\t\t\t\tmax-width: none;\n\t\t\t\tmin-width: 796px;\n\t\t\t\theight: 90%;\n\t\t\t\toverflow: auto;\n\t\t\t\tmin-height: inherit !important;\t\t\t\n\t\t\t\tpadding-bottom: 10px;\t\n\t\t\t}\n\n\t\t\t.modalClose {\n\t\t\t\ttext-transform: none;\n\t\t\t\tcolor: $color_fuzzy_wuzzy_brown_approx;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 5px;\n\t\t\t\tright: 10px;\n\t\t\t\tfont-size: 12px;\n\t\t\t\tfloat: right;\n\t\t\t\tmargin-bottom: 5px;\n\t\t\t\tpadding: 7px 6px 6px;\n\t\t\t\tborder: 1px solid $color_silver_approx;\n\t\t\t\tcolor: $color_tapa_approx !important;\n\t\t\t\tfont-size: 10px;\n\t\t\t\tline-height: 12px;\n\t\t\t\tposition: relative;\n\t\t\t\tz-index: 100;\n\t\t\t\tfont-size: 20px;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: $color_radical_red_approx;\n\t\t\t\t\tbackground: $white;\n\t\t\t\t\tcolor: $color_tundora_approx;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t/*Slider - there are two : \n\t\t#artistCardsSlider .slides,  \n\t\t#featured-events-slider\n\t\t*/\n\t\t\t.slick-slider {\n\t\t\t    position: relative;\n\t\t\t    display: block;\n\t\t\t    box-sizing: border-box;\n\t\t\t    -webkit-touch-callout: none;\n\t\t\t    -webkit-user-select: none;\n\t\t\t    -khtml-user-select: none;\n\t\t\t    -moz-user-select: none;\n\t\t\t    -ms-user-select: none;\n\t\t\t    user-select: none;\n\t\t\t    -ms-touch-action: pan-y;\n\t\t\t    touch-action: pan-y;\n\t\t\t    -webkit-tap-highlight-color: transparent;\n\t\t\t}\n\n\t\t\t.slick-list {\n\t\t\t    position: relative;\n\t\t\t    overflow: hidden;\n\t\t\t    display: block;\n\t\t\t    margin: 0;\n\t\t\t    padding: 0;\n\n\t\t\t    &:focus {\n\t\t\t        outline: none;\n\t\t\t    }\n\n\t\t\t    &.dragging {\n\t\t\t        cursor: pointer;\n\t\t\t        cursor: hand;\n\t\t\t    }\n\t\t\t}\n\n\t\t\t.slick-slider .slick-track,\n\t\t\t.slick-slider .slick-list {\n\t\t\t    transform: translate3d(0, 0, 0);\n\t\t\t}\n\n\t\t\t.slick-track {\n\t\t\t    position: relative;\n\t\t\t    left: 0;\n\t\t\t    top: 0;\n\t\t\t    display: block;\n\t\t\t    margin-left: auto;\n\t\t\t    margin-right: auto;\n\n\t\t\t    &:before,\n\t\t\t    &:after {\n\t\t\t        content: \"\";\n\t\t\t        display: table;\n\t\t\t    }\n\n\t\t\t    &:after {\n\t\t\t        clear: both;\n\t\t\t    }\n\n\t\t\t    .slick-loading & {\n\t\t\t        visibility: hidden;\n\t\t\t    }\n\t\t\t}\n\t\t\t\n\t\t\t.slick-slide {\n\t\t\t    float: left;\n\t\t\t    height: 0;\n    \t\t\tbox-sizing: border-box;\n\t\t\t    min-height: 1px;\n\t\t\t    &.slick-active {\n\t\t\t\t\theight: 100% !important;\n\t\t\t\t}\n\t\t\t    [dir=\"rtl\"] & {\n\t\t\t        float: right;\n\t\t\t    }\n\n\t\t\t    img {\n\t\t\t        display: block;\n\t\t\t    }\n\t\t\t    &.slick-loading img {\n\t\t\t        display: none;\n\t\t\t    }\n\n\t\t\t    &.dragging img {\n\t\t\t        pointer-events: none;\n\t\t\t    }\n\n\t\t\t    .slick-initialized & {\n\t\t\t        display: block;\n\t\t\t    }\n\n\t\t\t    .slick-loading & {\n\t\t\t        visibility: hidden;\n\t\t\t    }\n\t\t\t    .slick-loading {\n\t\t\t\t\tbackground:url('../images/loading.svg') no-repeat center;\n\t\t\t\t\tmin-height: 300px;\n\t\t\t\t}\n\t\t\t    .slick-vertical & {\n\t\t\t        display: block;\n\t\t\t        height: auto;\n\t\t\t        border: 1px solid transparent;\n\t\t\t    }\n\t\t\t}\n\n\t\t\t.slick-arrow.slick-hidden {\n\t\t\t    display: none;\n\t\t\t}\n\n\t\t\tul.slides {\n\t\t\t\toverflow:visible !important;\n\t\t\t\tlist-style: none;\n\n\t\t\t\t.slick-arrow {\n\t\t\t\t\tdisplay: block !important;\n\t\t\t\t\twidth: 21px;\n\t\t\t\t\theight: 35px;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 110px;\n\t\t\t\t\tcursor: pointer;\n\n\t\t\t\t\tbackground-color: transparent !important;\n\t\t\t\t\tbackground-image: url('../images/arrows.png');\n\t\t\t\t\toutline: none !important;\n\t\t\t\t\tborder: none !important;\n\t\t\t\t\ttext-indent: -9999px;\n\n\t\t\t\t\t&.slick-prev {\n\t\t\t\t\t\tbackground-position: top left;\n\t\t\t\t\t\tleft: -30px;\n\t\t\t\t\t}\n\n\t\t\t\t\t&.slick-next {\n\t\t\t\t\t\tbackground-position: top right;\n\t\t\t\t\t\tright: -30px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\t\n\t\t\t\n\t\n\t\t//Misc Styles\n\t\t\t.centerThisGuy{\n\t\t\t\ttext-align:center;\n\t\t\t\t.loadMoreBtn {\n\t\t\t\t\tmargin:0 auto;\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.modalFootLinkers{\n\t\t\t\tfont-size: 12px;\n\t\t\t\tline-height: 15px;\n\t\t\t\tmargin-bottom: 13px;\n\t\t\t\ta{\n\t\t\t\t\tcolor:#969696;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.widgetsLink {\n\t\t\t\tfloat:right;\n\t\t\t\timg {\n\t\t    \t\twidth: 100px;\n\t\t    \t}\t    \t\n\t\t    }\n\t\t    \n\n\t\t//Themes\n\t\t\t&.blackBack {\n\t\t\t\tcolor:#EEE;\n\t\t\t\t.musicidb-integration-mask {\n\t\t\t\t\tbackground-color: $black_90;\n\t\t\t\t\tbackground-color: rgba(0, 0, 0, 0.84);   \n\t\t\t\t}\n\t\t\t\t.modalInner {\n\t\t\t\t\tbackground: $black;\n\t\t\t\t}\t\t\t\t\n\t\t\t\t.st-bg {\n\t\t\t\t\tborder: $color_rangoon_green_approx 1px solid!important;\n\t\t\t\t}\n\t\t\t\t.summaryToggle:hover .fui-plus-circle{\n\t\t\t\t\tcolor:#FFF;\t\n\t\t\t\t}\n\t\t\t\t.window {\n\t\t\t\t\tbackground: $black;\n\t\t\t\t\tborder: 12px solid #353535;\n\t\t\t\t}\n\t\t\t\tdiv.fbutton {\n\t\t\t\t\tborder: $color_rangoon_green_approx 1px solid!important;\n\t\t\t\t}\n\t\t\t\tdiv .rb-m .rb-i {\n\t\t\t\t\tbackground: #1b1b1b;\n\t\t\t\t\tbackground:rgba(14, 14, 14, 0.91);\n\t\t\t\t\t//background:none;\n\t\t\t\t\tcolor: #dedede;\n\t\t\t\t}\n\t\t\t\t.rb-i .dateBoxTextUnderImg{\n\t\t\t\t\tbackground:rgba(14, 14, 14, 0.91);\n\t\t\t\t\tcolor:#FFF !important;\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t.rb-i:hover .dateBoxTextUnderImg{\n\t\t\t\t\tbackground:#333 !important;\n\t\t\t\t}\n\t\t\t\t.month-row {\n\t\t\t\t\tborder: none !important;\n\t\t\t\t}\n\t\t\t\t.preferencesBox {\n\t\t\t\t\tcolor: #767676 !important;\n\t\t\t\t}\n\t\t\t\t.eventsList .listEvent{\n\t\t\t\t\t\n\t\t\t\t\tbackground:#191919;\n\n\t\t\t\t\tborder:1px solid #191919 !important;\n\t\t\t\t\t&:nth-child(2n){\n\t\t\t\t\t\t// background:#ffffffe0;\n\t\t\t\t\t\tbackground:#191919;\n\t\t\t\t\t}\n\t\t\t\t\th3 {\n\t\t\t    \t\t// color:#eee;\n\t\t\t    \t\tmargin-bottom:5px;\n\t\t\t    \t\t&.date span{\n\t\t\t\t\t\t\tcolor:#c3c3c3 !important;\n\t\t\t    \t\t}\n\t\t\t    \t}\n\t\t\t\t}\t\t\t\n\t\t\t\th3 {\n\t\t    \t\tcolor:#eee;\t\t    \t\t\n\t\t\t\t}\n\t\t\t\t.musicidb-tabs ul.calViewButtons {\n\t\t\t\t\tli {\n\t\t\t\t\t\ta {\t\t\t\t\t\n\t\t\t\t\t\t    border: 1px solid #232323 !important;    \t\t\t\t\n    \t\t\t\t\t\tbackground: #272727 !important;\n    \t\t\t\t\t\tcolor: #a5a5a5;\n    \t\t\t\t\t\t&:hover {\n    \t\t\t\t\t\t\tbackground:$color_crusta_approx !important; \n    \t\t\t\t\t\t\tcolor:#FFF !important;\n    \t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tli.current {\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tul.slides .slick-arrow {\n\t\t\t\t\tbackground-image: url('../images/arrowsdark.png');\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\n\t\t\t&.lightBack {\n\t\t\t\th2, h3 {\n\t\t\t\t\tcolor:#565656;\n\t\t\t\t}\n\t\t\t\t//background: $color_black_haze_approx;\n\t\t\t\t\n\t\t\t\t&:hover {\n\t\t\t\t\t//background: $color_catskill_white_approx;\n\t\t\t\t}\n\n\t\t\t\th4 {\n\t\t\t\t\tcolor: $color_chicago_approx;\n\t\t\t\t}\n\n\t\t\t\tp {\n\t\t\t\t\tcolor: $color_chicago_approx;\n\t\t\t\t}\n\n\t\t\t\t.listItem:nth-child(2n),\n\t\t\t\t.tableEventView:nth-child(2n) {\n\t\t\t\t\tborder-top: 1px solid $color_gallery_approx;\n\t\t\t\t\tborder-bottom: 1px solid $color_gallery_approx;\n\t\t\t\t\tclear: both;\n\t\t\t\t}\n\t\t\t}\t\t\n\t\t\t\n\t\t\t&.blackBack .horizontal .ui-tabs-panel, \n\t\t\t&.blackBack .musicidb-tabNav li.current a, \n\t\t\t&.blackBack .modalSections > .modalTabNav a.currentState, \n\t\t\t&.blackBack .horizontal .musicidb-tabNav li a,\n\t\t\t&.blackBack .musicidb-tabNav li:first-child,\n\n\t\t\t&.lightBack .horizontal .ui-tabs-panel, \n\t\t\t&.lightBack .musicidb-tabNav li.current a, \n\t\t\t&.lightBack .modalSections > .modalTabNav a.currentState, \n\t\t\t&.lightBack .horizontal .musicidb-tabNav li a,\n\t\t\t&.lightBack .musicidb-tabNav li:first-child {\n\t\t\t\tbackground: none;\n\t\t\t\tborder:none !important;\n\t\t\t}\n\t\t\t&.blackBack .horizontal .musicidb-tabNav li.current,\n\t\t\t&.lightBack .horizontal .musicidb-tabNav li.current {\n\t\t\t\ttop:inherit;\n\t\t\t}\n\t\t\t&.blackBack .musicidb-tabNav li.current a, \n\t\t\t&.blackBack .horizontal .musicidb-tabNav li a:hover {\n\t\t\t\t// border-bottom: 1px solid #eee !important;\n\t\t    \tcolor: #EEE !important;\n    \t\t\tbackground: #272727 !important;    \t\t\t\t\n\t\t\t}\n\t\t\t&.blackBack .horizontal .musicidb-tabNav li a{\n\t\t\t\tcolor:#6d6d6d;\n\t\t\t\tbackground: #272727 !important; \n\t\t\t\t&:hover {\n\n\t\t\t\t}\n\t\t\t}\n\t\t\n\t\t\t&.blackBack .listItem:nth-child(2n), \n\t\t\t&.blackBack .tableEventView:nth-child(2n) {\n\t\t\t\tborder-top:1px solid #373737;\n\t\t    \tborder-bottom: 1px solid #373737;\n\t\t    \tclear:both;\n\t\t\t}\n\t\t\t&.lightBack .listItem:nth-child(2n), \n\t\t\t&.lightBack .tableEventView:nth-child(2n) {\n\t\t\t\tborder-top: 1px solid #d3d3d3;\n\t\t    \tborder-bottom: 1px solid #d3d3d3;\n\t\t    \tclear:both;\n\t\t\t}\n\t\t\t&.blackBack .artistFacts {\n\t\t\t\tcolor:#7b7b7b;\t\t\n\t\t\t}\n\t\t\t&.blackBack a, &.blackBack h3 a {\n\t\t\t\tcolor:#1aadff;\n\t\t\t}\n\n\n\t\t\t&.blackBack .linkTile {\n\t\t    background: #1d1d1d !important;\n\t\t    /*color:#666;*/\n\t\t\t}\n\t\t\t&.blackBack .linkTile.lightBack h4 {\n\t\t\t    color:#9f9f9f !important;\n\t\t\t}\n\t\t\t&.blackBack img.alignleft {\n\t\t\t    border:1px solid #1d1d1d;\n\t\t\t}\n\t\t\t&.blackBack .modalTickets {\n\t\t\t\tborder-top: 1px solid #383838;\n\t\t\t\tborder-bottom: 1px solid #383838;\n\t\t\t}\n\t\t\t.venue-377 {\n\n\t\t\t}\n\t\t\t&.blackBack.venue-377 .listingBody a {\n\t\t\t    color: #c4c4c4;\n\t\t\t}\n\t\t\t&.blackBack .controlbar>li>a {\n\t\t    \tborder:1px solid transparent !important;\n\t\t\t}\n\t\t\t&.blackBack img.alignleft {\n\t\t\t    border:none !important;\n\t\t\t}\n\t\t\t&.lightBack #caltoolbar,\n\t\t\t&.lightBack #gridcontainer,\n\t\t\t&.lightBack .cc,\n\t\t\t&.lightBack .mv-daynames-table,\n\t\t\t&.lightBack .mv-event-container,\n\t\t\t&.lightBack .st-dtitle,\n\t\t\t&.lightBack div.ctoolbar div.fbutton.fcurrent, \n\t\t\t&.lightBack .whiteBack {\n\t\t\t    background: none !important;\n\t\t\t}\n\t\t\t&.lightBack div.fbutton, &.lightBack .mv-container {\n\t\t\t    /*background: rgba(255, 255, 255, 0.56) !important;*/\n\t\t\t}\n\t\t\t&.lightBack div.fbutton {\n\t\t\t    border:none;\n\t\t\t}\n\t\t\t&.lightBack div#sfnextbtn, &.lightBack div#sfprevbtn {\n\t\t\t\tborder: #ececec 1px solid;\n\t\t\t    border-radius: 2px;\n\t\t\t}\n\t\t\t&.blackBack .whiteBack, &.blackBack div.ctoolbar, \n\t\t\t&.blackBack div.fbutton.fcurrent, &.blackBack .st-dtitle-nonmonth,\n\t\t\t&.blackBack .cc, &.blackBack .mv-daynames-table, \n\t\t\t&.blackBack .mv-event-container, &.blackBack #gridcontainer, \n\t\t\t&.blackBack .st-dtitle, &.blackBack ul.calViewButtons, \n\t\t\t&.blackBack .st-bg {\n\t\t\t    background:none !important;\n\t\t\t}\n\t\t\t&.blackBack .cardFloater:hover .hoverArtist {\n\t\t\t    color:#eee !important;\n\t\t\t    text-decoration:none;\n\t\t\t}\n\t\t\t&.blackBack h1, &.blackBack div.ctoolbar div.fshowdatep,\n\t\t\t&.blackBack div.ctoolbar {\n\t\t\t    color:#eee !important;\n\t\t\t}\n\t\t\t&.blackBack div.fbutton:hover i {\n\t\t\t    color:#eee;\n\t\t\t}\n\t\t\t&.blackBack .st-bg, \n\t\t\t&.blackBack div.fbutton {\n\t\t\t    border: #4d4d4d 1px solid !important;\n\t\t\t}\n\t\t\t&.blackBack div.ctoolbar div.fshowdatep {\n\t\t\t    border:none !important;\n\t\t\t}\n\t\t\t&.blackBack .st-dtitle {\n\t\t\t    border-left:none !important;\n\t\t\t}\n\t\t\t&.blackBack .controlbar >li a.TicketLink {\n\t\t    \tborder: 1px solid #0d440d !important;    \t\n\t\t\t}\n\t\t\t&.blackBack .stageImageAndName {\n\t\t\t    background:#161616;\n\t\t\t}\n\t\t\t&.blackBack .stageImageAndName h3 {\n\t\t\t    color:#eee;\n\t\t\t}   \n\t\t\t&.blackBack .listItem:nth-child(2n){\n\t\t\t    border-top:1px solid #2d2d2d;\n\t\t\t    border-bottom:1px solid #2d2d2d;\n\t\t\t}\n\t\t\t&.blackBack .eventDescription{\n\t\t    \tcolor: #ddd !important;\t\t\t\t\t\t\n\t\t\t\tspan, div, p, \n\t\t\t\th1, h2, h3, h4, h5, h6{\n\t\t\t\t\tcolor:#ddd !important;\n\t\t\t\t\tbackground:none !important;\n\t\t\t\t}\t\t\t\t\n\t\t\t}\n\t\t\t&.blackBack h1, &.blackBack h2, &.blackBack h3, &.blackBack h4, &.blackBack h5, &.blackBack h6, &.blackBack .framePage h3, &.blackBack .h2, &.blackBack .h3, &.blackBack .h4, &.blackBack .h5, &.blackBack .h6 {\n\t\t    color:#cecece;\n\t\t\t}\n\t\t\t&.blackBack .controlbar>li a.TicketLink {\n\t\t\t    border: 1px solid #15bd15!important;\n\t\t\t}\n\t\t\t&.blackBack .eventLogistics, \n\t\t\t&.blackBack .listEvent .date span {\n\t\t\t    color: #929292;\n\t\t\t}\n\t\t\t&.blackBack .eventInfoArea .eventDescription * {\n\t\t    \tcolor: #d0d0d0 !important;\n\t\t\t}\n\t\n\t\t//Custom Tweaks\n\t\t.listEvent .controlbar.moveLeft{\n\t\t\ttext-align:left;\n\t\t\t// float:left;\n\t\t\tmargin:0;\n\t\t}\n\t\t.listEvent .controlbar.moveRight{\n\t\t\ttext-align: right;\n    \t\tmargin: 0;\n    \t\tfloat: right !important;\n\t\t}  \n\t\t.listEvent .controlbar.moveCenter{\n\t\t\ttext-align: center;\n    \t\tmargin: 0 auto;    \n    \t\tclear: both;\n    \t\tfloat: none !important;\n\t\t}   \n\n\t\t//Featured Events Slider\n\n\t\t.slider-wrapper {\n\t\t\tposition: relative;\n\t\t\toverflow: hidden;\n\n\t\t\t.rightSlideArea {\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 30px;\n\t\t\t\tright: 15px;\n\t\t\t}\n\t\t\t.slider-controllers {\n\t\t\t\tdisplay: flex;\n\t\t\t\tposition: relative;\n\t\t\t\t.btn {\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tbackground-color: #cc3333;\n\t\t\t\t\tbackground-image: url('../images/arrow-left.png');\n\t\t\t\t\tbackground-position: center;\n\t\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\t\tbackground-size: 50%;\n\t\t\t\t\toutline: none;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\theight: 50px;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\twidth: 50px;\n\t\t\t\t\t//position: relative; - This broke Abrews, can't figure out why it was added\n\t\t\t\t\ttransform: none;\n\t\t\t\t\tposition:absolute;\n\t\t\t\t\tbottom: 0px;\n    \t\t\t\tright:50px;\t\t\t\t\t\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tbackground-color: #a92121;\n\t\t\t\t\t}\n\t\t\t\t\t&-next {\n\t\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t}\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slick-dots {\n\t\t\t\t// bottom:-19px;\n\t\t\t\theight: 24px;\n\t\t\t\tli  {\n\t\t\t\t\tbutton {\n\t\t\t\t\t\tbackground:#5f0505;\n\t\t\t\t\t\t\n\t\t\t\t\t\t-webkit-border-radius: 10px;\n\t\t\t\t\t\t-moz-border-radius: 10px;\n\t\t\t\t\t\tborder-radius: 10px;\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\tcontent: none;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t// max-width:1240px;\n\t\t// margin: 0 auto 30px;\n\n\t\t.slider-banner {\n\t\t\t// max-width: 1410px;\n\t\t\tmax-width:1240px;\n\t\t\twidth: 100%;\n\t\t\tdisplay: none;\n\t\t\tmin-height: 350px;\n\t\t\t&.slick-initialized { display: block; }\n\t\t\t* {\n\t\t\t\tbox-sizing: border-box;\n\t\t\t}\n\t\t\timg {\n\t\t\t\theight: auto;\n\t\t\t\tobject-fit: cover;\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t\t.overlay {\n\t\t\t\tbackground-color: #cc3333;\n\t\t\t\topacity: 0.8;\n\t\t\t}\n\t\t\t.slider-foreground {\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\tposition: relative;\n\t\t\t}\n\t\t\t.detailsCard {\n\t\t\t\tmax-width: 350px;\n\t\t\t\tmin-width: 238px;\n\t\t\t\twidth: 27%;\n\t\t\t}\n\t\t\t.rightSlideArea {\n\t\t\t\talign-items: flex-end;\n\t\t\t\tdisplay: flex;\n\t\t\t}\n\t\t\t.slider-label {\n\t\t\t\talign-items: center;\n\t\t\t\tbackground-color: #c9c9c9;\n\t\t\t\tdisplay: flex;\n\t\t\t\theight: 54px;\n\t\t\t\tjustify-content: center;\n\t\t\t\tline-height: 1;\n\t\t\t\tcolor: #000;\n\t\t\t\t//font-family: sans-serif;\n\t\t\t\tfont-size: 19px;\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\twidth: 206px;\n\t\t\t\tmargin-top: 20px;\n\t\t\t\tspan {\n\t\t\t\t\tfont-size: 31px;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slider-date {\n\t\t\t\tcolor: #fff;\n\t\t\t\t//font-family: 'Montserrat-Regular', sans-serif;\n\t\t\t\tfont-size: 20px;\n\t\t\t\tmargin-bottom: 15px;\n\t\t\t}\n\t\t\t.slider-title {\n\t\t\t\tcolor: #fff;\n\t\t\t\t//font-family: Oswald, sans-serif;\n\t\t\t\tfont-size: 50px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tline-height: 1.12;\n\t\t\t\tmargin: 0;\n\t\t\t\ttext-shadow: 0 2px 1px rgba(0, 0, 0, 0.75);\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\tmax-height: 140px;\n\t\t    \toverflow: hidden;\n\t\t\t}\n\t\t\t.content {\n\t\t\t\tpadding: 0 16px;\n\t\t\t\tmargin-top: 25px;\n\t\t\t}\n\t\t\t\n\t\t\t.buttonsBlockSection {\n\t\t\t\t// position: absolute;\n\t\t\t\t// bottom: 24px;\n    \t\t\t// left: 153px;\n    \t\t\tposition: absolute;\n\t\t\t    bottom: 8px;\n\t\t\t\tleft: 10px;\n\t\t\t\ta{\n\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\tpadding: 7px 23px;\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tline-height: 18px;\n\t\t\t\t\t//font-family: 'Montserrat-SemiBold', sans-serif;\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\ti{\n\t\t\t\t\t\tline-height: 10px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ta.slider-link , \n\t\t\t\ta.view-event{\n\t\t\t\t\tcolor: #333;\n\t\t\t\t\t&.fbLinkWide{\n\t\t\t\t\t    border-radius: 6px;\n\t\t\t\t\t    padding-left: 12px;\n\t\t\t\t\t    padding-right: 12px;\n\t\t\t\t\t    width: auto !important;\n\t\t\t\t\t    //padding: 0 19px;\n\t\t\t\t\t    //height: 32px !important;\n\t\t\t\t\t    //top: -10px !important;\n\t\t\t\t\t    //position: relative;\t\t\t\t\t    \n\t\t\t\t\t    .fui-facebook{\n\t\t\t\t\t\t\tmargin-right:3px;\t\t\n\t\t\t\t\t\t\tposition: relative;\n    \t\t\t\t\t\ttop: 4px;\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ta.slider-link {\n\t\t\t\t\t\n\t\t\t\t\tbackground: url('../images/ticket-link-bg.png') no-repeat center;\n\t\t\t\t\tbackground-size: contain;\t\t\t\t\t\n\t\t\t\t\t// display: flex;\t\n\t\t\t\t\t// align-items: center;\n\t\t\t\t\t// justify-content: center;\t\t\t\t\n\t\t\t\t\t//font-size: 15px;\n\t\t\t\t\t//height: 51px;\t\t\t\t\t\n\t\t\t\t\ttext-decoration: none;\t\t\t\t\t\n\t\t\t\t\twidth: 128px;\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tfilter: brightness(1.2);\n\t\t\t\t\t}\n\t\t\t\t\t.link-arrow {\n\t\t\t\t\t\tborder-color: transparent transparent transparent #033333;\n\t\t\t\t\t\tborder-style: solid;\n\t\t\t\t\t\tborder-width: 5px 0 5px 7px;\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\theight: 0;\t\t\t\t\t\t\n\t\t\t\t\t\twidth: 0;\t\t\t\t\t\t\n\t\t\t\t\t\tline-height: 10px;\n\t\t\t\t\t    position: absolute;\n\t\t\t\t\t    left: 30px;\n\t\t\t\t\t    top: 15px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ta.ticketsLink{\n\t\t\t\t\tpadding: 12px 25px 12px 45px;\n\t\t\t\t    position: relative;\n\t\t\t\t    height: 44px;\n\t\t\t\t}\n\t\t\t\ta.view-event {\n\t\t\t\t\tbackground: #ccc;\t\t\t\t\t\n\t\t\t\t\tborder-radius: 7px;\n\t\t\t\t\t//font-size: 13px;\n\t\t\t\t\t&:hover, &:focus{\n\t\t\t\t\t\tbackground: #fff;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slick-dots li{\n\t\t\t\twidth:8px;\n\t\t\t\theight:8px;\n\t\t\t\tbutton{\n\t\t\t\t\twidth:8px;\n\t\t\t\t\theight:8px;\n\t\t\t\t}\n\t\t\t\t&:hover button, &.slick-active button{\n\t\t\t\t\tbackground: #cc3333;\n\t\t\t\t}\n\t\t\t}\t\t\t\t\n\t\t\t.slider-background,\n\t\t\t.overlay {\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tposition: absolute;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t.overlay{\n\t\t\t\topacity: 0.8;\n\t\t\t}\n\t\t\t.slider-item,\n\t\t\t.detailsCard,\n\t\t\t.content-wrapper {\n\t\t\t\tposition: relative;\n\t\t\t}\n\t\t\t.slider-item {\n\t\t\t\tfloat: left;\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t\t.detailsCard {\n\t\t\t\theight: 100%;\n\t\t\t\tmin-height: 330px;\n\t\t\t}\n\t\t\t.content-wrapper {\n\t\t\t\theight: 100%;\n\t\t\t\tmin-height: 330px;\n\t\t\t}\n\t\t}\t\t\n\t}\n\n//Alt Views\n#musicidb-featured-events.tvScreen, \n.tvScreen #musicidb-featured-events{\n    width:100% !important;\n    max-width:100% !important;\n    .detailsCard{\n        display:none;\n    }\n    #featured-events-slider{\n    \tpadding:0;\n    }\n    .slider-banner {\n        max-width:100% !important;\n        width:100% !important;\n        margin-bottom:0 !important;\n        .slider-foreground{\n            //height: 1000px;\n            display:none;\n        }\n        .slider-background{\n        \tleft:auto;\n        \tright:auto;\n        \ttop:auto;\n        \tbottom:auto;\n        \tposition:relative;\n        }\n        .slick-slide{\n        \t//min-height:none !important;\n        }\n    }\n    .rightSlideArea{\n        display:none;\n    }\n    .slick-dots{\n    \tpadding: 0 37px 0 0 !important;\n    \ttext-align: right;\n    \tbottom: 21px;\n    }\n}    \n\n//Images to fit vertically \n#musicidb-featured-events.fitImagesByHeight {\n\t.slider-banner img {\n\t    width: auto;\n\t    height: 100%;\n\t    // right: 0;\n\t    // left: 0;\n\t    // position: relative;\t    \n\t    margin: 0 auto !important;\t    \n\t}\n}","//Responsive\n\n.musicidb-events-integration{\n\t@media only screen and(max-width: 1500px) {\n\t\t.window {\n\t\t\twidth: 85%;\n\t\t\t//left:6% !important;\n\t\t}\n\n\t\t.modalInner {\n\t\t\tpadding:15px 0 5px;\n\t\t}\n\t} //1500px\n\n\t/* Smaller Than Most Screens */\n\t@media only screen and(max-width: 1150px) {\n\t\t.window {\n\t\t\twidth: 100%;\n\t\t\theight:100%;\n\t\t\tborder-radius:0;\n\t\t\tbox-sizing:border-box;\n\t\t\tright: 0 !important;\n\t\t\tleft: 0 !important;\n\t\t\ttop: 0 !important;\n\t\t}\n\t} //1150px\n\n\t/* Tablet View */\n\t@media only screen and(max-width: 1000px) {\n\t\t.viewPosters{\n\t\t\tul.eventsList{\n\t\t\t\tli.listEvent{\n\t\t\t\t\twidth:calc(50% - 10px);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t.viewListPics{\n\t\t\t.eventsList.largePics{\n\t\t\t\t.listEvent{\n\t\t\t\t\t.eventPosterArea{\n\t\t\t\t\t\twidth:190px;\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t.listingBody, .controlbar.moveLeft{\n\t\t\t\t\t\tmargin-left:280px !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\n\t\t}\t\n\t\t.controlbar li {\n\t\t\tfloat: left !important;\n\t\t}\n\t\t\n\t\t.modalHead {\n\t\t\tbackground:none !important;\n\t\t\tmargin-bottom:13px;\n\t\t}\n\t\t\n\t\t.eventInfoArea .left, \n\t\t.eventInfoArea .venueInfoTile, \n\t\t.eventInfoArea .tilesContainer {\n\t\t\twidth: 100%;\n\t\t}\n\n\t\t.thumbTileHolder {\n\t\t\twidth: 205px;\n\t\t\theight: 205px;\n\t\t\tposition: relative;\n\t\t\tmargin: 0 auto;\n\t    \tfloat: none;\n\t\t}\n\n\t\t.controlButtons {\n\t\t\tright: 0;\n\t\t\tposition: relative;\n\t\t\tclear: both;\n\t\t\theight: 67px;\n\t\t}\n\n\t\t.controlButtons a {\n\t\t\tpadding: 9px 7px 2px 25px;\n\t\t\twidth: inherit;\n\t\t}\n\n\t\t.controlButtons li i {\n\t\t\tfont-size: 13px;\n\t\t\tleft: 5px;\t\n\t\t\ttop: 8px;\n\t\t}\n\n\t\t.controlbar li {\n\t\t\tfloat: none;\n\t\t}\n\n\t\t.controlBarEvents li {\n\t\t\tfloat:left;\n\t\t}\n\n\t\t.controlButtons .current a:before, .controlButtons li:hover a:before {\n\t\t\tleft: 45px;\n\t\t}\n\n\t\t.social-links {\n\t\t\tposition: relative;\n\t\t\twidth: 99%;\n\t\t\tright: inherit;\n\t\t\twidth: inherit;\n\t\t\ttext-align: center;\n\t\t\tmargin: 0 auto\n\t\t}\n\n\t\t.social-links li {\n\t\t\tfloat: none;\n\t\t}\n\n\t\t.greenCta {\n\t\t\tfloat: none;\n\t\t}\n\n\t\t.btnBlock .greenCta {\n\t\t\tfloat: left;\n\t\t}\n\n\t\t.outerExpander {\n\t\t\tposition: relative;\n\t\t}\n\n\t\t.window {\n\t\t\twidth: 60%;\n\t\t\tmin-width: 60%;\n\t\t\tleft: 15px;\n\t\t\ttop: 20px !important\n\t\t}\n\n\t\t.window .scrollingContent {\n\t\t\theight: 100%;\n\t\t\tpadding: 10px 5px;\n\t\t}\n\n\t\t.mobileHide {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t.mobileShow {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t/* Modal Views 1000px */\n\t\t\t.window {\n\t\t\t\tpadding: 30px 1% 25px;\n\t\t\t\twidth:100% !important;\n\t\t\t    box-sizing:border-box;\n\t\t\t\theight: 100% !important;\n\t\t\t\tmin-height: auto !important;\n\t\t\t\ttop: 0px !important;\n\t\t\t\tright: auto;\n\t\t\t\tleft: 0 !important;\n\t\t\t\tborder-radius: 0;\n\t\t\t\ttop:0 !important;\n\t\t\t\tborder: none;    \t/*overflow: inherit;*/\n\t\t\t}\n\t\t\t.eventDetailModal{\n\t\t\t\ttop:0 !important;\n\t\t\t}\n\t\t\t.modalClose {\n\t\t\t\tmargin-right: 10px;\n\t\t\t}\n\t\t\t.modalTab {\n\t\t\t\tmax-height: inherit;\n\t\t\t\toverflow: inherit;\n\t\t\t}\n\t\t\t.modalHead img {\n\t\t\t\tdisplay:none;\n\t\t\t}\n\t\t\t.modalHead .artistInfo {\n\t\t\t\twidth: 50%;\n\t\t\t}\n\t\t\t.modalTitle h2 {\n\t\t\t\tpadding: 0 !important;\n\t\t\t\tfont-size: 18px;\n\t\t\t\tline-height: 19px;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t\t.modalTitle {\n\t\t\t\tfont: 14px/16px Arial, sans-serif;\n\t\t\t}\n\t\t\t\n\t\t\t.modalInner {\n\t\t\t\tpadding: 0 5px 5px !important;\n\t\t\t}\n\t\t\t\n\t    .cardFloater .thumbTileHolder {\n\t        width: 220px;\n\t        height: 220px;\n\t    }\n\n\t\t.controlbar li {\n\t        float: left !important;\n\t    }\n\t} //1000px\n\n\t@media only screen and(max-width: 700px) {\n\t\t.viewPosters{\n\t\t\tul.eventsList{\n\t\t\t\tli.listEvent{\n\t\t\t\t\tdiv.eventPosterArea{\n\t\t\t\t\t\theight:310px;\n\t\t\t\t\t\t//width:calc(50% - 10px);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t.viewListPics{\n\t\t\t.eventsList.largePics{\n\t\t\t\t.listEvent{\n\t\t\t\t\t.eventPosterArea{\n\t\t\t\t\t\twidth:150px;\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t.listingBody, .controlbar.moveLeft{\n\t\t\t\t\t\tmargin-left:240px !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\n\t\t}\t\n\t\t.viewCompact{\n\t\t\t.rowView {\n\t\t\t\tdisplay:flex;\n\t\t\t\t.rowColumn{\n\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\t&.detailsColumn{\n\t\t\t\t\t\ttop:0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\t\t\n\t\t}\n\t\t#artistCardsSlider ul.bjqs-controls.v-centered li a{\n\t\t\tfont-size:22px;\n\t\t}\n\n\t\t#artistCardsSlider ul.bjqs-controls.v-centered li.bjqs-prev a {\n\t\t\tleft:-25px;\n\t\t}\n\n\t\t#artistCardsSlider ul.bjqs-controls.v-centered li.bjqs-next a {\n\t\t\tright:-15px;\n\t\t}\n\n\t\t.webVideo iframe {\n\t\t\twidth: 100%;\n\t\t\tmin-height: 330px;\n\t\t}\t\t\n\t\t\n\t\t.slider-banner{\n\t\t\tmin-height:auto;\n\t\t\t.slick-slide{\n\t\t\t\tmin-height: 390px;\n\t\t\t\t.slider-label{\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t\t.detailsCard{\n\t\t\t\t\twidth:100%;\n\t\t\t\t\tmax-width:100%;\n\t\t\t\t\theight:auto;    \n\t\t\t\t\ttop: 250px;    \n\t\t\t\t\tmin-height: 140px;\n\t\t\t\t\t.content{\n\t\t\t\t\t   \tmargin-top: 8px;\n\t\t\t\t\t\t.slider-date{\n\t\t\t\t\t\t\tfont-size: 17px;\n\t\t\t\t\t\t\tmargin-bottom: 2px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.slider-title{\n\t\t\t\t\t\t\tfont-size: 28px !important;    \n\t\t\t\t\t\t\tmax-height: 63px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.buttonsBlockSection{\n\t\t\t\t\t\t\tbottom: 10px;\n\t\t\t\t\t\t\tleft:4px;\n\t\t\t\t\t\t\ta.slider-link{\n\t\t\t\t\t\t\t\tbackground-size: 110px;\t\n\t\t\t\t\t\t\t\t//height: 42px;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\ta.slider-link, a.view-event{\n\t\t\t\t\t\t\t\tfont-size: 12px;   \n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.view-event-wrapper{\n\t\t\t\t\t\t\tbottom: 16px;\n\t\t\t\t\t\t\tleft: 134px;\n\t\t\t\t\t\t}\t\t\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t.content-wrapper{\n\t\t\t\t\t\tmin-height:auto;\n\t\t\t\t\t}\t\t\n\t\t\t\t}\n\t\t\t}\t\t\t\t\t\t\t\t\n\t\t}\t\t\n\t\t.rightSlideArea{\n\t\t\t.slider-controllers .btn{\n\t\t\t\theight: 38px;\n\t\t\t\twidth: 38px;\n\t\t\t}\n\t\t}\n\t\t.eventsList .rowView, .style-viewCompact li{\n\t\t\tdisplay: block;\n\t\t\tborder-bottom:1px solid #dcdcdc;\n\t\t\t.buttonsColumn{\n\t\t\t\tdisplay: block;\t\t\t\t\n\t\t\t\twidth: 100% !important;\n\t\t\t}\n\t\t\t.rowColumn {\n\t\t\t\t&.dateColumn{\n\t\t\t\t\twidth: 77px !important;\n\t\t\t\t}\n\t\t\t\t.simpleBtn{\n\t\t\t\t\twidth:auto;\t\n\t\t\t\t}\n\t\t\t\t.cardFloater{\n\t\t\t\t\ttop:0;\n\t\t\t\t}\t\t\n\t\t\t}\t\n\t\t}\n\t\t&.blackBack{\n\t\t\t.eventsList .rowView{\n\t\t\t\tborder-bottom: 1px solid #444;\n\t\t\t}\n\t\t}\n\t} //700px\n\n\t@media only screen and (max-width: 650px) {\n\t    .rowView {\n\t    \t.rowColumn {\n\t    \t\twidth: 33% !important;\t        \t\n\t        \t&.locationColumn {\n\t\t            display:none;\n\t\t        }\n\t\t        &.buttonsColumn a{\n\t\t            width:95%;\n\t\t            margin-bottom:3px;    \n\t\t            text-align: center;        \n\t\t        }\t            \n\t        }\n\t    }\n\t    .viewCompact .rowView .simpleTitle{\n\t    \tfont-size:12px;\n\t    }\n\t} //650px\n\n\t/* Mobile Devices */\n\t@media only screen and(max-width: 595px) {\n\t\t\n\t\t/* Mobile Hide 'em */\n\t\t\t.setTime .helpText, .filtersLabel, \n\t\t\t#artistCardsSlider, #showtodaybtn, .footLinks nav, .checkBoxCol, \n\t\t\t#mailBoxTable thead th:nth-child(5),\n\t\t\t#mailBoxTable thead th:nth-child(6),\n\t\t\t#mailBoxTable thead th:nth-child(7), \n\t\t\t.sectionHead #embedCodeBtn, .eventsList .listItem .summaryToggle, .flavorText, \n\t\t    .artistList .listingImgWrap, \n\t\t\t.listArtists .listingImgWrap, \n\t\t\t.calendarLegend,\n\t\t\t.imageLeftWrapper, .gigList .navWithBubbles {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t/* Mobile Fix Images in List */\n\t\t\t.viewListPics {\n\t\t\t\t.eventsList.largePics {\t\t\t\t\t\t\t    \t\n\t\t\t\t    .listEvent {\n\t\t\t\t\t    .eventPosterArea {\n\t\t\t\t\t        display:block !important;\n\t\t\t\t\t        width: 120px !important;\n\t\t\t\t\t        img.eventImg {\n\t\t\t\t\t\t\t    // width: 83px!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\twidth: 50%;\n\t\t\t\t\t\t\t\theight: 40px;\n\t\t\t\t\t\t\t}\t\n\t\t\t\t\t\t\t.oneBand .bandPicBox {\n\t\t\t\t\t\t    \twidth: 75px !important;\n\t\t\t\t\t\t    }\n\t\t\t\t\t    }\n\t\t\t\t\t     .listingBody, .controlbar.moveLeft{\n\t\t\t\t\t    \tmargin-left:205px !important;\t\t\t\t\t    \t\n\t\t\t\t\t    }\t\t\t\t\t\t   \t\t\t    \t\n\t\t\t\t\t}\t\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t\t.viewPosters{\n\t\t\t\tul.eventsList{\n\t\t\t\t\tli.listEvent{\n\t\t\t\t\t\tdiv.eventPosterArea{\n\t\t\t\t\t\t\theight:250px;\n\t\t\t\t\t\t\t//width:calc(50% - 10px);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdiv.listingBody{\n\t\t\t\t\t\t\tpadding:0 5px;\n\t\t\t\t\t\t\th3.titleofevent{\n\t\t\t\t\t\t\t\tfont-size:17px;\n\t\t\t\t\t\t\t\tline-height:20px;\t\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tul.controlbar{\n\t\t\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t&.largePics{\n\t\t\t\t\t\tli.listEvent{\n\t\t\t\t\t\t\t.eventPosterArea{\n\t\t\t\t\t\t\t\twidth:330px;\n\t\t\t\t\t\t\t\tmax-height:none;\n\t\t\t\t\t\t\t\t.oneBand .bandPicBox{\n\t\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\timg{\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.listingBody, .controlbar.moveLeft{\n\t\t\t\t\t\t\t\tmargin-left:420px !important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t/* Featured Events Slider Mobile 595 */\t\n\t\t\t.slider-banner {\n\t\t\t\t .slick-slide{\n\t\t\t\t    min-height: 340px;\n\t\t\t\t    .detailsCard{\n\t\t\t\t\t\ttop: 200px;\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\t\t\t\n\t\t\t}\t\t\t\n\n\t\t/* Mobile Do other stuff */\n\t\t\t.musicidb-tabs ul.musicidb-tabNav.eventTabsLinks li a{\n\t\t\t\tpadding: 10px 8px;\t\t\t\t\t    \n\t\t\t    font-size: 11px;\n\t\t\t}\n\n\t\t\t#artistDetailsPopup #artistCardsSlider {\n\t\t\t\tdisplay:block;\n\t\t\t}\n\n\t\t\t#artistCardsList {\n\t\t\t\tdisplay: block !important;\n\t\t\t}\n\n\t\t\t#artistDetailsPopup .artistLeftCol {\n\t\t\t    float: none;\n\t\t\t    width: 100%;\n\t\t\t    margin-right: 0;\n\t\t\t}\n\n\t\t\t#artistDetailsPopup .artistRightCol {\n\t\t\t\twidth: 100%;\n\t\t\t}\n\n\t\t\t#artistDetailsPopup #artistSelector li a h3{\n\t\t\t\tmargin-bottom: 3px;\n\t\t\t}\n\n\t\t\t#artistSelector li a .festivalArtistTextArea h3 {\n\t\t\t    max-height: 35px;\n\t\t\t}\n\n\t\t \t.controlbar.msgBar li {\n\t\t    \tfloat: left;\n\t\t    \tmargin: 0 0 5px;\n\t\t\t}\n\n\t\t \t.controlbar span {\n\t\t \t\tfloat:none;\n\t\t \t}\n\n\t\t\t.padding15 {\n\t\t    \tpadding: 15px 5px!important;\n\t\t\t}\n\n\t\t\t.modalHead,  {\n\t\t\t\twidth: 98%;\n\t\t\t}\t\t\t\t\t\n\n\t\t\ttextarea {\n\t\t\t    padding: 5px 5px;\n\t\t\t}\n\n\t\t\t.window .greenBtn {\n\t\t\t\tmargin-bottom: 20px;\n\t\t\t}\n\n\t\t\t.window {\n\t\t\t    padding: 5px 1% 5px 1% !important;\n\t\t\t    width:100% !important;    \n\t\t\t    max-height: 100% !important;\n\t\t\t    box-sizing:border-box;\n\t\t\t}\n\n\t\t\t.textarea {\n\t\t    \twidth: 93%;\n\t\t\t}\n\n\t\t\t.modalClose {\n\t\t    \tmargin-right: 0px;\n\t\t\t}\n\n\t\t\t.modalTab {\n\t\t\t\tborder:none;\n\t\t\t\tborder-top: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t\n\n\t\t\t.controlbar>li a.TicketLink {\n\t\t\t    // padding: 5px 11px 0px!important;\n\t\t\t    // top:1px;\n\t\t\t}\n\n\t\t\t.TicketLink span {\n\t\t    \t\n\t\t\t}\n\t\t\t.modalTabs {\n\t\t\t\tpadding:0;\n\t\t\t}\n\t\t\t\n\t\t\t/* Modals */\n\t\t\t\t.modalColumns > .column {\n\t\t\t\t    width: 98%;\n\t\t\t\t}\n\n\t\t\t\t.modalTab h4.sectionTitle {\n\t\t\t\t    font-size: 13px;\n\t\t\t\t}\n\n\t\t    .eventsList .listItem {\n\t\t        padding:5px 0 5px 0;\n\t\t    }\n\n\t\t    .eventsList .listItem {\n\t\t    \th3.titleofevent {\n\t\t\t        font-size: 17px;\n\t\t\t        line-height: 18px;\n\t\t\t        margin: 0 0 6px 0;\n\t\t        }\n\t\t        .subtitleEvent{\n\t\t        \tfont-size: 17px;\n\t\t\t        line-height: 18px;\n\t\t\t        margin: 0 0 6px 0;\t\n\t\t        }\n\t\t    }\n\t\t    \n\t\t    .cardFloater {\n\t\t        padding-top: 0 !important;\n\t\t        padding-bottom:0 !important;\n\t\t    }\n\n\t\t    select {\n\t\t        padding: 5px;\n\t\t        width: 100% !important;\n\t\t        margin-top: 0;\n\t\t    }\n\t\t    \n\t\t    .genreData {\n\t\t        position: relative;\n\t\t        top: 12px;\n\t\t        margin-bottom: 10px;     \n\t\t        clear: both;\n\t\t    }\n\n\t\t\t.cardFloater .thumbTileHolder {\n\t\t\t\tbottom: 19px;\n\t\t\t}\n\n\t\t    .linkTile {\n\t\t        width: 100% !important;\n\t\t    }\n\n\t\t    .eventDescription \n\t\t    .eventDescription span, \n\t\t    .eventDescription div, \n\t\t    .eventDescription p{\n\t\t    \tfont-size: 14px !important;\n\t\t\t\tline-height: 18px !important;\n\t\t\t}\n\t\t\t\n\t\t\t.listEvent h3.date .monthName, \n\t\t\t.listEvent h3.date .dayNum, \n\t\t\t.listEvent h3.date .yearNum {\n\t\t        font-size: 13px !important;\n\t\t        line-height: 14px !important;\n\t\t        // height: inherit !important;\n\t\t        // width: 50px !important;\n\t\t    }\n\t\t    .listEvent h3.date .yearNum {\n\t\t        font-size:13px !important;\n\t\t    }\n\t\t    .viewListPics .listEvent h3.date .dayNum{\n\t\t        font-size:22px !important;\n\t\t        line-height:33px !important;        \n\t\t        top:-6px !important;\n\t\t    }\n\t\t    .listEvent .controlbar {\n\t\t\t    text-align: center;\t\t\t\t\t    \n\t\t\t    float: none !important;\n\t\t\t    margin: 0 auto;\n\t\t\t}\n\t\t//Mobile\n\t} //595px\n\n\t@media only screen and(max-width: 400px) {\n\t\t.webVideo iframe {\n\t\t\twidth: 100%;\n\t\t\tmin-height: 330px;\n\t\t\theight: inherit;\n\t\t}\n\t\t.fullInfo {\n\t\t\tdisplay:none;\n\t\t}\n\t\t.viewPosters{\n\t\t\tul.eventsList{\n\t\t\t\t&.largePics{\n\t\t\t\t\tli.listEvent{\n\t\t\t\t\t\tdiv.eventPosterArea{\n\t\t\t\t\t\t\theight:150px;\n\t\t\t\t\t\t\t//width:calc(50% - 10px);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t} //400px\n\n}\n#musicidb-featured-events.tvScreen, \n.tvScreen #musicidb-featured-events{\n\t@media only screen and(max-width: 700px) {\n\t\t.slider-banner{\n\t\t\t.slick-slide{\n\t\t\t\tmin-height:1px;\n\t\t\t}\n\t\t}\n\t\t.slick-dots{\n\t    \tdisplay: none !important;\n\t    }\n\t}\n\t@media only screen and(max-width: 595px) {\n\t\t.slider-banner{\n\t\t\t.slick-slide{\n\t\t\t\tmin-height:1px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.infinite-body-outer-wrapper .musicidb-events-integration{\n/* Smaller Than Most Screens */\n\t@media only screen and(max-width: 1000px) {\n\t\t.window {\n\t\t\ttop: 77px !important;\n\t\t}\n\t}\n}"]}
     1{"version":3,"sources":["_base.scss","_responsive.scss"],"names":[],"mappings":"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","file":"../styles.css","sourcesContent":["/*\nMusicIDB Plugin \nby Megabase, Inc.\nYou can directly edit your WordPress theme to override any styles\n*/\n\n//Colors\n\t$orangeIcons: #ff802a;\n\t$colorDarkFoot:#1a1a1a;\n\t$color_hunter_green_approx: #171717;\n\t$color_tapa_approx: #777;\n\t$color_delta_approx: #a4a4a4;\n\t$color_chicago_approx: #5d5d5d;\n\t$color_mercury_approx: #e7e7e7;\n\t$color_fuscous_gray_approx: #525252;\n\t$color_pink_swan_approx: #bbb;\n\t$color_storm_dust_approx: #656565;\n\t$color_alto_approx: #ddd;\n\t$color_mountain_mist_approx: #999;\n\t$color_log_cabin_approx: #222;\n\t$colorDarkBack: #333;\n\t$color_madang_approx: #b8ffbc;\n\t$green: #0f0;\n\t$color_sundown_approx: #ffb8b8;\n\t$red: #f00;\n\t$errored: #ffb9b5;\n\t$color_stack_approx: #8a8a8a;\n\t$black: #000;\n\t$color_bon_jour_approx: #e2e2e2;\n\t$white: #fff;\n\t$color_gunsmoke_approx: #858585;\n\t$color_matisse_approx: #0e699c;\n\t$color_cerulean_approx: #09a6d8;\n\t$color_mine_shaft_approx: #333;\n\t$color_deep_cerulean_approx: #0077af;\n\t$color_pizazz_approx: #ff8f00;\n\t$color_pelorous_approx: #37a7c5;\n\t$color_celeste_approx: #ccc;\n\t$color_tundora_approx: #444;\n\t$color_apple_approx: #2ea23b;\n\t$color_chilean_fire_approx: #ff7200;\n\t$color_supernova_approx: #fc0;\n\t$color_malachite_approx: #10c024;\n\t$color_mariner_approx: #2e67cf;\n\t$color_gallery_approx: #eee;\n\t$color_cape_cod_approx: #414141;\n\t$blaze_orange: #f60;\n\t$color_blue_ribbon_approx: #0f64ff;\n\t$color_torch_red_approx: #f70f30;\n\t$color_crusta_approx: #ff7630;\n\t$color_neon_carrot_approx: #ff8d30;\n\t$color_concrete_34_approx: rgba(243, 243, 243, 0.34);\n\t$color_pumice_approx: #cacaca;\n\t$mercury: #e5e5e5;\n\t$color_big_stone_approx: #11243b;\n\t$color_concrete_approx: #f3f3f3;\n\t$color_dove_gray_approx: #6d6d6d;\n\t$yellow: yellow;\n\t$color_ochre_approx: #cf7b24;\n\t$color_monza_approx: #e20d0d;\n\t$color_eastern_blue_approx: #12989f;\n\t$color_mountain_meadow_approx: #1abc9c;\n\t$color_fuchsia_pink_approx: #d229b7;\n\t$color_forest_green_approx: #00af18;\n\t$color_royal_blue_approx: #4f4ff3;\n\t$color_alabaster_approx: #fbfbfb;\n\t$color_perano_approx: #a3caf5;\n\t$color_dodger_blue_approx: #208bf8;\n\t$color_carrot_orange_approx: #f88b20;\n\t$color_wild_sand_approx: #f5f5f5;\n\t$white_82: rgba(255, 255, 255, 0.82);\n\t$color_shark_approx: #292929;\n\t$color_cararra_approx: #ebebeb;\n\t$alto: #dbdbdb;\n\t$black_38: rgba(0, 0, 0, 0.38);\n\t$color_masala_approx: #3c3c3c;\n\t$color_limed_spruce_approx: #354e52;\n\t$color_oxford_blue_approx: #353f52;\n\t$color_amaranth_approx: #de2c45;\n\t$color_quill_gray_approx: #d5d5d5;\n\t$gallery: #efefef;\n\t$color_tiara_approx: #c6d3d6;\n\t$color_gray_nurse_approx: #eaeaea;\n\t$color_woodsmoke_approx: #111;\n\t$color_concord_approx: #7b7b7b;\n\t$color_iron_approx: #d8d8d8;\n\t$color_san_marino_approx: #3b67bb;\n\t$color_orange_roughy_approx: #d05126;\n\t$color_lochmara_approx: #008dcc;\n\t$color_shady_lady_approx: #a7a7a7;\n\t$color_bahama_blue_approx: #016797;\n\t$color_vermilion_approx: #ff3d00;\n\t$color_suva_gray_approx: #888;\n\t$gray: #808080;\n\t$color_outrageous_orange_approx: #f36638;\n\t$color_pale_slate_approx: #c3c3c3;\n\t$color_sandal_approx: #a98870;\n\t$color_burning_orange_approx: #ff6a2f;\n\t$color_desert_approx: #b56027;\n\t$seashell: #f1f1f1;\n\t$color_gravel_approx: #4a4a4a;\n\t$color_black_rock_approx: #003;\n\t$color_bright_turquoise_approx: #0cf;\n\t$color_mirage_approx: #0c182e;\n\t$color_heavy_metal_approx: #2d2d2d;\n\t$color_sangria_approx: #9f0000;\n\t$color_juniper_approx: #6d8c99;\n\t$color_fun_green_approx: #00662d;\n\t$color_bali_hai_approx: #9097ad;\n\t$color_chathams_blue_approx: #1b516a;\n\t$color_tarawera_approx: #0c4046;\n\t$color_pomegranate_approx: #ef501d;\n\t$color_harlequin_approx: #10bb27;\n\t$color_japanese_laurel_approx:  green;\n\t$color_silver_approx: #c1c1c1;\n\t$color_star_dust_approx: #a1a1a1;\n\t$white_84: rgba(255, 255, 255, 0.84);\n\t$white_100: rgba(255, 255, 255, 1);\n\t$color_desert_storm_approx: #f8f8f8;\n\t$color_pewter_approx: #97afa1;\n\t$color_de_york_approx: #7ecea0;\n\t$color_nepal_approx: #8ebac3;\n\t$color_fountain_blue_approx: #5eb1c3;\n\t$color_black_haze_approx: #f7f7f7;\n\t$color_catskill_white_approx: #eef7f6;\n\t$color_sorrell_brown_approx: #d1ba8a;\n\t$color_double_pearl_lusta_approx: #faf1d4;\n\t$color_banana_mania_approx: #f6e4af;\n\t$color_smalt_blue_approx: #547b84;\n\t$color_fern_approx: rgb(98, 199, 114);\n\t$color_boulder_approx: #797979;\n\t$color_gray_approx: #7e7e7e;\n\t$color_surf_approx: rgb(188, 219, 188);\n\t$color_jewel_approx: #1c7032;\n\t$color_tuatara_approx: #383838;\n\t$color_ironside_gray_approx: #676767;\n\t$color_half_baked_approx: #76bdd6;\n\t$color_off_yellow_approx: rgb(255, 248, 228);\n\t$alabaster: #fafafa;\n\t$color_mustard_approx: #ffd74a;\n\t$color_mango_tango_approx: #eb7800;\n\t$color_mojo_approx: #cc4a3d;\n\t$black_90: rgba(0, 0, 0, 0.9);\n\t$mine_shaft: #323232;\n\t$mine_shaft_80: rgba(50, 50, 50, .8);\n\t$color_fuzzy_wuzzy_brown_approx: #c55959;\n\t$color_radical_red_approx: #ff3b52;\n\t$color_sinbad_approx: #9cd3d3;\n\t$color_nobel_approx: #b3b3b3;\n\t$blue:  blue;\n\t$color_arapawa_approx: #11116b;\n\t$color_silver_chalice_approx: #aaa;\n\t$black_62: rgba(0, 0, 0, 0.62);\n\t$color_bay_of_many_approx: #1b3883;\n\t$web_orange: orange;\n\t$color_anakiwa_approx: #8cdefe;\n\t$color_fiord_approx: #4a546d;\n\t$color_tangerine_approx: #e78d00;\n\t$color_laser_lemon_67_approx: rgba(255, 255, 103, 0.67);\n\t$color_spanish_green_approx: #898;\n\t$color_sapphire_approx: #2451a1;\n\t$color_log_cabin_74_approx: rgba(34, 34, 34, 0.74);\n\t$color_allports_approx: #0070a6;\n\t$white_60: rgba(255, 255, 255, .6);\n\t$color_ship_cove_approx: #6b96bb;\n\t$color_havelock_blue_approx: #4897d2;\n\t$color_gray_chateau_approx: #9fa9ae;\n\t$color_bismark_approx: #4e6d7d;\n\t$color_bull_shot_approx: #825426;\n\t$concrete: #f2f2f2;\n\t$wheat: wheat;\n\t$red_80: rgba(255, 0, 0, 0.8);\n\t$red_40: rgba(255, 0, 0, 0.4);\n\t$color_dark_fern_approx: #0d440d;\n\t$white_64: rgba(255, 255, 255, 0.64);\n\t$black_64: rgba(0, 0, 0, 0.64);\n\t$color_madang_93_approx: rgba(190, 250, 190, 0.93);\n\t$color_madang_55_approx: rgba(190, 250, 190, 0.55);\n\t$color_silver_sand_approx: #c2c2c2;\n\t$wild_sand: #f4f4f4;\n\t$black_35: rgba(0, 0, 0, 0.35);\n\t$color_rangoon_green_approx: #1b1b1b;\n\t$color_pizza_approx: #ca8f08;\n\n\n//Extends\n\t\n\t//original selectors\n\t//.artistDetails .socialBubbleIcons li, .cardFloater .socialBubbleIcons li\n\t%extend_43 {\n\t\tfloat: right;\n\t\tpadding: 0 0 0 2px;\n\t\tmargin-bottom: 2px;   \n\t\tlist-style-type: none;\n\t}\n\n\t//original selectors\n\t//.eventInfoArea .venueInfoTile, .eventInfoArea .tilesContainer\n\t%extend_27 {\n\t\tfloat: left;\n\t\tclear: none;\n\t\twidth: 50%;\n\t}\n\n//Fonts\n\t$fontStandard: 'Arial';\t\t\t\t\n\t$fontMontserrat: 'Montserrat';\n\t$fontSans: 'sans-serif';\n\t$fontRoboto: 'Roboto';\n\t$font_24: 'Helvetica';\n\t$font_bigHead: 'Days One';\n\t$font_37: 'Flat-UI-Icons';\n\t$font_49: 'Open Sans';\n\n//Helper Classes\n\t.cf:before,\n\t.cf:after {\n\t    content: \"\";\n\t    display: table;\n\t}\n\t.cf:after {\n\t    clear: both;\n\t}\n\t.cf {\t\n\t/* For IE 6/7 (trigger hasLayout) */\n\t*zoom: 1;\n\t}\n\n//Styles\t\t\n\tbody.noScroll {\n\t\toverflow: hidden;\t\t\n\t}\n\n\t.slide {\n\t\tposition: relative;\n\n\t\t.right {\n\t\t\tposition: absolute;\n\t\t\tleft: 0;\n\t\t\ttop: 0;\n\t\t\tmin-height: 350px;\n\t\t\twidth: 20%;\n\t\t\tz-index: 10;\n\t\t\topacity: 0.8;\n\t\t\tcolor: #fff;\n\n\t\t\t.label {\n\t\t\t\tdisplay: block;\n\t\t\t\tbackground: #b4b6ba;\n\t\t\t\tcolor: #000;\n\t\t\t\t\n\t\t\t\twidth: 40%;\n\t\t\t\tmargin: 15px 0;\n\t\t\t\tpadding: 5px 15px;\n\t\t\t\ttext-align: center;\n\t\t\t\tline-height: normal;\n\t\t\t}\n\n\t\t\t.date {\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: 15px 15px 0 15px;\n\t\t\t\tfont-size: 11px;\n\n\t\t\t}\n\n\t\t\t.name {\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: 0 15px;\n\t\t\t\tclear: both;\n\t\t\t\tfont-size: 14px;\n\t\t\t\tline-height: 1em;\n\t\t\t}\n\n\t\t\t.tickets,\n\t\t\t.view-event {\n\t\t\t\tclear: both;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin: 15px;\n\t\t\t}\n\t\t}\n\n\t\t.left {\n\t\t\twidth: 100%;\n\t\t\timg {\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t}\n\t}\n\n\t.musicidb-events-integration {\n\t\tposition: relative;\n\t\tmargin-bottom:35px;\n\t\t//Links and Buttons \n\t\t\ta {\n\t\t\t\t// display: inline-block;\n\t\t\t\tborder: none;\n\t\t\t\ttext-decoration: none;\n\t\t\t\tbox-shadow: none;\n\t\t\t\toutline:none!important;\n\t\t\t}\n\t\t\ta:focus {\n\t\t\t\toutline:none!important\n\t\t\t}\n\t\t\t.controlbar {\n\t\t\t\tdisplay: table;\n\t\t\t\tmargin: 0 auto 0;\n\t\t\t\tmargin-bottom:0 !important;\n\t\t\t\twidth: auto;\n\t\t\t\tfloat: none !important;\n\t\t\t\tposition: relative;\n\t\t\t\tpadding: 0;\t\t\t\t\n\t\t\t\t.accent {\n\t\t\t\t\ttop: 24px;\n\t\t\t\t\tfont-size: 10px !important;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tmargin: auto;\n\t\t\t\t\tright: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\tbottom: -1px;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.likeBtn {\n\t\t\t\t}\n\t\t\t\t.loveBtn {\n\t\t\t\t}\n\t\t\t\t.greenBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t\t.silverBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t\t.blueBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t\t.orangeBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t\t.mediaBtn {\n\t\t\t\t\tpadding-left: 31px !important;\n\t\t\t\t}\n\t\t\t\t.inactiveBtn {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\tbackground: $color_mountain_mist_approx !important;\n\t\t\t\t\tcolor: $white;\n\t\t\t\t\tcursor: default;\n\t\t\t\t}\n\t\t\t\t&.mainHeadline {\n\t\t\t\t\t.likeBtn {\n\t\t\t\t\t}\n\t\t\t\t\t.loveBtn {\n\t\t\t\t\t}\n\t\t\t\t\t> li > a {\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tli {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tmargin-bottom: 4px;\n\t\t\t\t\tposition: relative;\n\t\t\t\t\tmargin-right: 4px;\n\t\t\t\t\t.link {\n\t\t\t\t\t}\n\t\t\t\t\ta.rightBorderMe {\n\t\t\t\t\t}\n\t\t\t\t\t&:last-child {\n\t\t\t\t\t\tmargin-right:0;\n\t\t\t\t\t\ta {\n\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ta {\n\t\t\t\t\tfont: 14px/14px Arial,'Open Sans',sans-serif!important;\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\ttext-decoration: none !important;\n\t\t\t\t\t}\n\t\t\t\t\t&.musicIDBevent img.whiteIcon {\n\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tspan {\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\tfont: 13px/15px 'Open Sans', sans-serif;\n\t\t\t\t\t// display: table-cell;\n\t\t\t\t\t// vertical-align: middle;\n\t\t\t\t\t// float: left;\t\n\t\t\t\t\t// top: -3px;\n\t\t    \t\t// position: relative;\n\t\t\t\t}\n\n\t\t\t\t> li {\n\t\t\t\t\t> a {\n\t\t\t\t\t\tbackground: $white;\n\t\t\t\t\t\t//Instead of the line below you could use @include border-radius($radius, $vertical-radius)\n\t\t\t\t\t\tborder-radius: 4px;\n\t\t\t\t\t\tpadding: 7px 10px 4px;\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\tborder-right: none;\n\t\t\t\t\t\tcolor: $color_shark_approx;\n\t\t\t\t\t\tmax-width: 100px;\n\t\t\t\t\t\tposition: relative;\n\t\t\t\t\t\theight: 30px;\n\t\t\t\t\t\tbox-sizing:border-box;\n\t\t\t\t\t\tmin-height: inherit;\n\t\t\t\t\t\tborder: 1px solid transparent;\n\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\tbackground: $color_dove_gray_approx;\n\t\t\t\t\t\t\tbackground: $color_mine_shaft_approx;\n\t\t\t\t\t\t\tcolor: $white;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\ta.TicketLink {\n\t\t\t\t\t\tposition: relative;\n\t\t\t\t\t\t// top: -2px;\n\t\t\t\t\t\tborder:1px solid #2ea23b !important;\n\t\t\t\t\t\t// padding: 8px 18px 3px!important;\n\t\t\t\t\t\t&.ticketSmall {\n\t\t\t\t\t\t\t// padding: 4px 13px 0 !important;\n\t\t\t\t\t\t\t// top: 2px;\n\t\t\t\t\t\t\tborder: 1px solid $color_forest_green_approx!important;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\ta.orangeBtn {\n\t\t\t\t\t\tbackground: $blaze_orange;\n\t\t\t\t\t\tcolor: $white;\n\t\t\t\t\t\tmargin: 0;\n\t\t\t\t\t\t// padding: 6px 10px 7px !important;\n\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\tbackground: $color_orange_roughy_approx;\n\t\t\t\t\t\t\ttext-decoration: none !important;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t&.msgBar {\n\t\t\t\t\tli {\n\t\t\t\t\t\tfloat: none;\n\t\t\t\t\t\tmargin: 0 -2px;\n\t\t\t\t\t}\n\t\t\t\t\ta {\n\t\t\t\t\t\theight: 16px;\n\t\t\t\t\t\tbackground: $white;\n\t\t\t\t\t\tmargin-right: 5px;\n\t\t\t\t\t}\n\t\t\t\t\t.aReplacement {\n\t\t\t\t\t\theight: 16px;\n\t\t\t\t\t\tbackground: $white;\n\t\t\t\t\t\tmargin-right: 5px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.tableize {\n\t\t\t\t\tdisplay: table;\n\t\t\t\t}\n\t\t\t\tspan {\n\t\t\t\t}\n\t\t\t\t.playBtn {\n\t\t\t\t\ttop: 0;\n\t\t\t\t}\n\t\t\t\t.claim {\n\t\t\t\t\tfloat: right;\n\t\t\t\t}\n\t\t\t\t.buttonSpinner,\n\t\t\t\t.buttonMsg {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\ttop: 3px;\n\t\t\t\t\tleft: 4px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.greenBtn {\n\t\t\t\tfont-family: $fontRoboto;\n\t\t\t\tpadding: 2px 17px;\n\t\t\t\theight: 34px;\n\t\t\t\tdisplay: table-cell;\n\t\t\t\tvertical-align: middle;\n\t\t\t\tfont-size: 16px;\n\t\t\t\ttext-transform: none;\n\t\t\t\tborder: 0;\n\t\t\t\tcursor: pointer;\n\t\t\t\tmargin-right: 10px;\n\n\t\t\t\tpadding: 9px 20px;\n\t\t\t\theight: inherit;\n\t\t\t\t//Instead of the line below you could use @include border-radius($radius, $vertical-radius)\n\t\t\t\tborder-radius: 4px;\n\t\t\t\tcolor: $white !important;\n\t\t\t\tmin-height: 18px;\n\n\t\t\t\tbackground: $color_apple_approx !important;\n\t\t\t\t&:hover {\n\t\t\t\t\ttext-decoration: none !important;\n\t\t\t\t\tbackground: $color_malachite_approx !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.eventInfoWide {\n\t\t\t\tfont-size: 12px;\n\t\t\t\tline-height: 15px;\n\t\t\t\tmargin-bottom: 13px;\n\t\t\t\ta {\n\t\t\t\t\tcolor: $color_tangerine_approx;\n\t\t\t\t\t\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tcolor: $color_tangerine_approx;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.btn {\n\t\t\t\ti {\n\t\t\t\t\tpadding: 0 7px 0 0;\n\t\t\t\t\tfloat: left;\n\t\t\t\t}\t\t\t\n\t\t\t}\n\t\t\t.simpleBtn{\n\t\t\t\tdisplay: inline-block;\n\t\t\t    margin: 0 4px 0 0;\n\t\t\t    padding: 4px 8px;\n\t\t\t    border-radius: 5px;\n\t\t\t    border: 1px solid #ccc;\n\t\t\t    font-size: 11px !important;\n\t\t\t    background: #fff;\n\t\t\t    color: #444;\t\t\t\t\n\t\t\t}\n\t\t\t.TicketLink span,\n\t\t\t.orangeBtn span {\n\t\t\t\tfont: 14px/15px Arial,'Open Sans',sans-serif!important;\n\n\t\t\t\ti {\n\t\t\t\t\t// margin-right: 5px;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t    left: 10px;\n\t\t\t    \ttop: 5px;\n\t\t\t\t}\n\t\t\t}\n\t\t\ta.fbLinkWide {\n\t\t    \tcolor: #fff !important;\n\t\t    \tbackground: #3B5998 !important;\n\t\t\t    border: 1px solid transparent !important;\n\t\t\t    i.fui-facebook{\n\t\t\t    \tcolor:#FFF;\n\t\t\t    }\n\t\t\t    &:hover{\n\t\t\t    \tcolor:#fff !important;\n\t\t\t    \tbackground: #1919f3 !important;\n\t\t\t    }\n\t\t    }\n\t\t    &.blackBack{\n\t\t    \t.eventsList .rowView .rowColumn .simpleBtn{\n\t\t\t\t\tbackground:#181818;\t\t\t\n\t\t\t\t\tcolor:#eee;\t\n\t\t\t\t\t&:hover{\n\t\t\t\t\t\tbackground:#000;\n\t\t\t\t\t}\t\n\t\t\t\t}\n\t\t\t\t.fbLinkWide{\n\t\t\t\t\tbackground: #3B5998 !important;\n    \t\t\t\tborder: none !important;\n    \t\t\t\tborder: 1px solid transparent !important;\t\t\t\n    \t\t\t\t&:hover{\n    \t\t\t\t\tbackground: #153a85 !important;\n    \t\t\t\t\tcolor: #fff !important;;\n    \t\t\t\t}\n\t\t\t\t}\t\t\t\t\n\t\t    }\n\t\t    \n\t\t//General Styles\n\t\t\t\n\t\t\timg {\n\t\t\t\tmax-width:100%;\n\t\t\t\theight:auto;\n\t\t\t\tborder:none;\n\t\t\t\tbackground:none;\n\t\t\t}\n\t\t\t.preLoader {\n\t\t\t\tdisplay: table;\n\t\t\t\tmargin: 140px auto;\n\t\t\t}\n\t\t\t.fui-plus-circle {\n\t\t\t\tcursor: pointer;\n\t\t\t\tcolor:#797979;\n\t\t\t}\n\t\t\t.summaryToggle:hover .fui-plus-circle{\n\t\t\t\tcolor:#444;\t\n\t\t\t}\n\t\t\th2.date {\n\t\t\t\tfont-size: 20px;\n    \t\t\tmargin: 0 0 5px;\n\t\t\t}\n\n\t\t//List Styles\n\t\t\tul {\n\t\t\t\tleft:0;\n\t\t\t\tlist-style:none;\n\t\t\t\tpadding-right:0;\n\t\t\t\tmargin-left: 0;\n\t\t\t}\n\t\t\tul.eventsList {\n\t\t\t\tmargin:0 !important;\n\t\t\t\tpadding:0 !important;\n\t\t\t}\n\t\t\t.thumbTileHolder {\n\t\t\t\twidth: 220px;\n\t\t\t\theight: 220px;\n\t\t\t\tposition: relative;\n\t\t\t}\n\t\t\t.viewListPics{\n\t\t\t\t.eventsList {\n\t\t\t\t\tlist-style: none;\n\t\t\t\t\tleft:0;\n\t\t\t\t\tpadding-left: 0;\n\t\t\t\t    margin-left: 0;\n\n\t\t\t\t\t.listEvent {\n\t\t\t\t\t\tbackground: $white;  \n\t\t\t\t\t\tbackground:#ffffffe0;  \n\t\t\t\t\t\tborder: 1px solid $white !important;\n\t\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\t\tmargin: 0 0 5px 0;\n\t\t\t\t\t\tpadding: 8px 8px 5px 16px;\n\t\t\t\t\t\tposition: relative;\n\t\t\t\t\t\tclear: both;\n\n\t\t\t\t\t\t.centeredBlock {\n\t\t\t\t\t\t\tmargin-top: 0;\n\t\t\t\t\t\t}\t\t\t\n\n\t\t\t\t\t\t&:nth-child(2n) {\n\t\t\t\t\t\t\tbackground:#fbfbfbe0;\n\t\t\t\t\t\t\tborder-top: 1px solid $gallery;\n\t\t\t\t\t\t\tborder-bottom: 1px solid $gallery;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.summaryToggle  {\n\t\t\t\t\t\t\tposition:absolute;\n\t\t\t\t\t\t\t// top: 15px;\n\t    \t\t\t\t\t// left: 5px;\n\t    \t\t\t\t\ttop: 7px;\n\t    \t\t\t\t\tleft: 10px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t&.noExpand {\n\t\t\t\t\t\t\tpadding-left: 8px;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\tarticle {\n\t\t\t\t\t\t\tmargin-bottom: 5px;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.details {\n\t\t\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.navWithBubbles .bubbleContent {\n\t\t\t\t\t\t\tbottom: 44px;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\th3.date {\n\t\t\t\t\t\t\tbackground:none;\n\t\t\t\t\t\t\tpadding:1px 0px 0px;\n\t\t\t\t\t\t\tfont-size:18px;\n\t\t\t\t\t\t\tfloat:left;\n\t\t\t\t\t\t\tmargin: 4px 6px 0 0;\n\n\t\t\t\t\t\t\tspan {\n\t\t\t\t\t\t\t\tcolor: #5d5d5d !important;\n\t\t\t\t\t\t\t\tbackground: none !important;\n\t\t\t\t\t\t\t\twidth: 65px;\n\n\t\t\t\t\t\t\t\t&.monthName {\t\t\t\t\n\t\t\t\t\t\t\t\t\tfont: 15px/17px \"Arial\", \"sans-serif\";\n\t\t\t\t\t\t\t\t\tpadding: 2px 0 0;\n\t\t\t\t\t\t\t\t\theight: 15px;\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t&.dayNameAbb {\n\t\t\t\t\t\t\t\t\ttext-transform: none;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t&.dayNum {\t\n\t\t\t\t\t\t\t\t    font: 35px/35px \"Raleway\", \"Arial\", \"sans-serif\";\n\t\t\t\t\t\t\t\t    height: 39px;\t\t\n\t\t\t\t\t\t\t\t    position: relative;\n\t\t\t\t    \t\t\t\ttop: -3px;\t\t    \n\t\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t\t&.yearNum{\n\t\t\t\t\t\t\t\t\tcolor: #999 !important;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.eventPosterArea {\n\t\t\t\t\t\t\tmax-height: 140px;\n\t\t\t\t\t\t\twidth: 125px;\n\t\t\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t\t\tfloat: left;\n\n\t\t\t\t\t\t\timg {\n\t\t\t\t\t\t\t\t//width: 125px !important;\n\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\theight:auto;\n\t\t\t\t\t\t\t\tmargin: 7px 0 0;\n\t\t\t\t\t\t\t\t// max-height: 210px;\n\t\t\t\t\t\t\t\tmax-height: none;\n\t\t\t\t\t\t\t\tbackground: $color_gray_nurse_approx;\n\t\t\t\t\t\t\t\tmax-width: 100%;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t&.large{\n\t\t\t\t\t\t\t\twidth:350px;\n\t\t\t\t\t\t\t\timg{\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\timg.defaultPic {\n\t\t\t\t\t\t\t\topacity: .3;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.bandPicBox img {\n\t\t\t\t\t\t\t\tmargin: 0 auto;\n\t\t\t\t\t\t\t\theight: auto;\n\t\t\t\t\t\t\t\tmin-width: 41px;\n\t\t\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.listingBody, .controlbar.moveLeft {\n\t\t\t\t\t\t\tmargin-left: 215px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.listingBody {\n\t\t\t\t\t    \t\n\t\t\t\t\t    \th3 {\n\t\t\t\t\t    \t\tmargin-bottom:12px;\n\t\t\t\t\t    \t\t.atText{\n\t\t\t\t\t\t        \tfont-size:12px;\n\t\t\t\t\t\t        }\n\t\t\t\t\t    \t}\n\t\t\t\t\t    \tp {\n\t\t\t\t\t    \t\tmargin-bottom:4px;    \n\t\t\t\t\t    \t\tpadding: 0;\n\t\t\t\t\t    \t}\n\t\t\t\t\t    }\n\n\t\t\t\t\t\t.details {\n\t\t\t\t\t\t\tmargin-bottom: 4px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.eventLogistics {\n\t\t\t\t\t\t\theight: inherit;\n\t\t\t\t\t\t\tmargin-bottom: 3px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.venueInfo .detailsRow {\n\t\t\t\t\t\t\twidth: 70%;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.fullInfo {\n\t\t\t\t\t\t    margin-top: 15px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.eventInfoWide {\n\t\t\t\t\t\t\t// font-size: 12px;\n\t\t\t\t\t\t\t// line-height: 15px;\n\t\t\t\t\t\t\t// margin-bottom: 13px;\n\t\t\t\t\t\t\t// a {\n\t\t\t\t\t\t\t// \tcolor: $color_tangerine_approx;\n\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t// \t&:hover {\n\t\t\t\t\t\t\t// \t\tcolor: $color_tangerine_approx;\n\t\t\t\t\t\t\t// \t}\n\t\t\t\t\t\t\t// }\n\t\t\t\t\t\t}\n\t\t\t\t\t\tspan {\n\t\t\t\t\t\t\t&.monthName, &.dayNum, &.yearNum {\n\t\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t\t\ttext-align: center;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.monthName {\n\t\t\t\t\t\t\t\tfont: 14px/20px $fontRoboto, $fontStandard, $fontSans;\n\t\t\t\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\t\t\t\tpadding: 2px 0;\n\t\t\t\t\t\t\t\twidth: 80px;\n\t\t\t\t\t\t\t\tfont-weight: bold;\n\t\t\t\t\t\t\t\theight: 19px;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.dayNum {\n\t\t\t\t\t\t\t\tfont: 60px/63px $fontRoboto, $fontStandard, $fontSans;\n\t\t\t\t\t\t\t\tfont-weight: bold;\t\t\n\t\t\t\t\t\t\t\tpadding: 0;\n\t\t\t\t\t\t\t\twidth: 80px;\n\t\t\t\t\t\t\t\theight: 80px;\n\t\t\t\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.yearNum {\n\t\t\t\t\t\t\t\tcolor: #999 !important;\n\t\t\t\t\t\t\t    font-size: 10px;\n\t\t\t\t\t\t\t    position: relative;\n\t\t\t\t\t\t\t    top: -8px;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\n\t\t\t\t\t&.largePics{\n\t\t\t\t\t\t.listEvent{\n\t\t\t\t\t\t\t.eventPosterArea{\n\t\t\t\t\t\t\t\twidth:330px;\n\t\t\t\t\t\t\t\tmax-height:none;\n\t\t\t\t\t\t\t\t.bandPics{\n\t\t\t\t\t\t\t\t\t//background:#222;\n\t\t\t\t\t\t\t\t\tdisplay:flex;\t\t\t\t\n\t\t\t\t\t\t\t\t\tjustify-content: center;\t\t\t\t\n\t\t\t\t\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t\tmax-height: 500px;\n\t\t\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\t\t\tfloat:none;\n\t\t\t\t\t\t\t\t\t\twidth:50%;\t\n\t\t\t\t\t\t\t\t\t\theight: auto;\n\t\t\t\t\t\t\t\t\t\taspect-ratio:1 / 1;\n\t\t\t\t\t        \t\t\tgap: 0px;\n\t\t\t\t\t        \t\t\talign-content:center;\n\t\t\t\t\t        \t\t\t// justify-content: center;\n\t\t\t\t\t\t\t\t\t\t// align-items: center;\t\t\n\t\t\t\t\t\t\t\t\t\t// display: block;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t&.oneBand{\n\t\t\t\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\timg{\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.listingBody, .controlbar.moveLeft{\n\t\t\t\t\t\t\t\tmargin-left:420px !important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t//Artist View / Simple Compact Event List View\n\t\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t\t.viewPosters{\n\t\t\t\tmax-width:1140px;\n\t\t\t\tul.eventsList{\n\t\t\t\t\tdisplay:flex;\n\t\t\t\t\tflex-wrap: wrap;\t\t\t\t\t\n\t\t\t\t\tjustify-content: space-between;\n\t\t\t\t\tlist-style:none;   \n\t\t\t\t\tmargin: 0 !important;\n    \t\t\t\tpadding: 0 !important;\n    \t\t\t\t//* TEMPORARY FOR TESTING: */ background:#eee;\n\t\t\t\t\tli.listEvent{\n\t\t\t\t\t\tbox-sizing:border-box;\n\t\t\t\t\t\twidth:33%;\n\t\t\t\t\t\twidth:calc(33% - 20px);\t\n\t\t\t\t\t\tmargin-bottom: 20px;\n\t\t\t\t        gap: 0px;\n\t\t\t\t\t\tdisplay:flex;        \n\t\t\t\t\t\tjustify-content: space-between;\n\t\t\t\t\t\talign-items: center;\t\t\n\t\t\t\t\t\talign-content: flex-start;\n\t\t\t\t\t\t// display: block;\n\t\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\t\tposition:relative;\n\t\t\t\t\t\t// /* TEMPORARY FOR TESTING: */ background:#fff;\n\t\t\t\t\t\t.summaryToggle {\n\t\t\t\t\t\t\tposition:absolute;\n\t\t\t\t\t\t\ttop:1px;\n\t\t\t\t\t\t\tleft:2px;\n\t\t\t\t\t\t\t.musicidb-events-integration .fui-plus-circle{\n\t\t\t\t\t\t\t\tcolor:#bbb;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdiv.eventPosterArea{\n\t\t\t\t\t\t\tbackground:#333;\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\tmargin-bottom: 10px;\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t/* This height works with a container width 1150px; */ height: 315px; \n\t\t\t\t\t\t\toverflow:hidden;\n\t\t\t\t\t\t\tdisplay: flex;\n    \t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\t\ta{\n\t\t\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\t\t\tmargin: 0 auto;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.eventImg{\n\t\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.bandPics{\n\t\t\t\t\t\t\t\t//background:#222;\n\t\t\t\t\t\t\t\tdisplay:flex;\t\t\t\t\n\t\t\t\t\t\t\t\tjustify-content: center;\t\t\t\t\n\t\t\t\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\t\tfloat:none;\n\t\t\t\t\t\t\t\t\twidth:50%;\t\n\t\t\t\t\t\t\t\t\theight: auto;\n\t\t\t\t\t\t\t\t\taspect-ratio:1 / 1;\n\t\t\t\t        \t\t\tgap: 0px;\n\t\t\t\t        \t\t\talign-content:center;\n\t\t\t\t        \t\t\t// justify-content: center;\n\t\t\t\t\t\t\t\t\t// align-items: center;\t\t\n\t\t\t\t\t\t\t\t\t// display: block;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t&.oneBand{\n\t\t\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdiv.listingBody{\n\t\t\t\t\t\t\tpadding:0 10px;\n\t\t\t\t\t\t\tbox-sizing:border-box;\n\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\th3.date{\n\t\t\t\t\t\t\t\tmargin-bottom:8px;\n\t\t\t\t\t\t\t\tfont-size: 18px;\n\t\t\t\t\t\t\t\tline-height:1.1em;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\th3.titleofevent{\n\t\t\t\t\t\t\t\tmargin-bottom:12px;\n\t\t\t\t\t\t\t\t.cardFloater{\n\t\t\t\t\t\t\t\t\tpadding-top:0;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.eventInfoArea{\n\t\t\t\t\t\t\t\t.marginBottom{\n\t\t\t\t\t\t\t\t\tmargin-bottom:5px;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tul.controlbar {\n\t\t\t\t\t\t\tleft:0;\n\t\t\t\t\t\t\tmargin-left:0;\n\t\t\t\t\t\t\tpadding:0;\n\t\t\t\t\t\t\tmargin:0;    \n\t\t\t\t\t\t\tlist-style:none;    \n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\tdisplay: flex;\n\t\t\t\t\t\t\tflex-wrap: nowrap;\n    \t\t\t\t\t\tjustify-content: center;\n    \t\t\t\t\t\talign-items: center;\n\t\t\t\t\t\t\tli{\n\t\t\t\t\t\t\t\ta{\n\t\t\t\t\t\t\t\t\t&:hover, &:active, &:focus{\n\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.viewCompact{\n\t\t\t\t.rowView {\n\t\t\t\t        width: 100%;\n\t\t\t\t        display:flex;   \n\t\t\t\t        align-items: center;\n\t\t\t\t\t\t.rowColumn{\n\t\t\t\t\t\t\ttext-align: left;\n\t\t\t\t\t\t\tvertical-align: top;\n\t\t\t\t\t\t\twidth: 20%;    \n\t\t\t\t\t\t\tpadding: 5px 5px;\n\t\t\t    \t\t\tbox-sizing: border-box;\n\t\t\t    \t\t\tdisplay: flex;\n\t\t\t    \t\t\talign-items: center;\n\t\t\t\t\t\t    // flex-direction: row;\n\t\t\t\t\t\t    // align-content: center;\t\t\t\t\t\t    \n\t\t\t    \t\t\t.cardFloater{\n\t\t\t    \t\t\t\t\n\t\t\t    \t\t\t}\n\t\t\t\t\t\t    &.venueColumn{\n\t\t\t\t\t\t        width:20%;\n\t\t\t\t\t\t    }\n\t\t\t\t\t\t    &.detailsColumn{\n\t\t\t\t\t\t    \tposition: relative;\n\t    \t\t\t\t\t\t// top: -13px;\n\t\t\t\t\t\t    }\n\t\t\t    \t\t\t\n\t\t\t    \t\t\t&.buttonsColumn{\n\t\t\t    \t\t\t\twidth:26%;    \n\t\t\t    \t\t\t\ttext-align: right;\n\t\t\t\t\t\t\t\tmin-width: 220px;\n\t\t\t\t\t\t\t\tdisplay:flex; \n\t\t\t\t\t\t\t\tflex-direction: row-reverse;\n    \t\t\t\t\t\t\talign-items: center;\n\t\t\t    \t\t\t}\n\t\t\t    \t\t\t\n\t\t\t    \t\t\tspan.yearNum{\n\t\t\t    \t\t\t\ttext-align:left;\n\t\t\t    \t\t\t\tdisplay:inline;\n\t\t\t    \t\t\t\ttop:0;\n\t\t\t    \t\t\t}\n\t\t\t    \t\t\t\n\t\t\t    \t\t\t.simpleBtn{\n\t\t\t    \t\t\t\tdisplay: inline-block;\n\t\t\t\t\t\t\t    // margin: 0 4px 0 0;\n\t\t\t\t\t\t\t    // padding: 4px 8px;\n\t\t\t\t\t\t\t    // border-radius: 5px;\n\t\t\t\t\t\t\t    // border: 1px solid #ccc;\n\t\t\t\t\t\t\t    // \n\t\t\t\t\t\t\t    font-size: 11px !important;\n\t\t\t\t\t\t\t    // background: #fff;\n\t\t\t\t\t\t\t    // color: #444;\t\t\t\t\t\t    \n\t\t\t    \t\t\t\t&.fbLinkWide{\n\t\t\t    \t\t\t\t\tdisplay:inline-block;\n\t\t\t    \t\t\t\t}\n\t\t\t    \t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.locationColumn {\n\t\t\t\t        \twidth:14%;\n\t\t\t\t    \t}\n\t\t\t\t\t    .simpleTitle {\n\t\t\t\t\t        font-size: 14px;\n\t\t\t\t\t        line-height: 15px;\n\t\t\t\t\t        margin-bottom: 6px;\n\t\t\t\t\t        \n\t\t\t\t\t    }\n\t\t\t\t    }\n\t\t\t}\n\t\t\t.eventInfoArea {\n\t\t\t\t.left {\n\t\t\t\t\twidth: 50%;\n\t\t\t\t}\n\t\t\t\t.venueInfoTile {\n\t\t\t\t\t@extend %extend_27;\n\t\t\t\t}\n\t\t\t\t.tilesContainer {\n\t\t\t\t\t@extend %extend_27;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\t\t\t//Strip & Reset WYSIWYG Content for Clean Display\n\t\t\t.eventDescription {\n\t\t\t\tcolor: $color_cape_cod_approx !important;\n\t\t\t\tfont-family:Arial, sans-serif !important;\n\t\t\t\tfont-size:16px !important;\n\t\t\t\tline-height:22px !important;\n\t\t\t\tspan, div, p, \n\t\t\t\th1, h2, h3, h4, h5, h6{\n\t\t\t\t\tcolor:$color_cape_cod_approx !important;\n\t\t\t\t\tbackground:none !important;\n\t\t\t\t}\n\t\t\t\ta{\n\t\t\t\t\tbackground:none !important;\t\n\t\t\t\t}\n\t\t\t\tspan, div, p {\n\t\t\t\t\tfont-family:Arial, sans-serif !important;\n\t\t\t\t\tfont-size:16px !important;\n\t\t\t\t\tline-height:22px !important;\n\t\t\t\t}\n\t\t\t\tdiv, p {\n\t\t\t\t\tmargin-bottom:15px !important;\n\t\t\t\t\tpadding:0 !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.thumbTileHolder {\n\t\t\t\twidth: 220px;\n\t\t\t\theight: 220px;\n\t\t\t\tposition: relative;\n\t\t\t}\n\n\t\t\t.showDetailsLink:not(.simpleBtn) {\n\t        \t//padding-top: 13px;\n\t        \t//display: inline-block;\n\t        }\n\n\t\t\t.cardFloater {\n\t\t\t\tposition: relative;\n\t\t\t\tdisplay: inline-block;\n\t\t\t\tpadding-top: 10px;\n\t\t\t\t//padding-top:13px; //Better on dirty dottys..\n\t\t\t\t\n\t\t\t\t&:hover {\n\t\t\t\t\t.hoverArtist {\n\t\t\t\t\t\tcolor: $color_mine_shaft_approx;\n\t\t\t\t\t\ttext-decoration: underline;\n\t\t\t\t\t}\n\t\t\t\t\t.thumbTileHolder {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.thumbTileHolder {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tbottom: 23px;\n\t\t\t\t\tleft: -10px;\n\t\t\t\t\toverflow: hidden; /*beta change */\n\t\t\t\t\tz-index: 3;\n\t\t\t\t\tfont-weight: normal;\n\t\t\t\t\tfont-size: 14px;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.linkTileHolder {\n\t\t\t\t\tborder: 8px solid $color_cararra_approx;\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.socialBubbleIcons {\t\t\t\t\t\n\t\t\t\t\tleft:auto;\n\t\t\t\t\tright: 4px;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tz-index: 3;\n\t\t\t\t\tbottom: -1px;\n\t\t\t\t\theight: 25px;\n\t\t\t\t\tpadding-right:0;    \t\t\n\t\t\t\t\tmargin: 0 !important;\n\t\t\t    \tpadding: 0 !important;\n\t\t\t    \tbox-sizing: border-box;\n\t\t\t\t\t// left: 8px;\n\t\t\t\t\t\n\t\t\t\t\tli {\n\t\t\t\t\t\t@extend %extend_43;\n\n\t\t\t\t\t\ta.fbLink, a.facebook { background: url(\"../images/social-icons.png\") no-repeat -133px -98px; }\n\t\t\t\t\t\ta.fbLink:hover, a.facebook:hover { background: url(\"../images/social-icons.png\") no-repeat -133px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.twitterLink { background: url(\"../images/social-icons.png\") no-repeat -67px -98px; }\n\t\t\t\t\t\ta.twitterLink:hover { background: url(\"../images/social-icons.png\") no-repeat -67px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.otherLink { background: url(\"../images/social-icons.png\") no-repeat -263px -98px; }\n\t\t\t\t\t\ta.otherLink:hover { background: url(\"../images/social-icons.png\") no-repeat -263px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.soundcloudLink { background: url(\"../images/social-icons.png\") no-repeat -100px -66px; }\n\t\t\t\t\t\ta.soundcloudLink:hover { background: url(\"../images/social-icons.png\") no-repeat -100px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.instagramLink { background: url(\"../images/social-icons.png\") no-repeat -166px -66px; }\n\t\t\t\t\t\ta.instagramLink:hover { background: url(\"../images/social-icons.png\") no-repeat -166px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.googlePlusLink { background: url(\"../images/social-icons.png\") no-repeat -199px -98px; }\n\t\t\t\t\t\ta.googlePlusLink:hover { background: url(\"../images/social-icons.png\") no-repeat -199px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.linkedinLink { background: url(\"../images/social-icons.png\") no-repeat -133px -66px; }\n\t\t\t\t\t\ta.linkedinLink:hover { background: url(\"../images/social-icons.png\") no-repeat -133px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.pinterestLink { background: url(\"../images/social-icons.png\") no-repeat -232px -98px; }\n\t\t\t\t\t\ta.pinterestLink:hover { background: url(\"../images/social-icons.png\") no-repeat -232px -34px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.bandcampLink { background: url(\"../images/social-icons.png\") no-repeat -2px -66px; }\n\t\t\t\t\t\ta.bandcampLink:hover { background: url(\"../images/social-icons.png\") no-repeat -2px -2px; }\n\t\t\t\t\t\ta.reverbLink { background: url(\"../images/social-icons.png\") no-repeat -199px -66px; }\n\t\t\t\t\t\ta.reverbLink:hover { background: url(\"../images/social-icons.png\") no-repeat -199px -2px; }\n\t\t\t\t\t\ta.webLink { background: url(\"../images/social-icons.png\") no-repeat -67px -66px; }\n\t\t\t\t\t\ta.webLink:hover { background: url(\"../images/social-icons.png\") no-repeat -67px -2px; }\n\n\t\t\t\t\t\ta.youtubeLink { background: url(\"../images/social-icons.png\") no-repeat -2px -98px; }\n\t\t\t\t\t\ta.youtubeLink:hover { background: url(\"../images/social-icons.png\") no-repeat -2px -34px; }\n\t\t\t\t\t\ta.vevoLink { background: url(\"../images/social-icons.png\") no-repeat -35px -66px; }\n\t\t\t\t\t\ta.vevoLink:hover { background: url(\"../images/social-icons.png\") no-repeat -35px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.itunesLink { background: url(\"../images/social-icons.png\") no-repeat -232px -66px; }\n\t\t\t\t\t\ta.itunesLink:hover { background: url(\"../images/social-icons.png\") no-repeat -232px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.spotLink { background: url(\"../images/social-icons.png\") no-repeat -355px -66px; }\n\t\t\t\t\t\ta.spotLink:hover { background: url(\"../images/social-icons.png\") no-repeat -355px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.wikiLink { background: url(\"../images/social-icons.png\") no-repeat -324px -66px; }\n\t\t\t\t\t\ta.wikiLink:hover { background: url(\"../images/social-icons.png\") no-repeat -324px -2px; }\n\t\t\t\t\t\t\n\t\t\t\t\t\ta.storeLink { background: url(\"../images/social-icons.png\") no-repeat -293px -98px; }\n\t\t\t\t\t\ta.storeLink:hover { background: url(\"../images/social-icons.png\") no-repeat -293px -34px; }\n\t\t\t\t\t\ta {\n\t\t\t\t\t\t    width: 21px;\n\t\t\t\t\t\t    height: 21px;\n\t\t\t\t\t\t    opacity: .8;\n\t\t\t\t\t\t    display: block;\n\t\t\t\t\t\t   \tbackground-size: 381px 123px !important;\n\t\t\t\t\t\t    &:hover {\n\t\t\t\t\t\t\t\topacity: 1;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\timg {\n\t\t\t\t\t\t\twidth: 100% !important;\n\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\t\n\t\t\t\t.oneBand .bandPicBox {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\timg {\n\t\t\t\t\t\twidth:100% !important;\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\t\n\t\t\t\t.thumbTile img {\n\t\t\t\t\tborder: none;\n\t\t\t\t\tmargin: 0;\n\t\t\t\t\tborder-radius: 0;\n\t\t\t\t\tmax-width: 100%;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.thumbTile, .thumbTile .frame {\n\t\t\t\theight: 204px; /*without this the short images cause overlay text to not stick to bottom */\n\t\t\t}\n\t\t\t.thumbTile {\n\t\t\t\tposition: relative;\n\t\t\t\t//width: 220px;\n\t\t\t\t//height: 220px;    \n\t\t\t\t//height: 220px;\n\t\t\t\t\n\t\t\t\tcolor: $color_mountain_mist_approx !important;\n\t\t\t\tdisplay: block;\n\t\t\t\tbackground: $white;\n\n\t\t\t\t.tileData {\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\tbottom: 0;\n\t\t\t\t\tleft: 0;\n\t\t\t\t\theight: 106px;\n\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tpadding:3px 10px;\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\tbackground: linear-gradient(to bottom, $white_84 0, $white_84 1%, $white_100 100%);\n\t\t\t\t\tfilter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d6ffffff', endColorstr='#ffffff', GradientType=0);\n\n\t\t\t\t\tp {\n\t\t\t\t\t\tmargin-bottom: 2px;\n\t\t\t    \t\tline-height: 13px;\n\t\t\t    \t\tfont-size: 12px;\n\t\t\t\t\t}\n\n\t\t\t\t\th3 {\n\t\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\t\tcolor: $color_fuscous_gray_approx;\n\t\t\t\t\t\t// line-height: 19px;\n\t\t\t\t\t\t//font:17px/18px 'Roboto', Arial, sans-serif !important;\n\t\t\t\t\t\tfont: 18px/22px 'Roboto', Arial, sans-serif !important;\n    \t\t\t\t\tmargin-bottom: 5px;\n\t\t\t\t\t}\n\n\t\t\t\t}\n\n\t\t\t\t&:hover {\n\t\t\t\t\ttext-decoration: none;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.frame {\n\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t//height: 220px;\n\t\t\t\t\tposition: relative;\n\t\t\t\t}\n\n\t\t\t\timg {\n\t\t\t\t\tposition: relative;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\theight: auto;\n\t\t\t\t\tvertical-align: middle;\n\t\t\t\t\tdisplay: table-cell;\n\t\t\t\t}\n\n\t\t\t\t.bandPicBox {\n\t\t\t\t\twidth: 73px;\n\t\t\t\t\theight: 73px;\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\tbackground: $color_woodsmoke_approx;\n\t\t\t\t}\n\n\t\t\t\th3 {\n\t\t\t\t\tfont: 20px/19px 'Roboto', Arial, sans-serif !important;\n\t\t\t\t}\n\t\t\t\t\n\t\t\t\t.fourSet .bandPicBox {\n\t\t\t\t\twidth: 110px;\n\t\t\t\t\theight: 110px;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.bandPicBox {\n\t\t\t\twidth: 62px;\n\t\t\t\theight: 62px;\n\t\t\t\tdisplay: block;\n\t\t\t\toverflow: hidden;\n\t\t\t\tfloat: left;\n\t\t\t\tmargin-right: 0px;\n\t\t\t\tmargin-bottom: 0px;\n\t\t\t\tbox-sizing:border-box;\n\t\t\t\ttext-align: center;\n\n\t\t\t\t&:nth-child(2n) {\n\t\t\t\t\tmargin-right: 0;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.eventsList .listEvent .oneBand .bandPicBox {\n\t\t\t\twidth: 125px;\n\t\t\t\theight: auto;\n\t\t\t\tfloat: none;\n\t\t\t\tmargin-right: 0;\n\t\t\t\timg {\n\t\t\t\t\twidth:100% !important;\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\n\t\t//Tabs\n\t\t\t.musicidb-tabs {\n\t\t\t\tpadding-bottom:10px;\n\t\t\t\t\n\t\t\t\t&.horizontal {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tclear: both;\n\t\t\t\t}\n\t\t\t\tul.musicidb-tabNav {\n\t\t\t\t\tleft:0;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tpadding:0;    \n\t\t\t\t\tmargin: 0 0 7px 0 !important;\n\t\t\t\t\tli {\n\t\t\t\t\t\tlist-style:none;\n\t\t\t\t\t\tfloat:left;\n\t\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\t\tmargin:0 8px 8px 0;\n\t\t\t\t\t\ta {\n\t\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\t\t// padding:5px;\n\t\t\t\t\t\t\tbackground:none;\t\t\t\t\t    \n\t\t\t\t\t\t    padding: 10px 16px;\n\t\t\t\t\t\t    border-radius: 3px;\n\t\t\t\t\t\t    &:hover {\n\t\t\t\t\t\t    \tbackground: #333;\t\n\t\t\t\t\t\t    \tcolor:#FFF;\n\t\t\t\t\t\t    }\n\t\t\t\t\t\t}\n\t\t\t\t\t\t&.current a {\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tbackground: #ececec;\t\n\t\t\t\t\t\t\tcolor: #444;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\n\n\t\t\t\t> a {\n\t\t\t    \tfont: 17px/20px 'Roboto',Arial,sans-serif;\n\t\t\t    }\n\n\t\t\t\tul.calViewButtons {\n\t\t\t\t\tfloat: right !important;\n\t\t\t\t\tposition: absolute !important;\n\t\t\t\t\tright: 5px;\n\t\t\t\t\tleft: inherit !important;\n\t\t\t\t\tz-index: 3;\n\t\t\t\t\tpadding: 0 !important;\n\t\t\t\t\tli {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\tfloat: left;   \n\t\t\t\t\t\tmargin: 0 0px 8px 0;\n\n\t\t\t\t\t\ta {\n\t\t\t\t\t\t\tborder: 1px solid #eee !important;\n\t\t\t\t\t\t\tbackground:#FFF !important;\n\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t\tpadding: 11px;\n\t\t\t\t\t\t\tfont-size: 23px;\n\t\t\t\t\t\t\tline-height: 20px;\n\t\t\t\t\t\t\tcolor: #5d5d5d;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\t\tcolor: $black;\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\tborder: 1px solid #eee !important;\n\t\t\t\t\t\t\t\t// border-bottom: 1px solid #000 !important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t&#listViewToggle {\n\t\t\t\t\t\t\t\tborder-radius:3px 0px 0px 3px;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t&#calViewToggle{\n\t\t\t\t\t\t\t\tborder-radius:0px 3px 3px 0px;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t&.current a {\n\t\t\t\t\t\t\tcolor: $black;\n\t\t\t\t\t\t\tborder: 1px solid #eee !important;\n\t\t\t\t\t\t\t// border-bottom: 1px solid #000 !important;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t\n\t\t\t.musicidb-tab {\n\t\t\t\tdisplay: none;\n    \t\t\tclear: both;\n\t\t\t\t&.current {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.mediaTabNav {\n\t\t\t\tdisplay: block;\n\t\t\t\tfloat: left;    \n\t\t\t\tmargin: 0;\n\t\t\t\tlist-style: none;\n    \t\t\tpadding: 0;\n\n\t\t\t\tli {\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tmargin-right: 5px;\n\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\ta {\n\t\t\t\t\t\t// padding: 5px 8px;\n\t\t\t\t\t\tdisplay:block;\n\t\t\t\t\t\tpadding:1px 8px 0px;\n\t\t\t\t\t\t// background:#f1f1f1;\n\t\t\t\t\t\tcolor: #9a9a9a;\n\t\t\t\t\t\t//Instead of the line below you could use @include border-radius($radius, $vertical-radius)\n\t\t\t\t\t\tborder-radius: 0 0 5px 5px;\n\t\t\t\t\t\tfont-family: Arial, sans-serif;\n\t\t\t\t\t\tline-height: 24px;\n\t\t\t\t\t\tfont-size: 18px;\t\t\t\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\tbackground: $color_gallery_approx;\n\t\t\t\t\t\t\tcolor: $color_storm_dust_approx;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t&.current a {\n\t\t\t\t\t\tbackground: $color_gallery_approx;\n\t\t\t\t\t\tcolor: $color_storm_dust_approx;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t//Modal Styles\n\t\t\t.eventDetailModal {\n\t\t\t\twidth: 60%;\n\t\t\t\tleft: 0 !important;\n\t\t\t\tright: 0 !important;\n\t\t\t\ttop: 39px !important;\n\t\t\t\tmargin: 0 auto;\n\t\t\t\tbox-sizing: border-box;\n\t        \tmax-height: 95%;\n\t        \tp {\n\t        \t\tmargin-bottom:5px;\n\t        \t}\n\n\t\t\t\t.cardsSlideWrap {\n\t\t\t\t\twidth: 90%;\n\t\t\t\t\tmax-width: 770px;\n\t\t\t\t\tmargin: 0 auto;\n\t\t\t\t\tpadding:0;\n\t\t\t\t\tmargin-bottom:14px;\n\t\t\t\t\n\t\t\t\t\t#artistCardsSlider {\n\t\t\t\t        padding:0 !important;\n\t\t\t\t\t\tbackground: #dcdcdc;\n\t\t\t\t\t\tmargin: 0 auto 0px;\n\n\t\t\t\t        .mediaHolder {\n\t\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\t    color: #656565;\n\t\t\t\t\t\t    background:#FFF;\n\t\t\t\t\t\t    padding:7px;\n\t\t\t\t\t\t    width: 66% !important;\n    \t\t\t\t\t\tmargin: 5px 0 0 9px !important;\n\t\t\t\t\t\t    box-sizing:border-box;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.cardFloater {\n\t\t\t\t\t\t\tpadding-top: 0;    \t\t\t\t\t\t\t\n\t\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\t\tmax-width: 28%;\n\t\t\t\t\t\t    width: 28% !important;\n\t\t\t\t\t\t    margin: 5px 0 0 2% !important;\n\t\t\t\t\t\t\tbox-sizing: border-box;\n\t\t\t\t\t\t\t.thumbTile, .linkTileHolder, .frame {\t\n\t\t\t\t\t\t\t\tmax-width:100%;\n\t\t\t\t\t\t\t\tborder:none;\n\t\t\t\t\t\t\t}\t\t\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.linkTileHolder {\n\t\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.thumbTile {\n\t\t\t\t\t\t\twidth: 250px;\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\theight: 250px;\n\t\t\t\t\t\t\tbox-sizing:border-box;\n\t\t\t\t\t\t\tpadding:7px;\n\n\t\t\t\t\t\t\t.frame {\n\t\t\t\t\t\t\t\theight:250px;\n\t\t\t\t\t\t\t\tmax-height: 100%;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t.tileData {\n\t\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\t\tmax-width: 100%;\n\t\t\t\t\t\t\t\t-moz-box-sizing: border-box;\n\t\t\t\t\t    \t\t-webkit-box-sizing: border-box;\n\t\t\t\t\t\t\t\tbox-sizing: border-box;\n\n\t\t\t\t\t\t\t\t.socialBubbleIcons {\n\t\t\t\t\t\t\t\t\tbottom:inherit;\n\t\t\t\t\t\t\t\t\ttop: 73px;\n\n\t\t\t\t\t\t\t\t\tli a {\n\t\t\t\t\t\t\t\t\t\tbackground-size: 381px 123px !important;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.artistMediaTabs {\n\t\t\t\t\t\t\theight: 208px;\n\t\t\t\t\t\t\toverflow: hidden;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.artistMediaTab {\n\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tiframe {\n\t\t\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t\t\t\theight: 100%;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.current {\n\t\t\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t\t}\n\n\t\t\t\t\t\t\t&.artistBio {\n\t\t\t\t\t\t\t\toverflow: auto;    \n\t\t\t\t\t\t\t\tbackground: white;\n\n\t\t\t\t\t\t\t\t.bioWrapper {\n\t\t\t\t\t\t\t\t\tpadding: 10px;\n\t\t\t\t\t\t\t\t\tdisplay: block;   \n\t\t\t\t\t    \t\t\tcolor: #5f5f5f;\n\t\t\t\t\t    \t\t\tfont:14px/18px Arial, sans-serif !important;\n\t\t\t\t\t\t\t\t\tspan {\n\t\t\t\t\t\t\t\t\t\tbackground: none !important;\n\t\t\t\t\t\t\t\t\t\tcolor: #5f5f5f !important;\n\t\t\t\t\t\t\t\t\t\tfont:14px/18px Arial, sans-serif !important;\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.mediaHolder.noMedia{\n\t\t\t\t\t\t\tdisplay:none;\n\t\t\t\t\t\t}\n\n\t\t\t\t\t\t.noMedia {\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t.thumbTile {\t\n\t\t\t\t\t\t\t\tbackground: none;\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t.tileData {\n\t\t\t\t\t\t\t\t\tbackground: none;\n\t\t\t\t\t\t\t\t\t// left: 260px;\n\t\t\t\t\t\t\t\t\t// bottom: -8px;\n\t\t\t\t\t\t\t\t\t// width: 172%;\n\t\t\t\t\t\t\t\t\tleft: 210px;\n    \t\t\t\t\t\t\t\tbottom: 60px;\n\t\t\t\t\t\t\t\t\twidth: 338px;\n\t\t\t\t\t\t\t    \tmax-width: none;\n\t\t\t\t\t\t\t\t\t.socialBubbleIcons {\n\t\t\t\t\t\t\t\t\t\tleft:8px;\n\t\t\t\t\t\t\t\t\t\tright:0;\n\t\t\t\t\t\t\t\t\t\tli {\n\t\t\t\t\t\t\t\t\t\t\tfloat: left;\n\t\t\t\t\t\t\t\t\t\t} \n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t    }\n\n\t\t\t\t    #artistCardsSlider, \n\t\t\t\t\t#artistCardsSlider ul.slides , \n\t\t\t\t\t#artistCardsSlider .slides li.slick-slide {\n\t\t\t\t\t\theight: 270px !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t#artistCardsList {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\t\n\t\t\t\t\t> h2 {\n\t\t\t\t\t\ttext-align: center;\n\t\t\t\t\t}   \n\t\t\t\t\t.artistsList {\n\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t\n\t\t\t\t\t.cardFloater {\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\t// text-align:left;\n\t\t\t\t\t\twidth: 236px;\n\t\t\t\t\t\tmargin: 0 auto 35px;\n\t\t\t\t\t}\n\n\t\t\t\t\t.linkTileHolder {\n\t\t\t\t\t\tmargin-left: 0;\n\t\t\t\t\t}\n\n\t\t\t\t\tspan.stat {\n\t\t\t\t\t\tbackground:none;\n\t\t\t\t\t\tcolor:#888\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.artistMediaExpander {\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\ttext-align: center;\n\t\t\t\t\tpadding-bottom: 10px;\n\t\t\t\t\tmargin-bottom: 0;\n\t\t\t\t\tfont-size: 22px;\n\t\t\t\t\ti {\n\t\t\t\t\t\t&.leftIcon {\n\t\t\t\t\t\t\tmargin-right: 12px;\n\t\t\t\t\t\t    top: 3px;\n\t\t\t\t\t\t    position: relative;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t&.expandCollapseIcon {\n\t\t\t\t\t\t\tfloat: right;\n\t\t\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\t\t\tmargin-top: 5px;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\t.artistMediaSection {\n\t\t\t\t\tdisplay: none;\n\t\t\t\t\tiframe {\n\t\t\t\t\t\twidth: 100%;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\t.modalTickets {\n\t\t\t\t\tmax-width: 770px;\t\t\t\t\t\n\t\t\t\t    padding: 9px 0;\n    \t\t\t\tmargin: 0 auto 20px;\n    \t\t\t}\n\t\t\t\t.playNowText {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tdisplay:none;\n\t\t\t\t\tmargin-right: 15px;\n\t\t\t\t\t// color: $color_desert_storm_approx;\n\t\t\t\t}\n\t\t\t\t.eventDescription{\n\t\t\t\t\tmin-height:250px;\n\t\t\t\t}\n\t\t\t\t.eventTopDetails, \n\t\t\t\t.eventDescription {\t\n\t\t\t\t\tpadding: 0;\t    \n\t\t\t\t    width: 770px;\n\t\t\t\t    max-width: 90%;\n\t\t\t\t    margin:0 auto 10px;\n\t\t\t\t}\n\t\t\t\t.eventTopDetails{\n\t\t\t\t\tmargin-top:5px;\n\t\t\t\t\th2.date {\n\t\t\t\t\t\tpadding-top:25px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\n\t\t\t.eventArtistStats {\n\t\t\t\tfloat: right;\n\t\t\t\tposition: relative;\n\t\t\t    top: 4px;\n\t\t\t\tspan {\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\tfloat: left;\n\t\t\t\t\tmargin-right: 5px;\n\t\t\t\t\t// color: $color_desert_storm_approx; \n\t\t\t\t\tfont-size: 16px;\n\t\t\t\t\tline-height: 19px;\n\t\t\t\t\t&.pageLink {\n\t\t\t\t\t\tfont-size: 12px;\n\t\t\t\t\t    position: relative;\n\t\t\t\t\t    color: #999;\n\t\t\t\t\t    top: 3px;\n\t\t\t\t\t}\n\t\t\t\t\ti {\n\t\t\t\t\t\tfont-size: 11px;\n\t\t\t\t\t}\n\t\t\t\t\ta {\n\t\t\t\t\t\t// color: $color_desert_storm_approx;\n\t\t\t\t\t\t// text-decoration: underline;\n\t\t\t\t\t\t&:hover {\n\t\t\t\t\t\t\ttext-decoration: none;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t&:last-child {\n\t\t\t\t\t\tmargin-right: 0;\n\t\t\t\t\t}\n\t\t\t\t\t&.stat {\n\t\t\t\t\t\t// background: $color_storm_dust_approx;\n\t\t\t\t\t\tpadding: 2px 5px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.musicidb-integration-mask {\n\t\t\t\tdisplay: none;\n\t\t\t\tposition: fixed;\n\t\t\t\ttop: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tcursor:pointer;\n\t\t\t\twidth: 100% !important;\n\t\t\t\theight: 100% !important;\n\t\t\t\tz-index: 9000;\n\t\t\t\tbackground-color: rgba(0, 0, 0, 0.87);\n\t\t\t}\n\n\t\t\t.window {\n\t\t\t\tdisplay: none;\n\t\t\t\tposition: fixed;\n\t\t\t\tz-index: 9999;\n\t\t\t\tborder: 12px solid #ffffff;\n\t\t\t\tborder-radius: 10px;\n\t\t\t\tbox-sizing: border-box;\n\t\t\t\tbackground-clip: padding-box;\n\t\t\t\tbackground: $color_desert_storm_approx;\n\t\t\t\twidth: 85%;\n\t\t\t\tmax-width: none;\n\t\t\t\tmin-width: 796px;\n\t\t\t\theight: 90%;\n\t\t\t\toverflow: auto;\n\t\t\t\tmin-height: inherit !important;\t\t\t\n\t\t\t\tpadding-bottom: 10px;\t\n\t\t\t}\n\n\t\t\t.modalClose {\n\t\t\t\ttext-transform: none;\n\t\t\t\tcolor: $color_fuzzy_wuzzy_brown_approx;\n\t\t\t\tposition: absolute;\n\t\t\t\ttop: 5px;\n\t\t\t\tright: 10px;\n\t\t\t\tfont-size: 12px;\n\t\t\t\tfloat: right;\n\t\t\t\tmargin-bottom: 5px;\n\t\t\t\tpadding: 7px 6px 6px;\n\t\t\t\tborder: 1px solid $color_silver_approx;\n\t\t\t\tcolor: $color_tapa_approx !important;\n\t\t\t\tfont-size: 10px;\n\t\t\t\tline-height: 12px;\n\t\t\t\tposition: relative;\n\t\t\t\tz-index: 100;\n\t\t\t\tfont-size: 20px;\n\n\t\t\t\t&:hover {\n\t\t\t\t\tcolor: $color_radical_red_approx;\n\t\t\t\t\tbackground: $white;\n\t\t\t\t\tcolor: $color_tundora_approx;\n\t\t\t\t}\n\t\t\t}\n\t\n\t\t/*Slider - there are two : \n\t\t#artistCardsSlider .slides,  \n\t\t#featured-events-slider\n\t\t*/\n\t\t\t.slick-slider {\n\t\t\t    position: relative;\n\t\t\t    display: block;\n\t\t\t    box-sizing: border-box;\n\t\t\t    -webkit-touch-callout: none;\n\t\t\t    -webkit-user-select: none;\n\t\t\t    -khtml-user-select: none;\n\t\t\t    -moz-user-select: none;\n\t\t\t    -ms-user-select: none;\n\t\t\t    user-select: none;\n\t\t\t    -ms-touch-action: pan-y;\n\t\t\t    touch-action: pan-y;\n\t\t\t    -webkit-tap-highlight-color: transparent;\n\t\t\t}\n\n\t\t\t.slick-list {\n\t\t\t    position: relative;\n\t\t\t    overflow: hidden;\n\t\t\t    display: block;\n\t\t\t    margin: 0;\n\t\t\t    padding: 0;\n\n\t\t\t    &:focus {\n\t\t\t        outline: none;\n\t\t\t    }\n\n\t\t\t    &.dragging {\n\t\t\t        cursor: pointer;\n\t\t\t        cursor: hand;\n\t\t\t    }\n\t\t\t}\n\n\t\t\t.slick-slider .slick-track,\n\t\t\t.slick-slider .slick-list {\n\t\t\t    transform: translate3d(0, 0, 0);\n\t\t\t}\n\n\t\t\t.slick-track {\n\t\t\t    position: relative;\n\t\t\t    left: 0;\n\t\t\t    top: 0;\n\t\t\t    display: block;\n\t\t\t    margin-left: auto;\n\t\t\t    margin-right: auto;\n\n\t\t\t    &:before,\n\t\t\t    &:after {\n\t\t\t        content: \"\";\n\t\t\t        display: table;\n\t\t\t    }\n\n\t\t\t    &:after {\n\t\t\t        clear: both;\n\t\t\t    }\n\n\t\t\t    .slick-loading & {\n\t\t\t        visibility: hidden;\n\t\t\t    }\n\t\t\t}\n\t\t\t\n\t\t\t.slick-slide {\n\t\t\t    float: left;\n\t\t\t    height: 0;\n    \t\t\tbox-sizing: border-box;\n\t\t\t    min-height: 1px;\n\t\t\t    &.slick-active {\n\t\t\t\t\theight: 100% !important;\n\t\t\t\t}\n\t\t\t    [dir=\"rtl\"] & {\n\t\t\t        float: right;\n\t\t\t    }\n\n\t\t\t    img {\n\t\t\t        display: block;\n\t\t\t    }\n\t\t\t    &.slick-loading img {\n\t\t\t        display: none;\n\t\t\t    }\n\n\t\t\t    &.dragging img {\n\t\t\t        pointer-events: none;\n\t\t\t    }\n\n\t\t\t    .slick-initialized & {\n\t\t\t        display: block;\n\t\t\t    }\n\n\t\t\t    .slick-loading & {\n\t\t\t        visibility: hidden;\n\t\t\t    }\n\t\t\t    .slick-loading {\n\t\t\t\t\tbackground:url('../images/loading.svg') no-repeat center;\n\t\t\t\t\tmin-height: 300px;\n\t\t\t\t}\n\t\t\t    .slick-vertical & {\n\t\t\t        display: block;\n\t\t\t        height: auto;\n\t\t\t        border: 1px solid transparent;\n\t\t\t    }\n\t\t\t}\n\n\t\t\t.slick-arrow.slick-hidden {\n\t\t\t    display: none;\n\t\t\t}\n\n\t\t\tul.slides {\n\t\t\t\toverflow:visible !important;\n\t\t\t\tlist-style: none;\n\n\t\t\t\t.slick-arrow {\n\t\t\t\t\tdisplay: block !important;\n\t\t\t\t\twidth: 21px;\n\t\t\t\t\theight: 35px;\n\t\t\t\t\tposition: absolute;\n\t\t\t\t\ttop: 110px;\n\t\t\t\t\tcursor: pointer;\n\n\t\t\t\t\tbackground-color: transparent !important;\n\t\t\t\t\tbackground-image: url('../images/arrows.png');\n\t\t\t\t\toutline: none !important;\n\t\t\t\t\tborder: none !important;\n\t\t\t\t\ttext-indent: -9999px;\n\n\t\t\t\t\t&.slick-prev {\n\t\t\t\t\t\tbackground-position: top left;\n\t\t\t\t\t\tleft: -30px;\n\t\t\t\t\t}\n\n\t\t\t\t\t&.slick-next {\n\t\t\t\t\t\tbackground-position: top right;\n\t\t\t\t\t\tright: -30px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\t\n\t\t\t\n\t\n\t\t//Misc Styles\n\t\t\t.centerThisGuy{\n\t\t\t\ttext-align:center;\n\t\t\t\t.loadMoreBtn {\n\t\t\t\t\tmargin:0 auto;\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.modalFootLinkers{\n\t\t\t\tfont-size: 12px;\n\t\t\t\tline-height: 15px;\n\t\t\t\tmargin-bottom: 13px;\n\t\t\t\ta{\n\t\t\t\t\tcolor:#969696;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.widgetsLink {\n\t\t\t\tfloat:right;\n\t\t\t\timg {\n\t\t    \t\twidth: 100px;\n\t\t    \t}\t    \t\n\t\t    }\n\t\t    \n\n\t\t//Themes\n\t\t\t&.blackBack {\n\t\t\t\tcolor:#EEE;\n\t\t\t\t.musicidb-integration-mask {\n\t\t\t\t\tbackground-color: $black_90;\n\t\t\t\t\tbackground-color: rgba(0, 0, 0, 0.84);   \n\t\t\t\t}\n\t\t\t\t.modalInner {\n\t\t\t\t\tbackground: $black;\n\t\t\t\t}\t\t\t\t\n\t\t\t\t.st-bg {\n\t\t\t\t\tborder: $color_rangoon_green_approx 1px solid!important;\n\t\t\t\t}\n\t\t\t\t.summaryToggle:hover .fui-plus-circle{\n\t\t\t\t\tcolor:#FFF;\t\n\t\t\t\t}\n\t\t\t\t.window {\n\t\t\t\t\tbackground: $black;\n\t\t\t\t\tborder: 12px solid #353535;\n\t\t\t\t}\n\t\t\t\tdiv.fbutton {\n\t\t\t\t\tborder: $color_rangoon_green_approx 1px solid!important;\n\t\t\t\t}\n\t\t\t\tdiv .rb-m .rb-i {\n\t\t\t\t\tbackground: #1b1b1b;\n\t\t\t\t\tbackground:rgba(14, 14, 14, 0.91);\n\t\t\t\t\t//background:none;\n\t\t\t\t\tcolor: #dedede;\n\t\t\t\t}\n\t\t\t\t.rb-i .dateBoxTextUnderImg{\n\t\t\t\t\tbackground:rgba(14, 14, 14, 0.91);\n\t\t\t\t\tcolor:#FFF !important;\t\t\t\t\t\n\t\t\t\t}\n\t\t\t\t.rb-i:hover .dateBoxTextUnderImg{\n\t\t\t\t\tbackground:#333 !important;\n\t\t\t\t}\n\t\t\t\t.month-row {\n\t\t\t\t\tborder: none !important;\n\t\t\t\t}\n\t\t\t\t.preferencesBox {\n\t\t\t\t\tcolor: #767676 !important;\n\t\t\t\t}\n\t\t\t\t.eventsList .listEvent{\n\t\t\t\t\t\n\t\t\t\t\tbackground:#191919;\n\n\t\t\t\t\tborder:1px solid #191919 !important;\n\t\t\t\t\t&:nth-child(2n){\n\t\t\t\t\t\t// background:#ffffffe0;\n\t\t\t\t\t\tbackground:#191919;\n\t\t\t\t\t}\n\t\t\t\t\th3 {\n\t\t\t    \t\t// color:#eee;\n\t\t\t    \t\tmargin-bottom:5px;\n\t\t\t    \t\t&.date span{\n\t\t\t\t\t\t\tcolor:#c3c3c3 !important;\n\t\t\t    \t\t}\n\t\t\t    \t}\n\t\t\t\t}\t\t\t\n\t\t\t\th3 {\n\t\t    \t\tcolor:#eee;\t\t    \t\t\n\t\t\t\t}\n\t\t\t\t.musicidb-tabs ul.calViewButtons {\n\t\t\t\t\tli {\n\t\t\t\t\t\ta {\t\t\t\t\t\n\t\t\t\t\t\t    border: 1px solid #232323 !important;    \t\t\t\t\n    \t\t\t\t\t\tbackground: #272727 !important;\n    \t\t\t\t\t\tcolor: #a5a5a5;\n    \t\t\t\t\t\t&:hover {\n    \t\t\t\t\t\t\tbackground:$color_crusta_approx !important; \n    \t\t\t\t\t\t\tcolor:#FFF !important;\n    \t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\tli.current {\n\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\tul.slides .slick-arrow {\n\t\t\t\t\tbackground-image: url('../images/arrowsdark.png');\n\t\t\t\t}\n\t\t\t\t\n\t\t\t}\n\n\t\t\t&.lightBack {\n\t\t\t\th2, h3 {\n\t\t\t\t\tcolor:#565656;\n\t\t\t\t}\n\t\t\t\t//background: $color_black_haze_approx;\n\t\t\t\t\n\t\t\t\t&:hover {\n\t\t\t\t\t//background: $color_catskill_white_approx;\n\t\t\t\t}\n\n\t\t\t\th4 {\n\t\t\t\t\tcolor: $color_chicago_approx;\n\t\t\t\t}\n\n\t\t\t\tp {\n\t\t\t\t\tcolor: $color_chicago_approx;\n\t\t\t\t}\n\n\t\t\t\t.listItem:nth-child(2n),\n\t\t\t\t.tableEventView:nth-child(2n) {\n\t\t\t\t\tborder-top: 1px solid $color_gallery_approx;\n\t\t\t\t\tborder-bottom: 1px solid $color_gallery_approx;\n\t\t\t\t\tclear: both;\n\t\t\t\t}\n\t\t\t}\t\t\n\t\t\t\n\t\t\t&.blackBack .horizontal .ui-tabs-panel, \n\t\t\t&.blackBack .musicidb-tabNav li.current a, \n\t\t\t&.blackBack .modalSections > .modalTabNav a.currentState, \n\t\t\t&.blackBack .horizontal .musicidb-tabNav li a,\n\t\t\t&.blackBack .musicidb-tabNav li:first-child,\n\n\t\t\t&.lightBack .horizontal .ui-tabs-panel, \n\t\t\t&.lightBack .musicidb-tabNav li.current a, \n\t\t\t&.lightBack .modalSections > .modalTabNav a.currentState, \n\t\t\t&.lightBack .horizontal .musicidb-tabNav li a,\n\t\t\t&.lightBack .musicidb-tabNav li:first-child {\n\t\t\t\tbackground: none;\n\t\t\t\tborder:none !important;\n\t\t\t}\n\t\t\t&.blackBack .horizontal .musicidb-tabNav li.current,\n\t\t\t&.lightBack .horizontal .musicidb-tabNav li.current {\n\t\t\t\ttop:inherit;\n\t\t\t}\n\t\t\t&.blackBack .musicidb-tabNav li.current a, \n\t\t\t&.blackBack .horizontal .musicidb-tabNav li a:hover {\n\t\t\t\t// border-bottom: 1px solid #eee !important;\n\t\t    \tcolor: #EEE !important;\n    \t\t\tbackground: #272727 !important;    \t\t\t\t\n\t\t\t}\n\t\t\t&.blackBack .horizontal .musicidb-tabNav li a{\n\t\t\t\tcolor:#6d6d6d;\n\t\t\t\tbackground: #272727 !important; \n\t\t\t\t&:hover {\n\n\t\t\t\t}\n\t\t\t}\n\t\t\n\t\t\t&.blackBack .listItem:nth-child(2n), \n\t\t\t&.blackBack .tableEventView:nth-child(2n) {\n\t\t\t\tborder-top:1px solid #373737;\n\t\t    \tborder-bottom: 1px solid #373737;\n\t\t    \tclear:both;\n\t\t\t}\n\t\t\t&.lightBack .listItem:nth-child(2n), \n\t\t\t&.lightBack .tableEventView:nth-child(2n) {\n\t\t\t\tborder-top: 1px solid #d3d3d3;\n\t\t    \tborder-bottom: 1px solid #d3d3d3;\n\t\t    \tclear:both;\n\t\t\t}\n\t\t\t&.blackBack .artistFacts {\n\t\t\t\tcolor:#7b7b7b;\t\t\n\t\t\t}\n\t\t\t&.blackBack a, &.blackBack h3 a {\n\t\t\t\tcolor:#1aadff;\n\t\t\t}\n\n\n\t\t\t&.blackBack .linkTile {\n\t\t    background: #1d1d1d !important;\n\t\t    /*color:#666;*/\n\t\t\t}\n\t\t\t&.blackBack .linkTile.lightBack h4 {\n\t\t\t    color:#9f9f9f !important;\n\t\t\t}\n\t\t\t&.blackBack img.alignleft {\n\t\t\t    border:1px solid #1d1d1d;\n\t\t\t}\n\t\t\t&.blackBack .modalTickets {\n\t\t\t\tborder-top: 1px solid #383838;\n\t\t\t\tborder-bottom: 1px solid #383838;\n\t\t\t}\n\t\t\t.venue-377 {\n\n\t\t\t}\n\t\t\t&.blackBack.venue-377 .listingBody a {\n\t\t\t    color: #c4c4c4;\n\t\t\t}\n\t\t\t&.blackBack .controlbar>li>a {\n\t\t    \tborder:1px solid transparent !important;\n\t\t\t}\n\t\t\t&.blackBack img.alignleft {\n\t\t\t    border:none !important;\n\t\t\t}\n\t\t\t&.lightBack #caltoolbar,\n\t\t\t&.lightBack #gridcontainer,\n\t\t\t&.lightBack .cc,\n\t\t\t&.lightBack .mv-daynames-table,\n\t\t\t&.lightBack .mv-event-container,\n\t\t\t&.lightBack .st-dtitle,\n\t\t\t&.lightBack div.ctoolbar div.fbutton.fcurrent, \n\t\t\t&.lightBack .whiteBack {\n\t\t\t    background: none !important;\n\t\t\t}\n\t\t\t&.lightBack div.fbutton, &.lightBack .mv-container {\n\t\t\t    /*background: rgba(255, 255, 255, 0.56) !important;*/\n\t\t\t}\n\t\t\t&.lightBack div.fbutton {\n\t\t\t    border:none;\n\t\t\t}\n\t\t\t&.lightBack div#sfnextbtn, &.lightBack div#sfprevbtn {\n\t\t\t\tborder: #ececec 1px solid;\n\t\t\t    border-radius: 2px;\n\t\t\t}\n\t\t\t&.blackBack .whiteBack, &.blackBack div.ctoolbar, \n\t\t\t&.blackBack div.fbutton.fcurrent, &.blackBack .st-dtitle-nonmonth,\n\t\t\t&.blackBack .cc, &.blackBack .mv-daynames-table, \n\t\t\t&.blackBack .mv-event-container, &.blackBack #gridcontainer, \n\t\t\t&.blackBack .st-dtitle, &.blackBack ul.calViewButtons, \n\t\t\t&.blackBack .st-bg {\n\t\t\t    background:none !important;\n\t\t\t}\n\t\t\t&.blackBack .cardFloater:hover .hoverArtist {\n\t\t\t    color:#eee !important;\n\t\t\t    text-decoration:none;\n\t\t\t}\n\t\t\t&.blackBack h1, &.blackBack div.ctoolbar div.fshowdatep,\n\t\t\t&.blackBack div.ctoolbar {\n\t\t\t    color:#eee !important;\n\t\t\t}\n\t\t\t&.blackBack div.fbutton:hover i {\n\t\t\t    color:#eee;\n\t\t\t}\n\t\t\t&.blackBack .st-bg, \n\t\t\t&.blackBack div.fbutton {\n\t\t\t    border: #4d4d4d 1px solid !important;\n\t\t\t}\n\t\t\t&.blackBack div.ctoolbar div.fshowdatep {\n\t\t\t    border:none !important;\n\t\t\t}\n\t\t\t&.blackBack .st-dtitle {\n\t\t\t    border-left:none !important;\n\t\t\t}\n\t\t\t&.blackBack .controlbar >li a.TicketLink {\n\t\t    \tborder: 1px solid #0d440d !important;    \t\n\t\t\t}\n\t\t\t&.blackBack .stageImageAndName {\n\t\t\t    background:#161616;\n\t\t\t}\n\t\t\t&.blackBack .stageImageAndName h3 {\n\t\t\t    color:#eee;\n\t\t\t}   \n\t\t\t&.blackBack .listItem:nth-child(2n){\n\t\t\t    border-top:1px solid #2d2d2d;\n\t\t\t    border-bottom:1px solid #2d2d2d;\n\t\t\t}\n\t\t\t&.blackBack .eventDescription{\n\t\t    \tcolor: #ddd !important;\t\t\t\t\t\t\n\t\t\t\tspan, div, p, \n\t\t\t\th1, h2, h3, h4, h5, h6{\n\t\t\t\t\tcolor:#ddd !important;\n\t\t\t\t\tbackground:none !important;\n\t\t\t\t}\t\t\t\t\n\t\t\t}\n\t\t\t&.blackBack h1, &.blackBack h2, &.blackBack h3, &.blackBack h4, &.blackBack h5, &.blackBack h6, &.blackBack .framePage h3, &.blackBack .h2, &.blackBack .h3, &.blackBack .h4, &.blackBack .h5, &.blackBack .h6 {\n\t\t    color:#cecece;\n\t\t\t}\n\t\t\t&.blackBack .controlbar>li a.TicketLink {\n\t\t\t    border: 1px solid #15bd15!important;\n\t\t\t}\n\t\t\t&.blackBack .eventLogistics, \n\t\t\t&.blackBack .listEvent .date span {\n\t\t\t    color: #929292;\n\t\t\t}\n\t\t\t&.blackBack .eventInfoArea .eventDescription * {\n\t\t    \tcolor: #d0d0d0 !important;\n\t\t\t}\n\t\n\t\t//Custom Tweaks\n\t\t.listEvent .controlbar.moveLeft{\n\t\t\ttext-align:left;\n\t\t\t// float:left;\n\t\t\tmargin:0;\n\t\t}\n\t\t.listEvent .controlbar.moveRight{\n\t\t\ttext-align: right;\n    \t\tmargin: 0;\n    \t\tfloat: right !important;\n\t\t}  \n\t\t.listEvent .controlbar.moveCenter{\n\t\t\ttext-align: center;\n    \t\tmargin: 0 auto;    \n    \t\tclear: both;\n    \t\tfloat: none !important;\n\t\t}   \n\n\t\t//Featured Events Slider\n\n\t\t.slider-wrapper {\n\t\t\tposition: relative;\n\t\t\toverflow: hidden;\n\n\t\t\t.rightSlideArea {\n\t\t\t\tposition: absolute;\n\t\t\t\tbottom: 30px;\n\t\t\t\tright: 15px;\n\t\t\t}\n\t\t\t.slider-controllers {\n\t\t\t\tdisplay: flex;\n\t\t\t\tposition: relative;\n\t\t\t\t.btn {\n\t\t\t\t\talign-items: center;\n\t\t\t\t\tbackground-color: #cc3333;\n\t\t\t\t\tbackground-image: url('../images/arrow-left.png');\n\t\t\t\t\tbackground-position: center;\n\t\t\t\t\tbackground-repeat: no-repeat;\n\t\t\t\t\tbackground-size: 50%;\n\t\t\t\t\toutline: none;\n\t\t\t\t\tborder: none;\n\t\t\t\t\tcursor: pointer;\n\t\t\t\t\tdisplay: flex;\n\t\t\t\t\theight: 50px;\n\t\t\t\t\tjustify-content: center;\n\t\t\t\t\twidth: 50px;\n\t\t\t\t\t//position: relative; - This broke Abrews, can't figure out why it was added\n\t\t\t\t\ttransform: none;\n\t\t\t\t\tposition:absolute;\n\t\t\t\t\tbottom: 0px;\n    \t\t\t\tright:50px;\t\t\t\t\t\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tbackground-color: #a92121;\n\t\t\t\t\t}\n\t\t\t\t\t&-next {\n\t\t\t\t\t\ttransform: rotate(180deg);\n\t\t\t\t\t\tright: 0;\n\t\t\t\t\t}\n\t\t\t\t\t&:before {\n\t\t\t\t\t\tcontent: none;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slick-dots {\n\t\t\t\t// bottom:-19px;\n\t\t\t\theight: 24px;\n\t\t\t\tli  {\n\t\t\t\t\tbutton {\n\t\t\t\t\t\tbackground:#5f0505;\n\t\t\t\t\t\t\n\t\t\t\t\t\t-webkit-border-radius: 10px;\n\t\t\t\t\t\t-moz-border-radius: 10px;\n\t\t\t\t\t\tborder-radius: 10px;\n\t\t\t\t\t\t&:before {\n\t\t\t\t\t\t\tcontent: none;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t\n\t\t// max-width:1240px;\n\t\t// margin: 0 auto 30px;\n\n\t\t.slider-banner {\n\t\t\t// max-width: 1410px;\n\t\t\tmax-width:1240px;\n\t\t\twidth: 100%;\n\t\t\tdisplay: none;\n\t\t\tmin-height: 350px;\n\t\t\t&.slick-initialized { display: block; }\n\t\t\t* {\n\t\t\t\tbox-sizing: border-box;\n\t\t\t}\n\t\t\timg {\n\t\t\t\theight: auto;\n\t\t\t\tobject-fit: cover;\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t\t.overlay {\n\t\t\t\tbackground-color: #cc3333;\n\t\t\t\topacity: 0.8;\n\t\t\t}\n\t\t\t.slider-foreground {\n\t\t\t\tdisplay: flex;\n\t\t\t\tjustify-content: space-between;\n\t\t\t\tposition: relative;\n\t\t\t}\n\t\t\t.detailsCard {\n\t\t\t\tmax-width: 350px;\n\t\t\t\tmin-width: 238px;\n\t\t\t\twidth: 27%;\n\t\t\t}\n\t\t\t.rightSlideArea {\n\t\t\t\talign-items: flex-end;\n\t\t\t\tdisplay: flex;\n\t\t\t}\n\t\t\t.slider-label {\n\t\t\t\talign-items: center;\n\t\t\t\tbackground-color: #c9c9c9;\n\t\t\t\tdisplay: flex;\n\t\t\t\theight: 54px;\n\t\t\t\tjustify-content: center;\n\t\t\t\tline-height: 1;\n\t\t\t\tcolor: #000;\n\t\t\t\t//font-family: sans-serif;\n\t\t\t\tfont-size: 19px;\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\twidth: 206px;\n\t\t\t\tmargin-top: 20px;\n\t\t\t\tspan {\n\t\t\t\t\tfont-size: 31px;\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slider-date {\n\t\t\t\tcolor: #fff;\n\t\t\t\t//font-family: 'Montserrat-Regular', sans-serif;\n\t\t\t\tfont-size: 20px;\n\t\t\t\tmargin-bottom: 15px;\n\t\t\t}\n\t\t\t.slider-title {\n\t\t\t\tcolor: #fff;\n\t\t\t\t//font-family: Oswald, sans-serif;\n\t\t\t\tfont-size: 50px;\n\t\t\t\tfont-weight: 400;\n\t\t\t\tline-height: 1.12;\n\t\t\t\tmargin: 0;\n\t\t\t\ttext-shadow: 0 2px 1px rgba(0, 0, 0, 0.75);\n\t\t\t\ttext-transform: uppercase;\n\t\t\t\tmax-height: 140px;\n\t\t    \toverflow: hidden;\n\t\t\t}\n\t\t\t.content {\n\t\t\t\tpadding: 0 16px;\n\t\t\t\tmargin-top: 25px;\n\t\t\t}\n\t\t\t\n\t\t\t.buttonsBlockSection {\n\t\t\t\t// position: absolute;\n\t\t\t\t// bottom: 24px;\n    \t\t\t// left: 153px;\n    \t\t\tposition: absolute;\n\t\t\t    bottom: 8px;\n\t\t\t\tleft: 10px;\n\t\t\t\ta{\n\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\tpadding: 7px 23px;\n\t\t\t\t\tfont-size: 13px;\n\t\t\t\t\tline-height: 18px;\n\t\t\t\t\t//font-family: 'Montserrat-SemiBold', sans-serif;\n\t\t\t\t\ttext-transform: uppercase;\n\t\t\t\t\ti{\n\t\t\t\t\t\tline-height: 10px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ta.slider-link , \n\t\t\t\ta.view-event{\n\t\t\t\t\tcolor: #333;\n\t\t\t\t\t&.fbLinkWide{\n\t\t\t\t\t    border-radius: 6px;\n\t\t\t\t\t    padding-left: 12px;\n\t\t\t\t\t    padding-right: 12px;\n\t\t\t\t\t    width: auto !important;\n\t\t\t\t\t    //padding: 0 19px;\n\t\t\t\t\t    //height: 32px !important;\n\t\t\t\t\t    //top: -10px !important;\n\t\t\t\t\t    //position: relative;\t\t\t\t\t    \n\t\t\t\t\t    .fui-facebook{\n\t\t\t\t\t\t\tmargin-right:3px;\t\t\n\t\t\t\t\t\t\tposition: relative;\n    \t\t\t\t\t\ttop: 4px;\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ta.slider-link {\n\t\t\t\t\t\n\t\t\t\t\tbackground: url('../images/ticket-link-bg.png') no-repeat center;\n\t\t\t\t\tbackground-size: contain;\t\t\t\t\t\n\t\t\t\t\t// display: flex;\t\n\t\t\t\t\t// align-items: center;\n\t\t\t\t\t// justify-content: center;\t\t\t\t\n\t\t\t\t\t//font-size: 15px;\n\t\t\t\t\t//height: 51px;\t\t\t\t\t\n\t\t\t\t\ttext-decoration: none;\t\t\t\t\t\n\t\t\t\t\twidth: 128px;\n\t\t\t\t\t&:hover {\n\t\t\t\t\t\tfilter: brightness(1.2);\n\t\t\t\t\t}\n\t\t\t\t\t.link-arrow {\n\t\t\t\t\t\tborder-color: transparent transparent transparent #033333;\n\t\t\t\t\t\tborder-style: solid;\n\t\t\t\t\t\tborder-width: 5px 0 5px 7px;\n\t\t\t\t\t\tdisplay: block;\n\t\t\t\t\t\theight: 0;\t\t\t\t\t\t\n\t\t\t\t\t\twidth: 0;\t\t\t\t\t\t\n\t\t\t\t\t\tline-height: 10px;\n\t\t\t\t\t    position: absolute;\n\t\t\t\t\t    left: 30px;\n\t\t\t\t\t    top: 15px;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\ta.ticketsLink{\n\t\t\t\t\tpadding: 12px 25px 12px 45px;\n\t\t\t\t    position: relative;\n\t\t\t\t    height: 44px;\n\t\t\t\t}\n\t\t\t\ta.view-event {\n\t\t\t\t\tbackground: #ccc;\t\t\t\t\t\n\t\t\t\t\tborder-radius: 7px;\n\t\t\t\t\t//font-size: 13px;\n\t\t\t\t\t&:hover, &:focus{\n\t\t\t\t\t\tbackground: #fff;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t\t.slick-dots li{\n\t\t\t\twidth:8px;\n\t\t\t\theight:8px;\n\t\t\t\tbutton{\n\t\t\t\t\twidth:8px;\n\t\t\t\t\theight:8px;\n\t\t\t\t}\n\t\t\t\t&:hover button, &.slick-active button{\n\t\t\t\t\tbackground: #cc3333;\n\t\t\t\t}\n\t\t\t}\t\t\t\t\n\t\t\t.slider-background,\n\t\t\t.overlay {\n\t\t\t\tbottom: 0;\n\t\t\t\tleft: 0;\n\t\t\t\tposition: absolute;\n\t\t\t\tright: 0;\n\t\t\t\ttop: 0;\n\t\t\t}\n\t\t\t.overlay{\n\t\t\t\topacity: 0.8;\n\t\t\t}\n\t\t\t.slider-item,\n\t\t\t.detailsCard,\n\t\t\t.content-wrapper {\n\t\t\t\tposition: relative;\n\t\t\t}\n\t\t\t.slider-item {\n\t\t\t\tfloat: left;\n\t\t\t\twidth: 100%;\n\t\t\t}\n\t\t\t.detailsCard {\n\t\t\t\theight: 100%;\n\t\t\t\tmin-height: 330px;\n\t\t\t}\n\t\t\t.content-wrapper {\n\t\t\t\theight: 100%;\n\t\t\t\tmin-height: 330px;\n\t\t\t}\n\t\t}\t\t\n\t}\n\n//Alt Views\n#musicidb-featured-events.tvScreen, \n.tvScreen #musicidb-featured-events{\n    width:100% !important;\n    max-width:100% !important;\n    .detailsCard{\n        display:none;\n    }\n    #featured-events-slider{\n    \tpadding:0;\n    }\n    .slider-banner {\n        max-width:100% !important;\n        width:100% !important;\n        margin-bottom:0 !important;\n        .slider-foreground{\n            //height: 1000px;\n            display:none;\n        }\n        .slider-background{\n        \tleft:auto;\n        \tright:auto;\n        \ttop:auto;\n        \tbottom:auto;\n        \tposition:relative;\n        }\n        .slick-slide{\n        \t//min-height:none !important;\n        }\n    }\n    .rightSlideArea{\n        display:none;\n    }\n    .slick-dots{\n    \tpadding: 0 37px 0 0 !important;\n    \ttext-align: right;\n    \tbottom: 21px;\n    }\n}    \n\n//Images to fit vertically \n#musicidb-featured-events.fitImagesByHeight {\n\t.slider-banner img {\n\t    width: auto;\n\t    height: 100%;\n\t    // right: 0;\n\t    // left: 0;\n\t    // position: relative;\t    \n\t    margin: 0 auto !important;\t    \n\t}\n}","//Responsive\n\n.musicidb-events-integration{\n\t@media only screen and (max-width: 1500px) {\n\t\t.window {\n\t\t\twidth: 85%;\n\t\t\t//left:6% !important;\n\t\t}\n\n\t\t.modalInner {\n\t\t\tpadding:15px 0 5px;\n\t\t}\n\t} //1500px\n\n\t/* Smaller Than Most Screens */\n\t@media only screen and (max-width: 1150px) {\n\t\t.window {\n\t\t\twidth: 100%;\n\t\t\theight:100%;\n\t\t\tborder-radius:0;\n\t\t\tbox-sizing:border-box;\n\t\t\tright: 0 !important;\n\t\t\tleft: 0 !important;\n\t\t\ttop: 0 !important;\n\t\t}\n\t} //1150px\n\n\t/* Tablet View */\n\t@media only screen and (max-width: 1000px) {\n\t\t.viewPosters{\n\t\t\tul.eventsList{\n\t\t\t\tli.listEvent{\n\t\t\t\t\twidth:calc(50% - 10px);\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t.viewListPics{\n\t\t\t.eventsList.largePics{\n\t\t\t\t.listEvent{\n\t\t\t\t\t.eventPosterArea{\n\t\t\t\t\t\twidth:190px;\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t.listingBody, .controlbar.moveLeft{\n\t\t\t\t\t\tmargin-left:280px !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\n\t\t}\t\n\t\t.controlbar li {\n\t\t\tfloat: left !important;\n\t\t}\n\t\t\n\t\t.modalHead {\n\t\t\tbackground:none !important;\n\t\t\tmargin-bottom:13px;\n\t\t}\n\t\t\n\t\t.eventInfoArea .left, \n\t\t.eventInfoArea .venueInfoTile, \n\t\t.eventInfoArea .tilesContainer {\n\t\t\twidth: 100%;\n\t\t}\n\n\t\t.thumbTileHolder {\n\t\t\twidth: 205px;\n\t\t\theight: 205px;\n\t\t\tposition: relative;\n\t\t\tmargin: 0 auto;\n\t    \tfloat: none;\n\t\t}\n\n\t\t.controlButtons {\n\t\t\tright: 0;\n\t\t\tposition: relative;\n\t\t\tclear: both;\n\t\t\theight: 67px;\n\t\t}\n\n\t\t.controlButtons a {\n\t\t\tpadding: 9px 7px 2px 25px;\n\t\t\twidth: inherit;\n\t\t}\n\n\t\t.controlButtons li i {\n\t\t\tfont-size: 13px;\n\t\t\tleft: 5px;\t\n\t\t\ttop: 8px;\n\t\t}\n\n\t\t.controlbar li {\n\t\t\tfloat: none;\n\t\t}\n\n\t\t.controlBarEvents li {\n\t\t\tfloat:left;\n\t\t}\n\n\t\t.controlButtons .current a:before, .controlButtons li:hover a:before {\n\t\t\tleft: 45px;\n\t\t}\n\n\t\t.social-links {\n\t\t\tposition: relative;\n\t\t\twidth: 99%;\n\t\t\tright: inherit;\n\t\t\twidth: inherit;\n\t\t\ttext-align: center;\n\t\t\tmargin: 0 auto\n\t\t}\n\n\t\t.social-links li {\n\t\t\tfloat: none;\n\t\t}\n\n\t\t.greenCta {\n\t\t\tfloat: none;\n\t\t}\n\n\t\t.btnBlock .greenCta {\n\t\t\tfloat: left;\n\t\t}\n\n\t\t.outerExpander {\n\t\t\tposition: relative;\n\t\t}\n\n\t\t.window {\n\t\t\twidth: 60%;\n\t\t\tmin-width: 60%;\n\t\t\tleft: 15px;\n\t\t\ttop: 20px !important\n\t\t}\n\n\t\t.window .scrollingContent {\n\t\t\theight: 100%;\n\t\t\tpadding: 10px 5px;\n\t\t}\n\n\t\t.mobileHide {\n\t\t\tdisplay: none !important;\n\t\t}\n\t\t.mobileShow {\n\t\t\tdisplay: block;\n\t\t}\n\n\t\t/* Modal Views 1000px */\n\t\t\t.window {\n\t\t\t\tpadding: 30px 1% 25px;\n\t\t\t\twidth:100% !important;\n\t\t\t    box-sizing:border-box;\n\t\t\t\theight: 100% !important;\n\t\t\t\tmin-height: auto !important;\n\t\t\t\ttop: 0px !important;\n\t\t\t\tright: auto;\n\t\t\t\tleft: 0 !important;\n\t\t\t\tborder-radius: 0;\n\t\t\t\ttop:0 !important;\n\t\t\t\tborder: none;    \t/*overflow: inherit;*/\n\t\t\t}\n\t\t\t.eventDetailModal{\n\t\t\t\ttop:0 !important;\n\t\t\t}\n\t\t\t.modalClose {\n\t\t\t\tmargin-right: 10px;\n\t\t\t}\n\t\t\t.modalTab {\n\t\t\t\tmax-height: inherit;\n\t\t\t\toverflow: inherit;\n\t\t\t}\n\t\t\t.modalHead img {\n\t\t\t\tdisplay:none;\n\t\t\t}\n\t\t\t.modalHead .artistInfo {\n\t\t\t\twidth: 50%;\n\t\t\t}\n\t\t\t.modalTitle h2 {\n\t\t\t\tpadding: 0 !important;\n\t\t\t\tfont-size: 18px;\n\t\t\t\tline-height: 19px;\n\t\t\t\tmargin: 0;\n\t\t\t}\n\t\t\t.modalTitle {\n\t\t\t\tfont: 14px/16px Arial, sans-serif;\n\t\t\t}\n\t\t\t\n\t\t\t.modalInner {\n\t\t\t\tpadding: 0 5px 5px !important;\n\t\t\t}\n\t\t\t\n\t    .cardFloater .thumbTileHolder {\n\t        width: 220px;\n\t        height: 220px;\n\t    }\n\n\t\t.controlbar li {\n\t        float: left !important;\n\t    }\n\t} //1000px\n\n\t@media only screen and (max-width: 700px) {\n\t\t.viewPosters{\n\t\t\tul.eventsList{\n\t\t\t\tli.listEvent{\n\t\t\t\t\tdiv.eventPosterArea{\n\t\t\t\t\t\theight:310px;\n\t\t\t\t\t\t//width:calc(50% - 10px);\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t\t.viewListPics{\n\t\t\t.eventsList.largePics{\n\t\t\t\t.listEvent{\n\t\t\t\t\t.eventPosterArea{\n\t\t\t\t\t\twidth:150px;\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t.listingBody, .controlbar.moveLeft{\n\t\t\t\t\t\tmargin-left:240px !important;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\n\t\t}\t\n\t\t.viewCompact{\n\t\t\t.rowView {\n\t\t\t\tdisplay:flex;\n\t\t\t\t.rowColumn{\n\t\t\t\t\tdisplay:inline-block;\n\t\t\t\t\t&.detailsColumn{\n\t\t\t\t\t\ttop:0;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\t\t\t\n\t\t}\n\t\t#artistCardsSlider ul.bjqs-controls.v-centered li a{\n\t\t\tfont-size:22px;\n\t\t}\n\n\t\t#artistCardsSlider ul.bjqs-controls.v-centered li.bjqs-prev a {\n\t\t\tleft:-25px;\n\t\t}\n\n\t\t#artistCardsSlider ul.bjqs-controls.v-centered li.bjqs-next a {\n\t\t\tright:-15px;\n\t\t}\n\n\t\t.webVideo iframe {\n\t\t\twidth: 100%;\n\t\t\tmin-height: 330px;\n\t\t}\t\t\n\t\t\n\t\t.slider-banner{\n\t\t\tmin-height:auto;\n\t\t\t.slick-slide{\n\t\t\t\tmin-height: 390px;\n\t\t\t\t.slider-label{\n\t\t\t\t\tdisplay: none;\n\t\t\t\t}\n\t\t\t\t.detailsCard{\n\t\t\t\t\twidth:100%;\n\t\t\t\t\tmax-width:100%;\n\t\t\t\t\theight:auto;    \n\t\t\t\t\ttop: 250px;    \n\t\t\t\t\tmin-height: 140px;\n\t\t\t\t\t.content{\n\t\t\t\t\t   \tmargin-top: 8px;\n\t\t\t\t\t\t.slider-date{\n\t\t\t\t\t\t\tfont-size: 17px;\n\t\t\t\t\t\t\tmargin-bottom: 2px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.slider-title{\n\t\t\t\t\t\t\tfont-size: 28px !important;    \n\t\t\t\t\t\t\tmax-height: 63px;\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.buttonsBlockSection{\n\t\t\t\t\t\t\tbottom: 10px;\n\t\t\t\t\t\t\tleft:4px;\n\t\t\t\t\t\t\ta.slider-link{\n\t\t\t\t\t\t\t\tbackground-size: 110px;\t\n\t\t\t\t\t\t\t\t//height: 42px;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\ta.slider-link, a.view-event{\n\t\t\t\t\t\t\t\tfont-size: 12px;   \n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\t.view-event-wrapper{\n\t\t\t\t\t\t\tbottom: 16px;\n\t\t\t\t\t\t\tleft: 134px;\n\t\t\t\t\t\t}\t\t\t\t\t\t\t\t\n\t\t\t\t\t}\n\t\t\t\t\t.content-wrapper{\n\t\t\t\t\t\tmin-height:auto;\n\t\t\t\t\t}\t\t\n\t\t\t\t}\n\t\t\t}\t\t\t\t\t\t\t\t\n\t\t}\t\t\n\t\t.rightSlideArea{\n\t\t\t.slider-controllers .btn{\n\t\t\t\theight: 38px;\n\t\t\t\twidth: 38px;\n\t\t\t}\n\t\t}\n\t\t.eventsList .rowView, .style-viewCompact li{\n\t\t\tdisplay: block;\n\t\t\tborder-bottom:1px solid #dcdcdc;\n\t\t\t.buttonsColumn{\n\t\t\t\tdisplay: block;\t\t\t\t\n\t\t\t\twidth: 100% !important;\n\t\t\t}\n\t\t\t.rowColumn {\n\t\t\t\t&.dateColumn{\n\t\t\t\t\twidth: 77px !important;\n\t\t\t\t}\n\t\t\t\t.simpleBtn{\n\t\t\t\t\twidth:auto;\t\n\t\t\t\t}\n\t\t\t\t.cardFloater{\n\t\t\t\t\ttop:0;\n\t\t\t\t}\t\t\n\t\t\t}\t\n\t\t}\n\t\t&.blackBack{\n\t\t\t.eventsList .rowView{\n\t\t\t\tborder-bottom: 1px solid #444;\n\t\t\t}\n\t\t}\n\t} //700px\n\n\t@media only screen and (max-width: 650px) {\n\t    .rowView {\n\t    \t.rowColumn {\n\t    \t\twidth: 33% !important;\t        \t\n\t        \t&.locationColumn {\n\t\t            display:none;\n\t\t        }\n\t\t        &.buttonsColumn a{\n\t\t            width:95%;\n\t\t            margin-bottom:3px;    \n\t\t            text-align: center;        \n\t\t        }\t            \n\t        }\n\t    }\n\t    .viewCompact .rowView .simpleTitle{\n\t    \tfont-size:12px;\n\t    }\n\t} //650px\n\n\t/* Mobile Devices */\n\t@media only screen and (max-width: 595px) {\n\t\t\n\t\t/* Mobile Hide 'em */\n\t\t\t.setTime .helpText, .filtersLabel, \n\t\t\t#artistCardsSlider, #showtodaybtn, .footLinks nav, .checkBoxCol, \n\t\t\t#mailBoxTable thead th:nth-child(5),\n\t\t\t#mailBoxTable thead th:nth-child(6),\n\t\t\t#mailBoxTable thead th:nth-child(7), \n\t\t\t.sectionHead #embedCodeBtn, .eventsList .listItem .summaryToggle, .flavorText, \n\t\t    .artistList .listingImgWrap, \n\t\t\t.listArtists .listingImgWrap, \n\t\t\t.calendarLegend,\n\t\t\t.imageLeftWrapper, .gigList .navWithBubbles {\n\t\t\t\tdisplay: none;\n\t\t\t}\n\t\t/* Mobile Fix Images in List */\n\t\t\t.viewListPics {\n\t\t\t\t.eventsList.largePics {\t\t\t\t\t\t\t    \t\n\t\t\t\t    .listEvent {\n\t\t\t\t\t    .eventPosterArea {\n\t\t\t\t\t        display:block !important;\n\t\t\t\t\t        width: 120px !important;\n\t\t\t\t\t        img.eventImg {\n\t\t\t\t\t\t\t    // width: 83px!important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.bandPicBox{\n\t\t\t\t\t\t\t\twidth: 50%;\n\t\t\t\t\t\t\t\theight: 40px;\n\t\t\t\t\t\t\t}\t\n\t\t\t\t\t\t\t.oneBand .bandPicBox {\n\t\t\t\t\t\t    \twidth: 75px !important;\n\t\t\t\t\t\t    }\n\t\t\t\t\t    }\n\t\t\t\t\t     .listingBody, .controlbar.moveLeft{\n\t\t\t\t\t    \tmargin-left:205px !important;\t\t\t\t\t    \t\n\t\t\t\t\t    }\t\t\t\t\t\t   \t\t\t    \t\n\t\t\t\t\t}\t\t\t\t\t\n\t\t\t\t}\n\t\t\t}\n\t\t\t.viewPosters{\n\t\t\t\tul.eventsList{\n\t\t\t\t\tli.listEvent{\n\t\t\t\t\t\tdiv.eventPosterArea{\n\t\t\t\t\t\t\theight:250px;\n\t\t\t\t\t\t\t//width:calc(50% - 10px);\n\t\t\t\t\t\t}\n\t\t\t\t\t\tdiv.listingBody{\n\t\t\t\t\t\t\tpadding:0 5px;\n\t\t\t\t\t\t\th3.titleofevent{\n\t\t\t\t\t\t\t\tfont-size:17px;\n\t\t\t\t\t\t\t\tline-height:20px;\t\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\tul.controlbar{\n\t\t\t\t\t\t\tflex-wrap: wrap;\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t\t&.largePics{\n\t\t\t\t\t\tli.listEvent{\n\t\t\t\t\t\t\t.eventPosterArea{\n\t\t\t\t\t\t\t\twidth:330px;\n\t\t\t\t\t\t\t\tmax-height:none;\n\t\t\t\t\t\t\t\t.oneBand .bandPicBox{\n\t\t\t\t\t\t\t\t\twidth:100%;\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\timg{\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t.listingBody, .controlbar.moveLeft{\n\t\t\t\t\t\t\t\tmargin-left:420px !important;\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t/* Featured Events Slider Mobile 595 */\t\n\t\t\t.slider-banner {\n\t\t\t\t .slick-slide{\n\t\t\t\t    min-height: 340px;\n\t\t\t\t    .detailsCard{\n\t\t\t\t\t\ttop: 200px;\n\t\t\t\t\t}\n\t\t\t\t}\t\t\t\t\t\t\n\t\t\t}\t\t\t\n\n\t\t/* Mobile Do other stuff */\n\t\t\t.musicidb-tabs ul.musicidb-tabNav.eventTabsLinks li a{\n\t\t\t\tpadding: 10px 8px;\t\t\t\t\t    \n\t\t\t    font-size: 11px;\n\t\t\t}\n\n\t\t\t#artistDetailsPopup #artistCardsSlider {\n\t\t\t\tdisplay:block;\n\t\t\t}\n\n\t\t\t#artistCardsList {\n\t\t\t\tdisplay: block !important;\n\t\t\t}\n\n\t\t\t#artistDetailsPopup .artistLeftCol {\n\t\t\t    float: none;\n\t\t\t    width: 100%;\n\t\t\t    margin-right: 0;\n\t\t\t}\n\n\t\t\t#artistDetailsPopup .artistRightCol {\n\t\t\t\twidth: 100%;\n\t\t\t}\n\n\t\t\t#artistDetailsPopup #artistSelector li a h3{\n\t\t\t\tmargin-bottom: 3px;\n\t\t\t}\n\n\t\t\t#artistSelector li a .festivalArtistTextArea h3 {\n\t\t\t    max-height: 35px;\n\t\t\t}\n\n\t\t \t.controlbar.msgBar li {\n\t\t    \tfloat: left;\n\t\t    \tmargin: 0 0 5px;\n\t\t\t}\n\n\t\t \t.controlbar span {\n\t\t \t\tfloat:none;\n\t\t \t}\n\n\t\t\t.padding15 {\n\t\t    \tpadding: 15px 5px!important;\n\t\t\t}\n\n\t\t\t.modalHead,  {\n\t\t\t\twidth: 98%;\n\t\t\t}\t\t\t\t\t\n\n\t\t\ttextarea {\n\t\t\t    padding: 5px 5px;\n\t\t\t}\n\n\t\t\t.window .greenBtn {\n\t\t\t\tmargin-bottom: 20px;\n\t\t\t}\n\n\t\t\t.window {\n\t\t\t    padding: 5px 1% 5px 1% !important;\n\t\t\t    width:100% !important;    \n\t\t\t    max-height: 100% !important;\n\t\t\t    box-sizing:border-box;\n\t\t\t}\n\n\t\t\t.textarea {\n\t\t    \twidth: 93%;\n\t\t\t}\n\n\t\t\t.modalClose {\n\t\t    \tmargin-right: 0px;\n\t\t\t}\n\n\t\t\t.modalTab {\n\t\t\t\tborder:none;\n\t\t\t\tborder-top: 1px solid #ddd;\n\t\t\t}\n\n\t\t\t\n\n\t\t\t.controlbar>li a.TicketLink {\n\t\t\t    // padding: 5px 11px 0px!important;\n\t\t\t    // top:1px;\n\t\t\t}\n\n\t\t\t.TicketLink span {\n\t\t    \t\n\t\t\t}\n\t\t\t.modalTabs {\n\t\t\t\tpadding:0;\n\t\t\t}\n\t\t\t\n\t\t\t/* Modals */\n\t\t\t\t.modalColumns > .column {\n\t\t\t\t    width: 98%;\n\t\t\t\t}\n\n\t\t\t\t.modalTab h4.sectionTitle {\n\t\t\t\t    font-size: 13px;\n\t\t\t\t}\n\n\t\t    .eventsList .listItem {\n\t\t        padding:5px 0 5px 0;\n\t\t    }\n\n\t\t    .eventsList .listItem {\n\t\t    \th3.titleofevent {\n\t\t\t        font-size: 17px;\n\t\t\t        line-height: 18px;\n\t\t\t        margin: 0 0 6px 0;\n\t\t        }\n\t\t        .subtitleEvent{\n\t\t        \tfont-size: 17px;\n\t\t\t        line-height: 18px;\n\t\t\t        margin: 0 0 6px 0;\t\n\t\t        }\n\t\t    }\n\t\t    \n\t\t    .cardFloater {\n\t\t        padding-top: 0 !important;\n\t\t        padding-bottom:0 !important;\n\t\t    }\n\n\t\t    select {\n\t\t        padding: 5px;\n\t\t        width: 100% !important;\n\t\t        margin-top: 0;\n\t\t    }\n\t\t    \n\t\t    .genreData {\n\t\t        position: relative;\n\t\t        top: 12px;\n\t\t        margin-bottom: 10px;     \n\t\t        clear: both;\n\t\t    }\n\n\t\t\t.cardFloater .thumbTileHolder {\n\t\t\t\tbottom: 19px;\n\t\t\t}\n\n\t\t    .linkTile {\n\t\t        width: 100% !important;\n\t\t    }\n\n\t\t    .eventDescription \n\t\t    .eventDescription span, \n\t\t    .eventDescription div, \n\t\t    .eventDescription p{\n\t\t    \tfont-size: 14px !important;\n\t\t\t\tline-height: 18px !important;\n\t\t\t}\n\t\t\t\n\t\t\t.listEvent h3.date .monthName, \n\t\t\t.listEvent h3.date .dayNum, \n\t\t\t.listEvent h3.date .yearNum {\n\t\t        font-size: 13px !important;\n\t\t        line-height: 14px !important;\n\t\t        // height: inherit !important;\n\t\t        // width: 50px !important;\n\t\t    }\n\t\t    .listEvent h3.date .yearNum {\n\t\t        font-size:13px !important;\n\t\t    }\n\t\t    .viewListPics .listEvent h3.date .dayNum{\n\t\t        font-size:22px !important;\n\t\t        line-height:33px !important;        \n\t\t        top:-6px !important;\n\t\t    }\n\t\t    .listEvent .controlbar {\n\t\t\t    text-align: center;\t\t\t\t\t    \n\t\t\t    float: none !important;\n\t\t\t    margin: 0 auto;\n\t\t\t}\n\t\t//Mobile\n\t} //595px\n\n\t@media only screen and (max-width: 400px) {\n\t\t.webVideo iframe {\n\t\t\twidth: 100%;\n\t\t\tmin-height: 330px;\n\t\t\theight: inherit;\n\t\t}\n\t\t.fullInfo {\n\t\t\tdisplay:none;\n\t\t}\n\t\t.viewPosters{\n\t\t\tul.eventsList{\n\t\t\t\t&.largePics{\n\t\t\t\t\tli.listEvent{\n\t\t\t\t\t\tdiv.eventPosterArea{\n\t\t\t\t\t\t\theight:150px;\n\t\t\t\t\t\t\t//width:calc(50% - 10px);\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t} //400px\n\n}\n#musicidb-featured-events.tvScreen, \n.tvScreen #musicidb-featured-events{\n\t@media only screen and (max-width: 700px) {\n\t\t.slider-banner{\n\t\t\t.slick-slide{\n\t\t\t\tmin-height:1px;\n\t\t\t}\n\t\t}\n\t\t.slick-dots{\n\t    \tdisplay: none !important;\n\t    }\n\t}\n\t@media only screen and (max-width: 595px) {\n\t\t.slider-banner{\n\t\t\t.slick-slide{\n\t\t\t\tmin-height:1px;\n\t\t\t}\n\t\t}\n\t}\n}\n\n.infinite-body-outer-wrapper .musicidb-events-integration{\n/* Smaller Than Most Screens */\n\t@media only screen and (max-width: 1000px) {\n\t\t.window {\n\t\t\ttop: 77px !important;\n\t\t}\n\t}\n}"]}
  • musicidb-calendar/trunk/css/maps/whhg-flat-ui.css.map

    r2980848 r3158876  
    1 {"version":3,"sources":["whhg-flat-ui.scss"],"names":[],"mappings":"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","file":"../whhg-flat-ui.css","sourcesContent":["@font-face {\n  font-family: 'Flat-UI-Icons';\n  src: url('../font/flat-ui-icons-regular.eot');\n  src: \n    url('font/flat-ui-icons-regular.eot?#iefix') format('embedded-opentype'), \n    url('font/flat-ui-icons-regular.woff') format('woff'), \n    url('font/flat-ui-icons-regular.ttf') format('truetype'), \n    url('font/flat-ui-icons-regular.svg#flat-ui-icons-regular') format('svg');\n}\n[class^=\"fui-\"],\n[class*=\"fui-\"], .bjqs-next, .bjqs-prev {\n  font-family: 'Flat-UI-Icons';\n  speak: none;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.fui-triangle-up:before {\n  content: \"\\e600\";\n}\n.fui-triangle-down:before {\n  content: \"\\e601\";\n}\n.fui-triangle-up-small:before {\n  content: \"\\e602\";\n}\n.fui-triangle-down-small:before {\n  content: \"\\e603\";\n}\n.fui-triangle-left-large:before {\n  content: \"\\e604\";\n}\n.fui-triangle-right-large:before {\n  content: \"\\e605\";\n}\n.fui-arrow-left:before, .bjqs-prev a:before {\n  content: \"\\e606\";\n}\n.fui-arrow-right:before, .bjqs-next a:before {\n  content: \"\\e607\";\n}\n.fui-plus:before {\n  content: \"\\e608\";\n}\n.fui-cross:before {\n  content: \"\\e609\";\n}\n.fui-check:before {\n  content: \"\\e60a\";\n}\n.fui-radio-unchecked:before {\n  content: \"\\e60b\";\n}\n.fui-radio-checked:before {\n  content: \"\\e60c\";\n}\n.fui-checkbox-unchecked:before {\n  content: \"\\e60d\";\n}\n.fui-checkbox-checked:before {\n  content: \"\\e60e\";\n}\n.fui-info-circle:before {\n  content: \"\\e60f\";\n}\n.fui-alert-circle:before {\n  content: \"\\e610\";\n}\n.fui-question-circle:before {\n  content: \"\\e611\";\n}\n.fui-check-circle:before {\n  content: \"\\e612\";\n}\n.fui-cross-circle:before {\n  content: \"\\e613\";\n}\n.fui-plus-circle:before {\n  content: \"\\e614\";\n}\n.fui-pause:before {\n  content: \"\\e615\";\n}\n.fui-play:before {\n  content: \"\\e616\";\n}\n.fui-volume:before {\n  content: \"\\e617\";\n}\n.fui-mute:before {\n  content: \"\\e618\";\n}\n.fui-resize:before {\n  content: \"\\e619\";\n}\n.fui-list:before {\n  content: \"\\e61a\";\n}\n.fui-list-thumbnailed:before {\n  content: \"\\e61b\";\n}\n.fui-list-small-thumbnails:before {\n  content: \"\\e61c\";\n}\n.fui-list-large-thumbnails:before {\n  content: \"\\e61d\";\n}\n.fui-list-numbered:before {\n  content: \"\\e61e\";\n}\n.fui-list-columned:before {\n  content: \"\\e61f\";\n}\n.fui-list-bulleted:before {\n  content: \"\\e620\";\n}\n.fui-window:before {\n  content: \"\\e621\";\n}\n.fui-windows:before {\n  content: \"\\e622\";\n}\n.fui-loop:before {\n  content: \"\\e623\";\n}\n.fui-cmd:before {\n  content: \"\\e624\";\n}\n.fui-mic:before {\n  content: \"\\e625\";\n}\n.fui-heart:before {\n  content: \"\\e626\";\n}\n.fui-location:before {\n  content: \"\\e627\";\n}\n.fui-new:before {\n  content: \"\\e628\";\n}\n.fui-video:before {\n  content: \"\\e629\";\n}\n.fui-photo:before {\n  content: \"\\e62a\";\n}\n.fui-time:before {\n  content: \"\\e62b\";\n}\n.fui-eye:before {\n  content: \"\\e62c\";\n}\n.fui-chat:before {\n  content: \"\\e62d\";\n}\n.fui-home:before {\n  content: \"\\e62e\";\n}\n.fui-upload:before {\n  content: \"\\e62f\";\n}\n.fui-search:before {\n  content: \"\\e630\";\n}\n.fui-user:before {\n  content: \"\\e631\";\n}\n.fui-mail:before {\n  content: \"\\e632\";\n}\n.fui-lock:before {\n  content: \"\\e633\";\n}\n.fui-power:before {\n  content: \"\\e634\";\n}\n.fui-calendar:before {\n  content: \"\\e635\";\n}\n.fui-gear:before {\n  content: \"\\e636\";\n}\n.fui-bookmark:before {\n  content: \"\\e637\";\n}\n.fui-exit:before {\n  content: \"\\e638\";\n}\n.fui-trash:before {\n  content: \"\\e639\";\n}\n.fui-folder:before {\n  content: \"\\e63a\";\n}\n.fui-bubble:before {\n  content: \"\\e63b\";\n}\n.fui-export:before {\n  content: \"\\e63c\";\n}\n.fui-calendar-solid:before {\n  content: \"\\e63d\";\n}\n.fui-star:before {\n  content: \"\\e63e\";\n}\n.fui-star-2:before {\n  content: \"\\e63f\";\n}\n.fui-credit-card:before {\n  content: \"\\e640\";\n}\n.fui-clip:before {\n  content: \"\\e641\";\n}\n.fui-link:before {\n  content: \"\\e642\";\n}\n.fui-tag:before {\n  content: \"\\e643\";\n}\n.fui-document:before {\n  content: \"\\e644\";\n}\n.fui-image:before {\n  content: \"\\e645\";\n}\n.fui-facebook:before {\n  content: \"\\e646\";\n}\n.fui-youtube:before {\n  content: \"\\e647\";\n}\n.fui-vimeo:before {\n  content: \"\\e648\";\n}\n.fui-twitter:before {\n  content: \"\\e649\";\n}\n.fui-spotify:before {\n  content: \"\\e64a\";\n}\n.fui-skype:before {\n  content: \"\\e64b\";\n}\n.fui-pinterest:before {\n  content: \"\\e64c\";\n}\n.fui-path:before {\n  content: \"\\e64d\";\n}\n.fui-linkedin:before {\n  content: \"\\e64e\";\n}\n.fui-google-plus:before {\n  content: \"\\e64f\";\n}\n.fui-dribbble:before {\n  content: \"\\e650\";\n}\n.fui-behance:before {\n  content: \"\\e651\";\n}\n.fui-stumbleupon:before {\n  content: \"\\e652\";\n}\n.fui-yelp:before {\n  content: \"\\e653\";\n}\n.fui-wordpress:before {\n  content: \"\\e654\";\n}\n.fui-windows-8:before {\n  content: \"\\e655\";\n}\n.fui-vine:before {\n  content: \"\\e656\";\n}\n.fui-tumblr:before {\n  content: \"\\e657\";\n}\n.fui-paypal:before {\n  content: \"\\e658\";\n}\n.fui-lastfm:before {\n  content: \"\\e659\";\n}\n.fui-instagram:before {\n  content: \"\\e65a\";\n}\n.fui-html5:before {\n  content: \"\\e65b\";\n}\n.fui-github:before {\n  content: \"\\e65c\";\n}\n.fui-foursquare:before {\n  content: \"\\e65d\";\n}\n.fui-dropbox:before {\n  content: \"\\e65e\";\n}\n.fui-android:before {\n  content: \"\\e65f\";\n}\n.fui-apple:before {\n  content: \"\\e660\";\n}\n\n@media (min-width: 768px) {\n  .dl-horizontal dt {\n    width: 160px;\n  }\n  .dl-horizontal dd {\n    margin-left: 180px;\n  }\n}\nsub,\nsup {\n  font-size: 70%;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: Monaco, Menlo, Consolas, \"Courier New\", monospace;\n}\ncode {\n  padding: 2px 6px;\n  font-size: 85%;\n  color: #c7254e;\n  background-color: #f9f2f4;\n  border-radius: 4px;\n}\npre {\n  padding: 8px;\n  margin: 0 0 15px;\n  font-size: 13px;\n  line-height: 1.72222;\n  color: inherit;\n  background-color: #ffffff;\n  border: 2px solid #e7e9ec;\n  border-radius: 6px;\n  white-space: pre;\n}\n.pre-scrollable {\n  max-height: 340px;\n}\n.thumbnailmotion {\n  -webkit-transition: border 0.25s ease-in-out;\n          transition: border 0.25s ease-in-out;\n}\n.btnMotion {\n\n  -webkit-font-smoothing: subpixel-antialiased;\n  -webkit-transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;\n          transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;\n}\n"]}
     1{"version":3,"sources":["whhg-flat-ui.css","whhg-flat-ui.scss"],"names":[],"mappings":"AAAA,WCAA,2BACE,CAAA,4CACA,CAAA,qQAEE,CAAA,kDAKJ,2BAEE,CAAA,UACA,CAAA,iBACA,CAAA,kBACA,CAAA,mBACA,CAAA,mBACA,CAAA,kCACA,CAAA,iCACA,CAAA,wBAEF,WACE,CAAA,0BAEF,WACE,CAAA,8BAEF,WACE,CAAA,gCAEF,WACE,CAAA,gCAEF,WACE,CAAA,iCAEF,WACE,CAAA,2CAEF,WACE,CAAA,4CAEF,WACE,CAAA,iBAEF,WACE,CAAA,kBAEF,WACE,CAAA,kBAEF,WACE,CAAA,4BAEF,WACE,CAAA,0BAEF,WACE,CAAA,+BAEF,WACE,CAAA,6BAEF,WACE,CAAA,wBAEF,WACE,CAAA,yBAEF,WACE,CAAA,4BAEF,WACE,CAAA,yBAEF,WACE,CAAA,yBAEF,WACE,CAAA,wBAEF,WACE,CAAA,kBAEF,WACE,CAAA,iBAEF,WACE,CAAA,mBAEF,WACE,CAAA,iBAEF,WACE,CAAA,mBAEF,WACE,CAAA,iBAEF,WACE,CAAA,6BAEF,WACE,CAAA,kCAEF,WACE,CAAA,kCAEF,WACE,CAAA,0BAEF,WACE,CAAA,0BAEF,WACE,CAAA,0BAEF,WACE,CAAA,mBAEF,WACE,CAAA,oBAEF,WACE,CAAA,iBAEF,WACE,CAAA,gBAEF,WACE,CAAA,gBAEF,WACE,CAAA,kBAEF,WACE,CAAA,qBAEF,WACE,CAAA,gBAEF,WACE,CAAA,kBAEF,WACE,CAAA,kBAEF,WACE,CAAA,iBAEF,WACE,CAAA,gBAEF,WACE,CAAA,iBAEF,WACE,CAAA,iBAEF,WACE,CAAA,mBAEF,WACE,CAAA,mBAEF,WACE,CAAA,iBAEF,WACE,CAAA,iBAEF,WACE,CAAA,iBAEF,WACE,CAAA,kBAEF,WACE,CAAA,qBAEF,WACE,CAAA,iBAEF,WACE,CAAA,qBAEF,WACE,CAAA,iBAEF,WACE,CAAA,kBAEF,WACE,CAAA,mBAEF,WACE,CAAA,mBAEF,WACE,CAAA,mBAEF,WACE,CAAA,2BAEF,WACE,CAAA,iBAEF,WACE,CAAA,mBAEF,WACE,CAAA,wBAEF,WACE,CAAA,iBAEF,WACE,CAAA,iBAEF,WACE,CAAA,gBAEF,WACE,CAAA,qBAEF,WACE,CAAA,kBAEF,WACE,CAAA,qBAEF,WACE,CAAA,oBAEF,WACE,CAAA,kBAEF,WACE,CAAA,oBAEF,WACE,CAAA,oBAEF,WACE,CAAA,kBAEF,WACE,CAAA,sBAEF,WACE,CAAA,iBAEF,WACE,CAAA,qBAEF,WACE,CAAA,wBAEF,WACE,CAAA,qBAEF,WACE,CAAA,oBAEF,WACE,CAAA,wBAEF,WACE,CAAA,iBAEF,WACE,CAAA,sBAEF,WACE,CAAA,sBAEF,WACE,CAAA,iBAEF,WACE,CAAA,mBAEF,WACE,CAAA,mBAEF,WACE,CAAA,mBAEF,WACE,CAAA,sBAEF,WACE,CAAA,kBAEF,WACE,CAAA,mBAEF,WACE,CAAA,uBAEF,WACE,CAAA,oBAEF,WACE,CAAA,oBAEF,WACE,CAAA,kBAEF,WACE,CAAA,yBAGF,kBACE,WACE,CAAA,kBAEF,iBACE,CAAA,CAAA,QAGJ,aAEE,CAAA,kBAEF,yDAIE,CAAA,KAEF,eACE,CAAA,aACA,CAAA,aACA,CAAA,wBACA,CAAA,iBACA,CAAA,IAEF,WACE,CAAA,eACA,CAAA,cACA,CAAA,mBACA,CAAA,aACA,CAAA,qBACA,CAAA,wBACA,CAAA,iBACA,CAAA,eACA,CAAA,gBAEF,gBACE,CAAA,iBAGA,kCACQ,CAAA,WAEV,2CAEE,CACA,4EACQ","file":"../whhg-flat-ui.css","sourcesContent":["@font-face{font-family:\"Flat-UI-Icons\";src:url(\"../font/flat-ui-icons-regular.eot\");src:url(\"font/flat-ui-icons-regular.eot?#iefix\") format(\"embedded-opentype\"),url(\"font/flat-ui-icons-regular.woff\") format(\"woff\"),url(\"font/flat-ui-icons-regular.ttf\") format(\"truetype\"),url(\"font/flat-ui-icons-regular.svg#flat-ui-icons-regular\") format(\"svg\")}[class^=fui-],[class*=fui-],.bjqs-next,.bjqs-prev{font-family:\"Flat-UI-Icons\";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fui-triangle-up:before{content:\"\"}.fui-triangle-down:before{content:\"\"}.fui-triangle-up-small:before{content:\"\"}.fui-triangle-down-small:before{content:\"\"}.fui-triangle-left-large:before{content:\"\"}.fui-triangle-right-large:before{content:\"\"}.fui-arrow-left:before,.bjqs-prev a:before{content:\"\"}.fui-arrow-right:before,.bjqs-next a:before{content:\"\"}.fui-plus:before{content:\"\"}.fui-cross:before{content:\"\"}.fui-check:before{content:\"\"}.fui-radio-unchecked:before{content:\"\"}.fui-radio-checked:before{content:\"\"}.fui-checkbox-unchecked:before{content:\"\"}.fui-checkbox-checked:before{content:\"\"}.fui-info-circle:before{content:\"\"}.fui-alert-circle:before{content:\"\"}.fui-question-circle:before{content:\"\"}.fui-check-circle:before{content:\"\"}.fui-cross-circle:before{content:\"\"}.fui-plus-circle:before{content:\"\"}.fui-pause:before{content:\"\"}.fui-play:before{content:\"\"}.fui-volume:before{content:\"\"}.fui-mute:before{content:\"\"}.fui-resize:before{content:\"\"}.fui-list:before{content:\"\"}.fui-list-thumbnailed:before{content:\"\"}.fui-list-small-thumbnails:before{content:\"\"}.fui-list-large-thumbnails:before{content:\"\"}.fui-list-numbered:before{content:\"\"}.fui-list-columned:before{content:\"\"}.fui-list-bulleted:before{content:\"\"}.fui-window:before{content:\"\"}.fui-windows:before{content:\"\"}.fui-loop:before{content:\"\"}.fui-cmd:before{content:\"\"}.fui-mic:before{content:\"\"}.fui-heart:before{content:\"\"}.fui-location:before{content:\"\"}.fui-new:before{content:\"\"}.fui-video:before{content:\"\"}.fui-photo:before{content:\"\"}.fui-time:before{content:\"\"}.fui-eye:before{content:\"\"}.fui-chat:before{content:\"\"}.fui-home:before{content:\"\"}.fui-upload:before{content:\"\"}.fui-search:before{content:\"\"}.fui-user:before{content:\"\"}.fui-mail:before{content:\"\"}.fui-lock:before{content:\"\"}.fui-power:before{content:\"\"}.fui-calendar:before{content:\"\"}.fui-gear:before{content:\"\"}.fui-bookmark:before{content:\"\"}.fui-exit:before{content:\"\"}.fui-trash:before{content:\"\"}.fui-folder:before{content:\"\"}.fui-bubble:before{content:\"\"}.fui-export:before{content:\"\"}.fui-calendar-solid:before{content:\"\"}.fui-star:before{content:\"\"}.fui-star-2:before{content:\"\"}.fui-credit-card:before{content:\"\"}.fui-clip:before{content:\"\"}.fui-link:before{content:\"\"}.fui-tag:before{content:\"\"}.fui-document:before{content:\"\"}.fui-image:before{content:\"\"}.fui-facebook:before{content:\"\"}.fui-youtube:before{content:\"\"}.fui-vimeo:before{content:\"\"}.fui-twitter:before{content:\"\"}.fui-spotify:before{content:\"\"}.fui-skype:before{content:\"\"}.fui-pinterest:before{content:\"\"}.fui-path:before{content:\"\"}.fui-linkedin:before{content:\"\"}.fui-google-plus:before{content:\"\"}.fui-dribbble:before{content:\"\"}.fui-behance:before{content:\"\"}.fui-stumbleupon:before{content:\"\"}.fui-yelp:before{content:\"\"}.fui-wordpress:before{content:\"\"}.fui-windows-8:before{content:\"\"}.fui-vine:before{content:\"\"}.fui-tumblr:before{content:\"\"}.fui-paypal:before{content:\"\"}.fui-lastfm:before{content:\"\"}.fui-instagram:before{content:\"\"}.fui-html5:before{content:\"\"}.fui-github:before{content:\"\"}.fui-foursquare:before{content:\"\"}.fui-dropbox:before{content:\"\"}.fui-android:before{content:\"\"}.fui-apple:before{content:\"\"}@media(min-width: 768px){.dl-horizontal dt{width:160px}.dl-horizontal dd{margin-left:180px}}sub,sup{font-size:70%}code,kbd,pre,samp{font-family:Monaco,Menlo,Consolas,\"Courier New\",monospace}code{padding:2px 6px;font-size:85%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}pre{padding:8px;margin:0 0 15px;font-size:13px;line-height:1.72222;color:inherit;background-color:#fff;border:2px solid #e7e9ec;border-radius:6px;white-space:pre}.pre-scrollable{max-height:340px}.thumbnailmotion{-webkit-transition:border .25s ease-in-out;transition:border .25s ease-in-out}.btnMotion{-webkit-font-smoothing:subpixel-antialiased;-webkit-transition:border .25s linear,color .25s linear,background-color .25s linear;transition:border .25s linear,color .25s linear,background-color .25s linear}","@font-face {\n  font-family: 'Flat-UI-Icons';\n  src: url('../font/flat-ui-icons-regular.eot');\n  src: \n    url('font/flat-ui-icons-regular.eot?#iefix') format('embedded-opentype'), \n    url('font/flat-ui-icons-regular.woff') format('woff'), \n    url('font/flat-ui-icons-regular.ttf') format('truetype'), \n    url('font/flat-ui-icons-regular.svg#flat-ui-icons-regular') format('svg');\n}\n[class^=\"fui-\"],\n[class*=\"fui-\"], .bjqs-next, .bjqs-prev {\n  font-family: 'Flat-UI-Icons';\n  speak: none;\n  font-style: normal;\n  font-weight: normal;\n  font-variant: normal;\n  text-transform: none;\n  -webkit-font-smoothing: antialiased;\n  -moz-osx-font-smoothing: grayscale;\n}\n.fui-triangle-up:before {\n  content: \"\\e600\";\n}\n.fui-triangle-down:before {\n  content: \"\\e601\";\n}\n.fui-triangle-up-small:before {\n  content: \"\\e602\";\n}\n.fui-triangle-down-small:before {\n  content: \"\\e603\";\n}\n.fui-triangle-left-large:before {\n  content: \"\\e604\";\n}\n.fui-triangle-right-large:before {\n  content: \"\\e605\";\n}\n.fui-arrow-left:before, .bjqs-prev a:before {\n  content: \"\\e606\";\n}\n.fui-arrow-right:before, .bjqs-next a:before {\n  content: \"\\e607\";\n}\n.fui-plus:before {\n  content: \"\\e608\";\n}\n.fui-cross:before {\n  content: \"\\e609\";\n}\n.fui-check:before {\n  content: \"\\e60a\";\n}\n.fui-radio-unchecked:before {\n  content: \"\\e60b\";\n}\n.fui-radio-checked:before {\n  content: \"\\e60c\";\n}\n.fui-checkbox-unchecked:before {\n  content: \"\\e60d\";\n}\n.fui-checkbox-checked:before {\n  content: \"\\e60e\";\n}\n.fui-info-circle:before {\n  content: \"\\e60f\";\n}\n.fui-alert-circle:before {\n  content: \"\\e610\";\n}\n.fui-question-circle:before {\n  content: \"\\e611\";\n}\n.fui-check-circle:before {\n  content: \"\\e612\";\n}\n.fui-cross-circle:before {\n  content: \"\\e613\";\n}\n.fui-plus-circle:before {\n  content: \"\\e614\";\n}\n.fui-pause:before {\n  content: \"\\e615\";\n}\n.fui-play:before {\n  content: \"\\e616\";\n}\n.fui-volume:before {\n  content: \"\\e617\";\n}\n.fui-mute:before {\n  content: \"\\e618\";\n}\n.fui-resize:before {\n  content: \"\\e619\";\n}\n.fui-list:before {\n  content: \"\\e61a\";\n}\n.fui-list-thumbnailed:before {\n  content: \"\\e61b\";\n}\n.fui-list-small-thumbnails:before {\n  content: \"\\e61c\";\n}\n.fui-list-large-thumbnails:before {\n  content: \"\\e61d\";\n}\n.fui-list-numbered:before {\n  content: \"\\e61e\";\n}\n.fui-list-columned:before {\n  content: \"\\e61f\";\n}\n.fui-list-bulleted:before {\n  content: \"\\e620\";\n}\n.fui-window:before {\n  content: \"\\e621\";\n}\n.fui-windows:before {\n  content: \"\\e622\";\n}\n.fui-loop:before {\n  content: \"\\e623\";\n}\n.fui-cmd:before {\n  content: \"\\e624\";\n}\n.fui-mic:before {\n  content: \"\\e625\";\n}\n.fui-heart:before {\n  content: \"\\e626\";\n}\n.fui-location:before {\n  content: \"\\e627\";\n}\n.fui-new:before {\n  content: \"\\e628\";\n}\n.fui-video:before {\n  content: \"\\e629\";\n}\n.fui-photo:before {\n  content: \"\\e62a\";\n}\n.fui-time:before {\n  content: \"\\e62b\";\n}\n.fui-eye:before {\n  content: \"\\e62c\";\n}\n.fui-chat:before {\n  content: \"\\e62d\";\n}\n.fui-home:before {\n  content: \"\\e62e\";\n}\n.fui-upload:before {\n  content: \"\\e62f\";\n}\n.fui-search:before {\n  content: \"\\e630\";\n}\n.fui-user:before {\n  content: \"\\e631\";\n}\n.fui-mail:before {\n  content: \"\\e632\";\n}\n.fui-lock:before {\n  content: \"\\e633\";\n}\n.fui-power:before {\n  content: \"\\e634\";\n}\n.fui-calendar:before {\n  content: \"\\e635\";\n}\n.fui-gear:before {\n  content: \"\\e636\";\n}\n.fui-bookmark:before {\n  content: \"\\e637\";\n}\n.fui-exit:before {\n  content: \"\\e638\";\n}\n.fui-trash:before {\n  content: \"\\e639\";\n}\n.fui-folder:before {\n  content: \"\\e63a\";\n}\n.fui-bubble:before {\n  content: \"\\e63b\";\n}\n.fui-export:before {\n  content: \"\\e63c\";\n}\n.fui-calendar-solid:before {\n  content: \"\\e63d\";\n}\n.fui-star:before {\n  content: \"\\e63e\";\n}\n.fui-star-2:before {\n  content: \"\\e63f\";\n}\n.fui-credit-card:before {\n  content: \"\\e640\";\n}\n.fui-clip:before {\n  content: \"\\e641\";\n}\n.fui-link:before {\n  content: \"\\e642\";\n}\n.fui-tag:before {\n  content: \"\\e643\";\n}\n.fui-document:before {\n  content: \"\\e644\";\n}\n.fui-image:before {\n  content: \"\\e645\";\n}\n.fui-facebook:before {\n  content: \"\\e646\";\n}\n.fui-youtube:before {\n  content: \"\\e647\";\n}\n.fui-vimeo:before {\n  content: \"\\e648\";\n}\n.fui-twitter:before {\n  content: \"\\e649\";\n}\n.fui-spotify:before {\n  content: \"\\e64a\";\n}\n.fui-skype:before {\n  content: \"\\e64b\";\n}\n.fui-pinterest:before {\n  content: \"\\e64c\";\n}\n.fui-path:before {\n  content: \"\\e64d\";\n}\n.fui-linkedin:before {\n  content: \"\\e64e\";\n}\n.fui-google-plus:before {\n  content: \"\\e64f\";\n}\n.fui-dribbble:before {\n  content: \"\\e650\";\n}\n.fui-behance:before {\n  content: \"\\e651\";\n}\n.fui-stumbleupon:before {\n  content: \"\\e652\";\n}\n.fui-yelp:before {\n  content: \"\\e653\";\n}\n.fui-wordpress:before {\n  content: \"\\e654\";\n}\n.fui-windows-8:before {\n  content: \"\\e655\";\n}\n.fui-vine:before {\n  content: \"\\e656\";\n}\n.fui-tumblr:before {\n  content: \"\\e657\";\n}\n.fui-paypal:before {\n  content: \"\\e658\";\n}\n.fui-lastfm:before {\n  content: \"\\e659\";\n}\n.fui-instagram:before {\n  content: \"\\e65a\";\n}\n.fui-html5:before {\n  content: \"\\e65b\";\n}\n.fui-github:before {\n  content: \"\\e65c\";\n}\n.fui-foursquare:before {\n  content: \"\\e65d\";\n}\n.fui-dropbox:before {\n  content: \"\\e65e\";\n}\n.fui-android:before {\n  content: \"\\e65f\";\n}\n.fui-apple:before {\n  content: \"\\e660\";\n}\n\n@media (min-width: 768px) {\n  .dl-horizontal dt {\n    width: 160px;\n  }\n  .dl-horizontal dd {\n    margin-left: 180px;\n  }\n}\nsub,\nsup {\n  font-size: 70%;\n}\ncode,\nkbd,\npre,\nsamp {\n  font-family: Monaco, Menlo, Consolas, \"Courier New\", monospace;\n}\ncode {\n  padding: 2px 6px;\n  font-size: 85%;\n  color: #c7254e;\n  background-color: #f9f2f4;\n  border-radius: 4px;\n}\npre {\n  padding: 8px;\n  margin: 0 0 15px;\n  font-size: 13px;\n  line-height: 1.72222;\n  color: inherit;\n  background-color: #ffffff;\n  border: 2px solid #e7e9ec;\n  border-radius: 6px;\n  white-space: pre;\n}\n.pre-scrollable {\n  max-height: 340px;\n}\n.thumbnailmotion {\n  -webkit-transition: border 0.25s ease-in-out;\n          transition: border 0.25s ease-in-out;\n}\n.btnMotion {\n\n  -webkit-font-smoothing: subpixel-antialiased;\n  -webkit-transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;\n          transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;\n}\n"]}
  • musicidb-calendar/trunk/css/maps/whhg.css.map

    r2980848 r3158876  
    1 {"version":3,"sources":["whhg.scss"],"names":[],"mappings":"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","file":"../whhg.css","sourcesContent":["@font-face {\n    font-family: 'WebHostingHub-Glyphs';\n    src: url('font/webhostinghub-glyphs.eot');\n    src: url('font/webhostinghub-glyphs.eot?#iefix') format('embedded-opentype'),\n         url('font/webhostinghub-glyphs.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n    -moz-font-feature-settings: \"calt=0,liga=0\";\n}\n[class^=\"icon-\"], [class*=\" icon-\"],\n.toggle-triangle,\n.prevLink, .nextLink, \n.updateLink\n {font-family:'WebHostingHub-Glyphs';background:none;width:auto;height:auto;font-style:normal}\n.icon-aaabattery:before{content:'\\f413'}\n.icon-abacus:before{content:'\\f261'}\n.icon-accountfilter:before{content:'\\f05e'}\n.icon-acsource:before{content:'\\f3ea'}\n.icon-addfriend:before{content:'\\f3da'}\n.icon-address:before{content:'\\f08f'}\n.icon-addshape:before{content:'\\f1fd'}\n.icon-addtocart:before{content:'\\f394'}\n.icon-addtolist:before{content:'\\f2ac'}\n.icon-adjust:before{content:'\\f484'}\n.icon-adobe:before{content:'\\f1c9'}\n.icon-ads-bilboard:before{content:'\\f082'}\n.icon-affiliate:before{content:'\\f01e'}\n.icon-ajax:before{content:'\\f06f'}\n.icon-alarm:before{content:'\\f233'}\n.icon-alarmalt:before{content:'\\f23d'}\n.icon-album-cover:before{content:'\\f19f'}\n.icon-alertalt:before{content:'\\f2b4'}\n.icon-alertpay:before{content:'\\f269'}\n.icon-algorhythm:before{content:'\\f0b8'}\n.icon-alienship:before{content:'\\f41f'}\n.icon-alienware:before{content:'\\f3be'}\n.icon-align-center:before{content:'\\f1d9'}\n.icon-align-justify:before{content:'\\f1da'}\n.icon-align-left:before{content:'\\f1d7'}\n.icon-align-right:before{content:'\\f1d8'}\n.icon-alignbottomedge:before{content:'\\f1d3'}\n.icon-alignhorizontalcenter:before{content:'\\f1d2'}\n.icon-alignleftedge:before{content:'\\f1d6'}\n.icon-alignrightedge:before{content:'\\f1d5'}\n.icon-aligntopedge:before{content:'\\f1d4'}\n.icon-alignverticalcenter:before{content:'\\f1d1'}\n.icon-amd:before{content:'\\f020'}\n.icon-analogdown:before{content:'\\f2cb'}\n.icon-analogleft:before{content:'\\f2c8'}\n.icon-analogright:before{content:'\\f2c9'}\n.icon-analogup:before{content:'\\f2ca'}\n.icon-analytics-piechart:before{content:'\\f000'}\n.icon-analyticsalt-piechartalt:before{content:'\\f001'}\n.icon-anchor-port:before{content:'\\f21d'}\n.icon-android:before{content:'\\f12a'}\n.icon-angrybirds:before{content:'\\f3c1'}\n.icon-antenna:before{content:'\\f3ec'}\n.icon-apache-feather:before{content:'\\f056'}\n.icon-aperture:before{content:'\\f356'}\n.icon-appointment-agenda:before{content:'\\f26c'}\n.icon-archive:before{content:'\\f171'}\n.icon-arrow-down:before{content:'\\f2fe'}\n.icon-arrow-left:before{content:'\\f305'}\n.icon-arrow-right:before{content:'\\f304'}\n.icon-arrow-up:before{content:'\\f301'}\n.icon-asterisk:before{content:'\\f317'}\n.icon-asteriskalt:before{content:'\\002a'}\n.icon-at:before{content:'\\40'}\n.icon-atari:before{content:'\\f3b9'}\n.icon-authentication-keyalt:before{content:'\\f051'}\n.icon-automobile-car:before{content:'\\f239'}\n.icon-autorespond:before{content:'\\f08e'}\n.icon-avatar:before{content:'\\f15a'}\n.icon-avataralt:before{content:'\\f161'}\n.icon-avengers:before{content:'\\f342'}\n.icon-awstats:before{content:'\\f04c'}\n.icon-axe:before{content:'\\f2ef'}\n.icon-backup-vault:before{content:'\\f004'}\n.icon-backupalt-vaultalt:before{content:'\\f005'}\n.icon-backupwizard:before{content:'\\f05f'}\n.icon-backward:before{content:'\\f183'}\n.icon-bag:before{content:'\\f234'}\n.icon-baloon:before{content:'\\f405'}\n.icon-ban-circle:before{content:'\\f313'}\n.icon-banana:before{content:'\\f3f4'}\n.icon-bandwidth:before{content:'\\f006'}\n.icon-bank:before{content:'\\f262'}\n.icon-barchart:before{content:'\\f02f'}\n.icon-barchartalt:before{content:'\\f07d'}\n.icon-barcode:before{content:'\\f276'}\n.icon-basecamp:before{content:'\\f160'}\n.icon-basketball:before{content:'\\f2e9'}\n.icon-bat:before{content:'\\f3d3'}\n.icon-batman:before{content:'\\f348'}\n.icon-batteryaltcharging:before{content:'\\f104'}\n.icon-batteryaltfull:before{content:'\\f101'}\n.icon-batteryaltsixty:before{content:'\\f102'}\n.icon-batteryaltthird:before{content:'\\f103'}\n.icon-batterycharged:before{content:'\\f0f4'}\n.icon-batterycharging:before{content:'\\f0f3'}\n.icon-batteryeighty:before{content:'\\f0f9'}\n.icon-batteryempty:before{content:'\\f0f5'}\n.icon-batteryforty:before{content:'\\f0f7'}\n.icon-batteryfull:before{content:'\\f0fa'}\n.icon-batterysixty:before{content:'\\f0f8'}\n.icon-batterytwenty:before{content:'\\f0f6'}\n.icon-bed:before{content:'\\f2b9'}\n.icon-beer:before{content:'\\f244'}\n.icon-bell:before{content:'\\2407'}\n.icon-bigger:before{content:'\\f30a'}\n.icon-bill:before{content:'\\f278'}\n.icon-binary:before{content:'\\f087'}\n.icon-binoculars-searchalt:before{content:'\\f2a0'}\n.icon-birdhouse:before{content:'\\f390'}\n.icon-birthday:before{content:'\\f36b'}\n.icon-bishop:before{content:'\\f2f9'}\n.icon-blackberry:before{content:'\\f421'}\n.icon-blankstare:before{content:'\\f13e'}\n.icon-blogger-blog:before{content:'\\f167'}\n.icon-bluetooth:before{content:'\\f12b'}\n.icon-bluetoothconnected:before{content:'\\f386'}\n.icon-boardgame:before{content:'\\f2d9'}\n.icon-boat:before{content:'\\f21a'}\n.icon-bold:before{content:'\\f1f4'}\n.icon-bomb:before{content:'\\f2dc'}\n.icon-bone:before{content:'\\f35f'}\n.icon-book:before{content:'\\f1ba'}\n.icon-bookmark:before{content:'\\f143'}\n.icon-boombox:before{content:'\\f195'}\n.icon-bottle:before{content:'\\f361'}\n.icon-bow:before{content:'\\f2ee'}\n.icon-bowling:before{content:'\\f2f3'}\n.icon-bowlingpins:before{content:'\\f3d2'}\n.icon-bowtie:before{content:'\\f37f'}\n.icon-boxtrapper-mousetrap:before{content:'\\f046'}\n.icon-braces:before{content:'\\f0b4'}\n.icon-braille0:before{content:'\\f44b'}\n.icon-braille1:before{content:'\\f44c'}\n.icon-braille2:before{content:'\\f44d'}\n.icon-braille3:before{content:'\\f44e'}\n.icon-braille4:before{content:'\\f44f'}\n.icon-braille5:before{content:'\\f450'}\n.icon-braille6:before{content:'\\f451'}\n.icon-braille7:before{content:'\\f452'}\n.icon-braille8:before{content:'\\f453'}\n.icon-braille9:before{content:'\\f454'}\n.icon-braillea:before{content:'\\f431'}\n.icon-brailleb:before{content:'\\f432'}\n.icon-braillec:before{content:'\\f433'}\n.icon-brailled:before{content:'\\f434'}\n.icon-braillee:before{content:'\\f435'}\n.icon-braillef:before{content:'\\f436'}\n.icon-brailleg:before{content:'\\f437'}\n.icon-brailleh:before{content:'\\f438'}\n.icon-braillei:before{content:'\\f439'}\n.icon-braillej:before{content:'\\f43a'}\n.icon-braillek:before{content:'\\f43b'}\n.icon-braillel:before{content:'\\f43c'}\n.icon-braillem:before{content:'\\f43d'}\n.icon-braillen:before{content:'\\f43e'}\n.icon-brailleo:before{content:'\\f43f'}\n.icon-braillep:before{content:'\\f440'}\n.icon-brailleq:before{content:'\\f441'}\n.icon-brailler:before{content:'\\f442'}\n.icon-brailles:before{content:'\\f443'}\n.icon-braillespace:before{content:'\\f455'}\n.icon-braillet:before{content:'\\f444'}\n.icon-brailleu:before{content:'\\f445'}\n.icon-braillev:before{content:'\\f446'}\n.icon-braillew:before{content:'\\f447'}\n.icon-braillex:before{content:'\\f448'}\n.icon-brailley:before{content:'\\f449'}\n.icon-braillez:before{content:'\\f44a'}\n.icon-brain:before{content:'\\f3e3'}\n.icon-bread:before{content:'\\f42f'}\n.icon-breakable:before{content:'\\f41c'}\n.icon-briefcase:before{content:'\\f25e'}\n.icon-briefcasethree:before{content:'\\f25f'}\n.icon-briefcasetwo:before{content:'\\f0a2'}\n.icon-brightness:before{content:'\\f10a'}\n.icon-brightnessfull:before{content:'\\f10b'}\n.icon-brightnesshalf:before{content:'\\f10c'}\n.icon-broom:before{content:'\\f40a'}\n.icon-browser:before{content:'\\f159'}\n.icon-brush:before{content:'\\f1b8'}\n.icon-bucket:before{content:'\\f1b5'}\n.icon-bug:before{content:'\\f0a7'}\n.icon-bullhorn:before{content:'\\f287'}\n.icon-bus:before{content:'\\f241'}\n.icon-businesscardalt:before{content:'\\f137'}\n.icon-buttona:before{content:'\\f2bf'}\n.icon-buttonb:before{content:'\\f2c0'}\n.icon-buttonx:before{content:'\\f2c1'}\n.icon-buttony:before{content:'\\f2c2'}\n.icon-cactus-desert:before{content:'\\f22c'}\n.icon-calculator:before{content:'\\f258'}\n.icon-calculatoralt:before{content:'\\f265'}\n.icon-calendar:before{content:'\\f20f'}\n.icon-calendaralt-cronjobs:before{content:'\\f0a1'}\n.icon-camera:before{content:'\\f19b'}\n.icon-candle:before{content:'\\f29a'}\n.icon-candy:before{content:'\\f42d'}\n.icon-candycane:before{content:'\\f37d'}\n.icon-cannon:before{content:'\\f401'}\n.icon-canvas:before{content:'\\f1c8'}\n.icon-canvasrulers:before{content:'\\f205'}\n.icon-capacitator:before{content:'\\f3e8'}\n.icon-capslock:before{content:'\\21ea'}\n.icon-captainamerica:before{content:'\\f341'}\n.icon-carrot:before{content:'\\f3f2'}\n.icon-cashregister:before{content:'\\f26e'}\n.icon-cassette:before{content:'\\f377'}\n.icon-cd-dvd:before{content:'\\f0cd'}\n.icon-certificate:before{content:'\\f277'}\n.icon-certificatealt:before{content:'\\f058'}\n.icon-certificatethree:before{content:'\\f059'}\n.icon-cgi:before{content:'\\f086'}\n.icon-cgicenter:before{content:'\\f079'}\n.icon-chair:before{content:'\\2441'}\n.icon-chat:before{content:'\\f162'}\n.icon-check:before{content:'\\f310'}\n.icon-checkboxalt:before{content:'\\f311'}\n.icon-checkin:before{content:'\\f223'}\n.icon-checkinalt:before{content:'\\f227'}\n.icon-chef:before{content:'\\f3ce'}\n.icon-cherry:before{content:'\\f35d'}\n.icon-chevron-down:before{content:'\\f48b'}\n.icon-chevron-left:before{content:'\\f489'}\n.icon-chevron-right:before{content:'\\f488'}\n.icon-chevron-up:before{content:'\\f48a'}\n.icon-chevrons:before{content:'\\f0b5'}\n.icon-chicken:before{content:'\\f359'}\n.icon-chocolate:before{content:'\\f367'}\n.icon-christiancross:before{content:'\\f40f'}\n.icon-christmastree:before{content:'\\f37b'}\n.icon-chrome:before{content:'\\f14e'}\n.icon-cigarette:before{content:'\\f229'}\n.icon-circle-arrow-down:before{content:'\\f475'}\n.icon-circle-arrow-left:before, .prevLink:before \n{content:'\\f472'}\n.icon-circle-arrow-right:before, .nextLink:before {content:'\\f473'}\n.icon-circle-arrow-up:before{content:'\\f474'}\n.icon-circleadd:before{content:'\\f0d1'}\n.icon-circledelete:before{content:'\\f0d2'}\n.icon-circledown:before{content:'\\f3c7'}\n.icon-circleleft:before{content:'\\f3c6'}\n.icon-circleright:before{content:'\\f3c9'}\n.icon-circleselect:before{content:'\\f0d3'}\n.icon-circleselection:before{content:'\\f1b1'}\n.icon-circleup:before{content:'\\f3c8'}\n.icon-clearformatting:before{content:'\\f1e7'}\n.icon-clipboard-paste:before{content:'\\f0cb'}\n.icon-clockalt-timealt:before{content:'\\f22b'}\n.icon-closetab:before{content:'\\f170'}\n.icon-closewindow:before{content:'\\f16e'}\n.icon-cloud:before{content:'\\f0b9'}\n.icon-clouddownload:before{content:'\\f0bb'}\n.icon-cloudhosting:before{content:'\\f007'}\n.icon-cloudsync:before{content:'\\f0bc'}\n.icon-cloudupload:before{content:'\\f0ba'}\n.icon-clubs:before{content:'\\f2f6'}\n.icon-cmd:before{content:'\\f33a'}\n.icon-cms:before{content:'\\f036'}\n.icon-cmsmadesimple:before{content:'\\f0b0'}\n.icon-codeigniter:before{content:'\\f077'}\n.icon-coffee:before{content:'\\f235'}\n.icon-coffeebean:before{content:'\\f366'}\n.icon-cog:before{content:'\\f00f'}\n.icon-colocation:before{content:'\\f024'}\n.icon-colocationalt:before{content:'\\f023'}\n.icon-colors:before{content:'\\f1e6'}\n.icon-comment:before{content:'\\f12c'}\n.icon-commentout:before{content:'\\f080'}\n.icon-commentround:before{content:'\\f155'}\n.icon-commentroundempty:before{content:'\\f156'}\n.icon-commentroundtyping:before{content:'\\f157'}\n.icon-commentroundtypingempty:before{content:'\\f158'}\n.icon-commenttyping:before{content:'\\f12d'}\n.icon-compass:before{content:'\\263c'}\n.icon-concretefive:before{content:'\\f0af'}\n.icon-contact-businesscard:before{content:'\\f040'}\n.icon-controllernes:before{content:'\\f2d2'}\n.icon-controllerps:before{content:'\\f2d1'}\n.icon-controllersnes:before{content:'\\f2d3'}\n.icon-controlpanel:before{content:'\\f008'}\n.icon-controlpanelalt:before{content:'\\f009'}\n.icon-cooling:before{content:'\\f00a'}\n.icon-coppermine:before{content:'\\f0a4'}\n.icon-copy:before{content:'\\f0c9'}\n.icon-copyright:before{content:'\\00a9'}\n.icon-coupon:before{content:'\\f254'}\n.icon-cpanel:before{content:'\\f072'}\n.icon-cplusplus:before{content:'\\f0b1'}\n.icon-cpu-processor:before{content:'\\f002'}\n.icon-cpualt-processoralt:before{content:'\\f003'}\n.icon-crayon:before{content:'\\f383'}\n.icon-createfile:before{content:'\\f0c6'}\n.icon-createfolder:before{content:'\\f0da'}\n.icon-creativecommons:before{content:'\\f1fc'}\n.icon-creditcard:before{content:'\\f279'}\n.icon-cricket:before{content:'\\f418'}\n.icon-croisant:before{content:'\\f29f'}\n.icon-crop:before{content:'\\f1af'}\n.icon-crown:before{content:'\\f28f'}\n.icon-csharp:before{content:'\\f0b2'}\n.icon-cssthree:before{content:'\\f06a'}\n.icon-cup-coffeealt:before{content:'\\f24b'}\n.icon-cupcake:before{content:'\\f35b'}\n.icon-curling:before{content:'\\f3d7'}\n.icon-cursor:before{content:'\\f0dc'}\n.icon-cut-scissors:before{content:'\\f0ca'}\n.icon-dagger:before{content:'\\2020'}\n.icon-danger:before{content:'\\f415'}\n.icon-dart:before{content:'\\f3d4'}\n.icon-darthvader:before{content:'\\f34a'}\n.icon-database:before{content:'\\f00b'}\n.icon-databaseadd:before{content:'\\f00c'}\n.icon-databasedelete:before{content:'\\f00d'}\n.icon-davidstar:before{content:'\\f40e'}\n.icon-dcsource:before{content:'\\f3e9'}\n.icon-dedicatedserver:before{content:'\\f00e'}\n.icon-deletefile:before{content:'\\f0c7'}\n.icon-deletefolder:before{content:'\\f0db'}\n.icon-delicious:before{content:'\\f152'}\n.icon-designcontest:before{content:'\\f351'}\n.icon-desklamp:before{content:'\\f412'}\n.icon-dialpad:before{content:'\\f399'}\n.icon-diamond:before{content:'\\2666'}\n.icon-diamonds:before{content:'\\f2f7'}\n.icon-die-dice:before{content:'\\f2d8'}\n.icon-diefive:before{content:'\\f3fb'}\n.icon-diefour:before{content:'\\f3fa'}\n.icon-dieone:before{content:'\\f3f7'}\n.icon-diesix:before{content:'\\f3fc'}\n.icon-diethree:before{content:'\\f3f9'}\n.icon-dietwo:before{content:'\\f3f8'}\n.icon-diode:before{content:'\\f3e7'}\n.icon-director:before{content:'\\f2ae'}\n.icon-diskspace:before{content:'\\f096'}\n.icon-distributehorizontalcenters:before{content:'\\f1dc'}\n.icon-distributeverticalcenters:before{content:'\\f1db'}\n.icon-divide:before{content:'\\00f7'}\n.icon-dna:before{content:'\\f409'}\n.icon-dnszone:before{content:'\\f07f'}\n.icon-document:before{content:'\\f0c2'}\n.icon-doghouse:before{content:'\\f38f'}\n.icon-dollar:before{content:'\\24'}\n.icon-dollaralt:before{content:'\\f259'}\n.icon-dolphinsoftware:before{content:'\\f064'}\n.icon-domain:before{content:'\\f01d'}\n.icon-domainaddon:before{content:'\\f053'}\n.icon-domino:before{content:'\\f3d5'}\n.icon-donut:before{content:'\\f3ca'}\n.icon-downleft:before{content:'\\f2ff'}\n.icon-download:before{content:'\\f47b'}\n.icon-download-alt:before{content:'\\f11a'}\n.icon-downright:before{content:'\\f300'}\n.icon-draft:before{content:'\\f172'}\n.icon-dreamweaver:before{content:'\\f1d0'}\n.icon-dribbble:before{content:'\\f14c'}\n.icon-dropmenu:before{content:'\\f0a5'}\n.icon-drupal:before{content:'\\f075'}\n.icon-drwho:before{content:'\\f3c0'}\n.icon-edit:before{content:'\\f47c'}\n.icon-editalt:before{content:'\\f0f2'}\n.icon-egg:before{content:'\\f407'}\n.icon-eightball:before{content:'\\f36e'}\n.icon-eject:before{content:'\\f199'}\n.icon-elipse:before{content:'\\f1bc'}\n.icon-emailalt:before{content:'\\f136'}\n.icon-emailexport:before{content:'\\f176'}\n.icon-emailforward:before{content:'\\f175'}\n.icon-emailforwarders:before{content:'\\f049'}\n.icon-emailimport:before{content:'\\f177'}\n.icon-emailrefresh:before{content:'\\f174'}\n.icon-emailtrace:before{content:'\\f091'}\n.icon-emergency:before{content:'\\f246'}\n.icon-emptycart:before{content:'\\f395'}\n.icon-enter:before{content:'\\f323'}\n.icon-envelope:before{content:'\\f028'}\n.icon-equalizer:before{content:'\\f18e'}\n.icon-equalizeralt:before{content:'\\f18f'}\n.icon-equals:before{content:'\\f30c'}\n.icon-eraser:before{content:'\\f1f1'}\n.icon-erroralt:before{content:'\\f05a'}\n.icon-euro:before{content:'\\20ac'}\n.icon-euroalt:before{content:'\\f25a'}\n.icon-evernote:before{content:'\\f17c'}\n.icon-exchange-currency:before{content:'\\f26b'}\n.icon-exclamation-sign:before{content:'\\f04a'}\n.icon-excludeshape:before{content:'\\f200'}\n.icon-exit:before{content:'\\f324'}\n.icon-explorerwindow:before{content:'\\f0d9'}\n.icon-exportfile:before{content:'\\f32f'}\n.icon-exposure:before{content:'\\f1de'}\n.icon-extinguisher:before{content:'\\f2b7'}\n.icon-eye-close:before{content:'\\f481'}\n.icon-eye-open:before{content:'\\f2b5'}\n.icon-eye-view:before{content:'\\f280'}\n.icon-eyedropper:before{content:'\\f1ad'}\n.icon-facebook:before{content:'\\f140'}\n.icon-facebookalt:before{content:'\\f14b'}\n.icon-facetime-video:before{content:'\\f19c'}\n.icon-factory:before{content:'\\f27a'}\n.icon-fantastico:before{content:'\\f0ae'}\n.icon-faq:before{content:'\\f099'}\n.icon-fast-backward:before{content:'\\f47e'}\n.icon-fast-forward:before{content:'\\f47f'}\n.icon-fastdown:before{content:'\\f31d'}\n.icon-fastleft:before{content:'\\f31a'}\n.icon-fastright:before{content:'\\f31b'}\n.icon-fastup:before{content:'\\f31c'}\n.icon-favoritefile:before{content:'\\f381'}\n.icon-favoritefolder:before{content:'\\f382'}\n.icon-featheralt-write:before{content:'\\f1c5'}\n.icon-fedora:before{content:'\\f3f1'}\n.icon-fence:before{content:'\\f2af'}\n.icon-file:before{content:'\\f0d6'}\n.icon-film:before{content:'\\f19d'}\n.icon-filmstrip:before{content:'\\f3ed'}\n.icon-filter:before{content:'\\f05c'}\n.icon-finder:before{content:'\\f398'}\n.icon-fire:before{content:'\\f27f'}\n.icon-firefox:before{content:'\\f420'}\n.icon-firewall:before{content:'\\f021'}\n.icon-firewire:before{content:'\\f0fc'}\n.icon-firstaid:before{content:'\\f2ba'}\n.icon-fish:before{content:'\\f35a'}\n.icon-fishbone:before{content:'\\f42b'}\n.icon-flag:before{content:'\\f487'}\n.icon-flagalt:before{content:'\\f232'}\n.icon-flagtriangle:before{content:'\\f20b'}\n.icon-flash:before{content:'\\f1cf'}\n.icon-flashlight:before{content:'\\f299'}\n.icon-flashplayer:before{content:'\\f070'}\n.icon-flaskfull:before{content:'\\f27e'}\n.icon-flickr:before{content:'\\f146'}\n.icon-flower:before{content:'\\f2a5'}\n.icon-flowernew:before{content:'\\f3a8'}\n.icon-folder-close:before{content:'\\f094'}\n.icon-folder-open:before{content:'\\f483'}\n.icon-foldertree:before{content:'\\f0f0'}\n.icon-font:before{content:'\\f1ae'}\n.icon-foodtray:before{content:'\\f3d0'}\n.icon-football-soccer:before{content:'\\f2eb'}\n.icon-forbiddenalt:before{content:'\\f314'}\n.icon-forest-tree:before{content:'\\f217'}\n.icon-forestalt-treealt:before{content:'\\f21c'}\n.icon-fork:before{content:'\\22d4'}\n.icon-forklift:before{content:'\\f29b'}\n.icon-form:before{content:'\\f08c'}\n.icon-forrst:before{content:'\\f14d'}\n.icon-fort:before{content:'\\f400'}\n.icon-forward:before{content:'\\f182'}\n.icon-fourohfour:before{content:'\\f09d'}\n.icon-foursquare:before{content:'\\f42a'}\n.icon-freeway:before{content:'\\f24a'}\n.icon-fridge:before{content:'\\f40d'}\n.icon-fries:before{content:'\\f36a'}\n.icon-ftp:before{content:'\\f029'}\n.icon-ftpaccounts:before{content:'\\f07b'}\n.icon-ftpsession:before{content:'\\f07c'}\n.icon-fullscreen:before{content:'\\f485'}\n.icon-gameboy:before{content:'\\f403'}\n.icon-gamecursor:before{content:'\\f2d0'}\n.icon-gasstation:before{content:'\\f216'}\n.icon-gearfour:before{content:'\\f3a7'}\n.icon-ghost:before{content:'\\f2da'}\n.icon-gift:before{content:'\\f260'}\n.icon-github:before{content:'\\f081'}\n.icon-glass:before{content:'\\f236'}\n.icon-glasses:before{content:'\\f295'}\n.icon-glassesalt:before{content:'\\f39d'}\n.icon-globe:before{content:'\\f01b'}\n.icon-globealt:before{content:'\\f36c'}\n.icon-glue:before{content:'\\f36d'}\n.icon-gmail:before{content:'\\f150'}\n.icon-golf:before{content:'\\f2f1'}\n.icon-googledrive:before{content:'\\f163'}\n.icon-googleplus:before{content:'\\f165'}\n.icon-googlewallet:before{content:'\\f270'}\n.icon-gpsoff-gps:before{content:'\\f21e'}\n.icon-gpson:before{content:'\\f21f'}\n.icon-gpu-graphicscard:before{content:'\\f108'}\n.icon-gradient:before{content:'\\2207'}\n.icon-grails:before{content:'\\f085'}\n.icon-greenlantern:before{content:'\\f340'}\n.icon-greenlightbulb:before{content:'\\f406'}\n.icon-grooveshark:before{content:'\\f3a2'}\n.icon-groups-friends:before{content:'\\f134'}\n.icon-guitar:before{content:'\\f19a'}\n.icon-halflife:before{content:'\\f3ba'}\n.icon-halo:before{content:'\\f3bb'}\n.icon-hamburger:before{content:'\\f2b3'}\n.icon-hammer:before{content:'\\f291'}\n.icon-hand-down:before{content:'\\f387'}\n.icon-hand-left:before{content:'\\f389'}\n.icon-hand-right:before{content:'\\f388'}\n.icon-hand-up:before{content:'\\f0dd'}\n.icon-handcuffs:before{content:'\\f393'}\n.icon-handdrag:before{content:'\\f0de'}\n.icon-handtwofingers:before{content:'\\f0df'}\n.icon-hanger:before{content:'\\f2ab'}\n.icon-happy:before{content:'\\f13c'}\n.icon-harrypotter:before{content:'\\f38b'}\n.icon-hdd:before{content:'\\f02a'}\n.icon-hdtv:before{content:'\\f1a0'}\n.icon-headphones:before{content:'\\f180'}\n.icon-headphonesalt:before{content:'\\f1a3'}\n.icon-heart:before{content:'\\f131'}\n.icon-heartempty-love:before{content:'\\f132'}\n.icon-hearts:before{content:'\\f2f4'}\n.icon-helicopter:before{content:'\\f3e4'}\n.icon-hexagon-polygon:before{content:'\\f1be'}\n.icon-hockey:before{content:'\\f3d9'}\n.icon-home:before{content:'\\21b8'}\n.icon-homealt:before{content:'\\f02b'}\n.icon-hospital:before{content:'\\f247'}\n.icon-hotdog:before{content:'\\f3cc'}\n.icon-hotlinkprotection:before{content:'\\f050'}\n.icon-hourglassalt:before{content:'\\f122'}\n.icon-html:before{content:'\\f068'}\n.icon-htmlfive:before{content:'\\f069'}\n.icon-hydrant:before{content:'\\f3ff'}\n.icon-icecream:before{content:'\\f2a4'}\n.icon-icecreamalt:before{content:'\\f289'}\n.icon-illustrator:before{content:'\\f1ce'}\n.icon-imac:before{content:'\\f0fb'}\n.icon-images-gallery:before{content:'\\f09f'}\n.icon-importcontacts:before{content:'\\f092'}\n.icon-importfile:before{content:'\\f32e'}\n.icon-inbox:before{content:'\\f17a'}\n.icon-inboxalt:before{content:'\\f178'}\n.icon-incomingcall:before{content:'\\f15d'}\n.icon-indent-left:before{content:'\\f1f2'}\n.icon-indent-right:before{content:'\\f1f3'}\n.icon-indexmanager:before{content:'\\f09e'}\n.icon-infinity:before{content:'\\221e'}\n.icon-info-sign:before{content:'\\f315'}\n.icon-infographic:before{content:'\\f336'}\n.icon-ink:before{content:'\\f3f6'}\n.icon-inkpen:before{content:'\\f1ac'}\n.icon-insertbarchart:before{content:'\\f1e5'}\n.icon-insertpicture:before{content:'\\f1e0'}\n.icon-insertpicturecenter:before{content:'\\f1e3'}\n.icon-insertpictureleft:before{content:'\\f1e1'}\n.icon-insertpictureright:before{content:'\\f1e2'}\n.icon-insertpiechart:before{content:'\\f1e4'}\n.icon-instagram:before{content:'\\f14a'}\n.icon-install:before{content:'\\f128'}\n.icon-intel:before{content:'\\f01f'}\n.icon-intersection:before{content:'\\2229'}\n.icon-intersectshape:before{content:'\\f1ff'}\n.icon-invert:before{content:'\\f1df'}\n.icon-invoice:before{content:'\\f3e5'}\n.icon-ipcontrol:before{content:'\\f08b'}\n.icon-iphone:before{content:'\\f0e6'}\n.icon-ipod:before{content:'\\f190'}\n.icon-ironman:before{content:'\\f349'}\n.icon-islam:before{content:'\\f410'}\n.icon-island:before{content:'\\f392'}\n.icon-italic:before{content:'\\f1f5'}\n.icon-jar:before{content:'\\f2b6'}\n.icon-jason:before{content:'\\f38c'}\n.icon-java:before{content:'\\f083'}\n.icon-joomla:before{content:'\\f073'}\n.icon-joystickarcade:before{content:'\\f2d4'}\n.icon-joystickatari:before{content:'\\f2d5'}\n.icon-jquery:before{content:'\\f06b'}\n.icon-jqueryui:before{content:'\\f06c'}\n.icon-kerning:before{content:'\\f1e9'}\n.icon-key:before{content:'\\f093'}\n.icon-keyboard:before{content:'\\f119'}\n.icon-keyboardalt:before{content:'\\f105'}\n.icon-keyboarddelete:before{content:'\\f3a6'}\n.icon-kidney:before{content:'\\f3e0'}\n.icon-king:before{content:'\\f2fc'}\n.icon-knife:before{content:'\\f214'}\n.icon-knight:before{content:'\\f2fb'}\n.icon-knob:before{content:'\\f376'}\n.icon-lab-flask:before{content:'\\f27d'}\n.icon-lamp:before{content:'\\f2b1'}\n.icon-lan:before{content:'\\f0ee'}\n.icon-language:before{content:'\\f042'}\n.icon-laptop:before{content:'\\f0d8'}\n.icon-lasso:before{content:'\\f396'}\n.icon-lastfm:before{content:'\\f3a3'}\n.icon-laugh:before{content:'\\f13f'}\n.icon-law:before{content:'\\f263'}\n.icon-layers:before{content:'\\f1ca'}\n.icon-layersalt:before{content:'\\f1cb'}\n.icon-leaf:before{content:'\\f039'}\n.icon-leechprotect:before{content:'\\f07e'}\n.icon-legacyfilemanager:before{content:'\\f095'}\n.icon-lego:before{content:'\\f370'}\n.icon-lifeempty:before{content:'\\f2e1'}\n.icon-lifefull:before{content:'\\f2e3'}\n.icon-lifehacker:before{content:'\\f380'}\n.icon-lifehalf:before{content:'\\f2e2'}\n.icon-lifepreserver:before{content:'\\f015'}\n.icon-lightbulb-idea:before{content:'\\f338'}\n.icon-lighthouse:before{content:'\\f3e6'}\n.icon-lightning:before{content:'\\f231'}\n.icon-lightningalt:before{content:'\\f2a8'}\n.icon-line:before{content:'\\f1bf'}\n.icon-lineheight:before{content:'\\f1c0'}\n.icon-link:before{content:'\\f022'}\n.icon-linkalt:before{content:'\\f333'}\n.icon-linkedin:before{content:'\\f166'}\n.icon-linux:before{content:'\\f01a'}\n.icon-list:before{content:'\\f111'}\n.icon-list-alt:before{content:'\\f480'}\n.icon-liver:before{content:'\\f3e2'}\n.icon-loading-hourglass:before{content:'\\f123'}\n.icon-loadingalt:before{content:'\\f339'}\n.icon-lock:before{content:'\\f0be'}\n.icon-lockalt-keyhole:before{content:'\\f0eb'}\n.icon-lollypop:before{content:'\\f3ee'}\n.icon-lungs:before{content:'\\f3df'}\n.icon-macpro:before{content:'\\f3a5'}\n.icon-macro-plant:before{content:'\\f1c6'}\n.icon-magazine:before{content:'\\f1ec'}\n.icon-magento:before{content:'\\f06e'}\n.icon-magnet:before{content:'\\f281'}\n.icon-mailbox:before{content:'\\f044'}\n.icon-mailinglists:before{content:'\\f090'}\n.icon-man-male:before{content:'\\f2a1'}\n.icon-managedhosting:before{content:'\\f038'}\n.icon-map:before{content:'\\f209'}\n.icon-map-marker:before{content:'\\f220'}\n.icon-marker:before{content:'\\f204'}\n.icon-marvin:before{content:'\\f3dd'}\n.icon-mastercard:before{content:'\\f266'}\n.icon-maximize:before{content:'\\f30f'}\n.icon-medal:before{content:'\\f2e5'}\n.icon-medalbronze:before{content:'\\f2e8'}\n.icon-medalgold:before{content:'\\f2e6'}\n.icon-medalsilver:before{content:'\\f2e7'}\n.icon-mediarepeat:before{content:'\\f187'}\n.icon-men:before{content:'\\f24c'}\n.icon-menu:before{content:'\\f127'}\n.icon-merge:before{content:'\\f334'}\n.icon-mergecells:before{content:'\\f327'}\n.icon-mergeshapes:before{content:'\\f201'}\n.icon-metro-subway:before{content:'\\f24f'}\n.icon-metronome:before{content:'\\f374'}\n.icon-mickeymouse:before{content:'\\f37a'}\n.icon-microphone:before{content:'\\f191'}\n.icon-microscope:before{content:'\\f283'}\n.icon-microsd:before{content:'\\f107'}\n.icon-microwave:before{content:'\\f42e'}\n.icon-mimetype:before{content:'\\f057'}\n.icon-minimize:before{content:'\\f30e'}\n.icon-minus:before{content:'\\2212'}\n.icon-minus-sign:before{content:'\\f477'}\n.icon-missedcall:before{content:'\\f15c'}\n.icon-mobile:before{content:'\\f0e8'}\n.icon-moleskine:before{content:'\\f1f0'}\n.icon-money-cash:before{content:'\\f27b'}\n.icon-moneybag:before{content:'\\f271'}\n.icon-monitor:before{content:'\\f0d5'}\n.icon-monstersinc:before{content:'\\f3bd'}\n.icon-moon-night:before{content:'\\f207'}\n.icon-mouse:before{content:'\\f0d4'}\n.icon-mousealt:before{content:'\\f126'}\n.icon-move:before{content:'\\f322'}\n.icon-movieclapper:before{content:'\\f193'}\n.icon-moviereel:before{content:'\\f17f'}\n.icon-muffin:before{content:'\\f363'}\n.icon-mug:before{content:'\\f24e'}\n.icon-mushroom:before{content:'\\f35e'}\n.icon-music:before{content:'\\f181'}\n.icon-musicalt:before{content:'\\f18d'}\n.icon-mutealt:before{content:'\\f0e5'}\n.icon-mxentry:before{content:'\\f07a'}\n.icon-mybb:before{content:'\\f065'}\n.icon-myspace:before{content:'\\f153'}\n.icon-mysql-dolphin:before{content:'\\f076'}\n.icon-nail:before{content:'\\f428'}\n.icon-navigation:before{content:'\\f23a'}\n.icon-network:before{content:'\\f0a6'}\n.icon-networksignal:before{content:'\\f3a9'}\n.icon-news:before{content:'\\f256'}\n.icon-newtab:before{content:'\\f16f'}\n.icon-newwindow:before{content:'\\f16d'}\n.icon-next:before{content:'\\f18a'}\n.icon-nexus:before{content:'\\f0e7'}\n.icon-nintendods:before{content:'\\f404'}\n.icon-nodejs:before{content:'\\f084'}\n.icon-notes:before{content:'\\f0d7'}\n.icon-notificationbottom:before{content:'\\f144'}\n.icon-notificationtop:before{content:'\\f145'}\n.icon-nut:before{content:'\\f427'}\n.icon-off:before{content:'\\f11d'}\n.icon-office-building:before{content:'\\f245'}\n.icon-officechair:before{content:'\\f26d'}\n.icon-ok:before{content:'\\2713'}\n.icon-ok-circle:before{content:'\\f471'}\n.icon-ok-sign:before{content:'\\f479'}\n.icon-oneup:before{content:'\\f3b7'}\n.icon-oneupalt:before{content:'\\f3b6'}\n.icon-opencart:before{content:'\\f060'}\n.icon-opennewwindow:before{content:'\\f332'}\n.icon-orange:before{content:'\\f29e'}\n.icon-outbox:before{content:'\\f179'}\n.icon-outgoingcall:before{content:'\\f15e'}\n.icon-oxwall:before{content:'\\f06d'}\n.icon-pacman:before{content:'\\f2db'}\n.icon-pageback:before{content:'\\f31e'}\n.icon-pagebreak:before{content:'\\f1cc'}\n.icon-pageforward:before{content:'\\f31f'}\n.icon-pagesetup:before{content:'\\f331'}\n.icon-paintbrush:before{content:'\\f1e8'}\n.icon-paintroll:before{content:'\\f1fa'}\n.icon-palette-painting:before{content:'\\f1b9'}\n.icon-paperclip:before{content:'\\f284'}\n.icon-paperclipalt:before{content:'\\f285'}\n.icon-paperclipvertical:before{content:'\\f286'}\n.icon-paperplane:before{content:'\\f296'}\n.icon-parentheses:before{content:'\\f3c4'}\n.icon-parkeddomain:before{content:'\\f055'}\n.icon-password:before{content:'\\f03e'}\n.icon-passwordalt:before{content:'\\f03f'}\n.icon-pasta:before{content:'\\f408'}\n.icon-patch:before{content:'\\f2a3'}\n.icon-path:before{content:'\\f169'}\n.icon-pause:before{content:'\\f186'}\n.icon-paw-pet:before{content:'\\f29d'}\n.icon-pawn:before{content:'\\f2f8'}\n.icon-paypal:before{content:'\\f267'}\n.icon-peace:before{content:'\\f2a7'}\n.icon-pen:before{content:'\\f1ee'}\n.icon-pencil:before{content:'\\f1b7'}\n.icon-pepperoni:before{content:'\\f364'}\n.icon-percent:before{content:'\\25'}\n.icon-perl-camel:before{content:'\\f0b6'}\n.icon-perlalt:before{content:'\\f0b7'}\n.icon-phone-call:before{content:'\\f14f'}\n.icon-phonealt:before{content:'\\f15b'}\n.icon-phonebook:before{content:'\\f149'}\n.icon-phonebookalt:before{content:'\\f135'}\n.icon-phonemic:before{content:'\\f391'}\n.icon-phoneold:before{content:'\\f148'}\n.icon-photoshop:before{content:'\\f1cd'}\n.icon-php:before{content:'\\f09c'}\n.icon-phpbb:before{content:'\\f063'}\n.icon-phppear:before{content:'\\f09b'}\n.icon-piano:before{content:'\\f19e'}\n.icon-picture:before{content:'\\22b7'}\n.icon-pictureframe:before{content:'\\f41e'}\n.icon-piggybank:before{content:'\\f257'}\n.icon-pigpena:before{content:'\\f456'}\n.icon-pigpenb:before{content:'\\f457'}\n.icon-pigpenc:before{content:'\\f458'}\n.icon-pigpend:before{content:'\\f459'}\n.icon-pigpene:before{content:'\\f45a'}\n.icon-pigpenf:before{content:'\\f45b'}\n.icon-pigpeng:before{content:'\\f45c'}\n.icon-pigpenh:before{content:'\\f45d'}\n.icon-pigpeni:before{content:'\\f45e'}\n.icon-pigpenj:before{content:'\\f45f'}\n.icon-pigpenk:before{content:'\\f460'}\n.icon-pigpenl:before{content:'\\f461'}\n.icon-pigpenm:before{content:'\\f462'}\n.icon-pigpenn:before{content:'\\f463'}\n.icon-pigpeno:before{content:'\\f464'}\n.icon-pigpenp:before{content:'\\f465'}\n.icon-pigpenq:before{content:'\\f466'}\n.icon-pigpenr:before{content:'\\f467'}\n.icon-pigpens:before{content:'\\f468'}\n.icon-pigpent:before{content:'\\f469'}\n.icon-pigpenu:before{content:'\\f46a'}\n.icon-pigpenv:before{content:'\\f46b'}\n.icon-pigpenw:before{content:'\\f46c'}\n.icon-pigpenx:before{content:'\\f46d'}\n.icon-pigpeny:before{content:'\\f46e'}\n.icon-pigpenz:before{content:'\\f46f'}\n.icon-pilcrow:before{content:'\\00b6'}\n.icon-pill-antivirusalt:before{content:'\\f0aa'}\n.icon-pin:before{content:'\\f20a'}\n.icon-pipe:before{content:'\\01c0'}\n.icon-piwigo:before{content:'\\f0ad'}\n.icon-pizza:before{content:'\\f35c'}\n.icon-placeadd:before{content:'\\f221'}\n.icon-placealt:before{content:'\\f224'}\n.icon-placealtadd:before{content:'\\f225'}\n.icon-placealtdelete:before{content:'\\f226'}\n.icon-placedelete:before{content:'\\f222'}\n.icon-placeios:before{content:'\\f20c'}\n.icon-plane:before{content:'\\f23e'}\n.icon-plaque:before{content:'\\f2b8'}\n.icon-play:before{content:'\\f184'}\n.icon-play-circle:before{content:'\\f17e'}\n.icon-playstore:before{content:'\\f255'}\n.icon-playvideo:before{content:'\\f03d'}\n.icon-plug:before{content:'\\f0ea'}\n.icon-pluginalt:before{content:'\\f098'}\n.icon-plus:before{content:'\\002b'}\n.icon-plus-sign:before{content:'\\f476'}\n.icon-pocket:before{content:'\\f16b'}\n.icon-podcast:before{content:'\\f1a2'}\n.icon-podium-winner:before{content:'\\f2d6'}\n.icon-pokemon:before{content:'\\f354'}\n.icon-police:before{content:'\\f2aa'}\n.icon-polygonlasso:before{content:'\\f397'}\n.icon-post:before{content:'\\f12e'}\n.icon-postalt:before{content:'\\f130'}\n.icon-pound:before{content:'\\f25b'}\n.icon-poundalt:before{content:'\\f25c'}\n.icon-powerjack:before{content:'\\f0fd'}\n.icon-powerplug:before{content:'\\f0ed'}\n.icon-powerplugeu:before{content:'\\f28b'}\n.icon-powerplugus:before{content:'\\f28c'}\n.icon-presentation:before{content:'\\f0c4'}\n.icon-prestashop:before{content:'\\f061'}\n.icon-pretzel:before{content:'\\f3cf'}\n.icon-preview:before{content:'\\f330'}\n.icon-previous:before{content:'\\f18b'}\n.icon-print:before{content:'\\f125'}\n.icon-protecteddirectory:before{content:'\\f04d'}\n.icon-pscircle:before{content:'\\f2bb'}\n.icon-pscursor:before{content:'\\f2c3'}\n.icon-psdown:before{content:'\\f2c6'}\n.icon-psleft:before{content:'\\f2c7'}\n.icon-pslone:before{content:'\\f2cc'}\n.icon-psltwo:before{content:'\\f2cd'}\n.icon-psright:before{content:'\\f2c5'}\n.icon-psrone:before{content:'\\f2ce'}\n.icon-psrtwo:before{content:'\\f2cf'}\n.icon-pssquare:before{content:'\\f2bc'}\n.icon-pstriangle:before{content:'\\f2bd'}\n.icon-psup:before{content:'\\f2c4'}\n.icon-psx:before{content:'\\f2be'}\n.icon-pull:before{content:'\\f089'}\n.icon-punisher:before{content:'\\f343'}\n.icon-push:before{content:'\\f088'}\n.icon-puzzle-plugin:before{content:'\\f0a0'}\n.icon-python:before{content:'\\f071'}\n.icon-qrcode:before{content:'\\f275'}\n.icon-quake:before{content:'\\f355'}\n.icon-queen:before{content:'\\f2fd'}\n.icon-query:before{content:'\\f08a'}\n.icon-question-sign:before{content:'\\f0a3'}\n.icon-quote:before{content:'\\f12f'}\n.icon-quotedown:before{content:'\\f329'}\n.icon-quoteup:before{content:'\\f328'}\n.icon-raceflag:before{content:'\\f38e'}\n.icon-racquet:before{content:'\\f2f2'}\n.icon-radio:before{content:'\\f1a1'}\n.icon-radioactive:before{content:'\\f282'}\n.icon-radiobutton:before{content:'\\f312'}\n.icon-railroad:before{content:'\\f248'}\n.icon-rain:before{content:'\\f22f'}\n.icon-ram:before{content:'\\f02c'}\n.icon-random:before{content:'\\f188'}\n.icon-rar:before{content:'\\f117'}\n.icon-raspberry:before{content:'\\f368'}\n.icon-raspberrypi:before{content:'\\f369'}\n.icon-rawaccesslogs:before{content:'\\f0c1'}\n.icon-razor:before{content:'\\f416'}\n.icon-reademail:before{content:'\\f173'}\n.icon-record:before{content:'\\f189'}\n.icon-rectangle:before{content:'\\25ad'}\n.icon-recycle:before{content:'\\f297'}\n.icon-reddit:before{content:'\\f154'}\n.icon-redirect:before{content:'\\f054'}\n.icon-refresh:before{content:'\\f078'}\n.icon-reliability:before{content:'\\f016'}\n.icon-remote:before{content:'\\f298'}\n.icon-remove:before{content:'\\00d7'}\n.icon-remove-circle:before{content:'\\f470'}\n.icon-remove-sign:before{content:'\\f478'}\n.icon-removefriend:before{content:'\\f3db'}\n.icon-repeat:before{content:'\\f32b'}\n.icon-repeatone:before{content:'\\f196'}\n.icon-resellerhosting:before{content:'\\f03a'}\n.icon-residentevil:before{content:'\\f350'}\n.icon-resistor:before{content:'\\f3eb'}\n.icon-resize:before{content:'\\f1ed'}\n.icon-resize-full:before{content:'\\f325'}\n.icon-resize-horizontal:before{content:'\\f318'}\n.icon-resize-small:before{content:'\\f326'}\n.icon-resize-vertical:before{content:'\\f319'}\n.icon-restart:before{content:'\\f11f'}\n.icon-restaurantmenu:before{content:'\\f362'}\n.icon-restore:before{content:'\\f30d'}\n.icon-restricted:before{content:'\\f0ab'}\n.icon-retweet:before{content:'\\f486'}\n.icon-rim:before{content:'\\f36f'}\n.icon-ring:before{content:'\\02da'}\n.icon-road:before{content:'\\f249'}\n.icon-roadsign-roadsignright:before{content:'\\f21b'}\n.icon-roadsignleft:before{content:'\\f240'}\n.icon-robocop:before{content:'\\f357'}\n.icon-rocket-launch:before{content:'\\f29c'}\n.icon-rook:before{content:'\\f2fa'}\n.icon-root:before{content:'\\f33c'}\n.icon-rorschach:before{content:'\\f358'}\n.icon-rotateclockwise:before{content:'\\f202'}\n.icon-rotatecounterclockwise:before{content:'\\f203'}\n.icon-roundrectangle:before{content:'\\f1bd'}\n.icon-route:before{content:'\\f402'}\n.icon-router:before{content:'\\f0e9'}\n.icon-rss:before{content:'\\f17b'}\n.icon-rubberstamp:before{content:'\\f274'}\n.icon-ruby:before{content:'\\f067'}\n.icon-ruler:before{content:'\\f1ef'}\n.icon-sad:before{content:'\\f13d'}\n.icon-safetypin:before{content:'\\f417'}\n.icon-satellite:before{content:'\\f38a'}\n.icon-satellitedish-remotemysql:before{content:'\\f0c0'}\n.icon-save-floppy:before{content:'\\f0c8'}\n.icon-scales:before{content:'\\f3fd'}\n.icon-science-atom:before{content:'\\f2b0'}\n.icon-scope-scan:before{content:'\\f212'}\n.icon-scopealt:before{content:'\\f237'}\n.icon-screenshot:before{content:'\\f109'}\n.icon-screw:before{content:'\\f426'}\n.icon-screwdriver:before{content:'\\f292'}\n.icon-screwdriveralt:before{content:'\\f293'}\n.icon-script:before{content:'\\f08d'}\n.icon-sd:before{content:'\\f106'}\n.icon-search:before{content:'\\f0c5'}\n.icon-searchdocument:before{content:'\\f419'}\n.icon-searchfolder:before{content:'\\f41a'}\n.icon-security-shield:before{content:'\\f02d'}\n.icon-securityalt-shieldalt:before{content:'\\f02e'}\n.icon-selection-rectangleselection:before{content:'\\f1b0'}\n.icon-selectionadd:before{content:'\\f1b2'}\n.icon-selectionintersect:before{content:'\\f1b4'}\n.icon-selectionremove:before{content:'\\f1b3'}\n.icon-seo:before{content:'\\f030'}\n.icon-server:before{content:'\\f026'}\n.icon-servers:before{content:'\\f027'}\n.icon-settingsandroid:before{content:'\\f309'}\n.icon-settingsfour-gearsalt:before{content:'\\f306'}\n.icon-settingsthree-gears:before{content:'\\f307'}\n.icon-settingstwo-gearalt:before, .updateLink:before{content:'\\f308'}\n.icon-shades-sunglasses:before{content:'\\f294'}\n.icon-shapes:before{content:'\\f1dd'}\n.icon-share:before{content:'\\f47d'}\n.icon-share-alt:before{content:'\\f16c'}\n.icon-sharealt:before{content:'\\f147'}\n.icon-sharedfile:before{content:'\\f0ef'}\n.icon-sharedhosting:before{content:'\\f037'}\n.icon-sharethree:before{content:'\\f414'}\n.icon-sheriff:before{content:'\\f2a9'}\n.icon-shipping:before{content:'\\f23f'}\n.icon-shopping:before{content:'\\f010'}\n.icon-shopping-cart:before{content:'\\f035'}\n.icon-shoppingbag:before{content:'\\f273'}\n.icon-shortcut:before{content:'\\f043'}\n.icon-shovel:before{content:'\\f290'}\n.icon-shredder:before{content:'\\f27c'}\n.icon-shutdown:before{content:'\\f11e'}\n.icon-sidebar:before{content:'\\f124'}\n.icon-signal:before{content:'\\f100'}\n.icon-sim:before{content:'\\f0e1'}\n.icon-simalt:before{content:'\\f121'}\n.icon-skrill:before{content:'\\f268'}\n.icon-skull:before{content:'\\f38d'}\n.icon-skype:before{content:'\\f141'}\n.icon-skypeaway:before{content:'\\f39f'}\n.icon-skypebusy:before{content:'\\f3a0'}\n.icon-skypeoffline:before{content:'\\f3a1'}\n.icon-skypeonline:before{content:'\\f39e'}\n.icon-smaller:before{content:'\\f30b'}\n.icon-smf:before{content:'\\f062'}\n.icon-smile:before{content:'\\263a'}\n.icon-snow:before{content:'\\f22e'}\n.icon-snowman:before{content:'\\f37c'}\n.icon-socialnetwork:before{content:'\\f03b'}\n.icon-software:before{content:'\\f09a'}\n.icon-sortbynameascending-atoz:before{content:'\\f1c2'}\n.icon-sortbynamedescending-ztoa:before{content:'\\f1c1'}\n.icon-sortbysizeascending:before{content:'\\f1c3'}\n.icon-sortbysizedescending:before{content:'\\f1c4'}\n.icon-soundwave:before{content:'\\f194'}\n.icon-soup:before{content:'\\f3d1'}\n.icon-spaceinvaders:before{content:'\\f352'}\n.icon-spades:before{content:'\\f2f5'}\n.icon-spam:before{content:'\\f047'}\n.icon-spamalt:before{content:'\\f048'}\n.icon-spawn:before{content:'\\f344'}\n.icon-speaker:before{content:'\\f372'}\n.icon-speed:before{content:'\\f40b'}\n.icon-spider:before{content:'\\f346'}\n.icon-spiderman:before{content:'\\f347'}\n.icon-split:before{content:'\\f335'}\n.icon-spoon:before{content:'\\f213'}\n.icon-spray:before{content:'\\f1c7'}\n.icon-spreadsheet:before{content:'\\f0c3'}\n.icon-squareapp:before{content:'\\f26f'}\n.icon-squarebrackets:before{content:'\\f0b3'}\n.icon-ssh:before{content:'\\f04e'}\n.icon-sslmanager:before{content:'\\f04f'}\n.icon-stadium:before{content:'\\f3d6'}\n.icon-stamp:before{content:'\\f242'}\n.icon-stampalt:before{content:'\\f243'}\n.icon-star:before{content:'\\f13a'}\n.icon-star-empty:before{content:'\\f13b'}\n.icon-starempty:before{content:'\\f2de'}\n.icon-starfull:before{content:'\\f2e0'}\n.icon-starhalf:before{content:'\\f2df'}\n.icon-steak:before{content:'\\f360'}\n.icon-steam:before{content:'\\f2dd'}\n.icon-step-backward:before{content:'\\f198'}\n.icon-step-forward:before{content:'\\f197'}\n.icon-sticker:before{content:'\\f3f5'}\n.icon-stiletto:before{content:'\\f429'}\n.icon-stockdown:before{content:'\\f252'}\n.icon-stocks:before{content:'\\f250'}\n.icon-stockup:before{content:'\\f251'}\n.icon-stomach:before{content:'\\f3e1'}\n.icon-stop:before{content:'\\f185'}\n.icon-stopwatch:before{content:'\\f219'}\n.icon-storage-box:before{content:'\\f011'}\n.icon-storagealt-drawer:before{content:'\\f012'}\n.icon-store:before{content:'\\f272'}\n.icon-storm:before{content:'\\f230'}\n.icon-stove:before{content:'\\f371'}\n.icon-strawberry:before{content:'\\f3f3'}\n.icon-strikethrough:before{content:'\\f1f7'}\n.icon-student-school:before{content:'\\f288'}\n.icon-stumbleupon:before{content:'\\f40c'}\n.icon-subdomain:before{content:'\\f052'}\n.icon-submarine:before{content:'\\f373'}\n.icon-subscript:before{content:'\\f1ea'}\n.icon-subtractshape:before{content:'\\f1fe'}\n.icon-sum:before{content:'\\f33b'}\n.icon-sun-day:before{content:'\\f206'}\n.icon-sunnysideup:before{content:'\\f365'}\n.icon-superman:before{content:'\\f33f'}\n.icon-superscript:before{content:'\\f1eb'}\n.icon-support:before{content:'\\f013'}\n.icon-supportalt:before{content:'\\f014'}\n.icon-switch:before{content:'\\f28a'}\n.icon-switchoff:before{content:'\\f32d'}\n.icon-switchoffalt:before{content:'\\f28e'}\n.icon-switchon:before{content:'\\f32c'}\n.icon-switchonalt:before{content:'\\f28d'}\n.icon-sword:before{content:'\\f2ed'}\n.icon-sync:before{content:'\\f0bd'}\n.icon-syncalt:before{content:'\\f11c'}\n.icon-synckeeplocal:before{content:'\\f33e'}\n.icon-synckeepserver:before{content:'\\f33d'}\n.icon-syringe-antivirus:before{content:'\\f0a9'}\n.icon-tablet:before{content:'\\f118'}\n.icon-tabletennis-pingpong:before{content:'\\f2f0'}\n.icon-taco:before{content:'\\f3cd'}\n.icon-tag:before{content:'\\f032'}\n.icon-tagalt-pricealt:before{content:'\\f264'}\n.icon-tags:before{content:'\\f482'}\n.icon-tagvertical:before{content:'\\f15f'}\n.icon-tank:before{content:'\\f423'}\n.icon-target:before{content:'\\f2a6'}\n.icon-taskmanager-logprograms:before{content:'\\f04b'}\n.icon-tasks:before{content:'\\f0e0'}\n.icon-taxi:before{content:'\\f3a4'}\n.icon-tea:before{content:'\\f3cb'}\n.icon-teapot:before{content:'\\f42c'}\n.icon-telescope:before{content:'\\f3ef'}\n.icon-temperature-thermometer:before{content:'\\f20d'}\n.icon-temperaturealt-thermometeralt:before{content:'\\f20e'}\n.icon-tennis:before{content:'\\f2ea'}\n.icon-tent-camping:before{content:'\\f215'}\n.icon-terminal:before{content:'\\f114'}\n.icon-tethering:before{content:'\\f0f1'}\n.icon-tetrisone:before{content:'\\f34b'}\n.icon-tetristhree:before{content:'\\f34d'}\n.icon-tetristwo:before{content:'\\f34c'}\n.icon-text-height:before{content:'\\f1f8'}\n.icon-text-width:before{content:'\\f1f9'}\n.icon-th:before{content:'\\f110'}\n.icon-th-large:before{content:'\\f112'}\n.icon-th-list:before{content:'\\f113'}\n.icon-theather:before{content:'\\f39c'}\n.icon-theme-style:before{content:'\\f041'}\n.icon-thissideup:before{content:'\\f41d'}\n.icon-threecolumns:before{content:'\\f1ab'}\n.icon-thumbs-down:before{content:'\\f139'}\n.icon-thumbs-up:before{content:'\\f138'}\n.icon-ticket:before{content:'\\f3dc'}\n.icon-tictactoe:before{content:'\\f39a'}\n.icon-tie-business:before{content:'\\2040'}\n.icon-time:before{content:'\\f210'}\n.icon-timeline:before{content:'\\f253'}\n.icon-tint:before{content:'\\f208'}\n.icon-toast:before{content:'\\f2ad'}\n.icon-toiletpaper:before{content:'\\f384'}\n.icon-tooth:before{content:'\\f3de'}\n.icon-toothbrush:before{content:'\\f385'}\n.icon-tophat:before{content:'\\f3f0'}\n.icon-torigate:before{content:'\\f411'}\n.icon-touchpad:before{content:'\\f115'}\n.icon-trafficlight:before{content:'\\f22a'}\n.icon-transform:before{content:'\\f1a6'}\n.icon-trash:before{content:'\\f0ce'}\n.icon-trashempty:before{content:'\\f0cf'}\n.icon-trashfull:before{content:'\\f0d0'}\n.icon-travel:before{content:'\\f422'}\n.icon-treediagram:before{content:'\\f0ec'}\n.icon-treeornament:before{content:'\\f37e'}\n.icon-triangle:before{content:'\\25b3'}\n.icon-tron:before{content:'\\f34f'}\n.icon-trophy:before{content:'\\f2d7'}\n.icon-truck:before{content:'\\f211'}\n.icon-trumpet:before{content:'\\f375'}\n.icon-tumblr:before{content:'\\f164'}\n.icon-tv:before{content:'\\f1a4'}\n.icon-twitter:before{content:'\\f16a'}\n.icon-twocolumnsleft:before{content:'\\f1a9'}\n.icon-twocolumnsleftalt:before{content:'\\f1aa'}\n.icon-twocolumnsright:before{content:'\\f1a7'}\n.icon-twocolumnsrightalt:before{content:'\\f1a8'}\n.icon-ubuntu:before{content:'\\f120'}\n.icon-umbrella:before{content:'\\f218'}\n.icon-underline:before{content:'\\f1f6'}\n.icon-undo:before{content:'\\f32a'}\n.icon-unlock:before{content:'\\f0bf'}\n.icon-upleft:before{content:'\\f302'}\n.icon-upload:before{content:'\\f47a'}\n.icon-uploadalt:before{content:'\\f11b'}\n.icon-upright:before{content:'\\f303'}\n.icon-uptime:before{content:'\\f017'}\n.icon-usb:before{content:'\\f10d'}\n.icon-usbalt:before{content:'\\f10e'}\n.icon-usbplug:before{content:'\\f10f'}\n.icon-user:before{content:'\\f133'}\n.icon-userfilter:before{content:'\\f05d'}\n.icon-usfootball:before{content:'\\f2ec'}\n.icon-value-coins:before{content:'\\f018'}\n.icon-vector:before{content:'\\f1b6'}\n.icon-vendetta:before{content:'\\f3c5'}\n.icon-video:before{content:'\\f17d'}\n.icon-viking:before{content:'\\f379'}\n.icon-vimeo:before{content:'\\f168'}\n.icon-vinyl:before{content:'\\f0cc'}\n.icon-violin:before{content:'\\f1a5'}\n.icon-virus:before{content:'\\f0a8'}\n.icon-visa:before{content:'\\f3c2'}\n.icon-visitor:before{content:'\\f097'}\n.icon-vlc-cone:before{content:'\\f192'}\n.icon-voice:before{content:'\\f18c'}\n.icon-volume-down:before{content:'\\f0e3'}\n.icon-volume-off:before{content:'\\f0e4'}\n.icon-volume-up:before{content:'\\f0e2'}\n.icon-vps:before{content:'\\f025'}\n.icon-wacom:before{content:'\\f1bb'}\n.icon-walle:before{content:'\\f3bc'}\n.icon-wallet:before{content:'\\e000'}\n.icon-warcraft:before{content:'\\f3bf'}\n.icon-warmedal:before{content:'\\f2e4'}\n.icon-warning-sign:before{content:'\\f316'}\n.icon-washer:before{content:'\\f39b'}\n.icon-watch:before{content:'\\f378'}\n.icon-watertap-plumbing:before{content:'\\f22d'}\n.icon-wave-sea:before{content:'\\f23c'}\n.icon-wavealt-seaalt:before{content:'\\f23b'}\n.icon-webcam:before{content:'\\f0fe'}\n.icon-webcamalt:before{content:'\\f129'}\n.icon-webhostinghub:before{content:'\\f031'}\n.icon-webmail:before{content:'\\f045'}\n.icon-webpage:before{content:'\\f033'}\n.icon-webplatform:before{content:'\\f3c3'}\n.icon-websitealt:before{content:'\\f01c'}\n.icon-websitebuilder:before{content:'\\f034'}\n.icon-weight:before{content:'\\f430'}\n.icon-westernunion:before{content:'\\f26a'}\n.icon-wheel:before{content:'\\f228'}\n.icon-wheelchair:before{content:'\\f3fe'}\n.icon-whistle:before{content:'\\f3d8'}\n.icon-whmcs:before{content:'\\f066'}\n.icon-wifi:before{content:'\\f0ff'}\n.icon-wind:before{content:'\\f41b'}\n.icon-windleft:before{content:'\\f424'}\n.icon-windows:before{content:'\\f019'}\n.icon-windright:before{content:'\\f425'}\n.icon-wine:before{content:'\\f238'}\n.icon-wizard:before{content:'\\f03c'}\n.icon-wizardalt:before{content:'\\f1fb'}\n.icon-wizardhat:before{content:'\\f337'}\n.icon-woman-female:before{content:'\\f2a2'}\n.icon-women:before{content:'\\f24d'}\n.icon-wordpress:before{content:'\\f074'}\n.icon-wrench:before{content:'\\f05b'}\n.icon-wrenchalt:before{content:'\\f2b2'}\n.icon-xbox:before{content:'\\f353'}\n.icon-xmen:before{content:'\\f345'}\n.icon-yahoo:before{content:'\\f151'}\n.icon-yen:before{content:'\\00a5'}\n.icon-yenalt:before{content:'\\f25d'}\n.icon-yinyang:before{content:'\\262f'}\n.icon-youtube:before{content:'\\f142'}\n.icon-zelda:before{content:'\\f3b8'}\n.icon-zikula:before{content:'\\f0ac'}\n.icon-zip:before{content:'\\f116'}\n.icon-zodiac-aquarius:before{content:'\\f3b4'}\n.icon-zodiac-aries:before{content:'\\f3aa'}\n.icon-zodiac-cancer:before{content:'\\f3ad'}\n.icon-zodiac-capricorn:before{content:'\\f3b3'}\n.icon-zodiac-gemini:before{content:'\\f3ac'}\n.icon-zodiac-leo:before{content:'\\f3ae'}\n.icon-zodiac-libra:before{content:'\\f3b0'}\n.icon-zodiac-pisces:before{content:'\\f3b5'}\n.icon-zodiac-sagitarius:before{content:'\\f3b2'}\n.icon-zodiac-scorpio:before{content:'\\f3b1'}\n.icon-zodiac-taurus:before{content:'\\f3ab'}\n.icon-zodiac-virgo:before{content:'\\f3af'}\n.icon-zoom-in:before{content:'\\f320'}\n.icon-zoom-out:before{content:'\\f321'}\n.icon-vk:before{content:'\\f34e'}\n.icon-bitcoin:before{content:'\\f584'}\n.icon-rouble:before{content:'\\f4ca'}\n.icon-phpnuke:before{content:'\\f48c'}\n.icon-modx:before{content:'\\f48d'}\n.icon-eoneohseven:before{content:'\\f48e'}\n.icon-subrion:before{content:'\\f48f'}\n.icon-typothree:before{content:'\\f490'}\n.icon-tikiwiki:before{content:'\\f491'}\n.icon-pligg:before{content:'\\f492'}\n.icon-pyrocms:before{content:'\\f493'}\n.icon-mambo:before{content:'\\f494'}\n.icon-contao:before{content:'\\f495'}\n.icon-crackedegg:before{content:'\\f496'}\n.icon-coffeecupalt:before{content:'\\f497'}\n.icon-reademailalt:before{content:'\\f498'}\n.icon-train:before{content:'\\f499'}\n.icon-shoebox:before{content:'\\f49a'}\n.icon-bathtub:before{content:'\\f49b'}\n.icon-ninegag:before{content:'\\f49c'}\n.icon-pebble:before{content:'\\f49d'}\n.icon-musicthree:before{content:'\\f49e'}\n.icon-stairsup:before{content:'\\f49f'}\n.icon-stairsdown:before{content:'\\f4a0'}\n.icon-bookalt:before{content:'\\f4a1'}\n.icon-programclose:before{content:'\\f4a2'}\n.icon-programok:before{content:'\\f4a3'}\n.icon-splitalt:before{content:'\\f4a4'}\n.icon-solarsystem:before{content:'\\f4a5'}\n.icon-honeycomb:before{content:'\\f4a6'}\n.icon-tools:before{content:'\\f4a7'}\n.icon-xoops:before{content:'\\f4a8'}\n.icon-pixie:before{content:'\\f4a9'}\n.icon-dotclear:before{content:'\\f4aa'}\n.icon-impresscms:before{content:'\\f4ab'}\n.icon-saurus:before{content:'\\f4ac'}\n.icon-impresspages:before{content:'\\f4ad'}\n.icon-monstra:before{content:'\\f4ae'}\n.icon-snews:before{content:'\\f4af'}\n.icon-jcore:before{content:'\\f4b0'}\n.icon-silverstripe:before{content:'\\f4b1'}\n.icon-btwoevolution:before{content:'\\f4b2'}\n.icon-nucleus:before{content:'\\f4b3'}\n.icon-symphony:before{content:'\\f4b5'}\n.icon-vanillacms:before{content:'\\f4b6'}\n.icon-bbpress:before{content:'\\f4b7'}\n.icon-phpbbalt:before{content:'\\f4b8'}\n.icon-chyrp:before{content:'\\f4b9'}\n.icon-pivotx:before{content:'\\f4ba'}\n.icon-pagecookery:before{content:'\\f4bb'}\n.icon-moviereelalt:before{content:'\\f4bc'}\n.icon-cassettealt:before{content:'\\f4bd'}\n.icon-photobucket:before{content:'\\f4be'}\n.icon-technorati:before{content:'\\f4bf'}\n.icon-theverge:before{content:'\\f4c0'}\n.icon-stacks:before{content:'\\f4c1'}\n.icon-dotlist:before{content:'\\f4c2'}\n.icon-numberlist:before{content:'\\f4c3'}\n.icon-indentleft:before{content:'\\f4c4'}\n.icon-indentright:before{content:'\\f4c5'}\n.icon-fblike:before{content:'\\f4c6'}\n.icon-fbdislike:before{content:'\\f4c7'}\n.icon-sale:before{content:'\\f4c8'}\n.icon-sharetronix:before{content:'\\f4c9'}\n.icon-markerdown:before{content:'\\f4cb'}\n.icon-markerup:before{content:'\\f4cc'}\n.icon-markerleft:before{content:'\\f4cd'}\n.icon-markerright:before{content:'\\f4ce'}\n.icon-bookmarkalt:before{content:'\\f4cf'}\n.icon-calendarthree:before{content:'\\f4d0'}\n.icon-wineglass:before{content:'\\f4d1'}\n.icon-slidersoff:before{content:'\\f4d2'}\n.icon-slidersmiddle:before{content:'\\f4d3'}\n.icon-slidersfull:before{content:'\\f4d4'}\n.icon-slidersdesc:before{content:'\\f4d5'}\n.icon-slidersasc:before{content:'\\f4d6'}\n.icon-slideronefull:before{content:'\\f4d7'}\n.icon-slidertwofull:before{content:'\\f4d8'}\n.icon-sliderthreefull:before{content:'\\f4d9'}\n.icon-noborders:before{content:'\\f4da'}\n.icon-bottomborder:before{content:'\\f4db'}\n.icon-topborder:before{content:'\\f4dc'}\n.icon-leftborder:before{content:'\\f4dd'}\n.icon-rightborder:before{content:'\\f4de'}\n.icon-horizontalborder:before{content:'\\f4df'}\n.icon-verticalborder:before{content:'\\f4e0'}\n.icon-outerborders:before{content:'\\f4e1'}\n.icon-innerborders:before{content:'\\f4e2'}\n.icon-fullborders:before{content:'\\f4e3'}\n.icon-networksignalalt:before{content:'\\f4e4'}\n.icon-resizeverticalalt:before{content:'\\f4e5'}\n.icon-resizehorizontalalt:before{content:'\\f4e6'}\n.icon-moneyalt:before{content:'\\f4e7'}\n.icon-fontcase:before{content:'\\f4e8'}\n.icon-playstation:before{content:'\\f4e9'}\n.icon-cube:before{content:'\\f4ea'}\n.icon-sphere:before{content:'\\f4eb'}\n.icon-ceilinglight:before{content:'\\f4ec'}\n.icon-chandelier:before{content:'\\f4ed'}\n.icon-details:before{content:'\\f4ee'}\n.icon-detailsalt:before{content:'\\f4ef'}\n.icon-bullet:before{content:'\\f4f0'}\n.icon-gun:before{content:'\\f4f1'}\n.icon-processorthree:before{content:'\\f4f2'}\n.icon-world:before{content:'\\f4f3'}\n.icon-statistics:before{content:'\\f4f4'}\n.icon-shoppingcartalt:before{content:'\\f4f5'}\n.icon-microphonealt:before{content:'\\f4f6'}\n.icon-routeralt:before{content:'\\f4f7'}\n.icon-shell:before{content:'\\f4f8'}\n.icon-squareplay:before{content:'\\f4f9'}\n.icon-squarestop:before{content:'\\f4fa'}\n.icon-squarepause:before{content:'\\f4fb'}\n.icon-squarerecord:before{content:'\\f4fc'}\n.icon-squareforward:before{content:'\\f4fd'}\n.icon-squareback:before{content:'\\f4fe'}\n.icon-squarenext:before{content:'\\f4ff'}\n.icon-squareprevious:before{content:'\\f500'}\n.icon-mega:before{content:'\\f501'}\n.icon-charliechaplin:before{content:'\\f502'}\n.icon-popcorn:before{content:'\\f503'}\n.icon-fatarrowright:before{content:'\\f504'}\n.icon-fatarrowleft:before{content:'\\f505'}\n.icon-fatarrowdown:before{content:'\\f506'}\n.icon-fatarrowup:before{content:'\\f507'}\n.icon-shirtbutton:before{content:'\\f508'}\n.icon-shirtbuttonalt:before{content:'\\f509'}\n.icon-cuckooclock:before{content:'\\f50a'}\n.icon-lens:before{content:'\\f50b'}\n.icon-voltage:before{content:'\\f50c'}\n.icon-planealt:before{content:'\\f50d'}\n.icon-busalt:before{content:'\\f50e'}\n.icon-lipstick:before{content:'\\f50f'}\n.icon-plantalt:before{content:'\\f510'}\n.icon-paperboat:before{content:'\\f511'}\n.icon-texture:before{content:'\\f512'}\n.icon-dominoone:before{content:'\\f513'}\n.icon-dominotwo:before{content:'\\f514'}\n.icon-dominothree:before{content:'\\f515'}\n.icon-dominofour:before{content:'\\f516'}\n.icon-dominofive:before{content:'\\f517'}\n.icon-dominosix:before{content:'\\f518'}\n.icon-dominoseven:before{content:'\\f519'}\n.icon-dominoeight:before{content:'\\f51a'}\n.icon-dominonine:before{content:'\\f51b'}\n.icon-connected:before{content:'\\f51c'}\n.icon-connectedpc:before{content:'\\f51d'}\n.icon-musicsheet:before{content:'\\f51e'}\n.icon-rdio:before{content:'\\f51f'}\n.icon-spotify:before{content:'\\f520'}\n.icon-deviantart:before{content:'\\f521'}\n.icon-yelp:before{content:'\\f522'}\n.icon-behance:before{content:'\\f523'}\n.icon-nfc:before{content:'\\f524'}\n.icon-earbudsalt:before{content:'\\f525'}\n.icon-earbuds:before{content:'\\f526'}\n.icon-amazon:before{content:'\\f527'}\n.icon-openid:before{content:'\\f528'}\n.icon-digg:before{content:'\\f529'}\n.icon-retweet:before{content:'\\f52a'}\n.icon-moonnew:before{content:'\\f52b'}\n.icon-moonwaxingcrescent:before{content:'\\f52c'}\n.icon-moonfirstquarter:before{content:'\\f52d'}\n.icon-moonwaxinggibbous:before{content:'\\f52e'}\n.icon-moonfull:before{content:'\\f52f'}\n.icon-moonwaninggibbous:before{content:'\\f530'}\n.icon-moonthirdquarter:before{content:'\\f531'}\n.icon-moonwaningcrescent:before{content:'\\f532'}\n.icon-planet:before{content:'\\f533'}\n.icon-sodacup:before{content:'\\f534'}\n.icon-cocktail:before{content:'\\f535'}\n.icon-church:before{content:'\\f536'}\n.icon-mosque:before{content:'\\f537'}\n.icon-comedy:before{content:'\\f538'}\n.icon-tragedy:before{content:'\\f539'}\n.icon-bacon:before{content:'\\f53a'}\n.icon-trailor:before{content:'\\f53b'}\n.icon-tshirt:before{content:'\\f53c'}\n.icon-design:before{content:'\\f53d'}\n.icon-spiderweb:before{content:'\\f53e'}\n.icon-fireplace:before{content:'\\f53f'}\n.icon-tallglass:before{content:'\\f540'}\n.icon-grapes:before{content:'\\f541'}\n.icon-biohazard:before{content:'\\f542'}\n.icon-directions:before{content:'\\f543'}\n.icon-equalizerthree:before{content:'\\f544'}\n.icon-mountains:before{content:'\\f545'}\n.icon-bing:before{content:'\\f546'}\n.icon-windowseight:before{content:'\\f547'}\n.icon-microsoftoffice:before{content:'\\f548'}\n.icon-salealt:before{content:'\\f549'}\n.icon-purse:before{content:'\\f54a'}\n.icon-chickenalt:before{content:'\\f54b'}\n.icon-podium:before{content:'\\f54c'}\n.icon-findfriends:before{content:'\\f54d'}\n.icon-microphonethree:before{content:'\\f54e'}\n.icon-workshirt:before{content:'\\f54f'}\n.icon-donotdisturb:before{content:'\\f550'}\n.icon-addtags:before{content:'\\f551'}\n.icon-removetags:before{content:'\\f556'}\n.icon-carbattery:before{content:'\\f553'}\n.icon-debug:before{content:'\\f554'}\n.icon-trojan:before{content:'\\f555'}\n.icon-molecule:before{content:'\\f556'}\n.icon-safetygoggles:before{content:'\\f557'}\n.icon-leather:before{content:'\\f558'}\n.icon-teddybear:before{content:'\\f559'}\n.icon-stroller:before{content:'\\f55a'}\n.icon-circleplay:before{content:'\\f55b'}\n.icon-circlestop:before{content:'\\f55c'}\n.icon-circlepause:before{content:'\\f55d'}\n.icon-circlerecord:before{content:'\\f55e'}\n.icon-circleforward:before{content:'\\f55f'}\n.icon-circlebackward:before{content:'\\f560'}\n.icon-circlenext:before{content:'\\f561'}\n.icon-circleprevious:before{content:'\\f562'}\n.icon-circleplayempty:before{content:'\\f563'}\n.icon-circlestopempty:before{content:'\\f564'}\n.icon-circlepauseempty:before{content:'\\f565'}\n.icon-circlerecordempty:before{content:'\\f566'}\n.icon-circleforwardempty:before{content:'\\f567'}\n.icon-circlebackwardempty:before{content:'\\f568'}\n.icon-circlenextempty:before{content:'\\f569'}\n.icon-circlepreviousempty:before{content:'\\f56a'}\n.icon-belt:before{content:'\\f56b'}\n.icon-bait:before{content:'\\f56c'}\n.icon-manalt:before{content:'\\f56d'}\n.icon-womanalt:before{content:'\\f56e'}\n.icon-clover:before{content:'\\f56f'}\n.icon-pacifier:before{content:'\\f570'}\n.icon-calcplus:before{content:'\\f571'}\n.icon-calcminus:before{content:'\\f572'}\n.icon-calcmultiply:before{content:'\\f573'}\n.icon-calcdivide:before{content:'\\f574'}\n.icon-calcequals:before{content:'\\f575'}\n.icon-city:before{content:'\\f576'}\n.icon-hdvideo:before{content:'\\f577'}\n.icon-horizontalexpand:before{content:'\\f578'}\n.icon-horizontalcontract:before{content:'\\f579'}\n.icon-radar:before{content:'\\f57a'}\n.icon-threed:before{content:'\\f57b'}\n.icon-flickralt:before{content:'\\f57c'}\n.icon-pattern:before{content:'\\f57d'}\n.icon-elevator:before{content:'\\f57e'}\n.icon-escalator:before{content:'\\f57f'}\n.icon-portrait:before{content:'\\f580'}\n.icon-cigar:before{content:'\\f581'}\n.icon-dropbox:before{content:'\\f582'}\n.icon-origami:before{content:'\\f583'}\n.icon-opensource:before{content:'\\f585'}\n.icon-redaxscript:before{content:'\\f586'}\n.icon-mahara:before{content:'\\f587'}\n.icon-forkcms:before{content:'\\f588'}\n.icon-pimcore:before{content:'\\f589'}\n.icon-bigace:before{content:'\\f58a'}\n.icon-aef:before{content:'\\f58b'}\n.icon-punbb:before{content:'\\f58c'}\n.icon-phorum:before{content:'\\f58d'}\n.icon-fluxbb:before{content:'\\f58e'}\n.icon-minibb:before{content:'\\f58f'}\n.icon-zenphoto:before{content:'\\f590'}\n.icon-fourimages:before{content:'\\f591'}\n.icon-plogger:before{content:'\\f592'}\n.icon-jcow:before{content:'\\f593'}\n.icon-elgg:before{content:'\\f594'}\n.icon-etano:before{content:'\\f595'}\n.icon-openclassifieds:before{content:'\\f596'}\n.icon-osclass:before{content:'\\f597'}\n.icon-openx:before{content:'\\f598'}\n.icon-phplist:before{content:'\\f599'}\n.icon-roundcube:before{content:'\\f59a'}\n.icon-pommo:before{content:'\\f59b'}\n.icon-webinsta:before{content:'\\f59c'}\n.icon-limesurvey:before{content:'\\f59d'}\n.icon-fengoffice:before{content:'\\f59e'}\n.icon-eyeos:before{content:'\\f59f'}\n.icon-dotproject:before{content:'\\f5a0'}\n.icon-collabtive:before{content:'\\f5a1'}\n.icon-projectpier:before{content:'\\f5a2'}\n.icon-taskfreak:before{content:'\\f5a3'}\n.icon-eventum:before{content:'\\f5a4'}\n.icon-traq:before{content:'\\f5a5'}\n.icon-mantisbugtracker:before{content:'\\f5a6'}\n.icon-oscommerce:before{content:'\\f5a7'}\n.icon-zencart:before{content:'\\f5a8'}\n.icon-tomatocart:before{content:'\\f5a9'}\n.icon-boxbilling:before{content:'\\f5aa'}\n.icon-zurmo:before{content:'\\f5ab'}\n.icon-orangehrm:before{content:'\\f5ac'}\n.icon-vtiger:before{content:'\\f5ad'}\n.icon-mibew:before{content:'\\f5ae'}\n.icon-phpmyfaq:before{content:'\\f5af'}\n.icon-yiiframework:before{content:'\\f5b0'}\n.icon-zendframework:before{content:'\\f5b1'}\n.icon-fuelphp:before{content:'\\f5b2'}\n.icon-kohana:before{content:'\\f5b3'}\n.icon-smarty:before{content:'\\f5b4'}\n.icon-sidu:before{content:'\\f5b5'}\n.icon-simplepie:before{content:'\\f5b6'}\n.icon-projectsend:before{content:'\\f5b7'}\n.icon-extjs:before{content:'\\f5b8'}\n.icon-raphael:before{content:'\\f5b9'}\n.icon-sizzle:before{content:'\\f5ba'}\n.icon-yui:before{content:'\\f5bb'}\n.icon-scissorsalt:before{content:'\\f5bc'}\n.icon-cuthere:before{content:'\\f5bd'}\n.icon-coinsalt:before{content:'\\f5be'}\n.icon-parkingmeter:before{content:'\\f5bf'}\n.icon-treethree:before{content:'\\f5c0'}\n.icon-packarchive:before{content:'\\f5c1'}\n.icon-unpackarchive:before{content:'\\f5c2'}\n.icon-terminalalt:before{content:'\\f5c3'}\n.icon-jersey:before{content:'\\f5c4'}\n.icon-vial:before{content:'\\f5c5'}\n.icon-noteslist:before{content:'\\f5c6'}\n.icon-notestasks:before{content:'\\f5c7'}\n.icon-notesdate:before{content:'\\f5c8'}\n.icon-noteslocation:before{content:'\\f5c9'}\n.icon-noteslistalt:before{content:'\\f5ca'}\n.icon-notestasksalt:before{content:'\\f5cb'}\n.icon-notesdatealt:before{content:'\\f5cc'}\n.icon-noteslocationalt:before{content:'\\f5cd'}\n.icon-useralt:before{content:'\\f5ce'}\n.icon-adduseralt:before{content:'\\f5cf'}\n.icon-removeuseralt:before{content:'\\f5d0'}\n.icon-banuseralt:before{content:'\\f5d1'}\n.icon-banuser:before{content:'\\f5d2'}\n.icon-paintrollalt:before{content:'\\f5d3'}\n.icon-textcursor:before{content:'\\f5d4'}\n.icon-textfield:before{content:'\\f5d5'}\n.icon-precisecursor:before{content:'\\f5d6'}\n.icon-brokenlink:before{content:'\\f5d7'}\n.icon-bookmarkthree:before{content:'\\f5d8'}\n.icon-bookmarkfour:before{content:'\\f5d9'}\n.icon-warmedalalt:before{content:'\\f5da'}\n.icon-thinking:before{content:'\\f5db'}\n.icon-commentlove:before{content:'\\f5dc'}\n.icon-commentsmiley:before{content:'\\f5dd'}\n.icon-sharetwo:before{content:'\\f147'}\n.icon-emptystar:before{content:'\\f2de'}\n.icon-halfstar:before{content:'\\f2df'}\n.icon-fullstar:before{content:'\\f2e0'}\n.icon-forbidden:before{content:'\\f314'}\n.icon-indentleftalt:before{content:'\\f4c4'}\n.icon-indentrightalt:before{content:'\\f4c5'}\n.icon-modxalt:before{content:'\\f5de'}\n.icon-apple:before{content:'\\f5df'}\n.icon-greekcolumn:before{content:'\\f5e0'}\n.icon-walletalt:before{content:'\\f5e1'}\n.icon-dollarsquare:before{content:'\\f5e2'}\n.icon-poundsquare:before{content:'\\f5e3'}\n.icon-yensquare:before{content:'\\f5e4'}\n.icon-eurosquare:before{content:'\\f5e5'}\n.icon-bitcoinsquare:before{content:'\\f5e6'}\n.icon-roublesquare:before{content:'\\f5e7'}\n.icon-roublealt:before{content:'\\f5e8'}\n.icon-bitcoinalt:before{content:'\\f5e9'}\n.icon-gavel:before{content:'\\f5ea'}\n.icon-barchartasc:before{content:'\\f5eb'}\n.icon-barchartdesc:before{content:'\\f5ec'}\n.icon-house:before{content:'\\f5ed'}\n.icon-garage:before{content:'\\f5ee'}\n.icon-milk:before{content:'\\f5ef'}\n.icon-hryvnia:before{content:'\\f5f0'}\n.icon-hryvniasquare:before{content:'\\f5f1'}\n.icon-hryvniaalt:before{content:'\\f5f2'}\n.icon-beeralt:before{content:'\\f5f3'}\n.icon-trolleyfull:before{content:'\\f5f4'}\n.icon-trolleyload:before{content:'\\f5f5'}\n.icon-trolleyunload:before{content:'\\f5f6'}\n.icon-trolleyempty:before{content:'\\f5f7'}\n.icon-mootools:before{content:'\\f5f8'}\n.icon-mootoolstwo:before{content:'\\f5f9'}\n.icon-mootoolsthree:before{content:'\\f5fa'}\n.icon-mysqlthree:before{content:'\\f5fb'}\n.icon-mysqlalt:before{content:'\\f5fc'}\n.icon-pgsql:before{content:'\\f5fd'}\n.icon-mongodb:before{content:'\\f5fe'}\n.icon-neofourj:before{content:'\\f5ff'}\n.icon-nosql:before{content:'\\f600'}\n.icon-catface:before{content:'\\f601'}\n.icon-polaroid:before{content:'\\f602'}\n.icon-clouderror:before{content:'\\f603'}\n.icon-camcorder:before{content:'\\f604'}\n.icon-projector:before{content:'\\f605'}\n.icon-sdvideo:before{content:'\\f606'}\n.icon-fx:before{content:'\\f607'}\n.icon-gramophone:before{content:'\\f608'}\n.icon-speakeralt:before{content:'\\f609'}\n.icon-hddalt:before{content:'\\f60a'}\n.icon-usbflash:before{content:'\\f60b'}\n.icon-manillaenvelope:before{content:'\\f60c'}\n.icon-stickynote:before{content:'\\f60d'}\n.icon-stickynotealt:before{content:'\\f60e'}\n.icon-torch:before{content:'\\f60f'}\n.icon-flashlightalt:before{content:'\\f610'}\n.icon-campfire:before{content:'\\f611'}\n.icon-cctv:before{content:'\\f612'}\n.icon-drill:before{content:'\\f613'}\n.icon-lampalt:before{content:'\\f614'}\n.icon-flowerpot:before{content:'\\f615'}\n.icon-defragment:before{content:'\\f616'}\n.icon-panoramio:before{content:'\\f617'}\n.icon-panorama:before{content:'\\f618'}\n.icon-photosphere:before{content:'\\f619'}\n.icon-panoramaalt:before{content:'\\f61a'}\n.icon-timer:before{content:'\\f61b'}\n.icon-burstmode:before{content:'\\f61c'}\n.icon-cameraflash:before{content:'\\f61d'}\n.icon-autoflash:before{content:'\\f61e'}\n.icon-noflash:before{content:'\\f61f'}\n.icon-threetofour:before{content:'\\f620'}\n.icon-sixteentonine:before{content:'\\f621'}\n.icon-cat:before{content:'\\f622'}\n.icon-dog:before{content:'\\f623'}\n.icon-rabbit:before{content:'\\f624'}\n.icon-koala:before{content:'\\f625'}\n.icon-butterflyalt:before{content:'\\f626'}\n.icon-butterfly:before{content:'\\f627'}\n.icon-wwf:before{content:'\\f628'}\n.icon-poop:before{content:'\\f629'}\n.icon-poopalt:before{content:'\\f62a'}\n.icon-kiwi:before{content:'\\f62b'}\n.icon-kiwifruit:before{content:'\\f62c'}\n.icon-lemon:before{content:'\\f62d'}\n.icon-pear:before{content:'\\f62e'}\n.icon-watermelon:before{content:'\\f62f'}\n.icon-onion:before{content:'\\f630'}\n.icon-turnip:before{content:'\\f631'}\n.icon-eggplant:before{content:'\\f632'}\n.icon-avocado:before{content:'\\f633'}\n.icon-perfume:before{content:'\\f634'}\n.icon-arch:before{content:'\\f635'}\n.icon-pluspages:before{content:'\\f636'}\n.icon-community:before{content:'\\f637'}\n.icon-pluscircles:before{content:'\\f638'}\n.icon-googleplusold:before{content:'\\f639'}\n.icon-plusgames:before{content:'\\f63a'}\n.icon-event:before{content:'\\f63b'}\n.icon-miui:before{content:'\\f63c'}\n.icon-hot:before{content:'\\f63d'}\n.icon-flowup:before{content:'\\f63e'}\n.icon-flowdown:before{content:'\\f63f'}\n.icon-moustache:before{content:'\\f640'}\n.icon-angle:before{content:'\\f641'}\n.icon-sleep:before{content:'\\f642'}\n.icon-acorn:before{content:'\\f643'}\n.icon-steamalt:before{content:'\\f644'}\n.icon-resizeupleft:before{content:'\\f645'}\n.icon-resizeupright:before{content:'\\f646'}\n.icon-resizedownright:before{content:'\\f647'}\n.icon-resizedownleft:before{content:'\\f648'}\n.icon-hammeralt:before{content:'\\f649'}\n.icon-bamboo:before{content:'\\f64a'}\n.icon-mypictures:before{content:'\\f64b'}\n.icon-mymusic:before{content:'\\f64c'}\n.icon-myvideos:before{content:'\\f64d'}\n.icon-systemfolder:before{content:'\\f64e'}\n.icon-bookthree:before{content:'\\f64f'}\n.icon-compile:before{content:'\\f650'}\n.icon-report:before{content:'\\f651'}\n.icon-fliphorizontal:before{content:'\\f652'}\n.icon-flipvertical:before{content:'\\f653'}\n.icon-construction:before{content:'\\f654'}\n.icon-counteralt:before{content:'\\f655'}\n.icon-counter:before{content:'\\f656'}\n.icon-papercutter:before{content:'\\f657'}\n.icon-snaptodot:before{content:'\\f658'}\n.icon-snaptogrid:before{content:'\\f659'}\n.icon-caligraphy:before{content:'\\f65a'}\n.icon-icecreamthree:before{content:'\\f65b'}\n.icon-skitch:before{content:'\\f65c'}\n.icon-archlinux:before{content:'\\f65d'}\n.icon-elementaryos:before{content:'\\f65e'}\n.icon-loadingone:before{content:'\\f65f'}\n.icon-loadingtwo:before{content:'\\f660'}\n.icon-loadingthree:before{content:'\\f661'}\n.icon-loadingfour:before{content:'\\f662'}\n.icon-loadingfive:before{content:'\\f663'}\n.icon-loadingsix:before{content:'\\f664'}\n.icon-loadingseven:before{content:'\\f665'}\n.icon-loadingeight:before{content:'\\f666'}\n.icon-brokenheart:before{content:'\\f667'}\n.icon-heartarrow:before{content:'\\f668'}\n.icon-heartsparkle:before{content:'\\f669'}\n.icon-cell:before{content:'\\f66a'}\n.icon-panda:before{content:'\\f66b'}\n.icon-refreshalt:before{content:'\\f66c'}\n.icon-mirror:before{content:'\\f66d'}\n.icon-headphonesthree:before{content:'\\f66e'}\n.icon-fan:before{content:'\\f66f'}\n.icon-tornado:before{content:'\\f670'}\n.icon-hangout:before{content:'\\f671'}\n.icon-beaker:before{content:'\\f672'}\n.icon-beakeralt:before{content:'\\f673'}\n.icon-phonescreensize:before{content:'\\f674'}\n.icon-tabletscreensize:before{content:'\\f675'}\n.icon-notification:before{content:'\\f676'}\n.icon-googleglass:before{content:'\\f677'}\n.icon-pinterest:before{content:'\\f678'}\n.icon-soundcloud:before{content:'\\f679'}\n.icon-alarmclock:before{content:'\\f67a'}\n.icon-addalarm:before{content:'\\f67b'}\n.icon-deletealarm:before{content:'\\f67c'}\n.icon-turnoffalarm:before{content:'\\f67d'}\n.icon-snooze:before{content:'\\f67e'}\n.icon-bringforward:before{content:'\\f67f'}\n.icon-sendbackward:before{content:'\\f680'}\n.icon-bringtofront:before{content:'\\f681'}\n.icon-sendtoback:before{content:'\\f682'}\n.icon-tectile:before{content:'\\f683'}\n.icon-grave:before{content:'\\f684'}\n.icon-gravetwo:before{content:'\\f685'}\n.icon-gravethree:before{content:'\\f686'}\n.icon-gravefour:before{content:'\\f687'}\n.icon-textlayer:before{content:'\\f688'}\n.icon-vectoralt:before{content:'\\f689'}\n.icon-drmanhattan:before{content:'\\f68a'}\n.icon-foursquarealt:before{content:'\\f68b'}\n.icon-hashtag:before{content:'\\f68c'}\n.icon-enteralt:before{content:'\\f68d'}\n.icon-exitalt:before{content:'\\f68e'}\n.icon-cartalt:before{content:'\\f68f'}\n.icon-vaultthree:before{content:'\\f690'}\n.icon-fatundo:before{content:'\\f691'}\n.icon-fatredo:before{content:'\\f692'}\n.icon-feedly:before{content:'\\f693'}\n.icon-feedlyalt:before{content:'\\f694'}\n.icon-squareheart:before{content:'\\f695'}\n.icon-squarestar:before{content:'\\f696'}\n.icon-squarecomment:before{content:'\\f697'}\n.icon-squarelike:before{content:'\\f698'}\n.icon-squarebookmark:before{content:'\\f699'}\n.icon-squaresearch:before{content:'\\f69a'}\n.icon-squaresettings:before{content:'\\f69b'}\n.icon-squarevoice:before{content:'\\f69c'}\n.icon-google:before{content:'\\f69d'}\n.icon-emojigrinalt:before{content:'\\f69e'}\n.icon-emojigrin:before{content:'\\f69f'}\n.icon-constellation:before{content:'\\f6a0'}\n.icon-emojisurprise:before{content:'\\f6a1'}\n.icon-emojidead:before{content:'\\f6a2'}\n.icon-emojiangry:before{content:'\\f6a3'}\n.icon-emojidevil:before{content:'\\f6a4'}\n.icon-emojiwink:before{content:'\\f6a5'}\n.icon-moonorbit:before{content:'\\f6a6'}\n.icon-emojismile:before{content:'\\f6a7'}\n.icon-emojisorry:before{content:'\\f6a8'}\n.icon-emojiconfused:before{content:'\\f6a9'}\n.icon-emojisleep:before{content:'\\f6aa'}\n.icon-emojicry:before{content:'\\f6ab'}\n.icon-circlefork:before{content:'\\f6ac'}\n.icon-circlespoon:before{content:'\\f6ad'}\n.icon-circleknife:before{content:'\\f6ae'}\n.icon-circlepencil:before{content:'\\f6af'}\n.icon-circlehammer:before{content:'\\f6b0'}\n.icon-circlescrewdriver:before{content:'\\f6b1'}\n.icon-middlefinger:before{content:'\\f6b2'}\n.icon-heavymetal:before{content:'\\f6b3'}\n.icon-turnright:before{content:'\\f6b4'}\n.icon-turnleft:before{content:'\\f6b5'}\n.icon-vineapp:before{content:'\\f6b6'}\n.icon-vineappalt:before{content:'\\f6b7'}\n.icon-finance:before{content:'\\f6b8'}\n.icon-survey:before{content:'\\f6b9'}\n.icon-hangouts:before{content:'\\f6ba'}\n.icon-square0:before{content:'\\f6bb'}\n.icon-square1:before{content:'\\f6bc'}\n.icon-square2:before{content:'\\f6bd'}\n.icon-square3:before{content:'\\f6be'}\n.icon-square4:before{content:'\\f6bf'}\n.icon-square5:before{content:'\\f6c0'}\n.icon-square6:before{content:'\\f6c1'}\n.icon-square7:before{content:'\\f6c2'}\n.icon-square8:before{content:'\\f6c3'}\n.icon-square9:before{content:'\\f6c4'}\n.icon-squarea:before{content:'\\f6c5'}\n.icon-squareb:before{content:'\\f6c6'}\n.icon-squarec:before{content:'\\f6c7'}\n.icon-squared:before{content:'\\f6c8'}\n.icon-squaree:before{content:'\\f6c9'}\n.icon-squaref:before{content:'\\f6ca'}\n.icon-squareg:before{content:'\\f6cb'}\n.icon-squareh:before{content:'\\f6cc'}\n.icon-squarei:before{content:'\\f6cd'}\n.icon-squarej:before{content:'\\f6ce'}\n.icon-squarek:before{content:'\\f6cf'}\n.icon-squarel:before{content:'\\f6d0'}\n.icon-squarem:before{content:'\\f6d1'}\n.icon-squaren:before{content:'\\f6d2'}\n.icon-squareo:before{content:'\\f6d3'}\n.icon-squarep:before{content:'\\f6d4'}\n.icon-squareq:before{content:'\\f6d5'}\n.icon-squarer:before{content:'\\f6d6'}\n.icon-squares:before{content:'\\f6d7'}\n.icon-squaret:before{content:'\\f6d8'}\n.icon-squareu:before{content:'\\f6d9'}\n.icon-squarev:before{content:'\\f6da'}\n.icon-squarew:before{content:'\\f6db'}\n.icon-squarex:before{content:'\\f6dc'}\n.icon-squarey:before{content:'\\f6dd'}\n.icon-squarez:before{content:'\\f6de'}\n.icon-shuttle:before{content:'\\f6df'}\n.icon-meteor:before{content:'\\f6e0'}\n.icon-galaxy:before{content:'\\f6e1'}\n.icon-observatory:before{content:'\\f6e2'}\n.icon-astronaut:before{content:'\\f6e3'}\n.icon-asteroid:before{content:'\\f6e4'}\n.icon-sunrise:before{content:'\\f6e5'}\n.icon-sunset:before{content:'\\f6e6'}\n.icon-tiderise:before{content:'\\f6e7'}\n.icon-tidefall:before{content:'\\f6e8'}\n.icon-mushroomcloud:before{content:'\\f6e9'}\n.icon-galaxyalt:before{content:'\\f6ea'}\n.icon-sputnik:before{content:'\\f6eb'}\n.icon-sextant:before{content:'\\f6ec'}\n.icon-spock:before{content:'\\f6ed'}\n.icon-meteorite:before{content:'\\f6ee'}\n.icon-deathstar:before{content:'\\f6ef'}\n.icon-deathstarbulding:before{content:'\\f6f0'}\n.icon-fallingstar:before{content:'\\f6f1'}\n.icon-windmill:before{content:'\\f6f2'}\n.icon-windmillalt:before{content:'\\f6f3'}\n.icon-pumpjack:before{content:'\\f6f4'}\n.icon-nuclearplant:before{content:'\\f6f5'}\n.icon-solarpanel:before{content:'\\f6f6'}\n.icon-barrel:before{content:'\\f6f7'}\n.icon-canister:before{content:'\\f6f8'}\n.icon-railtunnel:before{content:'\\f6f9'}\n.icon-roadtunnel:before{content:'\\f6fa'}\n.icon-pickaxe:before{content:'\\f6fb'}\n.icon-cow:before{content:'\\f6fc'}\n.icon-sheep:before{content:'\\f6fd'}\n.icon-fountain:before{content:'\\f6fe'}\n.icon-circlezero:before{content:'\\f6ff'}\n.icon-circleone:before{content:'\\f700'}\n.icon-circletwo:before{content:'\\f701'}\n.icon-circlethree:before{content:'\\f702'}\n.icon-circlefour:before{content:'\\f703'}\n.icon-circlefive:before{content:'\\f704'}\n.icon-circlesix:before{content:'\\f705'}\n.icon-circleseven:before{content:'\\f706'}\n.icon-circleeight:before{content:'\\f707'}\n.icon-circlenine:before{content:'\\f708'}\n.icon-circlea:before{content:'\\f709'}\n.icon-circleb:before{content:'\\f70a'}\n.icon-circlec:before{content:'\\f70b'}\n.icon-circled:before{content:'\\f70c'}\n.icon-circlee:before{content:'\\f70d'}\n.icon-circlef:before{content:'\\f70e'}\n.icon-circleg:before{content:'\\f70f'}\n.icon-circleh:before{content:'\\f710'}\n.icon-circlei:before{content:'\\f711'}\n.icon-circlej:before{content:'\\f712'}\n.icon-circlek:before{content:'\\f713'}\n.icon-circlel:before{content:'\\f714'}\n.icon-circlem:before{content:'\\f715'}\n.icon-circlen:before{content:'\\f716'}\n.icon-circleo:before{content:'\\f717'}\n.icon-circlep:before{content:'\\f718'}\n.icon-circleq:before{content:'\\f719'}\n.icon-circler:before{content:'\\f71a'}\n.icon-circles:before{content:'\\f71b'}\n.icon-circlet:before{content:'\\f71c'}\n.icon-circleu:before{content:'\\f71d'}\n.icon-circlev:before{content:'\\f71e'}\n.icon-circlew:before{content:'\\f71f'}\n.icon-circlex:before{content:'\\f720'}\n.icon-circley:before{content:'\\f721'}\n.icon-circlez:before{content:'\\f722'}\n.icon-creeper:before{content:'\\f723'}\n.icon-minecraft:before{content:'\\f724'}\n.icon-minecraftalt:before{content:'\\f725'}\n.icon-pixelsword:before{content:'\\f726'}\n.icon-pixelbroadsword:before{content:'\\f727'}\n.icon-pixelwand:before{content:'\\f728'}\n.icon-pixelpotion:before{content:'\\f729'}\n.icon-pixelpotionalt:before{content:'\\f72a'}\n.icon-pixelpickaxe:before{content:'\\f72b'}\n.icon-pixelbow:before{content:'\\f72c'}\n.icon-pixelarrow:before{content:'\\f72d'}\n.icon-pixelaxe:before{content:'\\f72e'}\n.icon-pixeldagger:before{content:'\\f72f'}\n.icon-pixelbastardsword:before{content:'\\f730'}\n.icon-pixellance:before{content:'\\f731'}\n.icon-pixelbattleaxe:before{content:'\\f732'}\n.icon-pixelshovel:before{content:'\\f733'}\n.icon-pixelsphere:before{content:'\\f734'}\n.icon-pixelelixir:before{content:'\\f735'}\n.icon-pixelchest:before{content:'\\f736'}\n.icon-pixelshield:before{content:'\\f737'}\n.icon-pixelheart:before{content:'\\f738'}\n.icon-rudder:before{content:'\\f739'}\n.icon-folderalt:before{content:'\\f73a'}\n.icon-removefolderalt:before{content:'\\f73b'}\n.icon-addfolderalt:before{content:'\\f73c'}\n.icon-deletefolderalt:before{content:'\\f73d'}\n.icon-openfolderalt:before{content:'\\f73e'}\n.icon-clipboardalt:before{content:'\\f73f'}\n.icon-pastealt:before{content:'\\f740'}\n.icon-loadingflowccw:before{content:'\\f741'}\n.icon-loadingflowcw:before{content:'\\f742'}\n.icon-code:before{content:'\\f743'}\n.icon-cloveralt:before{content:'\\f744'}\n.icon-lips:before{content:'\\f745'}\n.icon-kiss:before{content:'\\f746'}\n.icon-manualshift:before{content:'\\f747'}\n.icon-simcardthree:before{content:'\\f748'}\n.icon-parthenon:before{content:'\\f749'}\n.icon-addcomment:before{content:'\\f74a'}\n.icon-deletecomment:before{content:'\\f74b'}\n.icon-gender:before{content:'\\f74c'}\n.icon-callalt:before{content:'\\f74d'}\n.icon-outgoingcallalt:before{content:'\\f74e'}\n.icon-incomingcallalt:before{content:'\\f74f'}\n.icon-missedcallalt:before{content:'\\f750'}\n.icon-export:before{content:'\\f751'}\n.icon-import:before{content:'\\f752'}\n.icon-cherryalt:before{content:'\\f753'}\n.icon-panties:before{content:'\\f754'}\n.icon-kimai:before{content:'\\f755'}\n.icon-livejournal:before{content:'\\f756'}\n.icon-livejournalalt:before{content:'\\f757'}\n.icon-tagged:before{content:'\\f758'}\n.icon-temple:before{content:'\\f759'}\n.icon-mayanpyramid:before{content:'\\f75a'}\n.icon-egyptpyramid:before{content:'\\f75b'}\n.icon-tampermonkey:before{content:'\\f75c'}\n.icon-pushbullet:before{content:'\\f75d'}\n.icon-currents:before{content:'\\f75e'}\n.icon-communitysmall:before{content:'\\f75f'}\n.icon-squaregithub:before{content:'\\f760'}\n.icon-projectfork:before{content:'\\f761'}\n.icon-projectmerge:before{content:'\\f762'}\n.icon-projectcompare:before{content:'\\f763'}\n.icon-history:before{content:'\\f764'}\n.icon-notebook:before{content:'\\f765'}\n.icon-issue:before{content:'\\f766'}\n.icon-issueclosed:before{content:'\\f767'}\n.icon-issuereopened:before{content:'\\f768'}\n.icon-rubyalt:before{content:'\\f769'}\n.icon-lighton:before{content:'\\f76a'}\n.icon-lightoff:before{content:'\\f76b'}\n.icon-bellalt:before{content:'\\f76c'}\n.icon-versions:before{content:'\\f777'}\n.icon-twog:before{content:'\\f76e'}\n.icon-threeg:before{content:'\\f76f'}\n.icon-fourg:before{content:'\\f770'}\n.icon-gpsalt:before{content:'\\f771'}\n.icon-circleloaderfull:before{content:'\\f772'}\n.icon-circleloaderseven:before{content:'\\f773'}\n.icon-circleloadersix:before{content:'\\f774'}\n.icon-circleloaderfive:before{content:'\\f775'}\n.icon-circleloaderfour:before{content:'\\f776'}\n.icon-circleloaderthree:before{content:'\\f777'}\n.icon-circleloadertwo:before{content:'\\f778'}\n.icon-circleloaderone:before{content:'\\f779'}\n.icon-circleloaderempty:before{content:'\\f77a'}\n.icon-whatsapp:before{content:'\\f77b'}\n.icon-whatsappalt:before{content:'\\f77c'}\n.icon-viber:before{content:'\\f77d'}\n.icon-squareviber:before{content:'\\f77e'}\n.icon-teamviewer:before{content:'\\f77f'}\n.icon-tunein:before{content:'\\f780'}\n.icon-tuneinalt:before{content:'\\f781'}\n.icon-weightscale:before{content:'\\f782'}\n.icon-boxing:before{content:'\\f783'}\n.icon-speedalt:before{content:'\\f784'}\n.icon-scriptalt:before{content:'\\f785'}\n.icon-splitthree:before{content:'\\f786'}\n.icon-mergethree:before{content:'\\f787'}\n.icon-layersthree:before{content:'\\f788'}\n.icon-mutemic:before{content:'\\f789'}\n.icon-zerply:before{content:'\\f78a'}\n.icon-circlegoogleplus:before{content:'\\f78b'}\n.icon-circletwitter:before{content:'\\f78c'}\n.icon-circlefacebook:before{content:'\\f78d'}\n.icon-circleyahoo:before{content:'\\f78e'}\n.icon-circlegithub:before{content:'\\f78f'}\n.icon-forumsalt:before{content:'\\f790'}\n.icon-circlepath:before{content:'\\f791'}\n.icon-circlevimeo:before{content:'\\f792'}\n.icon-circlevine:before{content:'\\f793'}\n.icon-instagramtwo:before{content:'\\f794'}\n.icon-instagramthree:before{content:'\\f795'}\n.icon-flickrthree:before{content:'\\f796'}\n.icon-quora:before{content:'\\f797'}\n.icon-squarequora:before{content:'\\f798'}\n.icon-circlequora:before{content:'\\f799'}\n.icon-picasa:before{content:'\\f79a'}\n.icon-branch:before{content:'\\f79b'}\n.icon-ingress:before{content:'\\f79c'}\n.icon-squarezerply:before{content:'\\f79d'}\n.icon-circlezerply:before{content:'\\f79e'}\n.icon-squarevimeo:before{content:'\\f79f'}\n.icon-squaretwitter:before{content:'\\f7a0'}\n.icon-brightnessalt:before{content:'\\f7a1'}\n.icon-brightnessalthalf:before{content:'\\f7a2'}\n.icon-brightnessaltfull:before{content:'\\f7a3'}\n.icon-brightnessaltauto:before{content:'\\f7a4'}\n.icon-shirtbuttonthree:before{content:'\\f7a5'}\n.icon-openshare:before{content:'\\f7a6'}\n.icon-copyapp:before{content:'\\f7a7'}\n.icon-bowl:before{content:'\\f7a8'}\n.icon-cloudalt:before{content:'\\f7a9'}\n.icon-cloudaltdownload:before{content:'\\f7aa'}\n.icon-cloudaltupload:before{content:'\\f7ab'}\n.icon-cloudaltsync:before{content:'\\f7ac'}\n.icon-cloudaltprivate:before{content:'\\f7ad'}\n.icon-flipboard:before{content:'\\f7ae'}\n.icon-octoloaderempty:before{content:'\\f7af'}\n.icon-octoloaderone:before{content:'\\f7b0'}\n.icon-octoloadertwo:before{content:'\\f7b1'}\n.icon-octoloaderthree:before{content:'\\f7b2'}\n.icon-octoloaderfour:before{content:'\\f7b3'}\n.icon-octoloaderfive:before{content:'\\f7b4'}\n.icon-octoloadersix:before{content:'\\f7b5'}\n.icon-octoloaderseven:before{content:'\\f7b6'}\n.icon-octoloaderfull:before{content:'\\f7b7'}\n.icon-selectionsymbol:before{content:'\\f7b8'}\n.icon-infinityalt:before{content:'\\f7b9'}\n.icon-pullrequest:before{content:'\\f7ba'}\n.icon-projectforkdelete:before{content:'\\f7bb'}\n.icon-projectforkprivate:before{content:'\\f7bc'}\n.icon-commit:before{content:'\\f7bd'}\n.icon-htmlfile:before{content:'\\f7be'}\n.icon-pushalt:before{content:'\\f7bf'}\n.icon-pullalt:before{content:'\\f7c0'}\n.icon-photonineframes:before{content:'\\f7c1'}\n.icon-wetfloor:before{content:'\\f7c2'}\n.icon-instagramfour:before{content:'\\f7c3'}\n.icon-circleinstagram:before{content:'\\f7c4'}\n.icon-videocamerathree:before{content:'\\f7c5'}\n.icon-subtitles:before{content:'\\f7c6'}\n.icon-subtitlesoff:before{content:'\\f7c7'}\n.icon-compress:before{content:'\\f7c8'}\n.icon-baby:before{content:'\\f7c9'}\n.icon-ducky:before{content:'\\f7ca'}\n.icon-handswipe:before{content:'\\f7cb'}\n.icon-swipeup:before{content:'\\f7cc'}\n.icon-swipedown:before{content:'\\f7cd'}\n.icon-twofingerswipedown:before{content:'\\f7ce'}\n.icon-twofingerswipeup:before{content:'\\f7cf'}\n.icon-doubletap:before{content:'\\f7d0'}\n.icon-dribbblealt:before{content:'\\f7d1'}\n.icon-circlecallmissed:before{content:'\\f7d2'}\n.icon-circlecallincoming:before{content:'\\f7d3'}\n.icon-circlecalloutgoing:before{content:'\\f7d4'}\n.icon-circledownload:before{content:'\\f7d5'}\n.icon-circleupload:before{content:'\\f7d6'}\n.icon-minismile:before{content:'\\f7d7'}\n.icon-minisad:before{content:'\\f7d8'}\n.icon-minilaugh:before{content:'\\f7d9'}\n.icon-minigrin:before{content:'\\f7da'}\n.icon-miniangry:before{content:'\\f7db'}\n.icon-minitongue:before{content:'\\f7dc'}\n.icon-minitonguealt:before{content:'\\f7dd'}\n.icon-miniwink:before{content:'\\f7de'}\n.icon-minitonguewink:before{content:'\\f7df'}\n.icon-miniconfused:before{content:'\\f7e0'}\n.icon-soundright:before{content:'\\f7e1'}\n.icon-soundleft:before{content:'\\f7e2'}\n.icon-savetodrive:before{content:'\\f7e3'}\n.icon-layerorderup:before{content:'\\f7e4'}\n.icon-layerorderdown:before{content:'\\f7e5'}\n.icon-layerorder:before{content:'\\f7e6'}\n.icon-circledribbble:before{content:'\\f7e7'}\n.icon-squaredribbble:before{content:'\\f7e8'}\n.icon-handexpand:before{content:'\\f7e9'}\n.icon-handpinch:before{content:'\\f7ea'}\n.icon-fontserif:before{content:'\\f7eb'}\n.icon-fontsansserif:before{content:'\\f7ec'}\n.icon-fontrounded:before{content:'\\f7ed'}\n.icon-fonthandwriting:before{content:'\\f7ee'}\n.icon-fonttypewriter:before{content:'\\f7ef'}\n.icon-fontcomic:before{content:'\\f7f0'}\n.icon-fontcaligraphy:before{content:'\\f7f1'}\n.icon-fontgothic:before{content:'\\f7f2'}\n.icon-fontstencil:before{content:'\\f7f3'}\n"]}
     1{"version":3,"sources":["whhg.css","whhg.scss"],"names":[],"mappings":"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","file":"../whhg.css","sourcesContent":["@font-face{font-family:\"WebHostingHub-Glyphs\";src:url(\"font/webhostinghub-glyphs.eot\");src:url(\"font/webhostinghub-glyphs.eot?#iefix\") format(\"embedded-opentype\"),url(\"font/webhostinghub-glyphs.ttf\") format(\"truetype\");font-weight:normal;font-style:normal;-moz-font-feature-settings:\"calt=0,liga=0\"}[class^=icon-],[class*=\" icon-\"],.toggle-triangle,.prevLink,.nextLink,.updateLink{font-family:\"WebHostingHub-Glyphs\";background:none;width:auto;height:auto;font-style:normal}.icon-aaabattery:before{content:\"\"}.icon-abacus:before{content:\"\"}.icon-accountfilter:before{content:\"\"}.icon-acsource:before{content:\"\"}.icon-addfriend:before{content:\"\"}.icon-address:before{content:\"\"}.icon-addshape:before{content:\"\"}.icon-addtocart:before{content:\"\"}.icon-addtolist:before{content:\"\"}.icon-adjust:before{content:\"\"}.icon-adobe:before{content:\"\"}.icon-ads-bilboard:before{content:\"\"}.icon-affiliate:before{content:\"\"}.icon-ajax:before{content:\"\"}.icon-alarm:before{content:\"\"}.icon-alarmalt:before{content:\"\"}.icon-album-cover:before{content:\"\"}.icon-alertalt:before{content:\"\"}.icon-alertpay:before{content:\"\"}.icon-algorhythm:before{content:\"\"}.icon-alienship:before{content:\"\"}.icon-alienware:before{content:\"\"}.icon-align-center:before{content:\"\"}.icon-align-justify:before{content:\"\"}.icon-align-left:before{content:\"\"}.icon-align-right:before{content:\"\"}.icon-alignbottomedge:before{content:\"\"}.icon-alignhorizontalcenter:before{content:\"\"}.icon-alignleftedge:before{content:\"\"}.icon-alignrightedge:before{content:\"\"}.icon-aligntopedge:before{content:\"\"}.icon-alignverticalcenter:before{content:\"\"}.icon-amd:before{content:\"\"}.icon-analogdown:before{content:\"\"}.icon-analogleft:before{content:\"\"}.icon-analogright:before{content:\"\"}.icon-analogup:before{content:\"\"}.icon-analytics-piechart:before{content:\"\"}.icon-analyticsalt-piechartalt:before{content:\"\"}.icon-anchor-port:before{content:\"\"}.icon-android:before{content:\"\"}.icon-angrybirds:before{content:\"\"}.icon-antenna:before{content:\"\"}.icon-apache-feather:before{content:\"\"}.icon-aperture:before{content:\"\"}.icon-appointment-agenda:before{content:\"\"}.icon-archive:before{content:\"\"}.icon-arrow-down:before{content:\"\"}.icon-arrow-left:before{content:\"\"}.icon-arrow-right:before{content:\"\"}.icon-arrow-up:before{content:\"\"}.icon-asterisk:before{content:\"\"}.icon-asteriskalt:before{content:\"*\"}.icon-at:before{content:\"@\"}.icon-atari:before{content:\"\"}.icon-authentication-keyalt:before{content:\"\"}.icon-automobile-car:before{content:\"\"}.icon-autorespond:before{content:\"\"}.icon-avatar:before{content:\"\"}.icon-avataralt:before{content:\"\"}.icon-avengers:before{content:\"\"}.icon-awstats:before{content:\"\"}.icon-axe:before{content:\"\"}.icon-backup-vault:before{content:\"\"}.icon-backupalt-vaultalt:before{content:\"\"}.icon-backupwizard:before{content:\"\"}.icon-backward:before{content:\"\"}.icon-bag:before{content:\"\"}.icon-baloon:before{content:\"\"}.icon-ban-circle:before{content:\"\"}.icon-banana:before{content:\"\"}.icon-bandwidth:before{content:\"\"}.icon-bank:before{content:\"\"}.icon-barchart:before{content:\"\"}.icon-barchartalt:before{content:\"\"}.icon-barcode:before{content:\"\"}.icon-basecamp:before{content:\"\"}.icon-basketball:before{content:\"\"}.icon-bat:before{content:\"\"}.icon-batman:before{content:\"\"}.icon-batteryaltcharging:before{content:\"\"}.icon-batteryaltfull:before{content:\"\"}.icon-batteryaltsixty:before{content:\"\"}.icon-batteryaltthird:before{content:\"\"}.icon-batterycharged:before{content:\"\"}.icon-batterycharging:before{content:\"\"}.icon-batteryeighty:before{content:\"\"}.icon-batteryempty:before{content:\"\"}.icon-batteryforty:before{content:\"\"}.icon-batteryfull:before{content:\"\"}.icon-batterysixty:before{content:\"\"}.icon-batterytwenty:before{content:\"\"}.icon-bed:before{content:\"\"}.icon-beer:before{content:\"\"}.icon-bell:before{content:\"␇\"}.icon-bigger:before{content:\"\"}.icon-bill:before{content:\"\"}.icon-binary:before{content:\"\"}.icon-binoculars-searchalt:before{content:\"\"}.icon-birdhouse:before{content:\"\"}.icon-birthday:before{content:\"\"}.icon-bishop:before{content:\"\"}.icon-blackberry:before{content:\"\"}.icon-blankstare:before{content:\"\"}.icon-blogger-blog:before{content:\"\"}.icon-bluetooth:before{content:\"\"}.icon-bluetoothconnected:before{content:\"\"}.icon-boardgame:before{content:\"\"}.icon-boat:before{content:\"\"}.icon-bold:before{content:\"\"}.icon-bomb:before{content:\"\"}.icon-bone:before{content:\"\"}.icon-book:before{content:\"\"}.icon-bookmark:before{content:\"\"}.icon-boombox:before{content:\"\"}.icon-bottle:before{content:\"\"}.icon-bow:before{content:\"\"}.icon-bowling:before{content:\"\"}.icon-bowlingpins:before{content:\"\"}.icon-bowtie:before{content:\"\"}.icon-boxtrapper-mousetrap:before{content:\"\"}.icon-braces:before{content:\"\"}.icon-braille0:before{content:\"\"}.icon-braille1:before{content:\"\"}.icon-braille2:before{content:\"\"}.icon-braille3:before{content:\"\"}.icon-braille4:before{content:\"\"}.icon-braille5:before{content:\"\"}.icon-braille6:before{content:\"\"}.icon-braille7:before{content:\"\"}.icon-braille8:before{content:\"\"}.icon-braille9:before{content:\"\"}.icon-braillea:before{content:\"\"}.icon-brailleb:before{content:\"\"}.icon-braillec:before{content:\"\"}.icon-brailled:before{content:\"\"}.icon-braillee:before{content:\"\"}.icon-braillef:before{content:\"\"}.icon-brailleg:before{content:\"\"}.icon-brailleh:before{content:\"\"}.icon-braillei:before{content:\"\"}.icon-braillej:before{content:\"\"}.icon-braillek:before{content:\"\"}.icon-braillel:before{content:\"\"}.icon-braillem:before{content:\"\"}.icon-braillen:before{content:\"\"}.icon-brailleo:before{content:\"\"}.icon-braillep:before{content:\"\"}.icon-brailleq:before{content:\"\"}.icon-brailler:before{content:\"\"}.icon-brailles:before{content:\"\"}.icon-braillespace:before{content:\"\"}.icon-braillet:before{content:\"\"}.icon-brailleu:before{content:\"\"}.icon-braillev:before{content:\"\"}.icon-braillew:before{content:\"\"}.icon-braillex:before{content:\"\"}.icon-brailley:before{content:\"\"}.icon-braillez:before{content:\"\"}.icon-brain:before{content:\"\"}.icon-bread:before{content:\"\"}.icon-breakable:before{content:\"\"}.icon-briefcase:before{content:\"\"}.icon-briefcasethree:before{content:\"\"}.icon-briefcasetwo:before{content:\"\"}.icon-brightness:before{content:\"\"}.icon-brightnessfull:before{content:\"\"}.icon-brightnesshalf:before{content:\"\"}.icon-broom:before{content:\"\"}.icon-browser:before{content:\"\"}.icon-brush:before{content:\"\"}.icon-bucket:before{content:\"\"}.icon-bug:before{content:\"\"}.icon-bullhorn:before{content:\"\"}.icon-bus:before{content:\"\"}.icon-businesscardalt:before{content:\"\"}.icon-buttona:before{content:\"\"}.icon-buttonb:before{content:\"\"}.icon-buttonx:before{content:\"\"}.icon-buttony:before{content:\"\"}.icon-cactus-desert:before{content:\"\"}.icon-calculator:before{content:\"\"}.icon-calculatoralt:before{content:\"\"}.icon-calendar:before{content:\"\"}.icon-calendaralt-cronjobs:before{content:\"\"}.icon-camera:before{content:\"\"}.icon-candle:before{content:\"\"}.icon-candy:before{content:\"\"}.icon-candycane:before{content:\"\"}.icon-cannon:before{content:\"\"}.icon-canvas:before{content:\"\"}.icon-canvasrulers:before{content:\"\"}.icon-capacitator:before{content:\"\"}.icon-capslock:before{content:\"⇪\"}.icon-captainamerica:before{content:\"\"}.icon-carrot:before{content:\"\"}.icon-cashregister:before{content:\"\"}.icon-cassette:before{content:\"\"}.icon-cd-dvd:before{content:\"\"}.icon-certificate:before{content:\"\"}.icon-certificatealt:before{content:\"\"}.icon-certificatethree:before{content:\"\"}.icon-cgi:before{content:\"\"}.icon-cgicenter:before{content:\"\"}.icon-chair:before{content:\"⑁\"}.icon-chat:before{content:\"\"}.icon-check:before{content:\"\"}.icon-checkboxalt:before{content:\"\"}.icon-checkin:before{content:\"\"}.icon-checkinalt:before{content:\"\"}.icon-chef:before{content:\"\"}.icon-cherry:before{content:\"\"}.icon-chevron-down:before{content:\"\"}.icon-chevron-left:before{content:\"\"}.icon-chevron-right:before{content:\"\"}.icon-chevron-up:before{content:\"\"}.icon-chevrons:before{content:\"\"}.icon-chicken:before{content:\"\"}.icon-chocolate:before{content:\"\"}.icon-christiancross:before{content:\"\"}.icon-christmastree:before{content:\"\"}.icon-chrome:before{content:\"\"}.icon-cigarette:before{content:\"\"}.icon-circle-arrow-down:before{content:\"\"}.icon-circle-arrow-left:before,.prevLink:before{content:\"\"}.icon-circle-arrow-right:before,.nextLink:before{content:\"\"}.icon-circle-arrow-up:before{content:\"\"}.icon-circleadd:before{content:\"\"}.icon-circledelete:before{content:\"\"}.icon-circledown:before{content:\"\"}.icon-circleleft:before{content:\"\"}.icon-circleright:before{content:\"\"}.icon-circleselect:before{content:\"\"}.icon-circleselection:before{content:\"\"}.icon-circleup:before{content:\"\"}.icon-clearformatting:before{content:\"\"}.icon-clipboard-paste:before{content:\"\"}.icon-clockalt-timealt:before{content:\"\"}.icon-closetab:before{content:\"\"}.icon-closewindow:before{content:\"\"}.icon-cloud:before{content:\"\"}.icon-clouddownload:before{content:\"\"}.icon-cloudhosting:before{content:\"\"}.icon-cloudsync:before{content:\"\"}.icon-cloudupload:before{content:\"\"}.icon-clubs:before{content:\"\"}.icon-cmd:before{content:\"\"}.icon-cms:before{content:\"\"}.icon-cmsmadesimple:before{content:\"\"}.icon-codeigniter:before{content:\"\"}.icon-coffee:before{content:\"\"}.icon-coffeebean:before{content:\"\"}.icon-cog:before{content:\"\"}.icon-colocation:before{content:\"\"}.icon-colocationalt:before{content:\"\"}.icon-colors:before{content:\"\"}.icon-comment:before{content:\"\"}.icon-commentout:before{content:\"\"}.icon-commentround:before{content:\"\"}.icon-commentroundempty:before{content:\"\"}.icon-commentroundtyping:before{content:\"\"}.icon-commentroundtypingempty:before{content:\"\"}.icon-commenttyping:before{content:\"\"}.icon-compass:before{content:\"☼\"}.icon-concretefive:before{content:\"\"}.icon-contact-businesscard:before{content:\"\"}.icon-controllernes:before{content:\"\"}.icon-controllerps:before{content:\"\"}.icon-controllersnes:before{content:\"\"}.icon-controlpanel:before{content:\"\"}.icon-controlpanelalt:before{content:\"\"}.icon-cooling:before{content:\"\"}.icon-coppermine:before{content:\"\"}.icon-copy:before{content:\"\"}.icon-copyright:before{content:\"©\"}.icon-coupon:before{content:\"\"}.icon-cpanel:before{content:\"\"}.icon-cplusplus:before{content:\"\"}.icon-cpu-processor:before{content:\"\"}.icon-cpualt-processoralt:before{content:\"\"}.icon-crayon:before{content:\"\"}.icon-createfile:before{content:\"\"}.icon-createfolder:before{content:\"\"}.icon-creativecommons:before{content:\"\"}.icon-creditcard:before{content:\"\"}.icon-cricket:before{content:\"\"}.icon-croisant:before{content:\"\"}.icon-crop:before{content:\"\"}.icon-crown:before{content:\"\"}.icon-csharp:before{content:\"\"}.icon-cssthree:before{content:\"\"}.icon-cup-coffeealt:before{content:\"\"}.icon-cupcake:before{content:\"\"}.icon-curling:before{content:\"\"}.icon-cursor:before{content:\"\"}.icon-cut-scissors:before{content:\"\"}.icon-dagger:before{content:\"†\"}.icon-danger:before{content:\"\"}.icon-dart:before{content:\"\"}.icon-darthvader:before{content:\"\"}.icon-database:before{content:\"\"}.icon-databaseadd:before{content:\"\"}.icon-databasedelete:before{content:\"\"}.icon-davidstar:before{content:\"\"}.icon-dcsource:before{content:\"\"}.icon-dedicatedserver:before{content:\"\"}.icon-deletefile:before{content:\"\"}.icon-deletefolder:before{content:\"\"}.icon-delicious:before{content:\"\"}.icon-designcontest:before{content:\"\"}.icon-desklamp:before{content:\"\"}.icon-dialpad:before{content:\"\"}.icon-diamond:before{content:\"♦\"}.icon-diamonds:before{content:\"\"}.icon-die-dice:before{content:\"\"}.icon-diefive:before{content:\"\"}.icon-diefour:before{content:\"\"}.icon-dieone:before{content:\"\"}.icon-diesix:before{content:\"\"}.icon-diethree:before{content:\"\"}.icon-dietwo:before{content:\"\"}.icon-diode:before{content:\"\"}.icon-director:before{content:\"\"}.icon-diskspace:before{content:\"\"}.icon-distributehorizontalcenters:before{content:\"\"}.icon-distributeverticalcenters:before{content:\"\"}.icon-divide:before{content:\"÷\"}.icon-dna:before{content:\"\"}.icon-dnszone:before{content:\"\"}.icon-document:before{content:\"\"}.icon-doghouse:before{content:\"\"}.icon-dollar:before{content:\"$\"}.icon-dollaralt:before{content:\"\"}.icon-dolphinsoftware:before{content:\"\"}.icon-domain:before{content:\"\"}.icon-domainaddon:before{content:\"\"}.icon-domino:before{content:\"\"}.icon-donut:before{content:\"\"}.icon-downleft:before{content:\"\"}.icon-download:before{content:\"\"}.icon-download-alt:before{content:\"\"}.icon-downright:before{content:\"\"}.icon-draft:before{content:\"\"}.icon-dreamweaver:before{content:\"\"}.icon-dribbble:before{content:\"\"}.icon-dropmenu:before{content:\"\"}.icon-drupal:before{content:\"\"}.icon-drwho:before{content:\"\"}.icon-edit:before{content:\"\"}.icon-editalt:before{content:\"\"}.icon-egg:before{content:\"\"}.icon-eightball:before{content:\"\"}.icon-eject:before{content:\"\"}.icon-elipse:before{content:\"\"}.icon-emailalt:before{content:\"\"}.icon-emailexport:before{content:\"\"}.icon-emailforward:before{content:\"\"}.icon-emailforwarders:before{content:\"\"}.icon-emailimport:before{content:\"\"}.icon-emailrefresh:before{content:\"\"}.icon-emailtrace:before{content:\"\"}.icon-emergency:before{content:\"\"}.icon-emptycart:before{content:\"\"}.icon-enter:before{content:\"\"}.icon-envelope:before{content:\"\"}.icon-equalizer:before{content:\"\"}.icon-equalizeralt:before{content:\"\"}.icon-equals:before{content:\"\"}.icon-eraser:before{content:\"\"}.icon-erroralt:before{content:\"\"}.icon-euro:before{content:\"€\"}.icon-euroalt:before{content:\"\"}.icon-evernote:before{content:\"\"}.icon-exchange-currency:before{content:\"\"}.icon-exclamation-sign:before{content:\"\"}.icon-excludeshape:before{content:\"\"}.icon-exit:before{content:\"\"}.icon-explorerwindow:before{content:\"\"}.icon-exportfile:before{content:\"\"}.icon-exposure:before{content:\"\"}.icon-extinguisher:before{content:\"\"}.icon-eye-close:before{content:\"\"}.icon-eye-open:before{content:\"\"}.icon-eye-view:before{content:\"\"}.icon-eyedropper:before{content:\"\"}.icon-facebook:before{content:\"\"}.icon-facebookalt:before{content:\"\"}.icon-facetime-video:before{content:\"\"}.icon-factory:before{content:\"\"}.icon-fantastico:before{content:\"\"}.icon-faq:before{content:\"\"}.icon-fast-backward:before{content:\"\"}.icon-fast-forward:before{content:\"\"}.icon-fastdown:before{content:\"\"}.icon-fastleft:before{content:\"\"}.icon-fastright:before{content:\"\"}.icon-fastup:before{content:\"\"}.icon-favoritefile:before{content:\"\"}.icon-favoritefolder:before{content:\"\"}.icon-featheralt-write:before{content:\"\"}.icon-fedora:before{content:\"\"}.icon-fence:before{content:\"\"}.icon-file:before{content:\"\"}.icon-film:before{content:\"\"}.icon-filmstrip:before{content:\"\"}.icon-filter:before{content:\"\"}.icon-finder:before{content:\"\"}.icon-fire:before{content:\"\"}.icon-firefox:before{content:\"\"}.icon-firewall:before{content:\"\"}.icon-firewire:before{content:\"\"}.icon-firstaid:before{content:\"\"}.icon-fish:before{content:\"\"}.icon-fishbone:before{content:\"\"}.icon-flag:before{content:\"\"}.icon-flagalt:before{content:\"\"}.icon-flagtriangle:before{content:\"\"}.icon-flash:before{content:\"\"}.icon-flashlight:before{content:\"\"}.icon-flashplayer:before{content:\"\"}.icon-flaskfull:before{content:\"\"}.icon-flickr:before{content:\"\"}.icon-flower:before{content:\"\"}.icon-flowernew:before{content:\"\"}.icon-folder-close:before{content:\"\"}.icon-folder-open:before{content:\"\"}.icon-foldertree:before{content:\"\"}.icon-font:before{content:\"\"}.icon-foodtray:before{content:\"\"}.icon-football-soccer:before{content:\"\"}.icon-forbiddenalt:before{content:\"\"}.icon-forest-tree:before{content:\"\"}.icon-forestalt-treealt:before{content:\"\"}.icon-fork:before{content:\"⋔\"}.icon-forklift:before{content:\"\"}.icon-form:before{content:\"\"}.icon-forrst:before{content:\"\"}.icon-fort:before{content:\"\"}.icon-forward:before{content:\"\"}.icon-fourohfour:before{content:\"\"}.icon-foursquare:before{content:\"\"}.icon-freeway:before{content:\"\"}.icon-fridge:before{content:\"\"}.icon-fries:before{content:\"\"}.icon-ftp:before{content:\"\"}.icon-ftpaccounts:before{content:\"\"}.icon-ftpsession:before{content:\"\"}.icon-fullscreen:before{content:\"\"}.icon-gameboy:before{content:\"\"}.icon-gamecursor:before{content:\"\"}.icon-gasstation:before{content:\"\"}.icon-gearfour:before{content:\"\"}.icon-ghost:before{content:\"\"}.icon-gift:before{content:\"\"}.icon-github:before{content:\"\"}.icon-glass:before{content:\"\"}.icon-glasses:before{content:\"\"}.icon-glassesalt:before{content:\"\"}.icon-globe:before{content:\"\"}.icon-globealt:before{content:\"\"}.icon-glue:before{content:\"\"}.icon-gmail:before{content:\"\"}.icon-golf:before{content:\"\"}.icon-googledrive:before{content:\"\"}.icon-googleplus:before{content:\"\"}.icon-googlewallet:before{content:\"\"}.icon-gpsoff-gps:before{content:\"\"}.icon-gpson:before{content:\"\"}.icon-gpu-graphicscard:before{content:\"\"}.icon-gradient:before{content:\"∇\"}.icon-grails:before{content:\"\"}.icon-greenlantern:before{content:\"\"}.icon-greenlightbulb:before{content:\"\"}.icon-grooveshark:before{content:\"\"}.icon-groups-friends:before{content:\"\"}.icon-guitar:before{content:\"\"}.icon-halflife:before{content:\"\"}.icon-halo:before{content:\"\"}.icon-hamburger:before{content:\"\"}.icon-hammer:before{content:\"\"}.icon-hand-down:before{content:\"\"}.icon-hand-left:before{content:\"\"}.icon-hand-right:before{content:\"\"}.icon-hand-up:before{content:\"\"}.icon-handcuffs:before{content:\"\"}.icon-handdrag:before{content:\"\"}.icon-handtwofingers:before{content:\"\"}.icon-hanger:before{content:\"\"}.icon-happy:before{content:\"\"}.icon-harrypotter:before{content:\"\"}.icon-hdd:before{content:\"\"}.icon-hdtv:before{content:\"\"}.icon-headphones:before{content:\"\"}.icon-headphonesalt:before{content:\"\"}.icon-heart:before{content:\"\"}.icon-heartempty-love:before{content:\"\"}.icon-hearts:before{content:\"\"}.icon-helicopter:before{content:\"\"}.icon-hexagon-polygon:before{content:\"\"}.icon-hockey:before{content:\"\"}.icon-home:before{content:\"↸\"}.icon-homealt:before{content:\"\"}.icon-hospital:before{content:\"\"}.icon-hotdog:before{content:\"\"}.icon-hotlinkprotection:before{content:\"\"}.icon-hourglassalt:before{content:\"\"}.icon-html:before{content:\"\"}.icon-htmlfive:before{content:\"\"}.icon-hydrant:before{content:\"\"}.icon-icecream:before{content:\"\"}.icon-icecreamalt:before{content:\"\"}.icon-illustrator:before{content:\"\"}.icon-imac:before{content:\"\"}.icon-images-gallery:before{content:\"\"}.icon-importcontacts:before{content:\"\"}.icon-importfile:before{content:\"\"}.icon-inbox:before{content:\"\"}.icon-inboxalt:before{content:\"\"}.icon-incomingcall:before{content:\"\"}.icon-indent-left:before{content:\"\"}.icon-indent-right:before{content:\"\"}.icon-indexmanager:before{content:\"\"}.icon-infinity:before{content:\"∞\"}.icon-info-sign:before{content:\"\"}.icon-infographic:before{content:\"\"}.icon-ink:before{content:\"\"}.icon-inkpen:before{content:\"\"}.icon-insertbarchart:before{content:\"\"}.icon-insertpicture:before{content:\"\"}.icon-insertpicturecenter:before{content:\"\"}.icon-insertpictureleft:before{content:\"\"}.icon-insertpictureright:before{content:\"\"}.icon-insertpiechart:before{content:\"\"}.icon-instagram:before{content:\"\"}.icon-install:before{content:\"\"}.icon-intel:before{content:\"\"}.icon-intersection:before{content:\"∩\"}.icon-intersectshape:before{content:\"\"}.icon-invert:before{content:\"\"}.icon-invoice:before{content:\"\"}.icon-ipcontrol:before{content:\"\"}.icon-iphone:before{content:\"\"}.icon-ipod:before{content:\"\"}.icon-ironman:before{content:\"\"}.icon-islam:before{content:\"\"}.icon-island:before{content:\"\"}.icon-italic:before{content:\"\"}.icon-jar:before{content:\"\"}.icon-jason:before{content:\"\"}.icon-java:before{content:\"\"}.icon-joomla:before{content:\"\"}.icon-joystickarcade:before{content:\"\"}.icon-joystickatari:before{content:\"\"}.icon-jquery:before{content:\"\"}.icon-jqueryui:before{content:\"\"}.icon-kerning:before{content:\"\"}.icon-key:before{content:\"\"}.icon-keyboard:before{content:\"\"}.icon-keyboardalt:before{content:\"\"}.icon-keyboarddelete:before{content:\"\"}.icon-kidney:before{content:\"\"}.icon-king:before{content:\"\"}.icon-knife:before{content:\"\"}.icon-knight:before{content:\"\"}.icon-knob:before{content:\"\"}.icon-lab-flask:before{content:\"\"}.icon-lamp:before{content:\"\"}.icon-lan:before{content:\"\"}.icon-language:before{content:\"\"}.icon-laptop:before{content:\"\"}.icon-lasso:before{content:\"\"}.icon-lastfm:before{content:\"\"}.icon-laugh:before{content:\"\"}.icon-law:before{content:\"\"}.icon-layers:before{content:\"\"}.icon-layersalt:before{content:\"\"}.icon-leaf:before{content:\"\"}.icon-leechprotect:before{content:\"\"}.icon-legacyfilemanager:before{content:\"\"}.icon-lego:before{content:\"\"}.icon-lifeempty:before{content:\"\"}.icon-lifefull:before{content:\"\"}.icon-lifehacker:before{content:\"\"}.icon-lifehalf:before{content:\"\"}.icon-lifepreserver:before{content:\"\"}.icon-lightbulb-idea:before{content:\"\"}.icon-lighthouse:before{content:\"\"}.icon-lightning:before{content:\"\"}.icon-lightningalt:before{content:\"\"}.icon-line:before{content:\"\"}.icon-lineheight:before{content:\"\"}.icon-link:before{content:\"\"}.icon-linkalt:before{content:\"\"}.icon-linkedin:before{content:\"\"}.icon-linux:before{content:\"\"}.icon-list:before{content:\"\"}.icon-list-alt:before{content:\"\"}.icon-liver:before{content:\"\"}.icon-loading-hourglass:before{content:\"\"}.icon-loadingalt:before{content:\"\"}.icon-lock:before{content:\"\"}.icon-lockalt-keyhole:before{content:\"\"}.icon-lollypop:before{content:\"\"}.icon-lungs:before{content:\"\"}.icon-macpro:before{content:\"\"}.icon-macro-plant:before{content:\"\"}.icon-magazine:before{content:\"\"}.icon-magento:before{content:\"\"}.icon-magnet:before{content:\"\"}.icon-mailbox:before{content:\"\"}.icon-mailinglists:before{content:\"\"}.icon-man-male:before{content:\"\"}.icon-managedhosting:before{content:\"\"}.icon-map:before{content:\"\"}.icon-map-marker:before{content:\"\"}.icon-marker:before{content:\"\"}.icon-marvin:before{content:\"\"}.icon-mastercard:before{content:\"\"}.icon-maximize:before{content:\"\"}.icon-medal:before{content:\"\"}.icon-medalbronze:before{content:\"\"}.icon-medalgold:before{content:\"\"}.icon-medalsilver:before{content:\"\"}.icon-mediarepeat:before{content:\"\"}.icon-men:before{content:\"\"}.icon-menu:before{content:\"\"}.icon-merge:before{content:\"\"}.icon-mergecells:before{content:\"\"}.icon-mergeshapes:before{content:\"\"}.icon-metro-subway:before{content:\"\"}.icon-metronome:before{content:\"\"}.icon-mickeymouse:before{content:\"\"}.icon-microphone:before{content:\"\"}.icon-microscope:before{content:\"\"}.icon-microsd:before{content:\"\"}.icon-microwave:before{content:\"\"}.icon-mimetype:before{content:\"\"}.icon-minimize:before{content:\"\"}.icon-minus:before{content:\"−\"}.icon-minus-sign:before{content:\"\"}.icon-missedcall:before{content:\"\"}.icon-mobile:before{content:\"\"}.icon-moleskine:before{content:\"\"}.icon-money-cash:before{content:\"\"}.icon-moneybag:before{content:\"\"}.icon-monitor:before{content:\"\"}.icon-monstersinc:before{content:\"\"}.icon-moon-night:before{content:\"\"}.icon-mouse:before{content:\"\"}.icon-mousealt:before{content:\"\"}.icon-move:before{content:\"\"}.icon-movieclapper:before{content:\"\"}.icon-moviereel:before{content:\"\"}.icon-muffin:before{content:\"\"}.icon-mug:before{content:\"\"}.icon-mushroom:before{content:\"\"}.icon-music:before{content:\"\"}.icon-musicalt:before{content:\"\"}.icon-mutealt:before{content:\"\"}.icon-mxentry:before{content:\"\"}.icon-mybb:before{content:\"\"}.icon-myspace:before{content:\"\"}.icon-mysql-dolphin:before{content:\"\"}.icon-nail:before{content:\"\"}.icon-navigation:before{content:\"\"}.icon-network:before{content:\"\"}.icon-networksignal:before{content:\"\"}.icon-news:before{content:\"\"}.icon-newtab:before{content:\"\"}.icon-newwindow:before{content:\"\"}.icon-next:before{content:\"\"}.icon-nexus:before{content:\"\"}.icon-nintendods:before{content:\"\"}.icon-nodejs:before{content:\"\"}.icon-notes:before{content:\"\"}.icon-notificationbottom:before{content:\"\"}.icon-notificationtop:before{content:\"\"}.icon-nut:before{content:\"\"}.icon-off:before{content:\"\"}.icon-office-building:before{content:\"\"}.icon-officechair:before{content:\"\"}.icon-ok:before{content:\"✓\"}.icon-ok-circle:before{content:\"\"}.icon-ok-sign:before{content:\"\"}.icon-oneup:before{content:\"\"}.icon-oneupalt:before{content:\"\"}.icon-opencart:before{content:\"\"}.icon-opennewwindow:before{content:\"\"}.icon-orange:before{content:\"\"}.icon-outbox:before{content:\"\"}.icon-outgoingcall:before{content:\"\"}.icon-oxwall:before{content:\"\"}.icon-pacman:before{content:\"\"}.icon-pageback:before{content:\"\"}.icon-pagebreak:before{content:\"\"}.icon-pageforward:before{content:\"\"}.icon-pagesetup:before{content:\"\"}.icon-paintbrush:before{content:\"\"}.icon-paintroll:before{content:\"\"}.icon-palette-painting:before{content:\"\"}.icon-paperclip:before{content:\"\"}.icon-paperclipalt:before{content:\"\"}.icon-paperclipvertical:before{content:\"\"}.icon-paperplane:before{content:\"\"}.icon-parentheses:before{content:\"\"}.icon-parkeddomain:before{content:\"\"}.icon-password:before{content:\"\"}.icon-passwordalt:before{content:\"\"}.icon-pasta:before{content:\"\"}.icon-patch:before{content:\"\"}.icon-path:before{content:\"\"}.icon-pause:before{content:\"\"}.icon-paw-pet:before{content:\"\"}.icon-pawn:before{content:\"\"}.icon-paypal:before{content:\"\"}.icon-peace:before{content:\"\"}.icon-pen:before{content:\"\"}.icon-pencil:before{content:\"\"}.icon-pepperoni:before{content:\"\"}.icon-percent:before{content:\"%\"}.icon-perl-camel:before{content:\"\"}.icon-perlalt:before{content:\"\"}.icon-phone-call:before{content:\"\"}.icon-phonealt:before{content:\"\"}.icon-phonebook:before{content:\"\"}.icon-phonebookalt:before{content:\"\"}.icon-phonemic:before{content:\"\"}.icon-phoneold:before{content:\"\"}.icon-photoshop:before{content:\"\"}.icon-php:before{content:\"\"}.icon-phpbb:before{content:\"\"}.icon-phppear:before{content:\"\"}.icon-piano:before{content:\"\"}.icon-picture:before{content:\"⊷\"}.icon-pictureframe:before{content:\"\"}.icon-piggybank:before{content:\"\"}.icon-pigpena:before{content:\"\"}.icon-pigpenb:before{content:\"\"}.icon-pigpenc:before{content:\"\"}.icon-pigpend:before{content:\"\"}.icon-pigpene:before{content:\"\"}.icon-pigpenf:before{content:\"\"}.icon-pigpeng:before{content:\"\"}.icon-pigpenh:before{content:\"\"}.icon-pigpeni:before{content:\"\"}.icon-pigpenj:before{content:\"\"}.icon-pigpenk:before{content:\"\"}.icon-pigpenl:before{content:\"\"}.icon-pigpenm:before{content:\"\"}.icon-pigpenn:before{content:\"\"}.icon-pigpeno:before{content:\"\"}.icon-pigpenp:before{content:\"\"}.icon-pigpenq:before{content:\"\"}.icon-pigpenr:before{content:\"\"}.icon-pigpens:before{content:\"\"}.icon-pigpent:before{content:\"\"}.icon-pigpenu:before{content:\"\"}.icon-pigpenv:before{content:\"\"}.icon-pigpenw:before{content:\"\"}.icon-pigpenx:before{content:\"\"}.icon-pigpeny:before{content:\"\"}.icon-pigpenz:before{content:\"\"}.icon-pilcrow:before{content:\"¶\"}.icon-pill-antivirusalt:before{content:\"\"}.icon-pin:before{content:\"\"}.icon-pipe:before{content:\"ǀ\"}.icon-piwigo:before{content:\"\"}.icon-pizza:before{content:\"\"}.icon-placeadd:before{content:\"\"}.icon-placealt:before{content:\"\"}.icon-placealtadd:before{content:\"\"}.icon-placealtdelete:before{content:\"\"}.icon-placedelete:before{content:\"\"}.icon-placeios:before{content:\"\"}.icon-plane:before{content:\"\"}.icon-plaque:before{content:\"\"}.icon-play:before{content:\"\"}.icon-play-circle:before{content:\"\"}.icon-playstore:before{content:\"\"}.icon-playvideo:before{content:\"\"}.icon-plug:before{content:\"\"}.icon-pluginalt:before{content:\"\"}.icon-plus:before{content:\"+\"}.icon-plus-sign:before{content:\"\"}.icon-pocket:before{content:\"\"}.icon-podcast:before{content:\"\"}.icon-podium-winner:before{content:\"\"}.icon-pokemon:before{content:\"\"}.icon-police:before{content:\"\"}.icon-polygonlasso:before{content:\"\"}.icon-post:before{content:\"\"}.icon-postalt:before{content:\"\"}.icon-pound:before{content:\"\"}.icon-poundalt:before{content:\"\"}.icon-powerjack:before{content:\"\"}.icon-powerplug:before{content:\"\"}.icon-powerplugeu:before{content:\"\"}.icon-powerplugus:before{content:\"\"}.icon-presentation:before{content:\"\"}.icon-prestashop:before{content:\"\"}.icon-pretzel:before{content:\"\"}.icon-preview:before{content:\"\"}.icon-previous:before{content:\"\"}.icon-print:before{content:\"\"}.icon-protecteddirectory:before{content:\"\"}.icon-pscircle:before{content:\"\"}.icon-pscursor:before{content:\"\"}.icon-psdown:before{content:\"\"}.icon-psleft:before{content:\"\"}.icon-pslone:before{content:\"\"}.icon-psltwo:before{content:\"\"}.icon-psright:before{content:\"\"}.icon-psrone:before{content:\"\"}.icon-psrtwo:before{content:\"\"}.icon-pssquare:before{content:\"\"}.icon-pstriangle:before{content:\"\"}.icon-psup:before{content:\"\"}.icon-psx:before{content:\"\"}.icon-pull:before{content:\"\"}.icon-punisher:before{content:\"\"}.icon-push:before{content:\"\"}.icon-puzzle-plugin:before{content:\"\"}.icon-python:before{content:\"\"}.icon-qrcode:before{content:\"\"}.icon-quake:before{content:\"\"}.icon-queen:before{content:\"\"}.icon-query:before{content:\"\"}.icon-question-sign:before{content:\"\"}.icon-quote:before{content:\"\"}.icon-quotedown:before{content:\"\"}.icon-quoteup:before{content:\"\"}.icon-raceflag:before{content:\"\"}.icon-racquet:before{content:\"\"}.icon-radio:before{content:\"\"}.icon-radioactive:before{content:\"\"}.icon-radiobutton:before{content:\"\"}.icon-railroad:before{content:\"\"}.icon-rain:before{content:\"\"}.icon-ram:before{content:\"\"}.icon-random:before{content:\"\"}.icon-rar:before{content:\"\"}.icon-raspberry:before{content:\"\"}.icon-raspberrypi:before{content:\"\"}.icon-rawaccesslogs:before{content:\"\"}.icon-razor:before{content:\"\"}.icon-reademail:before{content:\"\"}.icon-record:before{content:\"\"}.icon-rectangle:before{content:\"▭\"}.icon-recycle:before{content:\"\"}.icon-reddit:before{content:\"\"}.icon-redirect:before{content:\"\"}.icon-refresh:before{content:\"\"}.icon-reliability:before{content:\"\"}.icon-remote:before{content:\"\"}.icon-remove:before{content:\"×\"}.icon-remove-circle:before{content:\"\"}.icon-remove-sign:before{content:\"\"}.icon-removefriend:before{content:\"\"}.icon-repeat:before{content:\"\"}.icon-repeatone:before{content:\"\"}.icon-resellerhosting:before{content:\"\"}.icon-residentevil:before{content:\"\"}.icon-resistor:before{content:\"\"}.icon-resize:before{content:\"\"}.icon-resize-full:before{content:\"\"}.icon-resize-horizontal:before{content:\"\"}.icon-resize-small:before{content:\"\"}.icon-resize-vertical:before{content:\"\"}.icon-restart:before{content:\"\"}.icon-restaurantmenu:before{content:\"\"}.icon-restore:before{content:\"\"}.icon-restricted:before{content:\"\"}.icon-retweet:before{content:\"\"}.icon-rim:before{content:\"\"}.icon-ring:before{content:\"˚\"}.icon-road:before{content:\"\"}.icon-roadsign-roadsignright:before{content:\"\"}.icon-roadsignleft:before{content:\"\"}.icon-robocop:before{content:\"\"}.icon-rocket-launch:before{content:\"\"}.icon-rook:before{content:\"\"}.icon-root:before{content:\"\"}.icon-rorschach:before{content:\"\"}.icon-rotateclockwise:before{content:\"\"}.icon-rotatecounterclockwise:before{content:\"\"}.icon-roundrectangle:before{content:\"\"}.icon-route:before{content:\"\"}.icon-router:before{content:\"\"}.icon-rss:before{content:\"\"}.icon-rubberstamp:before{content:\"\"}.icon-ruby:before{content:\"\"}.icon-ruler:before{content:\"\"}.icon-sad:before{content:\"\"}.icon-safetypin:before{content:\"\"}.icon-satellite:before{content:\"\"}.icon-satellitedish-remotemysql:before{content:\"\"}.icon-save-floppy:before{content:\"\"}.icon-scales:before{content:\"\"}.icon-science-atom:before{content:\"\"}.icon-scope-scan:before{content:\"\"}.icon-scopealt:before{content:\"\"}.icon-screenshot:before{content:\"\"}.icon-screw:before{content:\"\"}.icon-screwdriver:before{content:\"\"}.icon-screwdriveralt:before{content:\"\"}.icon-script:before{content:\"\"}.icon-sd:before{content:\"\"}.icon-search:before{content:\"\"}.icon-searchdocument:before{content:\"\"}.icon-searchfolder:before{content:\"\"}.icon-security-shield:before{content:\"\"}.icon-securityalt-shieldalt:before{content:\"\"}.icon-selection-rectangleselection:before{content:\"\"}.icon-selectionadd:before{content:\"\"}.icon-selectionintersect:before{content:\"\"}.icon-selectionremove:before{content:\"\"}.icon-seo:before{content:\"\"}.icon-server:before{content:\"\"}.icon-servers:before{content:\"\"}.icon-settingsandroid:before{content:\"\"}.icon-settingsfour-gearsalt:before{content:\"\"}.icon-settingsthree-gears:before{content:\"\"}.icon-settingstwo-gearalt:before,.updateLink:before{content:\"\"}.icon-shades-sunglasses:before{content:\"\"}.icon-shapes:before{content:\"\"}.icon-share:before{content:\"\"}.icon-share-alt:before{content:\"\"}.icon-sharealt:before{content:\"\"}.icon-sharedfile:before{content:\"\"}.icon-sharedhosting:before{content:\"\"}.icon-sharethree:before{content:\"\"}.icon-sheriff:before{content:\"\"}.icon-shipping:before{content:\"\"}.icon-shopping:before{content:\"\"}.icon-shopping-cart:before{content:\"\"}.icon-shoppingbag:before{content:\"\"}.icon-shortcut:before{content:\"\"}.icon-shovel:before{content:\"\"}.icon-shredder:before{content:\"\"}.icon-shutdown:before{content:\"\"}.icon-sidebar:before{content:\"\"}.icon-signal:before{content:\"\"}.icon-sim:before{content:\"\"}.icon-simalt:before{content:\"\"}.icon-skrill:before{content:\"\"}.icon-skull:before{content:\"\"}.icon-skype:before{content:\"\"}.icon-skypeaway:before{content:\"\"}.icon-skypebusy:before{content:\"\"}.icon-skypeoffline:before{content:\"\"}.icon-skypeonline:before{content:\"\"}.icon-smaller:before{content:\"\"}.icon-smf:before{content:\"\"}.icon-smile:before{content:\"☺\"}.icon-snow:before{content:\"\"}.icon-snowman:before{content:\"\"}.icon-socialnetwork:before{content:\"\"}.icon-software:before{content:\"\"}.icon-sortbynameascending-atoz:before{content:\"\"}.icon-sortbynamedescending-ztoa:before{content:\"\"}.icon-sortbysizeascending:before{content:\"\"}.icon-sortbysizedescending:before{content:\"\"}.icon-soundwave:before{content:\"\"}.icon-soup:before{content:\"\"}.icon-spaceinvaders:before{content:\"\"}.icon-spades:before{content:\"\"}.icon-spam:before{content:\"\"}.icon-spamalt:before{content:\"\"}.icon-spawn:before{content:\"\"}.icon-speaker:before{content:\"\"}.icon-speed:before{content:\"\"}.icon-spider:before{content:\"\"}.icon-spiderman:before{content:\"\"}.icon-split:before{content:\"\"}.icon-spoon:before{content:\"\"}.icon-spray:before{content:\"\"}.icon-spreadsheet:before{content:\"\"}.icon-squareapp:before{content:\"\"}.icon-squarebrackets:before{content:\"\"}.icon-ssh:before{content:\"\"}.icon-sslmanager:before{content:\"\"}.icon-stadium:before{content:\"\"}.icon-stamp:before{content:\"\"}.icon-stampalt:before{content:\"\"}.icon-star:before{content:\"\"}.icon-star-empty:before{content:\"\"}.icon-starempty:before{content:\"\"}.icon-starfull:before{content:\"\"}.icon-starhalf:before{content:\"\"}.icon-steak:before{content:\"\"}.icon-steam:before{content:\"\"}.icon-step-backward:before{content:\"\"}.icon-step-forward:before{content:\"\"}.icon-sticker:before{content:\"\"}.icon-stiletto:before{content:\"\"}.icon-stockdown:before{content:\"\"}.icon-stocks:before{content:\"\"}.icon-stockup:before{content:\"\"}.icon-stomach:before{content:\"\"}.icon-stop:before{content:\"\"}.icon-stopwatch:before{content:\"\"}.icon-storage-box:before{content:\"\"}.icon-storagealt-drawer:before{content:\"\"}.icon-store:before{content:\"\"}.icon-storm:before{content:\"\"}.icon-stove:before{content:\"\"}.icon-strawberry:before{content:\"\"}.icon-strikethrough:before{content:\"\"}.icon-student-school:before{content:\"\"}.icon-stumbleupon:before{content:\"\"}.icon-subdomain:before{content:\"\"}.icon-submarine:before{content:\"\"}.icon-subscript:before{content:\"\"}.icon-subtractshape:before{content:\"\"}.icon-sum:before{content:\"\"}.icon-sun-day:before{content:\"\"}.icon-sunnysideup:before{content:\"\"}.icon-superman:before{content:\"\"}.icon-superscript:before{content:\"\"}.icon-support:before{content:\"\"}.icon-supportalt:before{content:\"\"}.icon-switch:before{content:\"\"}.icon-switchoff:before{content:\"\"}.icon-switchoffalt:before{content:\"\"}.icon-switchon:before{content:\"\"}.icon-switchonalt:before{content:\"\"}.icon-sword:before{content:\"\"}.icon-sync:before{content:\"\"}.icon-syncalt:before{content:\"\"}.icon-synckeeplocal:before{content:\"\"}.icon-synckeepserver:before{content:\"\"}.icon-syringe-antivirus:before{content:\"\"}.icon-tablet:before{content:\"\"}.icon-tabletennis-pingpong:before{content:\"\"}.icon-taco:before{content:\"\"}.icon-tag:before{content:\"\"}.icon-tagalt-pricealt:before{content:\"\"}.icon-tags:before{content:\"\"}.icon-tagvertical:before{content:\"\"}.icon-tank:before{content:\"\"}.icon-target:before{content:\"\"}.icon-taskmanager-logprograms:before{content:\"\"}.icon-tasks:before{content:\"\"}.icon-taxi:before{content:\"\"}.icon-tea:before{content:\"\"}.icon-teapot:before{content:\"\"}.icon-telescope:before{content:\"\"}.icon-temperature-thermometer:before{content:\"\"}.icon-temperaturealt-thermometeralt:before{content:\"\"}.icon-tennis:before{content:\"\"}.icon-tent-camping:before{content:\"\"}.icon-terminal:before{content:\"\"}.icon-tethering:before{content:\"\"}.icon-tetrisone:before{content:\"\"}.icon-tetristhree:before{content:\"\"}.icon-tetristwo:before{content:\"\"}.icon-text-height:before{content:\"\"}.icon-text-width:before{content:\"\"}.icon-th:before{content:\"\"}.icon-th-large:before{content:\"\"}.icon-th-list:before{content:\"\"}.icon-theather:before{content:\"\"}.icon-theme-style:before{content:\"\"}.icon-thissideup:before{content:\"\"}.icon-threecolumns:before{content:\"\"}.icon-thumbs-down:before{content:\"\"}.icon-thumbs-up:before{content:\"\"}.icon-ticket:before{content:\"\"}.icon-tictactoe:before{content:\"\"}.icon-tie-business:before{content:\"⁀\"}.icon-time:before{content:\"\"}.icon-timeline:before{content:\"\"}.icon-tint:before{content:\"\"}.icon-toast:before{content:\"\"}.icon-toiletpaper:before{content:\"\"}.icon-tooth:before{content:\"\"}.icon-toothbrush:before{content:\"\"}.icon-tophat:before{content:\"\"}.icon-torigate:before{content:\"\"}.icon-touchpad:before{content:\"\"}.icon-trafficlight:before{content:\"\"}.icon-transform:before{content:\"\"}.icon-trash:before{content:\"\"}.icon-trashempty:before{content:\"\"}.icon-trashfull:before{content:\"\"}.icon-travel:before{content:\"\"}.icon-treediagram:before{content:\"\"}.icon-treeornament:before{content:\"\"}.icon-triangle:before{content:\"△\"}.icon-tron:before{content:\"\"}.icon-trophy:before{content:\"\"}.icon-truck:before{content:\"\"}.icon-trumpet:before{content:\"\"}.icon-tumblr:before{content:\"\"}.icon-tv:before{content:\"\"}.icon-twitter:before{content:\"\"}.icon-twocolumnsleft:before{content:\"\"}.icon-twocolumnsleftalt:before{content:\"\"}.icon-twocolumnsright:before{content:\"\"}.icon-twocolumnsrightalt:before{content:\"\"}.icon-ubuntu:before{content:\"\"}.icon-umbrella:before{content:\"\"}.icon-underline:before{content:\"\"}.icon-undo:before{content:\"\"}.icon-unlock:before{content:\"\"}.icon-upleft:before{content:\"\"}.icon-upload:before{content:\"\"}.icon-uploadalt:before{content:\"\"}.icon-upright:before{content:\"\"}.icon-uptime:before{content:\"\"}.icon-usb:before{content:\"\"}.icon-usbalt:before{content:\"\"}.icon-usbplug:before{content:\"\"}.icon-user:before{content:\"\"}.icon-userfilter:before{content:\"\"}.icon-usfootball:before{content:\"\"}.icon-value-coins:before{content:\"\"}.icon-vector:before{content:\"\"}.icon-vendetta:before{content:\"\"}.icon-video:before{content:\"\"}.icon-viking:before{content:\"\"}.icon-vimeo:before{content:\"\"}.icon-vinyl:before{content:\"\"}.icon-violin:before{content:\"\"}.icon-virus:before{content:\"\"}.icon-visa:before{content:\"\"}.icon-visitor:before{content:\"\"}.icon-vlc-cone:before{content:\"\"}.icon-voice:before{content:\"\"}.icon-volume-down:before{content:\"\"}.icon-volume-off:before{content:\"\"}.icon-volume-up:before{content:\"\"}.icon-vps:before{content:\"\"}.icon-wacom:before{content:\"\"}.icon-walle:before{content:\"\"}.icon-wallet:before{content:\"\"}.icon-warcraft:before{content:\"\"}.icon-warmedal:before{content:\"\"}.icon-warning-sign:before{content:\"\"}.icon-washer:before{content:\"\"}.icon-watch:before{content:\"\"}.icon-watertap-plumbing:before{content:\"\"}.icon-wave-sea:before{content:\"\"}.icon-wavealt-seaalt:before{content:\"\"}.icon-webcam:before{content:\"\"}.icon-webcamalt:before{content:\"\"}.icon-webhostinghub:before{content:\"\"}.icon-webmail:before{content:\"\"}.icon-webpage:before{content:\"\"}.icon-webplatform:before{content:\"\"}.icon-websitealt:before{content:\"\"}.icon-websitebuilder:before{content:\"\"}.icon-weight:before{content:\"\"}.icon-westernunion:before{content:\"\"}.icon-wheel:before{content:\"\"}.icon-wheelchair:before{content:\"\"}.icon-whistle:before{content:\"\"}.icon-whmcs:before{content:\"\"}.icon-wifi:before{content:\"\"}.icon-wind:before{content:\"\"}.icon-windleft:before{content:\"\"}.icon-windows:before{content:\"\"}.icon-windright:before{content:\"\"}.icon-wine:before{content:\"\"}.icon-wizard:before{content:\"\"}.icon-wizardalt:before{content:\"\"}.icon-wizardhat:before{content:\"\"}.icon-woman-female:before{content:\"\"}.icon-women:before{content:\"\"}.icon-wordpress:before{content:\"\"}.icon-wrench:before{content:\"\"}.icon-wrenchalt:before{content:\"\"}.icon-xbox:before{content:\"\"}.icon-xmen:before{content:\"\"}.icon-yahoo:before{content:\"\"}.icon-yen:before{content:\"¥\"}.icon-yenalt:before{content:\"\"}.icon-yinyang:before{content:\"☯\"}.icon-youtube:before{content:\"\"}.icon-zelda:before{content:\"\"}.icon-zikula:before{content:\"\"}.icon-zip:before{content:\"\"}.icon-zodiac-aquarius:before{content:\"\"}.icon-zodiac-aries:before{content:\"\"}.icon-zodiac-cancer:before{content:\"\"}.icon-zodiac-capricorn:before{content:\"\"}.icon-zodiac-gemini:before{content:\"\"}.icon-zodiac-leo:before{content:\"\"}.icon-zodiac-libra:before{content:\"\"}.icon-zodiac-pisces:before{content:\"\"}.icon-zodiac-sagitarius:before{content:\"\"}.icon-zodiac-scorpio:before{content:\"\"}.icon-zodiac-taurus:before{content:\"\"}.icon-zodiac-virgo:before{content:\"\"}.icon-zoom-in:before{content:\"\"}.icon-zoom-out:before{content:\"\"}.icon-vk:before{content:\"\"}.icon-bitcoin:before{content:\"\"}.icon-rouble:before{content:\"\"}.icon-phpnuke:before{content:\"\"}.icon-modx:before{content:\"\"}.icon-eoneohseven:before{content:\"\"}.icon-subrion:before{content:\"\"}.icon-typothree:before{content:\"\"}.icon-tikiwiki:before{content:\"\"}.icon-pligg:before{content:\"\"}.icon-pyrocms:before{content:\"\"}.icon-mambo:before{content:\"\"}.icon-contao:before{content:\"\"}.icon-crackedegg:before{content:\"\"}.icon-coffeecupalt:before{content:\"\"}.icon-reademailalt:before{content:\"\"}.icon-train:before{content:\"\"}.icon-shoebox:before{content:\"\"}.icon-bathtub:before{content:\"\"}.icon-ninegag:before{content:\"\"}.icon-pebble:before{content:\"\"}.icon-musicthree:before{content:\"\"}.icon-stairsup:before{content:\"\"}.icon-stairsdown:before{content:\"\"}.icon-bookalt:before{content:\"\"}.icon-programclose:before{content:\"\"}.icon-programok:before{content:\"\"}.icon-splitalt:before{content:\"\"}.icon-solarsystem:before{content:\"\"}.icon-honeycomb:before{content:\"\"}.icon-tools:before{content:\"\"}.icon-xoops:before{content:\"\"}.icon-pixie:before{content:\"\"}.icon-dotclear:before{content:\"\"}.icon-impresscms:before{content:\"\"}.icon-saurus:before{content:\"\"}.icon-impresspages:before{content:\"\"}.icon-monstra:before{content:\"\"}.icon-snews:before{content:\"\"}.icon-jcore:before{content:\"\"}.icon-silverstripe:before{content:\"\"}.icon-btwoevolution:before{content:\"\"}.icon-nucleus:before{content:\"\"}.icon-symphony:before{content:\"\"}.icon-vanillacms:before{content:\"\"}.icon-bbpress:before{content:\"\"}.icon-phpbbalt:before{content:\"\"}.icon-chyrp:before{content:\"\"}.icon-pivotx:before{content:\"\"}.icon-pagecookery:before{content:\"\"}.icon-moviereelalt:before{content:\"\"}.icon-cassettealt:before{content:\"\"}.icon-photobucket:before{content:\"\"}.icon-technorati:before{content:\"\"}.icon-theverge:before{content:\"\"}.icon-stacks:before{content:\"\"}.icon-dotlist:before{content:\"\"}.icon-numberlist:before{content:\"\"}.icon-indentleft:before{content:\"\"}.icon-indentright:before{content:\"\"}.icon-fblike:before{content:\"\"}.icon-fbdislike:before{content:\"\"}.icon-sale:before{content:\"\"}.icon-sharetronix:before{content:\"\"}.icon-markerdown:before{content:\"\"}.icon-markerup:before{content:\"\"}.icon-markerleft:before{content:\"\"}.icon-markerright:before{content:\"\"}.icon-bookmarkalt:before{content:\"\"}.icon-calendarthree:before{content:\"\"}.icon-wineglass:before{content:\"\"}.icon-slidersoff:before{content:\"\"}.icon-slidersmiddle:before{content:\"\"}.icon-slidersfull:before{content:\"\"}.icon-slidersdesc:before{content:\"\"}.icon-slidersasc:before{content:\"\"}.icon-slideronefull:before{content:\"\"}.icon-slidertwofull:before{content:\"\"}.icon-sliderthreefull:before{content:\"\"}.icon-noborders:before{content:\"\"}.icon-bottomborder:before{content:\"\"}.icon-topborder:before{content:\"\"}.icon-leftborder:before{content:\"\"}.icon-rightborder:before{content:\"\"}.icon-horizontalborder:before{content:\"\"}.icon-verticalborder:before{content:\"\"}.icon-outerborders:before{content:\"\"}.icon-innerborders:before{content:\"\"}.icon-fullborders:before{content:\"\"}.icon-networksignalalt:before{content:\"\"}.icon-resizeverticalalt:before{content:\"\"}.icon-resizehorizontalalt:before{content:\"\"}.icon-moneyalt:before{content:\"\"}.icon-fontcase:before{content:\"\"}.icon-playstation:before{content:\"\"}.icon-cube:before{content:\"\"}.icon-sphere:before{content:\"\"}.icon-ceilinglight:before{content:\"\"}.icon-chandelier:before{content:\"\"}.icon-details:before{content:\"\"}.icon-detailsalt:before{content:\"\"}.icon-bullet:before{content:\"\"}.icon-gun:before{content:\"\"}.icon-processorthree:before{content:\"\"}.icon-world:before{content:\"\"}.icon-statistics:before{content:\"\"}.icon-shoppingcartalt:before{content:\"\"}.icon-microphonealt:before{content:\"\"}.icon-routeralt:before{content:\"\"}.icon-shell:before{content:\"\"}.icon-squareplay:before{content:\"\"}.icon-squarestop:before{content:\"\"}.icon-squarepause:before{content:\"\"}.icon-squarerecord:before{content:\"\"}.icon-squareforward:before{content:\"\"}.icon-squareback:before{content:\"\"}.icon-squarenext:before{content:\"\"}.icon-squareprevious:before{content:\"\"}.icon-mega:before{content:\"\"}.icon-charliechaplin:before{content:\"\"}.icon-popcorn:before{content:\"\"}.icon-fatarrowright:before{content:\"\"}.icon-fatarrowleft:before{content:\"\"}.icon-fatarrowdown:before{content:\"\"}.icon-fatarrowup:before{content:\"\"}.icon-shirtbutton:before{content:\"\"}.icon-shirtbuttonalt:before{content:\"\"}.icon-cuckooclock:before{content:\"\"}.icon-lens:before{content:\"\"}.icon-voltage:before{content:\"\"}.icon-planealt:before{content:\"\"}.icon-busalt:before{content:\"\"}.icon-lipstick:before{content:\"\"}.icon-plantalt:before{content:\"\"}.icon-paperboat:before{content:\"\"}.icon-texture:before{content:\"\"}.icon-dominoone:before{content:\"\"}.icon-dominotwo:before{content:\"\"}.icon-dominothree:before{content:\"\"}.icon-dominofour:before{content:\"\"}.icon-dominofive:before{content:\"\"}.icon-dominosix:before{content:\"\"}.icon-dominoseven:before{content:\"\"}.icon-dominoeight:before{content:\"\"}.icon-dominonine:before{content:\"\"}.icon-connected:before{content:\"\"}.icon-connectedpc:before{content:\"\"}.icon-musicsheet:before{content:\"\"}.icon-rdio:before{content:\"\"}.icon-spotify:before{content:\"\"}.icon-deviantart:before{content:\"\"}.icon-yelp:before{content:\"\"}.icon-behance:before{content:\"\"}.icon-nfc:before{content:\"\"}.icon-earbudsalt:before{content:\"\"}.icon-earbuds:before{content:\"\"}.icon-amazon:before{content:\"\"}.icon-openid:before{content:\"\"}.icon-digg:before{content:\"\"}.icon-retweet:before{content:\"\"}.icon-moonnew:before{content:\"\"}.icon-moonwaxingcrescent:before{content:\"\"}.icon-moonfirstquarter:before{content:\"\"}.icon-moonwaxinggibbous:before{content:\"\"}.icon-moonfull:before{content:\"\"}.icon-moonwaninggibbous:before{content:\"\"}.icon-moonthirdquarter:before{content:\"\"}.icon-moonwaningcrescent:before{content:\"\"}.icon-planet:before{content:\"\"}.icon-sodacup:before{content:\"\"}.icon-cocktail:before{content:\"\"}.icon-church:before{content:\"\"}.icon-mosque:before{content:\"\"}.icon-comedy:before{content:\"\"}.icon-tragedy:before{content:\"\"}.icon-bacon:before{content:\"\"}.icon-trailor:before{content:\"\"}.icon-tshirt:before{content:\"\"}.icon-design:before{content:\"\"}.icon-spiderweb:before{content:\"\"}.icon-fireplace:before{content:\"\"}.icon-tallglass:before{content:\"\"}.icon-grapes:before{content:\"\"}.icon-biohazard:before{content:\"\"}.icon-directions:before{content:\"\"}.icon-equalizerthree:before{content:\"\"}.icon-mountains:before{content:\"\"}.icon-bing:before{content:\"\"}.icon-windowseight:before{content:\"\"}.icon-microsoftoffice:before{content:\"\"}.icon-salealt:before{content:\"\"}.icon-purse:before{content:\"\"}.icon-chickenalt:before{content:\"\"}.icon-podium:before{content:\"\"}.icon-findfriends:before{content:\"\"}.icon-microphonethree:before{content:\"\"}.icon-workshirt:before{content:\"\"}.icon-donotdisturb:before{content:\"\"}.icon-addtags:before{content:\"\"}.icon-removetags:before{content:\"\"}.icon-carbattery:before{content:\"\"}.icon-debug:before{content:\"\"}.icon-trojan:before{content:\"\"}.icon-molecule:before{content:\"\"}.icon-safetygoggles:before{content:\"\"}.icon-leather:before{content:\"\"}.icon-teddybear:before{content:\"\"}.icon-stroller:before{content:\"\"}.icon-circleplay:before{content:\"\"}.icon-circlestop:before{content:\"\"}.icon-circlepause:before{content:\"\"}.icon-circlerecord:before{content:\"\"}.icon-circleforward:before{content:\"\"}.icon-circlebackward:before{content:\"\"}.icon-circlenext:before{content:\"\"}.icon-circleprevious:before{content:\"\"}.icon-circleplayempty:before{content:\"\"}.icon-circlestopempty:before{content:\"\"}.icon-circlepauseempty:before{content:\"\"}.icon-circlerecordempty:before{content:\"\"}.icon-circleforwardempty:before{content:\"\"}.icon-circlebackwardempty:before{content:\"\"}.icon-circlenextempty:before{content:\"\"}.icon-circlepreviousempty:before{content:\"\"}.icon-belt:before{content:\"\"}.icon-bait:before{content:\"\"}.icon-manalt:before{content:\"\"}.icon-womanalt:before{content:\"\"}.icon-clover:before{content:\"\"}.icon-pacifier:before{content:\"\"}.icon-calcplus:before{content:\"\"}.icon-calcminus:before{content:\"\"}.icon-calcmultiply:before{content:\"\"}.icon-calcdivide:before{content:\"\"}.icon-calcequals:before{content:\"\"}.icon-city:before{content:\"\"}.icon-hdvideo:before{content:\"\"}.icon-horizontalexpand:before{content:\"\"}.icon-horizontalcontract:before{content:\"\"}.icon-radar:before{content:\"\"}.icon-threed:before{content:\"\"}.icon-flickralt:before{content:\"\"}.icon-pattern:before{content:\"\"}.icon-elevator:before{content:\"\"}.icon-escalator:before{content:\"\"}.icon-portrait:before{content:\"\"}.icon-cigar:before{content:\"\"}.icon-dropbox:before{content:\"\"}.icon-origami:before{content:\"\"}.icon-opensource:before{content:\"\"}.icon-redaxscript:before{content:\"\"}.icon-mahara:before{content:\"\"}.icon-forkcms:before{content:\"\"}.icon-pimcore:before{content:\"\"}.icon-bigace:before{content:\"\"}.icon-aef:before{content:\"\"}.icon-punbb:before{content:\"\"}.icon-phorum:before{content:\"\"}.icon-fluxbb:before{content:\"\"}.icon-minibb:before{content:\"\"}.icon-zenphoto:before{content:\"\"}.icon-fourimages:before{content:\"\"}.icon-plogger:before{content:\"\"}.icon-jcow:before{content:\"\"}.icon-elgg:before{content:\"\"}.icon-etano:before{content:\"\"}.icon-openclassifieds:before{content:\"\"}.icon-osclass:before{content:\"\"}.icon-openx:before{content:\"\"}.icon-phplist:before{content:\"\"}.icon-roundcube:before{content:\"\"}.icon-pommo:before{content:\"\"}.icon-webinsta:before{content:\"\"}.icon-limesurvey:before{content:\"\"}.icon-fengoffice:before{content:\"\"}.icon-eyeos:before{content:\"\"}.icon-dotproject:before{content:\"\"}.icon-collabtive:before{content:\"\"}.icon-projectpier:before{content:\"\"}.icon-taskfreak:before{content:\"\"}.icon-eventum:before{content:\"\"}.icon-traq:before{content:\"\"}.icon-mantisbugtracker:before{content:\"\"}.icon-oscommerce:before{content:\"\"}.icon-zencart:before{content:\"\"}.icon-tomatocart:before{content:\"\"}.icon-boxbilling:before{content:\"\"}.icon-zurmo:before{content:\"\"}.icon-orangehrm:before{content:\"\"}.icon-vtiger:before{content:\"\"}.icon-mibew:before{content:\"\"}.icon-phpmyfaq:before{content:\"\"}.icon-yiiframework:before{content:\"\"}.icon-zendframework:before{content:\"\"}.icon-fuelphp:before{content:\"\"}.icon-kohana:before{content:\"\"}.icon-smarty:before{content:\"\"}.icon-sidu:before{content:\"\"}.icon-simplepie:before{content:\"\"}.icon-projectsend:before{content:\"\"}.icon-extjs:before{content:\"\"}.icon-raphael:before{content:\"\"}.icon-sizzle:before{content:\"\"}.icon-yui:before{content:\"\"}.icon-scissorsalt:before{content:\"\"}.icon-cuthere:before{content:\"\"}.icon-coinsalt:before{content:\"\"}.icon-parkingmeter:before{content:\"\"}.icon-treethree:before{content:\"\"}.icon-packarchive:before{content:\"\"}.icon-unpackarchive:before{content:\"\"}.icon-terminalalt:before{content:\"\"}.icon-jersey:before{content:\"\"}.icon-vial:before{content:\"\"}.icon-noteslist:before{content:\"\"}.icon-notestasks:before{content:\"\"}.icon-notesdate:before{content:\"\"}.icon-noteslocation:before{content:\"\"}.icon-noteslistalt:before{content:\"\"}.icon-notestasksalt:before{content:\"\"}.icon-notesdatealt:before{content:\"\"}.icon-noteslocationalt:before{content:\"\"}.icon-useralt:before{content:\"\"}.icon-adduseralt:before{content:\"\"}.icon-removeuseralt:before{content:\"\"}.icon-banuseralt:before{content:\"\"}.icon-banuser:before{content:\"\"}.icon-paintrollalt:before{content:\"\"}.icon-textcursor:before{content:\"\"}.icon-textfield:before{content:\"\"}.icon-precisecursor:before{content:\"\"}.icon-brokenlink:before{content:\"\"}.icon-bookmarkthree:before{content:\"\"}.icon-bookmarkfour:before{content:\"\"}.icon-warmedalalt:before{content:\"\"}.icon-thinking:before{content:\"\"}.icon-commentlove:before{content:\"\"}.icon-commentsmiley:before{content:\"\"}.icon-sharetwo:before{content:\"\"}.icon-emptystar:before{content:\"\"}.icon-halfstar:before{content:\"\"}.icon-fullstar:before{content:\"\"}.icon-forbidden:before{content:\"\"}.icon-indentleftalt:before{content:\"\"}.icon-indentrightalt:before{content:\"\"}.icon-modxalt:before{content:\"\"}.icon-apple:before{content:\"\"}.icon-greekcolumn:before{content:\"\"}.icon-walletalt:before{content:\"\"}.icon-dollarsquare:before{content:\"\"}.icon-poundsquare:before{content:\"\"}.icon-yensquare:before{content:\"\"}.icon-eurosquare:before{content:\"\"}.icon-bitcoinsquare:before{content:\"\"}.icon-roublesquare:before{content:\"\"}.icon-roublealt:before{content:\"\"}.icon-bitcoinalt:before{content:\"\"}.icon-gavel:before{content:\"\"}.icon-barchartasc:before{content:\"\"}.icon-barchartdesc:before{content:\"\"}.icon-house:before{content:\"\"}.icon-garage:before{content:\"\"}.icon-milk:before{content:\"\"}.icon-hryvnia:before{content:\"\"}.icon-hryvniasquare:before{content:\"\"}.icon-hryvniaalt:before{content:\"\"}.icon-beeralt:before{content:\"\"}.icon-trolleyfull:before{content:\"\"}.icon-trolleyload:before{content:\"\"}.icon-trolleyunload:before{content:\"\"}.icon-trolleyempty:before{content:\"\"}.icon-mootools:before{content:\"\"}.icon-mootoolstwo:before{content:\"\"}.icon-mootoolsthree:before{content:\"\"}.icon-mysqlthree:before{content:\"\"}.icon-mysqlalt:before{content:\"\"}.icon-pgsql:before{content:\"\"}.icon-mongodb:before{content:\"\"}.icon-neofourj:before{content:\"\"}.icon-nosql:before{content:\"\"}.icon-catface:before{content:\"\"}.icon-polaroid:before{content:\"\"}.icon-clouderror:before{content:\"\"}.icon-camcorder:before{content:\"\"}.icon-projector:before{content:\"\"}.icon-sdvideo:before{content:\"\"}.icon-fx:before{content:\"\"}.icon-gramophone:before{content:\"\"}.icon-speakeralt:before{content:\"\"}.icon-hddalt:before{content:\"\"}.icon-usbflash:before{content:\"\"}.icon-manillaenvelope:before{content:\"\"}.icon-stickynote:before{content:\"\"}.icon-stickynotealt:before{content:\"\"}.icon-torch:before{content:\"\"}.icon-flashlightalt:before{content:\"\"}.icon-campfire:before{content:\"\"}.icon-cctv:before{content:\"\"}.icon-drill:before{content:\"\"}.icon-lampalt:before{content:\"\"}.icon-flowerpot:before{content:\"\"}.icon-defragment:before{content:\"\"}.icon-panoramio:before{content:\"\"}.icon-panorama:before{content:\"\"}.icon-photosphere:before{content:\"\"}.icon-panoramaalt:before{content:\"\"}.icon-timer:before{content:\"\"}.icon-burstmode:before{content:\"\"}.icon-cameraflash:before{content:\"\"}.icon-autoflash:before{content:\"\"}.icon-noflash:before{content:\"\"}.icon-threetofour:before{content:\"\"}.icon-sixteentonine:before{content:\"\"}.icon-cat:before{content:\"\"}.icon-dog:before{content:\"\"}.icon-rabbit:before{content:\"\"}.icon-koala:before{content:\"\"}.icon-butterflyalt:before{content:\"\"}.icon-butterfly:before{content:\"\"}.icon-wwf:before{content:\"\"}.icon-poop:before{content:\"\"}.icon-poopalt:before{content:\"\"}.icon-kiwi:before{content:\"\"}.icon-kiwifruit:before{content:\"\"}.icon-lemon:before{content:\"\"}.icon-pear:before{content:\"\"}.icon-watermelon:before{content:\"\"}.icon-onion:before{content:\"\"}.icon-turnip:before{content:\"\"}.icon-eggplant:before{content:\"\"}.icon-avocado:before{content:\"\"}.icon-perfume:before{content:\"\"}.icon-arch:before{content:\"\"}.icon-pluspages:before{content:\"\"}.icon-community:before{content:\"\"}.icon-pluscircles:before{content:\"\"}.icon-googleplusold:before{content:\"\"}.icon-plusgames:before{content:\"\"}.icon-event:before{content:\"\"}.icon-miui:before{content:\"\"}.icon-hot:before{content:\"\"}.icon-flowup:before{content:\"\"}.icon-flowdown:before{content:\"\"}.icon-moustache:before{content:\"\"}.icon-angle:before{content:\"\"}.icon-sleep:before{content:\"\"}.icon-acorn:before{content:\"\"}.icon-steamalt:before{content:\"\"}.icon-resizeupleft:before{content:\"\"}.icon-resizeupright:before{content:\"\"}.icon-resizedownright:before{content:\"\"}.icon-resizedownleft:before{content:\"\"}.icon-hammeralt:before{content:\"\"}.icon-bamboo:before{content:\"\"}.icon-mypictures:before{content:\"\"}.icon-mymusic:before{content:\"\"}.icon-myvideos:before{content:\"\"}.icon-systemfolder:before{content:\"\"}.icon-bookthree:before{content:\"\"}.icon-compile:before{content:\"\"}.icon-report:before{content:\"\"}.icon-fliphorizontal:before{content:\"\"}.icon-flipvertical:before{content:\"\"}.icon-construction:before{content:\"\"}.icon-counteralt:before{content:\"\"}.icon-counter:before{content:\"\"}.icon-papercutter:before{content:\"\"}.icon-snaptodot:before{content:\"\"}.icon-snaptogrid:before{content:\"\"}.icon-caligraphy:before{content:\"\"}.icon-icecreamthree:before{content:\"\"}.icon-skitch:before{content:\"\"}.icon-archlinux:before{content:\"\"}.icon-elementaryos:before{content:\"\"}.icon-loadingone:before{content:\"\"}.icon-loadingtwo:before{content:\"\"}.icon-loadingthree:before{content:\"\"}.icon-loadingfour:before{content:\"\"}.icon-loadingfive:before{content:\"\"}.icon-loadingsix:before{content:\"\"}.icon-loadingseven:before{content:\"\"}.icon-loadingeight:before{content:\"\"}.icon-brokenheart:before{content:\"\"}.icon-heartarrow:before{content:\"\"}.icon-heartsparkle:before{content:\"\"}.icon-cell:before{content:\"\"}.icon-panda:before{content:\"\"}.icon-refreshalt:before{content:\"\"}.icon-mirror:before{content:\"\"}.icon-headphonesthree:before{content:\"\"}.icon-fan:before{content:\"\"}.icon-tornado:before{content:\"\"}.icon-hangout:before{content:\"\"}.icon-beaker:before{content:\"\"}.icon-beakeralt:before{content:\"\"}.icon-phonescreensize:before{content:\"\"}.icon-tabletscreensize:before{content:\"\"}.icon-notification:before{content:\"\"}.icon-googleglass:before{content:\"\"}.icon-pinterest:before{content:\"\"}.icon-soundcloud:before{content:\"\"}.icon-alarmclock:before{content:\"\"}.icon-addalarm:before{content:\"\"}.icon-deletealarm:before{content:\"\"}.icon-turnoffalarm:before{content:\"\"}.icon-snooze:before{content:\"\"}.icon-bringforward:before{content:\"\"}.icon-sendbackward:before{content:\"\"}.icon-bringtofront:before{content:\"\"}.icon-sendtoback:before{content:\"\"}.icon-tectile:before{content:\"\"}.icon-grave:before{content:\"\"}.icon-gravetwo:before{content:\"\"}.icon-gravethree:before{content:\"\"}.icon-gravefour:before{content:\"\"}.icon-textlayer:before{content:\"\"}.icon-vectoralt:before{content:\"\"}.icon-drmanhattan:before{content:\"\"}.icon-foursquarealt:before{content:\"\"}.icon-hashtag:before{content:\"\"}.icon-enteralt:before{content:\"\"}.icon-exitalt:before{content:\"\"}.icon-cartalt:before{content:\"\"}.icon-vaultthree:before{content:\"\"}.icon-fatundo:before{content:\"\"}.icon-fatredo:before{content:\"\"}.icon-feedly:before{content:\"\"}.icon-feedlyalt:before{content:\"\"}.icon-squareheart:before{content:\"\"}.icon-squarestar:before{content:\"\"}.icon-squarecomment:before{content:\"\"}.icon-squarelike:before{content:\"\"}.icon-squarebookmark:before{content:\"\"}.icon-squaresearch:before{content:\"\"}.icon-squaresettings:before{content:\"\"}.icon-squarevoice:before{content:\"\"}.icon-google:before{content:\"\"}.icon-emojigrinalt:before{content:\"\"}.icon-emojigrin:before{content:\"\"}.icon-constellation:before{content:\"\"}.icon-emojisurprise:before{content:\"\"}.icon-emojidead:before{content:\"\"}.icon-emojiangry:before{content:\"\"}.icon-emojidevil:before{content:\"\"}.icon-emojiwink:before{content:\"\"}.icon-moonorbit:before{content:\"\"}.icon-emojismile:before{content:\"\"}.icon-emojisorry:before{content:\"\"}.icon-emojiconfused:before{content:\"\"}.icon-emojisleep:before{content:\"\"}.icon-emojicry:before{content:\"\"}.icon-circlefork:before{content:\"\"}.icon-circlespoon:before{content:\"\"}.icon-circleknife:before{content:\"\"}.icon-circlepencil:before{content:\"\"}.icon-circlehammer:before{content:\"\"}.icon-circlescrewdriver:before{content:\"\"}.icon-middlefinger:before{content:\"\"}.icon-heavymetal:before{content:\"\"}.icon-turnright:before{content:\"\"}.icon-turnleft:before{content:\"\"}.icon-vineapp:before{content:\"\"}.icon-vineappalt:before{content:\"\"}.icon-finance:before{content:\"\"}.icon-survey:before{content:\"\"}.icon-hangouts:before{content:\"\"}.icon-square0:before{content:\"\"}.icon-square1:before{content:\"\"}.icon-square2:before{content:\"\"}.icon-square3:before{content:\"\"}.icon-square4:before{content:\"\"}.icon-square5:before{content:\"\"}.icon-square6:before{content:\"\"}.icon-square7:before{content:\"\"}.icon-square8:before{content:\"\"}.icon-square9:before{content:\"\"}.icon-squarea:before{content:\"\"}.icon-squareb:before{content:\"\"}.icon-squarec:before{content:\"\"}.icon-squared:before{content:\"\"}.icon-squaree:before{content:\"\"}.icon-squaref:before{content:\"\"}.icon-squareg:before{content:\"\"}.icon-squareh:before{content:\"\"}.icon-squarei:before{content:\"\"}.icon-squarej:before{content:\"\"}.icon-squarek:before{content:\"\"}.icon-squarel:before{content:\"\"}.icon-squarem:before{content:\"\"}.icon-squaren:before{content:\"\"}.icon-squareo:before{content:\"\"}.icon-squarep:before{content:\"\"}.icon-squareq:before{content:\"\"}.icon-squarer:before{content:\"\"}.icon-squares:before{content:\"\"}.icon-squaret:before{content:\"\"}.icon-squareu:before{content:\"\"}.icon-squarev:before{content:\"\"}.icon-squarew:before{content:\"\"}.icon-squarex:before{content:\"\"}.icon-squarey:before{content:\"\"}.icon-squarez:before{content:\"\"}.icon-shuttle:before{content:\"\"}.icon-meteor:before{content:\"\"}.icon-galaxy:before{content:\"\"}.icon-observatory:before{content:\"\"}.icon-astronaut:before{content:\"\"}.icon-asteroid:before{content:\"\"}.icon-sunrise:before{content:\"\"}.icon-sunset:before{content:\"\"}.icon-tiderise:before{content:\"\"}.icon-tidefall:before{content:\"\"}.icon-mushroomcloud:before{content:\"\"}.icon-galaxyalt:before{content:\"\"}.icon-sputnik:before{content:\"\"}.icon-sextant:before{content:\"\"}.icon-spock:before{content:\"\"}.icon-meteorite:before{content:\"\"}.icon-deathstar:before{content:\"\"}.icon-deathstarbulding:before{content:\"\"}.icon-fallingstar:before{content:\"\"}.icon-windmill:before{content:\"\"}.icon-windmillalt:before{content:\"\"}.icon-pumpjack:before{content:\"\"}.icon-nuclearplant:before{content:\"\"}.icon-solarpanel:before{content:\"\"}.icon-barrel:before{content:\"\"}.icon-canister:before{content:\"\"}.icon-railtunnel:before{content:\"\"}.icon-roadtunnel:before{content:\"\"}.icon-pickaxe:before{content:\"\"}.icon-cow:before{content:\"\"}.icon-sheep:before{content:\"\"}.icon-fountain:before{content:\"\"}.icon-circlezero:before{content:\"\"}.icon-circleone:before{content:\"\"}.icon-circletwo:before{content:\"\"}.icon-circlethree:before{content:\"\"}.icon-circlefour:before{content:\"\"}.icon-circlefive:before{content:\"\"}.icon-circlesix:before{content:\"\"}.icon-circleseven:before{content:\"\"}.icon-circleeight:before{content:\"\"}.icon-circlenine:before{content:\"\"}.icon-circlea:before{content:\"\"}.icon-circleb:before{content:\"\"}.icon-circlec:before{content:\"\"}.icon-circled:before{content:\"\"}.icon-circlee:before{content:\"\"}.icon-circlef:before{content:\"\"}.icon-circleg:before{content:\"\"}.icon-circleh:before{content:\"\"}.icon-circlei:before{content:\"\"}.icon-circlej:before{content:\"\"}.icon-circlek:before{content:\"\"}.icon-circlel:before{content:\"\"}.icon-circlem:before{content:\"\"}.icon-circlen:before{content:\"\"}.icon-circleo:before{content:\"\"}.icon-circlep:before{content:\"\"}.icon-circleq:before{content:\"\"}.icon-circler:before{content:\"\"}.icon-circles:before{content:\"\"}.icon-circlet:before{content:\"\"}.icon-circleu:before{content:\"\"}.icon-circlev:before{content:\"\"}.icon-circlew:before{content:\"\"}.icon-circlex:before{content:\"\"}.icon-circley:before{content:\"\"}.icon-circlez:before{content:\"\"}.icon-creeper:before{content:\"\"}.icon-minecraft:before{content:\"\"}.icon-minecraftalt:before{content:\"\"}.icon-pixelsword:before{content:\"\"}.icon-pixelbroadsword:before{content:\"\"}.icon-pixelwand:before{content:\"\"}.icon-pixelpotion:before{content:\"\"}.icon-pixelpotionalt:before{content:\"\"}.icon-pixelpickaxe:before{content:\"\"}.icon-pixelbow:before{content:\"\"}.icon-pixelarrow:before{content:\"\"}.icon-pixelaxe:before{content:\"\"}.icon-pixeldagger:before{content:\"\"}.icon-pixelbastardsword:before{content:\"\"}.icon-pixellance:before{content:\"\"}.icon-pixelbattleaxe:before{content:\"\"}.icon-pixelshovel:before{content:\"\"}.icon-pixelsphere:before{content:\"\"}.icon-pixelelixir:before{content:\"\"}.icon-pixelchest:before{content:\"\"}.icon-pixelshield:before{content:\"\"}.icon-pixelheart:before{content:\"\"}.icon-rudder:before{content:\"\"}.icon-folderalt:before{content:\"\"}.icon-removefolderalt:before{content:\"\"}.icon-addfolderalt:before{content:\"\"}.icon-deletefolderalt:before{content:\"\"}.icon-openfolderalt:before{content:\"\"}.icon-clipboardalt:before{content:\"\"}.icon-pastealt:before{content:\"\"}.icon-loadingflowccw:before{content:\"\"}.icon-loadingflowcw:before{content:\"\"}.icon-code:before{content:\"\"}.icon-cloveralt:before{content:\"\"}.icon-lips:before{content:\"\"}.icon-kiss:before{content:\"\"}.icon-manualshift:before{content:\"\"}.icon-simcardthree:before{content:\"\"}.icon-parthenon:before{content:\"\"}.icon-addcomment:before{content:\"\"}.icon-deletecomment:before{content:\"\"}.icon-gender:before{content:\"\"}.icon-callalt:before{content:\"\"}.icon-outgoingcallalt:before{content:\"\"}.icon-incomingcallalt:before{content:\"\"}.icon-missedcallalt:before{content:\"\"}.icon-export:before{content:\"\"}.icon-import:before{content:\"\"}.icon-cherryalt:before{content:\"\"}.icon-panties:before{content:\"\"}.icon-kimai:before{content:\"\"}.icon-livejournal:before{content:\"\"}.icon-livejournalalt:before{content:\"\"}.icon-tagged:before{content:\"\"}.icon-temple:before{content:\"\"}.icon-mayanpyramid:before{content:\"\"}.icon-egyptpyramid:before{content:\"\"}.icon-tampermonkey:before{content:\"\"}.icon-pushbullet:before{content:\"\"}.icon-currents:before{content:\"\"}.icon-communitysmall:before{content:\"\"}.icon-squaregithub:before{content:\"\"}.icon-projectfork:before{content:\"\"}.icon-projectmerge:before{content:\"\"}.icon-projectcompare:before{content:\"\"}.icon-history:before{content:\"\"}.icon-notebook:before{content:\"\"}.icon-issue:before{content:\"\"}.icon-issueclosed:before{content:\"\"}.icon-issuereopened:before{content:\"\"}.icon-rubyalt:before{content:\"\"}.icon-lighton:before{content:\"\"}.icon-lightoff:before{content:\"\"}.icon-bellalt:before{content:\"\"}.icon-versions:before{content:\"\"}.icon-twog:before{content:\"\"}.icon-threeg:before{content:\"\"}.icon-fourg:before{content:\"\"}.icon-gpsalt:before{content:\"\"}.icon-circleloaderfull:before{content:\"\"}.icon-circleloaderseven:before{content:\"\"}.icon-circleloadersix:before{content:\"\"}.icon-circleloaderfive:before{content:\"\"}.icon-circleloaderfour:before{content:\"\"}.icon-circleloaderthree:before{content:\"\"}.icon-circleloadertwo:before{content:\"\"}.icon-circleloaderone:before{content:\"\"}.icon-circleloaderempty:before{content:\"\"}.icon-whatsapp:before{content:\"\"}.icon-whatsappalt:before{content:\"\"}.icon-viber:before{content:\"\"}.icon-squareviber:before{content:\"\"}.icon-teamviewer:before{content:\"\"}.icon-tunein:before{content:\"\"}.icon-tuneinalt:before{content:\"\"}.icon-weightscale:before{content:\"\"}.icon-boxing:before{content:\"\"}.icon-speedalt:before{content:\"\"}.icon-scriptalt:before{content:\"\"}.icon-splitthree:before{content:\"\"}.icon-mergethree:before{content:\"\"}.icon-layersthree:before{content:\"\"}.icon-mutemic:before{content:\"\"}.icon-zerply:before{content:\"\"}.icon-circlegoogleplus:before{content:\"\"}.icon-circletwitter:before{content:\"\"}.icon-circlefacebook:before{content:\"\"}.icon-circleyahoo:before{content:\"\"}.icon-circlegithub:before{content:\"\"}.icon-forumsalt:before{content:\"\"}.icon-circlepath:before{content:\"\"}.icon-circlevimeo:before{content:\"\"}.icon-circlevine:before{content:\"\"}.icon-instagramtwo:before{content:\"\"}.icon-instagramthree:before{content:\"\"}.icon-flickrthree:before{content:\"\"}.icon-quora:before{content:\"\"}.icon-squarequora:before{content:\"\"}.icon-circlequora:before{content:\"\"}.icon-picasa:before{content:\"\"}.icon-branch:before{content:\"\"}.icon-ingress:before{content:\"\"}.icon-squarezerply:before{content:\"\"}.icon-circlezerply:before{content:\"\"}.icon-squarevimeo:before{content:\"\"}.icon-squaretwitter:before{content:\"\"}.icon-brightnessalt:before{content:\"\"}.icon-brightnessalthalf:before{content:\"\"}.icon-brightnessaltfull:before{content:\"\"}.icon-brightnessaltauto:before{content:\"\"}.icon-shirtbuttonthree:before{content:\"\"}.icon-openshare:before{content:\"\"}.icon-copyapp:before{content:\"\"}.icon-bowl:before{content:\"\"}.icon-cloudalt:before{content:\"\"}.icon-cloudaltdownload:before{content:\"\"}.icon-cloudaltupload:before{content:\"\"}.icon-cloudaltsync:before{content:\"\"}.icon-cloudaltprivate:before{content:\"\"}.icon-flipboard:before{content:\"\"}.icon-octoloaderempty:before{content:\"\"}.icon-octoloaderone:before{content:\"\"}.icon-octoloadertwo:before{content:\"\"}.icon-octoloaderthree:before{content:\"\"}.icon-octoloaderfour:before{content:\"\"}.icon-octoloaderfive:before{content:\"\"}.icon-octoloadersix:before{content:\"\"}.icon-octoloaderseven:before{content:\"\"}.icon-octoloaderfull:before{content:\"\"}.icon-selectionsymbol:before{content:\"\"}.icon-infinityalt:before{content:\"\"}.icon-pullrequest:before{content:\"\"}.icon-projectforkdelete:before{content:\"\"}.icon-projectforkprivate:before{content:\"\"}.icon-commit:before{content:\"\"}.icon-htmlfile:before{content:\"\"}.icon-pushalt:before{content:\"\"}.icon-pullalt:before{content:\"\"}.icon-photonineframes:before{content:\"\"}.icon-wetfloor:before{content:\"\"}.icon-instagramfour:before{content:\"\"}.icon-circleinstagram:before{content:\"\"}.icon-videocamerathree:before{content:\"\"}.icon-subtitles:before{content:\"\"}.icon-subtitlesoff:before{content:\"\"}.icon-compress:before{content:\"\"}.icon-baby:before{content:\"\"}.icon-ducky:before{content:\"\"}.icon-handswipe:before{content:\"\"}.icon-swipeup:before{content:\"\"}.icon-swipedown:before{content:\"\"}.icon-twofingerswipedown:before{content:\"\"}.icon-twofingerswipeup:before{content:\"\"}.icon-doubletap:before{content:\"\"}.icon-dribbblealt:before{content:\"\"}.icon-circlecallmissed:before{content:\"\"}.icon-circlecallincoming:before{content:\"\"}.icon-circlecalloutgoing:before{content:\"\"}.icon-circledownload:before{content:\"\"}.icon-circleupload:before{content:\"\"}.icon-minismile:before{content:\"\"}.icon-minisad:before{content:\"\"}.icon-minilaugh:before{content:\"\"}.icon-minigrin:before{content:\"\"}.icon-miniangry:before{content:\"\"}.icon-minitongue:before{content:\"\"}.icon-minitonguealt:before{content:\"\"}.icon-miniwink:before{content:\"\"}.icon-minitonguewink:before{content:\"\"}.icon-miniconfused:before{content:\"\"}.icon-soundright:before{content:\"\"}.icon-soundleft:before{content:\"\"}.icon-savetodrive:before{content:\"\"}.icon-layerorderup:before{content:\"\"}.icon-layerorderdown:before{content:\"\"}.icon-layerorder:before{content:\"\"}.icon-circledribbble:before{content:\"\"}.icon-squaredribbble:before{content:\"\"}.icon-handexpand:before{content:\"\"}.icon-handpinch:before{content:\"\"}.icon-fontserif:before{content:\"\"}.icon-fontsansserif:before{content:\"\"}.icon-fontrounded:before{content:\"\"}.icon-fonthandwriting:before{content:\"\"}.icon-fonttypewriter:before{content:\"\"}.icon-fontcomic:before{content:\"\"}.icon-fontcaligraphy:before{content:\"\"}.icon-fontgothic:before{content:\"\"}.icon-fontstencil:before{content:\"\"}","@font-face {\n    font-family: 'WebHostingHub-Glyphs';\n    src: url('font/webhostinghub-glyphs.eot');\n    src: url('font/webhostinghub-glyphs.eot?#iefix') format('embedded-opentype'),\n         url('font/webhostinghub-glyphs.ttf') format('truetype');\n    font-weight: normal;\n    font-style: normal;\n    -moz-font-feature-settings: \"calt=0,liga=0\";\n}\n[class^=\"icon-\"], [class*=\" icon-\"],\n.toggle-triangle,\n.prevLink, .nextLink, \n.updateLink\n {font-family:'WebHostingHub-Glyphs';background:none;width:auto;height:auto;font-style:normal}\n.icon-aaabattery:before{content:'\\f413'}\n.icon-abacus:before{content:'\\f261'}\n.icon-accountfilter:before{content:'\\f05e'}\n.icon-acsource:before{content:'\\f3ea'}\n.icon-addfriend:before{content:'\\f3da'}\n.icon-address:before{content:'\\f08f'}\n.icon-addshape:before{content:'\\f1fd'}\n.icon-addtocart:before{content:'\\f394'}\n.icon-addtolist:before{content:'\\f2ac'}\n.icon-adjust:before{content:'\\f484'}\n.icon-adobe:before{content:'\\f1c9'}\n.icon-ads-bilboard:before{content:'\\f082'}\n.icon-affiliate:before{content:'\\f01e'}\n.icon-ajax:before{content:'\\f06f'}\n.icon-alarm:before{content:'\\f233'}\n.icon-alarmalt:before{content:'\\f23d'}\n.icon-album-cover:before{content:'\\f19f'}\n.icon-alertalt:before{content:'\\f2b4'}\n.icon-alertpay:before{content:'\\f269'}\n.icon-algorhythm:before{content:'\\f0b8'}\n.icon-alienship:before{content:'\\f41f'}\n.icon-alienware:before{content:'\\f3be'}\n.icon-align-center:before{content:'\\f1d9'}\n.icon-align-justify:before{content:'\\f1da'}\n.icon-align-left:before{content:'\\f1d7'}\n.icon-align-right:before{content:'\\f1d8'}\n.icon-alignbottomedge:before{content:'\\f1d3'}\n.icon-alignhorizontalcenter:before{content:'\\f1d2'}\n.icon-alignleftedge:before{content:'\\f1d6'}\n.icon-alignrightedge:before{content:'\\f1d5'}\n.icon-aligntopedge:before{content:'\\f1d4'}\n.icon-alignverticalcenter:before{content:'\\f1d1'}\n.icon-amd:before{content:'\\f020'}\n.icon-analogdown:before{content:'\\f2cb'}\n.icon-analogleft:before{content:'\\f2c8'}\n.icon-analogright:before{content:'\\f2c9'}\n.icon-analogup:before{content:'\\f2ca'}\n.icon-analytics-piechart:before{content:'\\f000'}\n.icon-analyticsalt-piechartalt:before{content:'\\f001'}\n.icon-anchor-port:before{content:'\\f21d'}\n.icon-android:before{content:'\\f12a'}\n.icon-angrybirds:before{content:'\\f3c1'}\n.icon-antenna:before{content:'\\f3ec'}\n.icon-apache-feather:before{content:'\\f056'}\n.icon-aperture:before{content:'\\f356'}\n.icon-appointment-agenda:before{content:'\\f26c'}\n.icon-archive:before{content:'\\f171'}\n.icon-arrow-down:before{content:'\\f2fe'}\n.icon-arrow-left:before{content:'\\f305'}\n.icon-arrow-right:before{content:'\\f304'}\n.icon-arrow-up:before{content:'\\f301'}\n.icon-asterisk:before{content:'\\f317'}\n.icon-asteriskalt:before{content:'\\002a'}\n.icon-at:before{content:'\\40'}\n.icon-atari:before{content:'\\f3b9'}\n.icon-authentication-keyalt:before{content:'\\f051'}\n.icon-automobile-car:before{content:'\\f239'}\n.icon-autorespond:before{content:'\\f08e'}\n.icon-avatar:before{content:'\\f15a'}\n.icon-avataralt:before{content:'\\f161'}\n.icon-avengers:before{content:'\\f342'}\n.icon-awstats:before{content:'\\f04c'}\n.icon-axe:before{content:'\\f2ef'}\n.icon-backup-vault:before{content:'\\f004'}\n.icon-backupalt-vaultalt:before{content:'\\f005'}\n.icon-backupwizard:before{content:'\\f05f'}\n.icon-backward:before{content:'\\f183'}\n.icon-bag:before{content:'\\f234'}\n.icon-baloon:before{content:'\\f405'}\n.icon-ban-circle:before{content:'\\f313'}\n.icon-banana:before{content:'\\f3f4'}\n.icon-bandwidth:before{content:'\\f006'}\n.icon-bank:before{content:'\\f262'}\n.icon-barchart:before{content:'\\f02f'}\n.icon-barchartalt:before{content:'\\f07d'}\n.icon-barcode:before{content:'\\f276'}\n.icon-basecamp:before{content:'\\f160'}\n.icon-basketball:before{content:'\\f2e9'}\n.icon-bat:before{content:'\\f3d3'}\n.icon-batman:before{content:'\\f348'}\n.icon-batteryaltcharging:before{content:'\\f104'}\n.icon-batteryaltfull:before{content:'\\f101'}\n.icon-batteryaltsixty:before{content:'\\f102'}\n.icon-batteryaltthird:before{content:'\\f103'}\n.icon-batterycharged:before{content:'\\f0f4'}\n.icon-batterycharging:before{content:'\\f0f3'}\n.icon-batteryeighty:before{content:'\\f0f9'}\n.icon-batteryempty:before{content:'\\f0f5'}\n.icon-batteryforty:before{content:'\\f0f7'}\n.icon-batteryfull:before{content:'\\f0fa'}\n.icon-batterysixty:before{content:'\\f0f8'}\n.icon-batterytwenty:before{content:'\\f0f6'}\n.icon-bed:before{content:'\\f2b9'}\n.icon-beer:before{content:'\\f244'}\n.icon-bell:before{content:'\\2407'}\n.icon-bigger:before{content:'\\f30a'}\n.icon-bill:before{content:'\\f278'}\n.icon-binary:before{content:'\\f087'}\n.icon-binoculars-searchalt:before{content:'\\f2a0'}\n.icon-birdhouse:before{content:'\\f390'}\n.icon-birthday:before{content:'\\f36b'}\n.icon-bishop:before{content:'\\f2f9'}\n.icon-blackberry:before{content:'\\f421'}\n.icon-blankstare:before{content:'\\f13e'}\n.icon-blogger-blog:before{content:'\\f167'}\n.icon-bluetooth:before{content:'\\f12b'}\n.icon-bluetoothconnected:before{content:'\\f386'}\n.icon-boardgame:before{content:'\\f2d9'}\n.icon-boat:before{content:'\\f21a'}\n.icon-bold:before{content:'\\f1f4'}\n.icon-bomb:before{content:'\\f2dc'}\n.icon-bone:before{content:'\\f35f'}\n.icon-book:before{content:'\\f1ba'}\n.icon-bookmark:before{content:'\\f143'}\n.icon-boombox:before{content:'\\f195'}\n.icon-bottle:before{content:'\\f361'}\n.icon-bow:before{content:'\\f2ee'}\n.icon-bowling:before{content:'\\f2f3'}\n.icon-bowlingpins:before{content:'\\f3d2'}\n.icon-bowtie:before{content:'\\f37f'}\n.icon-boxtrapper-mousetrap:before{content:'\\f046'}\n.icon-braces:before{content:'\\f0b4'}\n.icon-braille0:before{content:'\\f44b'}\n.icon-braille1:before{content:'\\f44c'}\n.icon-braille2:before{content:'\\f44d'}\n.icon-braille3:before{content:'\\f44e'}\n.icon-braille4:before{content:'\\f44f'}\n.icon-braille5:before{content:'\\f450'}\n.icon-braille6:before{content:'\\f451'}\n.icon-braille7:before{content:'\\f452'}\n.icon-braille8:before{content:'\\f453'}\n.icon-braille9:before{content:'\\f454'}\n.icon-braillea:before{content:'\\f431'}\n.icon-brailleb:before{content:'\\f432'}\n.icon-braillec:before{content:'\\f433'}\n.icon-brailled:before{content:'\\f434'}\n.icon-braillee:before{content:'\\f435'}\n.icon-braillef:before{content:'\\f436'}\n.icon-brailleg:before{content:'\\f437'}\n.icon-brailleh:before{content:'\\f438'}\n.icon-braillei:before{content:'\\f439'}\n.icon-braillej:before{content:'\\f43a'}\n.icon-braillek:before{content:'\\f43b'}\n.icon-braillel:before{content:'\\f43c'}\n.icon-braillem:before{content:'\\f43d'}\n.icon-braillen:before{content:'\\f43e'}\n.icon-brailleo:before{content:'\\f43f'}\n.icon-braillep:before{content:'\\f440'}\n.icon-brailleq:before{content:'\\f441'}\n.icon-brailler:before{content:'\\f442'}\n.icon-brailles:before{content:'\\f443'}\n.icon-braillespace:before{content:'\\f455'}\n.icon-braillet:before{content:'\\f444'}\n.icon-brailleu:before{content:'\\f445'}\n.icon-braillev:before{content:'\\f446'}\n.icon-braillew:before{content:'\\f447'}\n.icon-braillex:before{content:'\\f448'}\n.icon-brailley:before{content:'\\f449'}\n.icon-braillez:before{content:'\\f44a'}\n.icon-brain:before{content:'\\f3e3'}\n.icon-bread:before{content:'\\f42f'}\n.icon-breakable:before{content:'\\f41c'}\n.icon-briefcase:before{content:'\\f25e'}\n.icon-briefcasethree:before{content:'\\f25f'}\n.icon-briefcasetwo:before{content:'\\f0a2'}\n.icon-brightness:before{content:'\\f10a'}\n.icon-brightnessfull:before{content:'\\f10b'}\n.icon-brightnesshalf:before{content:'\\f10c'}\n.icon-broom:before{content:'\\f40a'}\n.icon-browser:before{content:'\\f159'}\n.icon-brush:before{content:'\\f1b8'}\n.icon-bucket:before{content:'\\f1b5'}\n.icon-bug:before{content:'\\f0a7'}\n.icon-bullhorn:before{content:'\\f287'}\n.icon-bus:before{content:'\\f241'}\n.icon-businesscardalt:before{content:'\\f137'}\n.icon-buttona:before{content:'\\f2bf'}\n.icon-buttonb:before{content:'\\f2c0'}\n.icon-buttonx:before{content:'\\f2c1'}\n.icon-buttony:before{content:'\\f2c2'}\n.icon-cactus-desert:before{content:'\\f22c'}\n.icon-calculator:before{content:'\\f258'}\n.icon-calculatoralt:before{content:'\\f265'}\n.icon-calendar:before{content:'\\f20f'}\n.icon-calendaralt-cronjobs:before{content:'\\f0a1'}\n.icon-camera:before{content:'\\f19b'}\n.icon-candle:before{content:'\\f29a'}\n.icon-candy:before{content:'\\f42d'}\n.icon-candycane:before{content:'\\f37d'}\n.icon-cannon:before{content:'\\f401'}\n.icon-canvas:before{content:'\\f1c8'}\n.icon-canvasrulers:before{content:'\\f205'}\n.icon-capacitator:before{content:'\\f3e8'}\n.icon-capslock:before{content:'\\21ea'}\n.icon-captainamerica:before{content:'\\f341'}\n.icon-carrot:before{content:'\\f3f2'}\n.icon-cashregister:before{content:'\\f26e'}\n.icon-cassette:before{content:'\\f377'}\n.icon-cd-dvd:before{content:'\\f0cd'}\n.icon-certificate:before{content:'\\f277'}\n.icon-certificatealt:before{content:'\\f058'}\n.icon-certificatethree:before{content:'\\f059'}\n.icon-cgi:before{content:'\\f086'}\n.icon-cgicenter:before{content:'\\f079'}\n.icon-chair:before{content:'\\2441'}\n.icon-chat:before{content:'\\f162'}\n.icon-check:before{content:'\\f310'}\n.icon-checkboxalt:before{content:'\\f311'}\n.icon-checkin:before{content:'\\f223'}\n.icon-checkinalt:before{content:'\\f227'}\n.icon-chef:before{content:'\\f3ce'}\n.icon-cherry:before{content:'\\f35d'}\n.icon-chevron-down:before{content:'\\f48b'}\n.icon-chevron-left:before{content:'\\f489'}\n.icon-chevron-right:before{content:'\\f488'}\n.icon-chevron-up:before{content:'\\f48a'}\n.icon-chevrons:before{content:'\\f0b5'}\n.icon-chicken:before{content:'\\f359'}\n.icon-chocolate:before{content:'\\f367'}\n.icon-christiancross:before{content:'\\f40f'}\n.icon-christmastree:before{content:'\\f37b'}\n.icon-chrome:before{content:'\\f14e'}\n.icon-cigarette:before{content:'\\f229'}\n.icon-circle-arrow-down:before{content:'\\f475'}\n.icon-circle-arrow-left:before, .prevLink:before \n{content:'\\f472'}\n.icon-circle-arrow-right:before, .nextLink:before {content:'\\f473'}\n.icon-circle-arrow-up:before{content:'\\f474'}\n.icon-circleadd:before{content:'\\f0d1'}\n.icon-circledelete:before{content:'\\f0d2'}\n.icon-circledown:before{content:'\\f3c7'}\n.icon-circleleft:before{content:'\\f3c6'}\n.icon-circleright:before{content:'\\f3c9'}\n.icon-circleselect:before{content:'\\f0d3'}\n.icon-circleselection:before{content:'\\f1b1'}\n.icon-circleup:before{content:'\\f3c8'}\n.icon-clearformatting:before{content:'\\f1e7'}\n.icon-clipboard-paste:before{content:'\\f0cb'}\n.icon-clockalt-timealt:before{content:'\\f22b'}\n.icon-closetab:before{content:'\\f170'}\n.icon-closewindow:before{content:'\\f16e'}\n.icon-cloud:before{content:'\\f0b9'}\n.icon-clouddownload:before{content:'\\f0bb'}\n.icon-cloudhosting:before{content:'\\f007'}\n.icon-cloudsync:before{content:'\\f0bc'}\n.icon-cloudupload:before{content:'\\f0ba'}\n.icon-clubs:before{content:'\\f2f6'}\n.icon-cmd:before{content:'\\f33a'}\n.icon-cms:before{content:'\\f036'}\n.icon-cmsmadesimple:before{content:'\\f0b0'}\n.icon-codeigniter:before{content:'\\f077'}\n.icon-coffee:before{content:'\\f235'}\n.icon-coffeebean:before{content:'\\f366'}\n.icon-cog:before{content:'\\f00f'}\n.icon-colocation:before{content:'\\f024'}\n.icon-colocationalt:before{content:'\\f023'}\n.icon-colors:before{content:'\\f1e6'}\n.icon-comment:before{content:'\\f12c'}\n.icon-commentout:before{content:'\\f080'}\n.icon-commentround:before{content:'\\f155'}\n.icon-commentroundempty:before{content:'\\f156'}\n.icon-commentroundtyping:before{content:'\\f157'}\n.icon-commentroundtypingempty:before{content:'\\f158'}\n.icon-commenttyping:before{content:'\\f12d'}\n.icon-compass:before{content:'\\263c'}\n.icon-concretefive:before{content:'\\f0af'}\n.icon-contact-businesscard:before{content:'\\f040'}\n.icon-controllernes:before{content:'\\f2d2'}\n.icon-controllerps:before{content:'\\f2d1'}\n.icon-controllersnes:before{content:'\\f2d3'}\n.icon-controlpanel:before{content:'\\f008'}\n.icon-controlpanelalt:before{content:'\\f009'}\n.icon-cooling:before{content:'\\f00a'}\n.icon-coppermine:before{content:'\\f0a4'}\n.icon-copy:before{content:'\\f0c9'}\n.icon-copyright:before{content:'\\00a9'}\n.icon-coupon:before{content:'\\f254'}\n.icon-cpanel:before{content:'\\f072'}\n.icon-cplusplus:before{content:'\\f0b1'}\n.icon-cpu-processor:before{content:'\\f002'}\n.icon-cpualt-processoralt:before{content:'\\f003'}\n.icon-crayon:before{content:'\\f383'}\n.icon-createfile:before{content:'\\f0c6'}\n.icon-createfolder:before{content:'\\f0da'}\n.icon-creativecommons:before{content:'\\f1fc'}\n.icon-creditcard:before{content:'\\f279'}\n.icon-cricket:before{content:'\\f418'}\n.icon-croisant:before{content:'\\f29f'}\n.icon-crop:before{content:'\\f1af'}\n.icon-crown:before{content:'\\f28f'}\n.icon-csharp:before{content:'\\f0b2'}\n.icon-cssthree:before{content:'\\f06a'}\n.icon-cup-coffeealt:before{content:'\\f24b'}\n.icon-cupcake:before{content:'\\f35b'}\n.icon-curling:before{content:'\\f3d7'}\n.icon-cursor:before{content:'\\f0dc'}\n.icon-cut-scissors:before{content:'\\f0ca'}\n.icon-dagger:before{content:'\\2020'}\n.icon-danger:before{content:'\\f415'}\n.icon-dart:before{content:'\\f3d4'}\n.icon-darthvader:before{content:'\\f34a'}\n.icon-database:before{content:'\\f00b'}\n.icon-databaseadd:before{content:'\\f00c'}\n.icon-databasedelete:before{content:'\\f00d'}\n.icon-davidstar:before{content:'\\f40e'}\n.icon-dcsource:before{content:'\\f3e9'}\n.icon-dedicatedserver:before{content:'\\f00e'}\n.icon-deletefile:before{content:'\\f0c7'}\n.icon-deletefolder:before{content:'\\f0db'}\n.icon-delicious:before{content:'\\f152'}\n.icon-designcontest:before{content:'\\f351'}\n.icon-desklamp:before{content:'\\f412'}\n.icon-dialpad:before{content:'\\f399'}\n.icon-diamond:before{content:'\\2666'}\n.icon-diamonds:before{content:'\\f2f7'}\n.icon-die-dice:before{content:'\\f2d8'}\n.icon-diefive:before{content:'\\f3fb'}\n.icon-diefour:before{content:'\\f3fa'}\n.icon-dieone:before{content:'\\f3f7'}\n.icon-diesix:before{content:'\\f3fc'}\n.icon-diethree:before{content:'\\f3f9'}\n.icon-dietwo:before{content:'\\f3f8'}\n.icon-diode:before{content:'\\f3e7'}\n.icon-director:before{content:'\\f2ae'}\n.icon-diskspace:before{content:'\\f096'}\n.icon-distributehorizontalcenters:before{content:'\\f1dc'}\n.icon-distributeverticalcenters:before{content:'\\f1db'}\n.icon-divide:before{content:'\\00f7'}\n.icon-dna:before{content:'\\f409'}\n.icon-dnszone:before{content:'\\f07f'}\n.icon-document:before{content:'\\f0c2'}\n.icon-doghouse:before{content:'\\f38f'}\n.icon-dollar:before{content:'\\24'}\n.icon-dollaralt:before{content:'\\f259'}\n.icon-dolphinsoftware:before{content:'\\f064'}\n.icon-domain:before{content:'\\f01d'}\n.icon-domainaddon:before{content:'\\f053'}\n.icon-domino:before{content:'\\f3d5'}\n.icon-donut:before{content:'\\f3ca'}\n.icon-downleft:before{content:'\\f2ff'}\n.icon-download:before{content:'\\f47b'}\n.icon-download-alt:before{content:'\\f11a'}\n.icon-downright:before{content:'\\f300'}\n.icon-draft:before{content:'\\f172'}\n.icon-dreamweaver:before{content:'\\f1d0'}\n.icon-dribbble:before{content:'\\f14c'}\n.icon-dropmenu:before{content:'\\f0a5'}\n.icon-drupal:before{content:'\\f075'}\n.icon-drwho:before{content:'\\f3c0'}\n.icon-edit:before{content:'\\f47c'}\n.icon-editalt:before{content:'\\f0f2'}\n.icon-egg:before{content:'\\f407'}\n.icon-eightball:before{content:'\\f36e'}\n.icon-eject:before{content:'\\f199'}\n.icon-elipse:before{content:'\\f1bc'}\n.icon-emailalt:before{content:'\\f136'}\n.icon-emailexport:before{content:'\\f176'}\n.icon-emailforward:before{content:'\\f175'}\n.icon-emailforwarders:before{content:'\\f049'}\n.icon-emailimport:before{content:'\\f177'}\n.icon-emailrefresh:before{content:'\\f174'}\n.icon-emailtrace:before{content:'\\f091'}\n.icon-emergency:before{content:'\\f246'}\n.icon-emptycart:before{content:'\\f395'}\n.icon-enter:before{content:'\\f323'}\n.icon-envelope:before{content:'\\f028'}\n.icon-equalizer:before{content:'\\f18e'}\n.icon-equalizeralt:before{content:'\\f18f'}\n.icon-equals:before{content:'\\f30c'}\n.icon-eraser:before{content:'\\f1f1'}\n.icon-erroralt:before{content:'\\f05a'}\n.icon-euro:before{content:'\\20ac'}\n.icon-euroalt:before{content:'\\f25a'}\n.icon-evernote:before{content:'\\f17c'}\n.icon-exchange-currency:before{content:'\\f26b'}\n.icon-exclamation-sign:before{content:'\\f04a'}\n.icon-excludeshape:before{content:'\\f200'}\n.icon-exit:before{content:'\\f324'}\n.icon-explorerwindow:before{content:'\\f0d9'}\n.icon-exportfile:before{content:'\\f32f'}\n.icon-exposure:before{content:'\\f1de'}\n.icon-extinguisher:before{content:'\\f2b7'}\n.icon-eye-close:before{content:'\\f481'}\n.icon-eye-open:before{content:'\\f2b5'}\n.icon-eye-view:before{content:'\\f280'}\n.icon-eyedropper:before{content:'\\f1ad'}\n.icon-facebook:before{content:'\\f140'}\n.icon-facebookalt:before{content:'\\f14b'}\n.icon-facetime-video:before{content:'\\f19c'}\n.icon-factory:before{content:'\\f27a'}\n.icon-fantastico:before{content:'\\f0ae'}\n.icon-faq:before{content:'\\f099'}\n.icon-fast-backward:before{content:'\\f47e'}\n.icon-fast-forward:before{content:'\\f47f'}\n.icon-fastdown:before{content:'\\f31d'}\n.icon-fastleft:before{content:'\\f31a'}\n.icon-fastright:before{content:'\\f31b'}\n.icon-fastup:before{content:'\\f31c'}\n.icon-favoritefile:before{content:'\\f381'}\n.icon-favoritefolder:before{content:'\\f382'}\n.icon-featheralt-write:before{content:'\\f1c5'}\n.icon-fedora:before{content:'\\f3f1'}\n.icon-fence:before{content:'\\f2af'}\n.icon-file:before{content:'\\f0d6'}\n.icon-film:before{content:'\\f19d'}\n.icon-filmstrip:before{content:'\\f3ed'}\n.icon-filter:before{content:'\\f05c'}\n.icon-finder:before{content:'\\f398'}\n.icon-fire:before{content:'\\f27f'}\n.icon-firefox:before{content:'\\f420'}\n.icon-firewall:before{content:'\\f021'}\n.icon-firewire:before{content:'\\f0fc'}\n.icon-firstaid:before{content:'\\f2ba'}\n.icon-fish:before{content:'\\f35a'}\n.icon-fishbone:before{content:'\\f42b'}\n.icon-flag:before{content:'\\f487'}\n.icon-flagalt:before{content:'\\f232'}\n.icon-flagtriangle:before{content:'\\f20b'}\n.icon-flash:before{content:'\\f1cf'}\n.icon-flashlight:before{content:'\\f299'}\n.icon-flashplayer:before{content:'\\f070'}\n.icon-flaskfull:before{content:'\\f27e'}\n.icon-flickr:before{content:'\\f146'}\n.icon-flower:before{content:'\\f2a5'}\n.icon-flowernew:before{content:'\\f3a8'}\n.icon-folder-close:before{content:'\\f094'}\n.icon-folder-open:before{content:'\\f483'}\n.icon-foldertree:before{content:'\\f0f0'}\n.icon-font:before{content:'\\f1ae'}\n.icon-foodtray:before{content:'\\f3d0'}\n.icon-football-soccer:before{content:'\\f2eb'}\n.icon-forbiddenalt:before{content:'\\f314'}\n.icon-forest-tree:before{content:'\\f217'}\n.icon-forestalt-treealt:before{content:'\\f21c'}\n.icon-fork:before{content:'\\22d4'}\n.icon-forklift:before{content:'\\f29b'}\n.icon-form:before{content:'\\f08c'}\n.icon-forrst:before{content:'\\f14d'}\n.icon-fort:before{content:'\\f400'}\n.icon-forward:before{content:'\\f182'}\n.icon-fourohfour:before{content:'\\f09d'}\n.icon-foursquare:before{content:'\\f42a'}\n.icon-freeway:before{content:'\\f24a'}\n.icon-fridge:before{content:'\\f40d'}\n.icon-fries:before{content:'\\f36a'}\n.icon-ftp:before{content:'\\f029'}\n.icon-ftpaccounts:before{content:'\\f07b'}\n.icon-ftpsession:before{content:'\\f07c'}\n.icon-fullscreen:before{content:'\\f485'}\n.icon-gameboy:before{content:'\\f403'}\n.icon-gamecursor:before{content:'\\f2d0'}\n.icon-gasstation:before{content:'\\f216'}\n.icon-gearfour:before{content:'\\f3a7'}\n.icon-ghost:before{content:'\\f2da'}\n.icon-gift:before{content:'\\f260'}\n.icon-github:before{content:'\\f081'}\n.icon-glass:before{content:'\\f236'}\n.icon-glasses:before{content:'\\f295'}\n.icon-glassesalt:before{content:'\\f39d'}\n.icon-globe:before{content:'\\f01b'}\n.icon-globealt:before{content:'\\f36c'}\n.icon-glue:before{content:'\\f36d'}\n.icon-gmail:before{content:'\\f150'}\n.icon-golf:before{content:'\\f2f1'}\n.icon-googledrive:before{content:'\\f163'}\n.icon-googleplus:before{content:'\\f165'}\n.icon-googlewallet:before{content:'\\f270'}\n.icon-gpsoff-gps:before{content:'\\f21e'}\n.icon-gpson:before{content:'\\f21f'}\n.icon-gpu-graphicscard:before{content:'\\f108'}\n.icon-gradient:before{content:'\\2207'}\n.icon-grails:before{content:'\\f085'}\n.icon-greenlantern:before{content:'\\f340'}\n.icon-greenlightbulb:before{content:'\\f406'}\n.icon-grooveshark:before{content:'\\f3a2'}\n.icon-groups-friends:before{content:'\\f134'}\n.icon-guitar:before{content:'\\f19a'}\n.icon-halflife:before{content:'\\f3ba'}\n.icon-halo:before{content:'\\f3bb'}\n.icon-hamburger:before{content:'\\f2b3'}\n.icon-hammer:before{content:'\\f291'}\n.icon-hand-down:before{content:'\\f387'}\n.icon-hand-left:before{content:'\\f389'}\n.icon-hand-right:before{content:'\\f388'}\n.icon-hand-up:before{content:'\\f0dd'}\n.icon-handcuffs:before{content:'\\f393'}\n.icon-handdrag:before{content:'\\f0de'}\n.icon-handtwofingers:before{content:'\\f0df'}\n.icon-hanger:before{content:'\\f2ab'}\n.icon-happy:before{content:'\\f13c'}\n.icon-harrypotter:before{content:'\\f38b'}\n.icon-hdd:before{content:'\\f02a'}\n.icon-hdtv:before{content:'\\f1a0'}\n.icon-headphones:before{content:'\\f180'}\n.icon-headphonesalt:before{content:'\\f1a3'}\n.icon-heart:before{content:'\\f131'}\n.icon-heartempty-love:before{content:'\\f132'}\n.icon-hearts:before{content:'\\f2f4'}\n.icon-helicopter:before{content:'\\f3e4'}\n.icon-hexagon-polygon:before{content:'\\f1be'}\n.icon-hockey:before{content:'\\f3d9'}\n.icon-home:before{content:'\\21b8'}\n.icon-homealt:before{content:'\\f02b'}\n.icon-hospital:before{content:'\\f247'}\n.icon-hotdog:before{content:'\\f3cc'}\n.icon-hotlinkprotection:before{content:'\\f050'}\n.icon-hourglassalt:before{content:'\\f122'}\n.icon-html:before{content:'\\f068'}\n.icon-htmlfive:before{content:'\\f069'}\n.icon-hydrant:before{content:'\\f3ff'}\n.icon-icecream:before{content:'\\f2a4'}\n.icon-icecreamalt:before{content:'\\f289'}\n.icon-illustrator:before{content:'\\f1ce'}\n.icon-imac:before{content:'\\f0fb'}\n.icon-images-gallery:before{content:'\\f09f'}\n.icon-importcontacts:before{content:'\\f092'}\n.icon-importfile:before{content:'\\f32e'}\n.icon-inbox:before{content:'\\f17a'}\n.icon-inboxalt:before{content:'\\f178'}\n.icon-incomingcall:before{content:'\\f15d'}\n.icon-indent-left:before{content:'\\f1f2'}\n.icon-indent-right:before{content:'\\f1f3'}\n.icon-indexmanager:before{content:'\\f09e'}\n.icon-infinity:before{content:'\\221e'}\n.icon-info-sign:before{content:'\\f315'}\n.icon-infographic:before{content:'\\f336'}\n.icon-ink:before{content:'\\f3f6'}\n.icon-inkpen:before{content:'\\f1ac'}\n.icon-insertbarchart:before{content:'\\f1e5'}\n.icon-insertpicture:before{content:'\\f1e0'}\n.icon-insertpicturecenter:before{content:'\\f1e3'}\n.icon-insertpictureleft:before{content:'\\f1e1'}\n.icon-insertpictureright:before{content:'\\f1e2'}\n.icon-insertpiechart:before{content:'\\f1e4'}\n.icon-instagram:before{content:'\\f14a'}\n.icon-install:before{content:'\\f128'}\n.icon-intel:before{content:'\\f01f'}\n.icon-intersection:before{content:'\\2229'}\n.icon-intersectshape:before{content:'\\f1ff'}\n.icon-invert:before{content:'\\f1df'}\n.icon-invoice:before{content:'\\f3e5'}\n.icon-ipcontrol:before{content:'\\f08b'}\n.icon-iphone:before{content:'\\f0e6'}\n.icon-ipod:before{content:'\\f190'}\n.icon-ironman:before{content:'\\f349'}\n.icon-islam:before{content:'\\f410'}\n.icon-island:before{content:'\\f392'}\n.icon-italic:before{content:'\\f1f5'}\n.icon-jar:before{content:'\\f2b6'}\n.icon-jason:before{content:'\\f38c'}\n.icon-java:before{content:'\\f083'}\n.icon-joomla:before{content:'\\f073'}\n.icon-joystickarcade:before{content:'\\f2d4'}\n.icon-joystickatari:before{content:'\\f2d5'}\n.icon-jquery:before{content:'\\f06b'}\n.icon-jqueryui:before{content:'\\f06c'}\n.icon-kerning:before{content:'\\f1e9'}\n.icon-key:before{content:'\\f093'}\n.icon-keyboard:before{content:'\\f119'}\n.icon-keyboardalt:before{content:'\\f105'}\n.icon-keyboarddelete:before{content:'\\f3a6'}\n.icon-kidney:before{content:'\\f3e0'}\n.icon-king:before{content:'\\f2fc'}\n.icon-knife:before{content:'\\f214'}\n.icon-knight:before{content:'\\f2fb'}\n.icon-knob:before{content:'\\f376'}\n.icon-lab-flask:before{content:'\\f27d'}\n.icon-lamp:before{content:'\\f2b1'}\n.icon-lan:before{content:'\\f0ee'}\n.icon-language:before{content:'\\f042'}\n.icon-laptop:before{content:'\\f0d8'}\n.icon-lasso:before{content:'\\f396'}\n.icon-lastfm:before{content:'\\f3a3'}\n.icon-laugh:before{content:'\\f13f'}\n.icon-law:before{content:'\\f263'}\n.icon-layers:before{content:'\\f1ca'}\n.icon-layersalt:before{content:'\\f1cb'}\n.icon-leaf:before{content:'\\f039'}\n.icon-leechprotect:before{content:'\\f07e'}\n.icon-legacyfilemanager:before{content:'\\f095'}\n.icon-lego:before{content:'\\f370'}\n.icon-lifeempty:before{content:'\\f2e1'}\n.icon-lifefull:before{content:'\\f2e3'}\n.icon-lifehacker:before{content:'\\f380'}\n.icon-lifehalf:before{content:'\\f2e2'}\n.icon-lifepreserver:before{content:'\\f015'}\n.icon-lightbulb-idea:before{content:'\\f338'}\n.icon-lighthouse:before{content:'\\f3e6'}\n.icon-lightning:before{content:'\\f231'}\n.icon-lightningalt:before{content:'\\f2a8'}\n.icon-line:before{content:'\\f1bf'}\n.icon-lineheight:before{content:'\\f1c0'}\n.icon-link:before{content:'\\f022'}\n.icon-linkalt:before{content:'\\f333'}\n.icon-linkedin:before{content:'\\f166'}\n.icon-linux:before{content:'\\f01a'}\n.icon-list:before{content:'\\f111'}\n.icon-list-alt:before{content:'\\f480'}\n.icon-liver:before{content:'\\f3e2'}\n.icon-loading-hourglass:before{content:'\\f123'}\n.icon-loadingalt:before{content:'\\f339'}\n.icon-lock:before{content:'\\f0be'}\n.icon-lockalt-keyhole:before{content:'\\f0eb'}\n.icon-lollypop:before{content:'\\f3ee'}\n.icon-lungs:before{content:'\\f3df'}\n.icon-macpro:before{content:'\\f3a5'}\n.icon-macro-plant:before{content:'\\f1c6'}\n.icon-magazine:before{content:'\\f1ec'}\n.icon-magento:before{content:'\\f06e'}\n.icon-magnet:before{content:'\\f281'}\n.icon-mailbox:before{content:'\\f044'}\n.icon-mailinglists:before{content:'\\f090'}\n.icon-man-male:before{content:'\\f2a1'}\n.icon-managedhosting:before{content:'\\f038'}\n.icon-map:before{content:'\\f209'}\n.icon-map-marker:before{content:'\\f220'}\n.icon-marker:before{content:'\\f204'}\n.icon-marvin:before{content:'\\f3dd'}\n.icon-mastercard:before{content:'\\f266'}\n.icon-maximize:before{content:'\\f30f'}\n.icon-medal:before{content:'\\f2e5'}\n.icon-medalbronze:before{content:'\\f2e8'}\n.icon-medalgold:before{content:'\\f2e6'}\n.icon-medalsilver:before{content:'\\f2e7'}\n.icon-mediarepeat:before{content:'\\f187'}\n.icon-men:before{content:'\\f24c'}\n.icon-menu:before{content:'\\f127'}\n.icon-merge:before{content:'\\f334'}\n.icon-mergecells:before{content:'\\f327'}\n.icon-mergeshapes:before{content:'\\f201'}\n.icon-metro-subway:before{content:'\\f24f'}\n.icon-metronome:before{content:'\\f374'}\n.icon-mickeymouse:before{content:'\\f37a'}\n.icon-microphone:before{content:'\\f191'}\n.icon-microscope:before{content:'\\f283'}\n.icon-microsd:before{content:'\\f107'}\n.icon-microwave:before{content:'\\f42e'}\n.icon-mimetype:before{content:'\\f057'}\n.icon-minimize:before{content:'\\f30e'}\n.icon-minus:before{content:'\\2212'}\n.icon-minus-sign:before{content:'\\f477'}\n.icon-missedcall:before{content:'\\f15c'}\n.icon-mobile:before{content:'\\f0e8'}\n.icon-moleskine:before{content:'\\f1f0'}\n.icon-money-cash:before{content:'\\f27b'}\n.icon-moneybag:before{content:'\\f271'}\n.icon-monitor:before{content:'\\f0d5'}\n.icon-monstersinc:before{content:'\\f3bd'}\n.icon-moon-night:before{content:'\\f207'}\n.icon-mouse:before{content:'\\f0d4'}\n.icon-mousealt:before{content:'\\f126'}\n.icon-move:before{content:'\\f322'}\n.icon-movieclapper:before{content:'\\f193'}\n.icon-moviereel:before{content:'\\f17f'}\n.icon-muffin:before{content:'\\f363'}\n.icon-mug:before{content:'\\f24e'}\n.icon-mushroom:before{content:'\\f35e'}\n.icon-music:before{content:'\\f181'}\n.icon-musicalt:before{content:'\\f18d'}\n.icon-mutealt:before{content:'\\f0e5'}\n.icon-mxentry:before{content:'\\f07a'}\n.icon-mybb:before{content:'\\f065'}\n.icon-myspace:before{content:'\\f153'}\n.icon-mysql-dolphin:before{content:'\\f076'}\n.icon-nail:before{content:'\\f428'}\n.icon-navigation:before{content:'\\f23a'}\n.icon-network:before{content:'\\f0a6'}\n.icon-networksignal:before{content:'\\f3a9'}\n.icon-news:before{content:'\\f256'}\n.icon-newtab:before{content:'\\f16f'}\n.icon-newwindow:before{content:'\\f16d'}\n.icon-next:before{content:'\\f18a'}\n.icon-nexus:before{content:'\\f0e7'}\n.icon-nintendods:before{content:'\\f404'}\n.icon-nodejs:before{content:'\\f084'}\n.icon-notes:before{content:'\\f0d7'}\n.icon-notificationbottom:before{content:'\\f144'}\n.icon-notificationtop:before{content:'\\f145'}\n.icon-nut:before{content:'\\f427'}\n.icon-off:before{content:'\\f11d'}\n.icon-office-building:before{content:'\\f245'}\n.icon-officechair:before{content:'\\f26d'}\n.icon-ok:before{content:'\\2713'}\n.icon-ok-circle:before{content:'\\f471'}\n.icon-ok-sign:before{content:'\\f479'}\n.icon-oneup:before{content:'\\f3b7'}\n.icon-oneupalt:before{content:'\\f3b6'}\n.icon-opencart:before{content:'\\f060'}\n.icon-opennewwindow:before{content:'\\f332'}\n.icon-orange:before{content:'\\f29e'}\n.icon-outbox:before{content:'\\f179'}\n.icon-outgoingcall:before{content:'\\f15e'}\n.icon-oxwall:before{content:'\\f06d'}\n.icon-pacman:before{content:'\\f2db'}\n.icon-pageback:before{content:'\\f31e'}\n.icon-pagebreak:before{content:'\\f1cc'}\n.icon-pageforward:before{content:'\\f31f'}\n.icon-pagesetup:before{content:'\\f331'}\n.icon-paintbrush:before{content:'\\f1e8'}\n.icon-paintroll:before{content:'\\f1fa'}\n.icon-palette-painting:before{content:'\\f1b9'}\n.icon-paperclip:before{content:'\\f284'}\n.icon-paperclipalt:before{content:'\\f285'}\n.icon-paperclipvertical:before{content:'\\f286'}\n.icon-paperplane:before{content:'\\f296'}\n.icon-parentheses:before{content:'\\f3c4'}\n.icon-parkeddomain:before{content:'\\f055'}\n.icon-password:before{content:'\\f03e'}\n.icon-passwordalt:before{content:'\\f03f'}\n.icon-pasta:before{content:'\\f408'}\n.icon-patch:before{content:'\\f2a3'}\n.icon-path:before{content:'\\f169'}\n.icon-pause:before{content:'\\f186'}\n.icon-paw-pet:before{content:'\\f29d'}\n.icon-pawn:before{content:'\\f2f8'}\n.icon-paypal:before{content:'\\f267'}\n.icon-peace:before{content:'\\f2a7'}\n.icon-pen:before{content:'\\f1ee'}\n.icon-pencil:before{content:'\\f1b7'}\n.icon-pepperoni:before{content:'\\f364'}\n.icon-percent:before{content:'\\25'}\n.icon-perl-camel:before{content:'\\f0b6'}\n.icon-perlalt:before{content:'\\f0b7'}\n.icon-phone-call:before{content:'\\f14f'}\n.icon-phonealt:before{content:'\\f15b'}\n.icon-phonebook:before{content:'\\f149'}\n.icon-phonebookalt:before{content:'\\f135'}\n.icon-phonemic:before{content:'\\f391'}\n.icon-phoneold:before{content:'\\f148'}\n.icon-photoshop:before{content:'\\f1cd'}\n.icon-php:before{content:'\\f09c'}\n.icon-phpbb:before{content:'\\f063'}\n.icon-phppear:before{content:'\\f09b'}\n.icon-piano:before{content:'\\f19e'}\n.icon-picture:before{content:'\\22b7'}\n.icon-pictureframe:before{content:'\\f41e'}\n.icon-piggybank:before{content:'\\f257'}\n.icon-pigpena:before{content:'\\f456'}\n.icon-pigpenb:before{content:'\\f457'}\n.icon-pigpenc:before{content:'\\f458'}\n.icon-pigpend:before{content:'\\f459'}\n.icon-pigpene:before{content:'\\f45a'}\n.icon-pigpenf:before{content:'\\f45b'}\n.icon-pigpeng:before{content:'\\f45c'}\n.icon-pigpenh:before{content:'\\f45d'}\n.icon-pigpeni:before{content:'\\f45e'}\n.icon-pigpenj:before{content:'\\f45f'}\n.icon-pigpenk:before{content:'\\f460'}\n.icon-pigpenl:before{content:'\\f461'}\n.icon-pigpenm:before{content:'\\f462'}\n.icon-pigpenn:before{content:'\\f463'}\n.icon-pigpeno:before{content:'\\f464'}\n.icon-pigpenp:before{content:'\\f465'}\n.icon-pigpenq:before{content:'\\f466'}\n.icon-pigpenr:before{content:'\\f467'}\n.icon-pigpens:before{content:'\\f468'}\n.icon-pigpent:before{content:'\\f469'}\n.icon-pigpenu:before{content:'\\f46a'}\n.icon-pigpenv:before{content:'\\f46b'}\n.icon-pigpenw:before{content:'\\f46c'}\n.icon-pigpenx:before{content:'\\f46d'}\n.icon-pigpeny:before{content:'\\f46e'}\n.icon-pigpenz:before{content:'\\f46f'}\n.icon-pilcrow:before{content:'\\00b6'}\n.icon-pill-antivirusalt:before{content:'\\f0aa'}\n.icon-pin:before{content:'\\f20a'}\n.icon-pipe:before{content:'\\01c0'}\n.icon-piwigo:before{content:'\\f0ad'}\n.icon-pizza:before{content:'\\f35c'}\n.icon-placeadd:before{content:'\\f221'}\n.icon-placealt:before{content:'\\f224'}\n.icon-placealtadd:before{content:'\\f225'}\n.icon-placealtdelete:before{content:'\\f226'}\n.icon-placedelete:before{content:'\\f222'}\n.icon-placeios:before{content:'\\f20c'}\n.icon-plane:before{content:'\\f23e'}\n.icon-plaque:before{content:'\\f2b8'}\n.icon-play:before{content:'\\f184'}\n.icon-play-circle:before{content:'\\f17e'}\n.icon-playstore:before{content:'\\f255'}\n.icon-playvideo:before{content:'\\f03d'}\n.icon-plug:before{content:'\\f0ea'}\n.icon-pluginalt:before{content:'\\f098'}\n.icon-plus:before{content:'\\002b'}\n.icon-plus-sign:before{content:'\\f476'}\n.icon-pocket:before{content:'\\f16b'}\n.icon-podcast:before{content:'\\f1a2'}\n.icon-podium-winner:before{content:'\\f2d6'}\n.icon-pokemon:before{content:'\\f354'}\n.icon-police:before{content:'\\f2aa'}\n.icon-polygonlasso:before{content:'\\f397'}\n.icon-post:before{content:'\\f12e'}\n.icon-postalt:before{content:'\\f130'}\n.icon-pound:before{content:'\\f25b'}\n.icon-poundalt:before{content:'\\f25c'}\n.icon-powerjack:before{content:'\\f0fd'}\n.icon-powerplug:before{content:'\\f0ed'}\n.icon-powerplugeu:before{content:'\\f28b'}\n.icon-powerplugus:before{content:'\\f28c'}\n.icon-presentation:before{content:'\\f0c4'}\n.icon-prestashop:before{content:'\\f061'}\n.icon-pretzel:before{content:'\\f3cf'}\n.icon-preview:before{content:'\\f330'}\n.icon-previous:before{content:'\\f18b'}\n.icon-print:before{content:'\\f125'}\n.icon-protecteddirectory:before{content:'\\f04d'}\n.icon-pscircle:before{content:'\\f2bb'}\n.icon-pscursor:before{content:'\\f2c3'}\n.icon-psdown:before{content:'\\f2c6'}\n.icon-psleft:before{content:'\\f2c7'}\n.icon-pslone:before{content:'\\f2cc'}\n.icon-psltwo:before{content:'\\f2cd'}\n.icon-psright:before{content:'\\f2c5'}\n.icon-psrone:before{content:'\\f2ce'}\n.icon-psrtwo:before{content:'\\f2cf'}\n.icon-pssquare:before{content:'\\f2bc'}\n.icon-pstriangle:before{content:'\\f2bd'}\n.icon-psup:before{content:'\\f2c4'}\n.icon-psx:before{content:'\\f2be'}\n.icon-pull:before{content:'\\f089'}\n.icon-punisher:before{content:'\\f343'}\n.icon-push:before{content:'\\f088'}\n.icon-puzzle-plugin:before{content:'\\f0a0'}\n.icon-python:before{content:'\\f071'}\n.icon-qrcode:before{content:'\\f275'}\n.icon-quake:before{content:'\\f355'}\n.icon-queen:before{content:'\\f2fd'}\n.icon-query:before{content:'\\f08a'}\n.icon-question-sign:before{content:'\\f0a3'}\n.icon-quote:before{content:'\\f12f'}\n.icon-quotedown:before{content:'\\f329'}\n.icon-quoteup:before{content:'\\f328'}\n.icon-raceflag:before{content:'\\f38e'}\n.icon-racquet:before{content:'\\f2f2'}\n.icon-radio:before{content:'\\f1a1'}\n.icon-radioactive:before{content:'\\f282'}\n.icon-radiobutton:before{content:'\\f312'}\n.icon-railroad:before{content:'\\f248'}\n.icon-rain:before{content:'\\f22f'}\n.icon-ram:before{content:'\\f02c'}\n.icon-random:before{content:'\\f188'}\n.icon-rar:before{content:'\\f117'}\n.icon-raspberry:before{content:'\\f368'}\n.icon-raspberrypi:before{content:'\\f369'}\n.icon-rawaccesslogs:before{content:'\\f0c1'}\n.icon-razor:before{content:'\\f416'}\n.icon-reademail:before{content:'\\f173'}\n.icon-record:before{content:'\\f189'}\n.icon-rectangle:before{content:'\\25ad'}\n.icon-recycle:before{content:'\\f297'}\n.icon-reddit:before{content:'\\f154'}\n.icon-redirect:before{content:'\\f054'}\n.icon-refresh:before{content:'\\f078'}\n.icon-reliability:before{content:'\\f016'}\n.icon-remote:before{content:'\\f298'}\n.icon-remove:before{content:'\\00d7'}\n.icon-remove-circle:before{content:'\\f470'}\n.icon-remove-sign:before{content:'\\f478'}\n.icon-removefriend:before{content:'\\f3db'}\n.icon-repeat:before{content:'\\f32b'}\n.icon-repeatone:before{content:'\\f196'}\n.icon-resellerhosting:before{content:'\\f03a'}\n.icon-residentevil:before{content:'\\f350'}\n.icon-resistor:before{content:'\\f3eb'}\n.icon-resize:before{content:'\\f1ed'}\n.icon-resize-full:before{content:'\\f325'}\n.icon-resize-horizontal:before{content:'\\f318'}\n.icon-resize-small:before{content:'\\f326'}\n.icon-resize-vertical:before{content:'\\f319'}\n.icon-restart:before{content:'\\f11f'}\n.icon-restaurantmenu:before{content:'\\f362'}\n.icon-restore:before{content:'\\f30d'}\n.icon-restricted:before{content:'\\f0ab'}\n.icon-retweet:before{content:'\\f486'}\n.icon-rim:before{content:'\\f36f'}\n.icon-ring:before{content:'\\02da'}\n.icon-road:before{content:'\\f249'}\n.icon-roadsign-roadsignright:before{content:'\\f21b'}\n.icon-roadsignleft:before{content:'\\f240'}\n.icon-robocop:before{content:'\\f357'}\n.icon-rocket-launch:before{content:'\\f29c'}\n.icon-rook:before{content:'\\f2fa'}\n.icon-root:before{content:'\\f33c'}\n.icon-rorschach:before{content:'\\f358'}\n.icon-rotateclockwise:before{content:'\\f202'}\n.icon-rotatecounterclockwise:before{content:'\\f203'}\n.icon-roundrectangle:before{content:'\\f1bd'}\n.icon-route:before{content:'\\f402'}\n.icon-router:before{content:'\\f0e9'}\n.icon-rss:before{content:'\\f17b'}\n.icon-rubberstamp:before{content:'\\f274'}\n.icon-ruby:before{content:'\\f067'}\n.icon-ruler:before{content:'\\f1ef'}\n.icon-sad:before{content:'\\f13d'}\n.icon-safetypin:before{content:'\\f417'}\n.icon-satellite:before{content:'\\f38a'}\n.icon-satellitedish-remotemysql:before{content:'\\f0c0'}\n.icon-save-floppy:before{content:'\\f0c8'}\n.icon-scales:before{content:'\\f3fd'}\n.icon-science-atom:before{content:'\\f2b0'}\n.icon-scope-scan:before{content:'\\f212'}\n.icon-scopealt:before{content:'\\f237'}\n.icon-screenshot:before{content:'\\f109'}\n.icon-screw:before{content:'\\f426'}\n.icon-screwdriver:before{content:'\\f292'}\n.icon-screwdriveralt:before{content:'\\f293'}\n.icon-script:before{content:'\\f08d'}\n.icon-sd:before{content:'\\f106'}\n.icon-search:before{content:'\\f0c5'}\n.icon-searchdocument:before{content:'\\f419'}\n.icon-searchfolder:before{content:'\\f41a'}\n.icon-security-shield:before{content:'\\f02d'}\n.icon-securityalt-shieldalt:before{content:'\\f02e'}\n.icon-selection-rectangleselection:before{content:'\\f1b0'}\n.icon-selectionadd:before{content:'\\f1b2'}\n.icon-selectionintersect:before{content:'\\f1b4'}\n.icon-selectionremove:before{content:'\\f1b3'}\n.icon-seo:before{content:'\\f030'}\n.icon-server:before{content:'\\f026'}\n.icon-servers:before{content:'\\f027'}\n.icon-settingsandroid:before{content:'\\f309'}\n.icon-settingsfour-gearsalt:before{content:'\\f306'}\n.icon-settingsthree-gears:before{content:'\\f307'}\n.icon-settingstwo-gearalt:before, .updateLink:before{content:'\\f308'}\n.icon-shades-sunglasses:before{content:'\\f294'}\n.icon-shapes:before{content:'\\f1dd'}\n.icon-share:before{content:'\\f47d'}\n.icon-share-alt:before{content:'\\f16c'}\n.icon-sharealt:before{content:'\\f147'}\n.icon-sharedfile:before{content:'\\f0ef'}\n.icon-sharedhosting:before{content:'\\f037'}\n.icon-sharethree:before{content:'\\f414'}\n.icon-sheriff:before{content:'\\f2a9'}\n.icon-shipping:before{content:'\\f23f'}\n.icon-shopping:before{content:'\\f010'}\n.icon-shopping-cart:before{content:'\\f035'}\n.icon-shoppingbag:before{content:'\\f273'}\n.icon-shortcut:before{content:'\\f043'}\n.icon-shovel:before{content:'\\f290'}\n.icon-shredder:before{content:'\\f27c'}\n.icon-shutdown:before{content:'\\f11e'}\n.icon-sidebar:before{content:'\\f124'}\n.icon-signal:before{content:'\\f100'}\n.icon-sim:before{content:'\\f0e1'}\n.icon-simalt:before{content:'\\f121'}\n.icon-skrill:before{content:'\\f268'}\n.icon-skull:before{content:'\\f38d'}\n.icon-skype:before{content:'\\f141'}\n.icon-skypeaway:before{content:'\\f39f'}\n.icon-skypebusy:before{content:'\\f3a0'}\n.icon-skypeoffline:before{content:'\\f3a1'}\n.icon-skypeonline:before{content:'\\f39e'}\n.icon-smaller:before{content:'\\f30b'}\n.icon-smf:before{content:'\\f062'}\n.icon-smile:before{content:'\\263a'}\n.icon-snow:before{content:'\\f22e'}\n.icon-snowman:before{content:'\\f37c'}\n.icon-socialnetwork:before{content:'\\f03b'}\n.icon-software:before{content:'\\f09a'}\n.icon-sortbynameascending-atoz:before{content:'\\f1c2'}\n.icon-sortbynamedescending-ztoa:before{content:'\\f1c1'}\n.icon-sortbysizeascending:before{content:'\\f1c3'}\n.icon-sortbysizedescending:before{content:'\\f1c4'}\n.icon-soundwave:before{content:'\\f194'}\n.icon-soup:before{content:'\\f3d1'}\n.icon-spaceinvaders:before{content:'\\f352'}\n.icon-spades:before{content:'\\f2f5'}\n.icon-spam:before{content:'\\f047'}\n.icon-spamalt:before{content:'\\f048'}\n.icon-spawn:before{content:'\\f344'}\n.icon-speaker:before{content:'\\f372'}\n.icon-speed:before{content:'\\f40b'}\n.icon-spider:before{content:'\\f346'}\n.icon-spiderman:before{content:'\\f347'}\n.icon-split:before{content:'\\f335'}\n.icon-spoon:before{content:'\\f213'}\n.icon-spray:before{content:'\\f1c7'}\n.icon-spreadsheet:before{content:'\\f0c3'}\n.icon-squareapp:before{content:'\\f26f'}\n.icon-squarebrackets:before{content:'\\f0b3'}\n.icon-ssh:before{content:'\\f04e'}\n.icon-sslmanager:before{content:'\\f04f'}\n.icon-stadium:before{content:'\\f3d6'}\n.icon-stamp:before{content:'\\f242'}\n.icon-stampalt:before{content:'\\f243'}\n.icon-star:before{content:'\\f13a'}\n.icon-star-empty:before{content:'\\f13b'}\n.icon-starempty:before{content:'\\f2de'}\n.icon-starfull:before{content:'\\f2e0'}\n.icon-starhalf:before{content:'\\f2df'}\n.icon-steak:before{content:'\\f360'}\n.icon-steam:before{content:'\\f2dd'}\n.icon-step-backward:before{content:'\\f198'}\n.icon-step-forward:before{content:'\\f197'}\n.icon-sticker:before{content:'\\f3f5'}\n.icon-stiletto:before{content:'\\f429'}\n.icon-stockdown:before{content:'\\f252'}\n.icon-stocks:before{content:'\\f250'}\n.icon-stockup:before{content:'\\f251'}\n.icon-stomach:before{content:'\\f3e1'}\n.icon-stop:before{content:'\\f185'}\n.icon-stopwatch:before{content:'\\f219'}\n.icon-storage-box:before{content:'\\f011'}\n.icon-storagealt-drawer:before{content:'\\f012'}\n.icon-store:before{content:'\\f272'}\n.icon-storm:before{content:'\\f230'}\n.icon-stove:before{content:'\\f371'}\n.icon-strawberry:before{content:'\\f3f3'}\n.icon-strikethrough:before{content:'\\f1f7'}\n.icon-student-school:before{content:'\\f288'}\n.icon-stumbleupon:before{content:'\\f40c'}\n.icon-subdomain:before{content:'\\f052'}\n.icon-submarine:before{content:'\\f373'}\n.icon-subscript:before{content:'\\f1ea'}\n.icon-subtractshape:before{content:'\\f1fe'}\n.icon-sum:before{content:'\\f33b'}\n.icon-sun-day:before{content:'\\f206'}\n.icon-sunnysideup:before{content:'\\f365'}\n.icon-superman:before{content:'\\f33f'}\n.icon-superscript:before{content:'\\f1eb'}\n.icon-support:before{content:'\\f013'}\n.icon-supportalt:before{content:'\\f014'}\n.icon-switch:before{content:'\\f28a'}\n.icon-switchoff:before{content:'\\f32d'}\n.icon-switchoffalt:before{content:'\\f28e'}\n.icon-switchon:before{content:'\\f32c'}\n.icon-switchonalt:before{content:'\\f28d'}\n.icon-sword:before{content:'\\f2ed'}\n.icon-sync:before{content:'\\f0bd'}\n.icon-syncalt:before{content:'\\f11c'}\n.icon-synckeeplocal:before{content:'\\f33e'}\n.icon-synckeepserver:before{content:'\\f33d'}\n.icon-syringe-antivirus:before{content:'\\f0a9'}\n.icon-tablet:before{content:'\\f118'}\n.icon-tabletennis-pingpong:before{content:'\\f2f0'}\n.icon-taco:before{content:'\\f3cd'}\n.icon-tag:before{content:'\\f032'}\n.icon-tagalt-pricealt:before{content:'\\f264'}\n.icon-tags:before{content:'\\f482'}\n.icon-tagvertical:before{content:'\\f15f'}\n.icon-tank:before{content:'\\f423'}\n.icon-target:before{content:'\\f2a6'}\n.icon-taskmanager-logprograms:before{content:'\\f04b'}\n.icon-tasks:before{content:'\\f0e0'}\n.icon-taxi:before{content:'\\f3a4'}\n.icon-tea:before{content:'\\f3cb'}\n.icon-teapot:before{content:'\\f42c'}\n.icon-telescope:before{content:'\\f3ef'}\n.icon-temperature-thermometer:before{content:'\\f20d'}\n.icon-temperaturealt-thermometeralt:before{content:'\\f20e'}\n.icon-tennis:before{content:'\\f2ea'}\n.icon-tent-camping:before{content:'\\f215'}\n.icon-terminal:before{content:'\\f114'}\n.icon-tethering:before{content:'\\f0f1'}\n.icon-tetrisone:before{content:'\\f34b'}\n.icon-tetristhree:before{content:'\\f34d'}\n.icon-tetristwo:before{content:'\\f34c'}\n.icon-text-height:before{content:'\\f1f8'}\n.icon-text-width:before{content:'\\f1f9'}\n.icon-th:before{content:'\\f110'}\n.icon-th-large:before{content:'\\f112'}\n.icon-th-list:before{content:'\\f113'}\n.icon-theather:before{content:'\\f39c'}\n.icon-theme-style:before{content:'\\f041'}\n.icon-thissideup:before{content:'\\f41d'}\n.icon-threecolumns:before{content:'\\f1ab'}\n.icon-thumbs-down:before{content:'\\f139'}\n.icon-thumbs-up:before{content:'\\f138'}\n.icon-ticket:before{content:'\\f3dc'}\n.icon-tictactoe:before{content:'\\f39a'}\n.icon-tie-business:before{content:'\\2040'}\n.icon-time:before{content:'\\f210'}\n.icon-timeline:before{content:'\\f253'}\n.icon-tint:before{content:'\\f208'}\n.icon-toast:before{content:'\\f2ad'}\n.icon-toiletpaper:before{content:'\\f384'}\n.icon-tooth:before{content:'\\f3de'}\n.icon-toothbrush:before{content:'\\f385'}\n.icon-tophat:before{content:'\\f3f0'}\n.icon-torigate:before{content:'\\f411'}\n.icon-touchpad:before{content:'\\f115'}\n.icon-trafficlight:before{content:'\\f22a'}\n.icon-transform:before{content:'\\f1a6'}\n.icon-trash:before{content:'\\f0ce'}\n.icon-trashempty:before{content:'\\f0cf'}\n.icon-trashfull:before{content:'\\f0d0'}\n.icon-travel:before{content:'\\f422'}\n.icon-treediagram:before{content:'\\f0ec'}\n.icon-treeornament:before{content:'\\f37e'}\n.icon-triangle:before{content:'\\25b3'}\n.icon-tron:before{content:'\\f34f'}\n.icon-trophy:before{content:'\\f2d7'}\n.icon-truck:before{content:'\\f211'}\n.icon-trumpet:before{content:'\\f375'}\n.icon-tumblr:before{content:'\\f164'}\n.icon-tv:before{content:'\\f1a4'}\n.icon-twitter:before{content:'\\f16a'}\n.icon-twocolumnsleft:before{content:'\\f1a9'}\n.icon-twocolumnsleftalt:before{content:'\\f1aa'}\n.icon-twocolumnsright:before{content:'\\f1a7'}\n.icon-twocolumnsrightalt:before{content:'\\f1a8'}\n.icon-ubuntu:before{content:'\\f120'}\n.icon-umbrella:before{content:'\\f218'}\n.icon-underline:before{content:'\\f1f6'}\n.icon-undo:before{content:'\\f32a'}\n.icon-unlock:before{content:'\\f0bf'}\n.icon-upleft:before{content:'\\f302'}\n.icon-upload:before{content:'\\f47a'}\n.icon-uploadalt:before{content:'\\f11b'}\n.icon-upright:before{content:'\\f303'}\n.icon-uptime:before{content:'\\f017'}\n.icon-usb:before{content:'\\f10d'}\n.icon-usbalt:before{content:'\\f10e'}\n.icon-usbplug:before{content:'\\f10f'}\n.icon-user:before{content:'\\f133'}\n.icon-userfilter:before{content:'\\f05d'}\n.icon-usfootball:before{content:'\\f2ec'}\n.icon-value-coins:before{content:'\\f018'}\n.icon-vector:before{content:'\\f1b6'}\n.icon-vendetta:before{content:'\\f3c5'}\n.icon-video:before{content:'\\f17d'}\n.icon-viking:before{content:'\\f379'}\n.icon-vimeo:before{content:'\\f168'}\n.icon-vinyl:before{content:'\\f0cc'}\n.icon-violin:before{content:'\\f1a5'}\n.icon-virus:before{content:'\\f0a8'}\n.icon-visa:before{content:'\\f3c2'}\n.icon-visitor:before{content:'\\f097'}\n.icon-vlc-cone:before{content:'\\f192'}\n.icon-voice:before{content:'\\f18c'}\n.icon-volume-down:before{content:'\\f0e3'}\n.icon-volume-off:before{content:'\\f0e4'}\n.icon-volume-up:before{content:'\\f0e2'}\n.icon-vps:before{content:'\\f025'}\n.icon-wacom:before{content:'\\f1bb'}\n.icon-walle:before{content:'\\f3bc'}\n.icon-wallet:before{content:'\\e000'}\n.icon-warcraft:before{content:'\\f3bf'}\n.icon-warmedal:before{content:'\\f2e4'}\n.icon-warning-sign:before{content:'\\f316'}\n.icon-washer:before{content:'\\f39b'}\n.icon-watch:before{content:'\\f378'}\n.icon-watertap-plumbing:before{content:'\\f22d'}\n.icon-wave-sea:before{content:'\\f23c'}\n.icon-wavealt-seaalt:before{content:'\\f23b'}\n.icon-webcam:before{content:'\\f0fe'}\n.icon-webcamalt:before{content:'\\f129'}\n.icon-webhostinghub:before{content:'\\f031'}\n.icon-webmail:before{content:'\\f045'}\n.icon-webpage:before{content:'\\f033'}\n.icon-webplatform:before{content:'\\f3c3'}\n.icon-websitealt:before{content:'\\f01c'}\n.icon-websitebuilder:before{content:'\\f034'}\n.icon-weight:before{content:'\\f430'}\n.icon-westernunion:before{content:'\\f26a'}\n.icon-wheel:before{content:'\\f228'}\n.icon-wheelchair:before{content:'\\f3fe'}\n.icon-whistle:before{content:'\\f3d8'}\n.icon-whmcs:before{content:'\\f066'}\n.icon-wifi:before{content:'\\f0ff'}\n.icon-wind:before{content:'\\f41b'}\n.icon-windleft:before{content:'\\f424'}\n.icon-windows:before{content:'\\f019'}\n.icon-windright:before{content:'\\f425'}\n.icon-wine:before{content:'\\f238'}\n.icon-wizard:before{content:'\\f03c'}\n.icon-wizardalt:before{content:'\\f1fb'}\n.icon-wizardhat:before{content:'\\f337'}\n.icon-woman-female:before{content:'\\f2a2'}\n.icon-women:before{content:'\\f24d'}\n.icon-wordpress:before{content:'\\f074'}\n.icon-wrench:before{content:'\\f05b'}\n.icon-wrenchalt:before{content:'\\f2b2'}\n.icon-xbox:before{content:'\\f353'}\n.icon-xmen:before{content:'\\f345'}\n.icon-yahoo:before{content:'\\f151'}\n.icon-yen:before{content:'\\00a5'}\n.icon-yenalt:before{content:'\\f25d'}\n.icon-yinyang:before{content:'\\262f'}\n.icon-youtube:before{content:'\\f142'}\n.icon-zelda:before{content:'\\f3b8'}\n.icon-zikula:before{content:'\\f0ac'}\n.icon-zip:before{content:'\\f116'}\n.icon-zodiac-aquarius:before{content:'\\f3b4'}\n.icon-zodiac-aries:before{content:'\\f3aa'}\n.icon-zodiac-cancer:before{content:'\\f3ad'}\n.icon-zodiac-capricorn:before{content:'\\f3b3'}\n.icon-zodiac-gemini:before{content:'\\f3ac'}\n.icon-zodiac-leo:before{content:'\\f3ae'}\n.icon-zodiac-libra:before{content:'\\f3b0'}\n.icon-zodiac-pisces:before{content:'\\f3b5'}\n.icon-zodiac-sagitarius:before{content:'\\f3b2'}\n.icon-zodiac-scorpio:before{content:'\\f3b1'}\n.icon-zodiac-taurus:before{content:'\\f3ab'}\n.icon-zodiac-virgo:before{content:'\\f3af'}\n.icon-zoom-in:before{content:'\\f320'}\n.icon-zoom-out:before{content:'\\f321'}\n.icon-vk:before{content:'\\f34e'}\n.icon-bitcoin:before{content:'\\f584'}\n.icon-rouble:before{content:'\\f4ca'}\n.icon-phpnuke:before{content:'\\f48c'}\n.icon-modx:before{content:'\\f48d'}\n.icon-eoneohseven:before{content:'\\f48e'}\n.icon-subrion:before{content:'\\f48f'}\n.icon-typothree:before{content:'\\f490'}\n.icon-tikiwiki:before{content:'\\f491'}\n.icon-pligg:before{content:'\\f492'}\n.icon-pyrocms:before{content:'\\f493'}\n.icon-mambo:before{content:'\\f494'}\n.icon-contao:before{content:'\\f495'}\n.icon-crackedegg:before{content:'\\f496'}\n.icon-coffeecupalt:before{content:'\\f497'}\n.icon-reademailalt:before{content:'\\f498'}\n.icon-train:before{content:'\\f499'}\n.icon-shoebox:before{content:'\\f49a'}\n.icon-bathtub:before{content:'\\f49b'}\n.icon-ninegag:before{content:'\\f49c'}\n.icon-pebble:before{content:'\\f49d'}\n.icon-musicthree:before{content:'\\f49e'}\n.icon-stairsup:before{content:'\\f49f'}\n.icon-stairsdown:before{content:'\\f4a0'}\n.icon-bookalt:before{content:'\\f4a1'}\n.icon-programclose:before{content:'\\f4a2'}\n.icon-programok:before{content:'\\f4a3'}\n.icon-splitalt:before{content:'\\f4a4'}\n.icon-solarsystem:before{content:'\\f4a5'}\n.icon-honeycomb:before{content:'\\f4a6'}\n.icon-tools:before{content:'\\f4a7'}\n.icon-xoops:before{content:'\\f4a8'}\n.icon-pixie:before{content:'\\f4a9'}\n.icon-dotclear:before{content:'\\f4aa'}\n.icon-impresscms:before{content:'\\f4ab'}\n.icon-saurus:before{content:'\\f4ac'}\n.icon-impresspages:before{content:'\\f4ad'}\n.icon-monstra:before{content:'\\f4ae'}\n.icon-snews:before{content:'\\f4af'}\n.icon-jcore:before{content:'\\f4b0'}\n.icon-silverstripe:before{content:'\\f4b1'}\n.icon-btwoevolution:before{content:'\\f4b2'}\n.icon-nucleus:before{content:'\\f4b3'}\n.icon-symphony:before{content:'\\f4b5'}\n.icon-vanillacms:before{content:'\\f4b6'}\n.icon-bbpress:before{content:'\\f4b7'}\n.icon-phpbbalt:before{content:'\\f4b8'}\n.icon-chyrp:before{content:'\\f4b9'}\n.icon-pivotx:before{content:'\\f4ba'}\n.icon-pagecookery:before{content:'\\f4bb'}\n.icon-moviereelalt:before{content:'\\f4bc'}\n.icon-cassettealt:before{content:'\\f4bd'}\n.icon-photobucket:before{content:'\\f4be'}\n.icon-technorati:before{content:'\\f4bf'}\n.icon-theverge:before{content:'\\f4c0'}\n.icon-stacks:before{content:'\\f4c1'}\n.icon-dotlist:before{content:'\\f4c2'}\n.icon-numberlist:before{content:'\\f4c3'}\n.icon-indentleft:before{content:'\\f4c4'}\n.icon-indentright:before{content:'\\f4c5'}\n.icon-fblike:before{content:'\\f4c6'}\n.icon-fbdislike:before{content:'\\f4c7'}\n.icon-sale:before{content:'\\f4c8'}\n.icon-sharetronix:before{content:'\\f4c9'}\n.icon-markerdown:before{content:'\\f4cb'}\n.icon-markerup:before{content:'\\f4cc'}\n.icon-markerleft:before{content:'\\f4cd'}\n.icon-markerright:before{content:'\\f4ce'}\n.icon-bookmarkalt:before{content:'\\f4cf'}\n.icon-calendarthree:before{content:'\\f4d0'}\n.icon-wineglass:before{content:'\\f4d1'}\n.icon-slidersoff:before{content:'\\f4d2'}\n.icon-slidersmiddle:before{content:'\\f4d3'}\n.icon-slidersfull:before{content:'\\f4d4'}\n.icon-slidersdesc:before{content:'\\f4d5'}\n.icon-slidersasc:before{content:'\\f4d6'}\n.icon-slideronefull:before{content:'\\f4d7'}\n.icon-slidertwofull:before{content:'\\f4d8'}\n.icon-sliderthreefull:before{content:'\\f4d9'}\n.icon-noborders:before{content:'\\f4da'}\n.icon-bottomborder:before{content:'\\f4db'}\n.icon-topborder:before{content:'\\f4dc'}\n.icon-leftborder:before{content:'\\f4dd'}\n.icon-rightborder:before{content:'\\f4de'}\n.icon-horizontalborder:before{content:'\\f4df'}\n.icon-verticalborder:before{content:'\\f4e0'}\n.icon-outerborders:before{content:'\\f4e1'}\n.icon-innerborders:before{content:'\\f4e2'}\n.icon-fullborders:before{content:'\\f4e3'}\n.icon-networksignalalt:before{content:'\\f4e4'}\n.icon-resizeverticalalt:before{content:'\\f4e5'}\n.icon-resizehorizontalalt:before{content:'\\f4e6'}\n.icon-moneyalt:before{content:'\\f4e7'}\n.icon-fontcase:before{content:'\\f4e8'}\n.icon-playstation:before{content:'\\f4e9'}\n.icon-cube:before{content:'\\f4ea'}\n.icon-sphere:before{content:'\\f4eb'}\n.icon-ceilinglight:before{content:'\\f4ec'}\n.icon-chandelier:before{content:'\\f4ed'}\n.icon-details:before{content:'\\f4ee'}\n.icon-detailsalt:before{content:'\\f4ef'}\n.icon-bullet:before{content:'\\f4f0'}\n.icon-gun:before{content:'\\f4f1'}\n.icon-processorthree:before{content:'\\f4f2'}\n.icon-world:before{content:'\\f4f3'}\n.icon-statistics:before{content:'\\f4f4'}\n.icon-shoppingcartalt:before{content:'\\f4f5'}\n.icon-microphonealt:before{content:'\\f4f6'}\n.icon-routeralt:before{content:'\\f4f7'}\n.icon-shell:before{content:'\\f4f8'}\n.icon-squareplay:before{content:'\\f4f9'}\n.icon-squarestop:before{content:'\\f4fa'}\n.icon-squarepause:before{content:'\\f4fb'}\n.icon-squarerecord:before{content:'\\f4fc'}\n.icon-squareforward:before{content:'\\f4fd'}\n.icon-squareback:before{content:'\\f4fe'}\n.icon-squarenext:before{content:'\\f4ff'}\n.icon-squareprevious:before{content:'\\f500'}\n.icon-mega:before{content:'\\f501'}\n.icon-charliechaplin:before{content:'\\f502'}\n.icon-popcorn:before{content:'\\f503'}\n.icon-fatarrowright:before{content:'\\f504'}\n.icon-fatarrowleft:before{content:'\\f505'}\n.icon-fatarrowdown:before{content:'\\f506'}\n.icon-fatarrowup:before{content:'\\f507'}\n.icon-shirtbutton:before{content:'\\f508'}\n.icon-shirtbuttonalt:before{content:'\\f509'}\n.icon-cuckooclock:before{content:'\\f50a'}\n.icon-lens:before{content:'\\f50b'}\n.icon-voltage:before{content:'\\f50c'}\n.icon-planealt:before{content:'\\f50d'}\n.icon-busalt:before{content:'\\f50e'}\n.icon-lipstick:before{content:'\\f50f'}\n.icon-plantalt:before{content:'\\f510'}\n.icon-paperboat:before{content:'\\f511'}\n.icon-texture:before{content:'\\f512'}\n.icon-dominoone:before{content:'\\f513'}\n.icon-dominotwo:before{content:'\\f514'}\n.icon-dominothree:before{content:'\\f515'}\n.icon-dominofour:before{content:'\\f516'}\n.icon-dominofive:before{content:'\\f517'}\n.icon-dominosix:before{content:'\\f518'}\n.icon-dominoseven:before{content:'\\f519'}\n.icon-dominoeight:before{content:'\\f51a'}\n.icon-dominonine:before{content:'\\f51b'}\n.icon-connected:before{content:'\\f51c'}\n.icon-connectedpc:before{content:'\\f51d'}\n.icon-musicsheet:before{content:'\\f51e'}\n.icon-rdio:before{content:'\\f51f'}\n.icon-spotify:before{content:'\\f520'}\n.icon-deviantart:before{content:'\\f521'}\n.icon-yelp:before{content:'\\f522'}\n.icon-behance:before{content:'\\f523'}\n.icon-nfc:before{content:'\\f524'}\n.icon-earbudsalt:before{content:'\\f525'}\n.icon-earbuds:before{content:'\\f526'}\n.icon-amazon:before{content:'\\f527'}\n.icon-openid:before{content:'\\f528'}\n.icon-digg:before{content:'\\f529'}\n.icon-retweet:before{content:'\\f52a'}\n.icon-moonnew:before{content:'\\f52b'}\n.icon-moonwaxingcrescent:before{content:'\\f52c'}\n.icon-moonfirstquarter:before{content:'\\f52d'}\n.icon-moonwaxinggibbous:before{content:'\\f52e'}\n.icon-moonfull:before{content:'\\f52f'}\n.icon-moonwaninggibbous:before{content:'\\f530'}\n.icon-moonthirdquarter:before{content:'\\f531'}\n.icon-moonwaningcrescent:before{content:'\\f532'}\n.icon-planet:before{content:'\\f533'}\n.icon-sodacup:before{content:'\\f534'}\n.icon-cocktail:before{content:'\\f535'}\n.icon-church:before{content:'\\f536'}\n.icon-mosque:before{content:'\\f537'}\n.icon-comedy:before{content:'\\f538'}\n.icon-tragedy:before{content:'\\f539'}\n.icon-bacon:before{content:'\\f53a'}\n.icon-trailor:before{content:'\\f53b'}\n.icon-tshirt:before{content:'\\f53c'}\n.icon-design:before{content:'\\f53d'}\n.icon-spiderweb:before{content:'\\f53e'}\n.icon-fireplace:before{content:'\\f53f'}\n.icon-tallglass:before{content:'\\f540'}\n.icon-grapes:before{content:'\\f541'}\n.icon-biohazard:before{content:'\\f542'}\n.icon-directions:before{content:'\\f543'}\n.icon-equalizerthree:before{content:'\\f544'}\n.icon-mountains:before{content:'\\f545'}\n.icon-bing:before{content:'\\f546'}\n.icon-windowseight:before{content:'\\f547'}\n.icon-microsoftoffice:before{content:'\\f548'}\n.icon-salealt:before{content:'\\f549'}\n.icon-purse:before{content:'\\f54a'}\n.icon-chickenalt:before{content:'\\f54b'}\n.icon-podium:before{content:'\\f54c'}\n.icon-findfriends:before{content:'\\f54d'}\n.icon-microphonethree:before{content:'\\f54e'}\n.icon-workshirt:before{content:'\\f54f'}\n.icon-donotdisturb:before{content:'\\f550'}\n.icon-addtags:before{content:'\\f551'}\n.icon-removetags:before{content:'\\f556'}\n.icon-carbattery:before{content:'\\f553'}\n.icon-debug:before{content:'\\f554'}\n.icon-trojan:before{content:'\\f555'}\n.icon-molecule:before{content:'\\f556'}\n.icon-safetygoggles:before{content:'\\f557'}\n.icon-leather:before{content:'\\f558'}\n.icon-teddybear:before{content:'\\f559'}\n.icon-stroller:before{content:'\\f55a'}\n.icon-circleplay:before{content:'\\f55b'}\n.icon-circlestop:before{content:'\\f55c'}\n.icon-circlepause:before{content:'\\f55d'}\n.icon-circlerecord:before{content:'\\f55e'}\n.icon-circleforward:before{content:'\\f55f'}\n.icon-circlebackward:before{content:'\\f560'}\n.icon-circlenext:before{content:'\\f561'}\n.icon-circleprevious:before{content:'\\f562'}\n.icon-circleplayempty:before{content:'\\f563'}\n.icon-circlestopempty:before{content:'\\f564'}\n.icon-circlepauseempty:before{content:'\\f565'}\n.icon-circlerecordempty:before{content:'\\f566'}\n.icon-circleforwardempty:before{content:'\\f567'}\n.icon-circlebackwardempty:before{content:'\\f568'}\n.icon-circlenextempty:before{content:'\\f569'}\n.icon-circlepreviousempty:before{content:'\\f56a'}\n.icon-belt:before{content:'\\f56b'}\n.icon-bait:before{content:'\\f56c'}\n.icon-manalt:before{content:'\\f56d'}\n.icon-womanalt:before{content:'\\f56e'}\n.icon-clover:before{content:'\\f56f'}\n.icon-pacifier:before{content:'\\f570'}\n.icon-calcplus:before{content:'\\f571'}\n.icon-calcminus:before{content:'\\f572'}\n.icon-calcmultiply:before{content:'\\f573'}\n.icon-calcdivide:before{content:'\\f574'}\n.icon-calcequals:before{content:'\\f575'}\n.icon-city:before{content:'\\f576'}\n.icon-hdvideo:before{content:'\\f577'}\n.icon-horizontalexpand:before{content:'\\f578'}\n.icon-horizontalcontract:before{content:'\\f579'}\n.icon-radar:before{content:'\\f57a'}\n.icon-threed:before{content:'\\f57b'}\n.icon-flickralt:before{content:'\\f57c'}\n.icon-pattern:before{content:'\\f57d'}\n.icon-elevator:before{content:'\\f57e'}\n.icon-escalator:before{content:'\\f57f'}\n.icon-portrait:before{content:'\\f580'}\n.icon-cigar:before{content:'\\f581'}\n.icon-dropbox:before{content:'\\f582'}\n.icon-origami:before{content:'\\f583'}\n.icon-opensource:before{content:'\\f585'}\n.icon-redaxscript:before{content:'\\f586'}\n.icon-mahara:before{content:'\\f587'}\n.icon-forkcms:before{content:'\\f588'}\n.icon-pimcore:before{content:'\\f589'}\n.icon-bigace:before{content:'\\f58a'}\n.icon-aef:before{content:'\\f58b'}\n.icon-punbb:before{content:'\\f58c'}\n.icon-phorum:before{content:'\\f58d'}\n.icon-fluxbb:before{content:'\\f58e'}\n.icon-minibb:before{content:'\\f58f'}\n.icon-zenphoto:before{content:'\\f590'}\n.icon-fourimages:before{content:'\\f591'}\n.icon-plogger:before{content:'\\f592'}\n.icon-jcow:before{content:'\\f593'}\n.icon-elgg:before{content:'\\f594'}\n.icon-etano:before{content:'\\f595'}\n.icon-openclassifieds:before{content:'\\f596'}\n.icon-osclass:before{content:'\\f597'}\n.icon-openx:before{content:'\\f598'}\n.icon-phplist:before{content:'\\f599'}\n.icon-roundcube:before{content:'\\f59a'}\n.icon-pommo:before{content:'\\f59b'}\n.icon-webinsta:before{content:'\\f59c'}\n.icon-limesurvey:before{content:'\\f59d'}\n.icon-fengoffice:before{content:'\\f59e'}\n.icon-eyeos:before{content:'\\f59f'}\n.icon-dotproject:before{content:'\\f5a0'}\n.icon-collabtive:before{content:'\\f5a1'}\n.icon-projectpier:before{content:'\\f5a2'}\n.icon-taskfreak:before{content:'\\f5a3'}\n.icon-eventum:before{content:'\\f5a4'}\n.icon-traq:before{content:'\\f5a5'}\n.icon-mantisbugtracker:before{content:'\\f5a6'}\n.icon-oscommerce:before{content:'\\f5a7'}\n.icon-zencart:before{content:'\\f5a8'}\n.icon-tomatocart:before{content:'\\f5a9'}\n.icon-boxbilling:before{content:'\\f5aa'}\n.icon-zurmo:before{content:'\\f5ab'}\n.icon-orangehrm:before{content:'\\f5ac'}\n.icon-vtiger:before{content:'\\f5ad'}\n.icon-mibew:before{content:'\\f5ae'}\n.icon-phpmyfaq:before{content:'\\f5af'}\n.icon-yiiframework:before{content:'\\f5b0'}\n.icon-zendframework:before{content:'\\f5b1'}\n.icon-fuelphp:before{content:'\\f5b2'}\n.icon-kohana:before{content:'\\f5b3'}\n.icon-smarty:before{content:'\\f5b4'}\n.icon-sidu:before{content:'\\f5b5'}\n.icon-simplepie:before{content:'\\f5b6'}\n.icon-projectsend:before{content:'\\f5b7'}\n.icon-extjs:before{content:'\\f5b8'}\n.icon-raphael:before{content:'\\f5b9'}\n.icon-sizzle:before{content:'\\f5ba'}\n.icon-yui:before{content:'\\f5bb'}\n.icon-scissorsalt:before{content:'\\f5bc'}\n.icon-cuthere:before{content:'\\f5bd'}\n.icon-coinsalt:before{content:'\\f5be'}\n.icon-parkingmeter:before{content:'\\f5bf'}\n.icon-treethree:before{content:'\\f5c0'}\n.icon-packarchive:before{content:'\\f5c1'}\n.icon-unpackarchive:before{content:'\\f5c2'}\n.icon-terminalalt:before{content:'\\f5c3'}\n.icon-jersey:before{content:'\\f5c4'}\n.icon-vial:before{content:'\\f5c5'}\n.icon-noteslist:before{content:'\\f5c6'}\n.icon-notestasks:before{content:'\\f5c7'}\n.icon-notesdate:before{content:'\\f5c8'}\n.icon-noteslocation:before{content:'\\f5c9'}\n.icon-noteslistalt:before{content:'\\f5ca'}\n.icon-notestasksalt:before{content:'\\f5cb'}\n.icon-notesdatealt:before{content:'\\f5cc'}\n.icon-noteslocationalt:before{content:'\\f5cd'}\n.icon-useralt:before{content:'\\f5ce'}\n.icon-adduseralt:before{content:'\\f5cf'}\n.icon-removeuseralt:before{content:'\\f5d0'}\n.icon-banuseralt:before{content:'\\f5d1'}\n.icon-banuser:before{content:'\\f5d2'}\n.icon-paintrollalt:before{content:'\\f5d3'}\n.icon-textcursor:before{content:'\\f5d4'}\n.icon-textfield:before{content:'\\f5d5'}\n.icon-precisecursor:before{content:'\\f5d6'}\n.icon-brokenlink:before{content:'\\f5d7'}\n.icon-bookmarkthree:before{content:'\\f5d8'}\n.icon-bookmarkfour:before{content:'\\f5d9'}\n.icon-warmedalalt:before{content:'\\f5da'}\n.icon-thinking:before{content:'\\f5db'}\n.icon-commentlove:before{content:'\\f5dc'}\n.icon-commentsmiley:before{content:'\\f5dd'}\n.icon-sharetwo:before{content:'\\f147'}\n.icon-emptystar:before{content:'\\f2de'}\n.icon-halfstar:before{content:'\\f2df'}\n.icon-fullstar:before{content:'\\f2e0'}\n.icon-forbidden:before{content:'\\f314'}\n.icon-indentleftalt:before{content:'\\f4c4'}\n.icon-indentrightalt:before{content:'\\f4c5'}\n.icon-modxalt:before{content:'\\f5de'}\n.icon-apple:before{content:'\\f5df'}\n.icon-greekcolumn:before{content:'\\f5e0'}\n.icon-walletalt:before{content:'\\f5e1'}\n.icon-dollarsquare:before{content:'\\f5e2'}\n.icon-poundsquare:before{content:'\\f5e3'}\n.icon-yensquare:before{content:'\\f5e4'}\n.icon-eurosquare:before{content:'\\f5e5'}\n.icon-bitcoinsquare:before{content:'\\f5e6'}\n.icon-roublesquare:before{content:'\\f5e7'}\n.icon-roublealt:before{content:'\\f5e8'}\n.icon-bitcoinalt:before{content:'\\f5e9'}\n.icon-gavel:before{content:'\\f5ea'}\n.icon-barchartasc:before{content:'\\f5eb'}\n.icon-barchartdesc:before{content:'\\f5ec'}\n.icon-house:before{content:'\\f5ed'}\n.icon-garage:before{content:'\\f5ee'}\n.icon-milk:before{content:'\\f5ef'}\n.icon-hryvnia:before{content:'\\f5f0'}\n.icon-hryvniasquare:before{content:'\\f5f1'}\n.icon-hryvniaalt:before{content:'\\f5f2'}\n.icon-beeralt:before{content:'\\f5f3'}\n.icon-trolleyfull:before{content:'\\f5f4'}\n.icon-trolleyload:before{content:'\\f5f5'}\n.icon-trolleyunload:before{content:'\\f5f6'}\n.icon-trolleyempty:before{content:'\\f5f7'}\n.icon-mootools:before{content:'\\f5f8'}\n.icon-mootoolstwo:before{content:'\\f5f9'}\n.icon-mootoolsthree:before{content:'\\f5fa'}\n.icon-mysqlthree:before{content:'\\f5fb'}\n.icon-mysqlalt:before{content:'\\f5fc'}\n.icon-pgsql:before{content:'\\f5fd'}\n.icon-mongodb:before{content:'\\f5fe'}\n.icon-neofourj:before{content:'\\f5ff'}\n.icon-nosql:before{content:'\\f600'}\n.icon-catface:before{content:'\\f601'}\n.icon-polaroid:before{content:'\\f602'}\n.icon-clouderror:before{content:'\\f603'}\n.icon-camcorder:before{content:'\\f604'}\n.icon-projector:before{content:'\\f605'}\n.icon-sdvideo:before{content:'\\f606'}\n.icon-fx:before{content:'\\f607'}\n.icon-gramophone:before{content:'\\f608'}\n.icon-speakeralt:before{content:'\\f609'}\n.icon-hddalt:before{content:'\\f60a'}\n.icon-usbflash:before{content:'\\f60b'}\n.icon-manillaenvelope:before{content:'\\f60c'}\n.icon-stickynote:before{content:'\\f60d'}\n.icon-stickynotealt:before{content:'\\f60e'}\n.icon-torch:before{content:'\\f60f'}\n.icon-flashlightalt:before{content:'\\f610'}\n.icon-campfire:before{content:'\\f611'}\n.icon-cctv:before{content:'\\f612'}\n.icon-drill:before{content:'\\f613'}\n.icon-lampalt:before{content:'\\f614'}\n.icon-flowerpot:before{content:'\\f615'}\n.icon-defragment:before{content:'\\f616'}\n.icon-panoramio:before{content:'\\f617'}\n.icon-panorama:before{content:'\\f618'}\n.icon-photosphere:before{content:'\\f619'}\n.icon-panoramaalt:before{content:'\\f61a'}\n.icon-timer:before{content:'\\f61b'}\n.icon-burstmode:before{content:'\\f61c'}\n.icon-cameraflash:before{content:'\\f61d'}\n.icon-autoflash:before{content:'\\f61e'}\n.icon-noflash:before{content:'\\f61f'}\n.icon-threetofour:before{content:'\\f620'}\n.icon-sixteentonine:before{content:'\\f621'}\n.icon-cat:before{content:'\\f622'}\n.icon-dog:before{content:'\\f623'}\n.icon-rabbit:before{content:'\\f624'}\n.icon-koala:before{content:'\\f625'}\n.icon-butterflyalt:before{content:'\\f626'}\n.icon-butterfly:before{content:'\\f627'}\n.icon-wwf:before{content:'\\f628'}\n.icon-poop:before{content:'\\f629'}\n.icon-poopalt:before{content:'\\f62a'}\n.icon-kiwi:before{content:'\\f62b'}\n.icon-kiwifruit:before{content:'\\f62c'}\n.icon-lemon:before{content:'\\f62d'}\n.icon-pear:before{content:'\\f62e'}\n.icon-watermelon:before{content:'\\f62f'}\n.icon-onion:before{content:'\\f630'}\n.icon-turnip:before{content:'\\f631'}\n.icon-eggplant:before{content:'\\f632'}\n.icon-avocado:before{content:'\\f633'}\n.icon-perfume:before{content:'\\f634'}\n.icon-arch:before{content:'\\f635'}\n.icon-pluspages:before{content:'\\f636'}\n.icon-community:before{content:'\\f637'}\n.icon-pluscircles:before{content:'\\f638'}\n.icon-googleplusold:before{content:'\\f639'}\n.icon-plusgames:before{content:'\\f63a'}\n.icon-event:before{content:'\\f63b'}\n.icon-miui:before{content:'\\f63c'}\n.icon-hot:before{content:'\\f63d'}\n.icon-flowup:before{content:'\\f63e'}\n.icon-flowdown:before{content:'\\f63f'}\n.icon-moustache:before{content:'\\f640'}\n.icon-angle:before{content:'\\f641'}\n.icon-sleep:before{content:'\\f642'}\n.icon-acorn:before{content:'\\f643'}\n.icon-steamalt:before{content:'\\f644'}\n.icon-resizeupleft:before{content:'\\f645'}\n.icon-resizeupright:before{content:'\\f646'}\n.icon-resizedownright:before{content:'\\f647'}\n.icon-resizedownleft:before{content:'\\f648'}\n.icon-hammeralt:before{content:'\\f649'}\n.icon-bamboo:before{content:'\\f64a'}\n.icon-mypictures:before{content:'\\f64b'}\n.icon-mymusic:before{content:'\\f64c'}\n.icon-myvideos:before{content:'\\f64d'}\n.icon-systemfolder:before{content:'\\f64e'}\n.icon-bookthree:before{content:'\\f64f'}\n.icon-compile:before{content:'\\f650'}\n.icon-report:before{content:'\\f651'}\n.icon-fliphorizontal:before{content:'\\f652'}\n.icon-flipvertical:before{content:'\\f653'}\n.icon-construction:before{content:'\\f654'}\n.icon-counteralt:before{content:'\\f655'}\n.icon-counter:before{content:'\\f656'}\n.icon-papercutter:before{content:'\\f657'}\n.icon-snaptodot:before{content:'\\f658'}\n.icon-snaptogrid:before{content:'\\f659'}\n.icon-caligraphy:before{content:'\\f65a'}\n.icon-icecreamthree:before{content:'\\f65b'}\n.icon-skitch:before{content:'\\f65c'}\n.icon-archlinux:before{content:'\\f65d'}\n.icon-elementaryos:before{content:'\\f65e'}\n.icon-loadingone:before{content:'\\f65f'}\n.icon-loadingtwo:before{content:'\\f660'}\n.icon-loadingthree:before{content:'\\f661'}\n.icon-loadingfour:before{content:'\\f662'}\n.icon-loadingfive:before{content:'\\f663'}\n.icon-loadingsix:before{content:'\\f664'}\n.icon-loadingseven:before{content:'\\f665'}\n.icon-loadingeight:before{content:'\\f666'}\n.icon-brokenheart:before{content:'\\f667'}\n.icon-heartarrow:before{content:'\\f668'}\n.icon-heartsparkle:before{content:'\\f669'}\n.icon-cell:before{content:'\\f66a'}\n.icon-panda:before{content:'\\f66b'}\n.icon-refreshalt:before{content:'\\f66c'}\n.icon-mirror:before{content:'\\f66d'}\n.icon-headphonesthree:before{content:'\\f66e'}\n.icon-fan:before{content:'\\f66f'}\n.icon-tornado:before{content:'\\f670'}\n.icon-hangout:before{content:'\\f671'}\n.icon-beaker:before{content:'\\f672'}\n.icon-beakeralt:before{content:'\\f673'}\n.icon-phonescreensize:before{content:'\\f674'}\n.icon-tabletscreensize:before{content:'\\f675'}\n.icon-notification:before{content:'\\f676'}\n.icon-googleglass:before{content:'\\f677'}\n.icon-pinterest:before{content:'\\f678'}\n.icon-soundcloud:before{content:'\\f679'}\n.icon-alarmclock:before{content:'\\f67a'}\n.icon-addalarm:before{content:'\\f67b'}\n.icon-deletealarm:before{content:'\\f67c'}\n.icon-turnoffalarm:before{content:'\\f67d'}\n.icon-snooze:before{content:'\\f67e'}\n.icon-bringforward:before{content:'\\f67f'}\n.icon-sendbackward:before{content:'\\f680'}\n.icon-bringtofront:before{content:'\\f681'}\n.icon-sendtoback:before{content:'\\f682'}\n.icon-tectile:before{content:'\\f683'}\n.icon-grave:before{content:'\\f684'}\n.icon-gravetwo:before{content:'\\f685'}\n.icon-gravethree:before{content:'\\f686'}\n.icon-gravefour:before{content:'\\f687'}\n.icon-textlayer:before{content:'\\f688'}\n.icon-vectoralt:before{content:'\\f689'}\n.icon-drmanhattan:before{content:'\\f68a'}\n.icon-foursquarealt:before{content:'\\f68b'}\n.icon-hashtag:before{content:'\\f68c'}\n.icon-enteralt:before{content:'\\f68d'}\n.icon-exitalt:before{content:'\\f68e'}\n.icon-cartalt:before{content:'\\f68f'}\n.icon-vaultthree:before{content:'\\f690'}\n.icon-fatundo:before{content:'\\f691'}\n.icon-fatredo:before{content:'\\f692'}\n.icon-feedly:before{content:'\\f693'}\n.icon-feedlyalt:before{content:'\\f694'}\n.icon-squareheart:before{content:'\\f695'}\n.icon-squarestar:before{content:'\\f696'}\n.icon-squarecomment:before{content:'\\f697'}\n.icon-squarelike:before{content:'\\f698'}\n.icon-squarebookmark:before{content:'\\f699'}\n.icon-squaresearch:before{content:'\\f69a'}\n.icon-squaresettings:before{content:'\\f69b'}\n.icon-squarevoice:before{content:'\\f69c'}\n.icon-google:before{content:'\\f69d'}\n.icon-emojigrinalt:before{content:'\\f69e'}\n.icon-emojigrin:before{content:'\\f69f'}\n.icon-constellation:before{content:'\\f6a0'}\n.icon-emojisurprise:before{content:'\\f6a1'}\n.icon-emojidead:before{content:'\\f6a2'}\n.icon-emojiangry:before{content:'\\f6a3'}\n.icon-emojidevil:before{content:'\\f6a4'}\n.icon-emojiwink:before{content:'\\f6a5'}\n.icon-moonorbit:before{content:'\\f6a6'}\n.icon-emojismile:before{content:'\\f6a7'}\n.icon-emojisorry:before{content:'\\f6a8'}\n.icon-emojiconfused:before{content:'\\f6a9'}\n.icon-emojisleep:before{content:'\\f6aa'}\n.icon-emojicry:before{content:'\\f6ab'}\n.icon-circlefork:before{content:'\\f6ac'}\n.icon-circlespoon:before{content:'\\f6ad'}\n.icon-circleknife:before{content:'\\f6ae'}\n.icon-circlepencil:before{content:'\\f6af'}\n.icon-circlehammer:before{content:'\\f6b0'}\n.icon-circlescrewdriver:before{content:'\\f6b1'}\n.icon-middlefinger:before{content:'\\f6b2'}\n.icon-heavymetal:before{content:'\\f6b3'}\n.icon-turnright:before{content:'\\f6b4'}\n.icon-turnleft:before{content:'\\f6b5'}\n.icon-vineapp:before{content:'\\f6b6'}\n.icon-vineappalt:before{content:'\\f6b7'}\n.icon-finance:before{content:'\\f6b8'}\n.icon-survey:before{content:'\\f6b9'}\n.icon-hangouts:before{content:'\\f6ba'}\n.icon-square0:before{content:'\\f6bb'}\n.icon-square1:before{content:'\\f6bc'}\n.icon-square2:before{content:'\\f6bd'}\n.icon-square3:before{content:'\\f6be'}\n.icon-square4:before{content:'\\f6bf'}\n.icon-square5:before{content:'\\f6c0'}\n.icon-square6:before{content:'\\f6c1'}\n.icon-square7:before{content:'\\f6c2'}\n.icon-square8:before{content:'\\f6c3'}\n.icon-square9:before{content:'\\f6c4'}\n.icon-squarea:before{content:'\\f6c5'}\n.icon-squareb:before{content:'\\f6c6'}\n.icon-squarec:before{content:'\\f6c7'}\n.icon-squared:before{content:'\\f6c8'}\n.icon-squaree:before{content:'\\f6c9'}\n.icon-squaref:before{content:'\\f6ca'}\n.icon-squareg:before{content:'\\f6cb'}\n.icon-squareh:before{content:'\\f6cc'}\n.icon-squarei:before{content:'\\f6cd'}\n.icon-squarej:before{content:'\\f6ce'}\n.icon-squarek:before{content:'\\f6cf'}\n.icon-squarel:before{content:'\\f6d0'}\n.icon-squarem:before{content:'\\f6d1'}\n.icon-squaren:before{content:'\\f6d2'}\n.icon-squareo:before{content:'\\f6d3'}\n.icon-squarep:before{content:'\\f6d4'}\n.icon-squareq:before{content:'\\f6d5'}\n.icon-squarer:before{content:'\\f6d6'}\n.icon-squares:before{content:'\\f6d7'}\n.icon-squaret:before{content:'\\f6d8'}\n.icon-squareu:before{content:'\\f6d9'}\n.icon-squarev:before{content:'\\f6da'}\n.icon-squarew:before{content:'\\f6db'}\n.icon-squarex:before{content:'\\f6dc'}\n.icon-squarey:before{content:'\\f6dd'}\n.icon-squarez:before{content:'\\f6de'}\n.icon-shuttle:before{content:'\\f6df'}\n.icon-meteor:before{content:'\\f6e0'}\n.icon-galaxy:before{content:'\\f6e1'}\n.icon-observatory:before{content:'\\f6e2'}\n.icon-astronaut:before{content:'\\f6e3'}\n.icon-asteroid:before{content:'\\f6e4'}\n.icon-sunrise:before{content:'\\f6e5'}\n.icon-sunset:before{content:'\\f6e6'}\n.icon-tiderise:before{content:'\\f6e7'}\n.icon-tidefall:before{content:'\\f6e8'}\n.icon-mushroomcloud:before{content:'\\f6e9'}\n.icon-galaxyalt:before{content:'\\f6ea'}\n.icon-sputnik:before{content:'\\f6eb'}\n.icon-sextant:before{content:'\\f6ec'}\n.icon-spock:before{content:'\\f6ed'}\n.icon-meteorite:before{content:'\\f6ee'}\n.icon-deathstar:before{content:'\\f6ef'}\n.icon-deathstarbulding:before{content:'\\f6f0'}\n.icon-fallingstar:before{content:'\\f6f1'}\n.icon-windmill:before{content:'\\f6f2'}\n.icon-windmillalt:before{content:'\\f6f3'}\n.icon-pumpjack:before{content:'\\f6f4'}\n.icon-nuclearplant:before{content:'\\f6f5'}\n.icon-solarpanel:before{content:'\\f6f6'}\n.icon-barrel:before{content:'\\f6f7'}\n.icon-canister:before{content:'\\f6f8'}\n.icon-railtunnel:before{content:'\\f6f9'}\n.icon-roadtunnel:before{content:'\\f6fa'}\n.icon-pickaxe:before{content:'\\f6fb'}\n.icon-cow:before{content:'\\f6fc'}\n.icon-sheep:before{content:'\\f6fd'}\n.icon-fountain:before{content:'\\f6fe'}\n.icon-circlezero:before{content:'\\f6ff'}\n.icon-circleone:before{content:'\\f700'}\n.icon-circletwo:before{content:'\\f701'}\n.icon-circlethree:before{content:'\\f702'}\n.icon-circlefour:before{content:'\\f703'}\n.icon-circlefive:before{content:'\\f704'}\n.icon-circlesix:before{content:'\\f705'}\n.icon-circleseven:before{content:'\\f706'}\n.icon-circleeight:before{content:'\\f707'}\n.icon-circlenine:before{content:'\\f708'}\n.icon-circlea:before{content:'\\f709'}\n.icon-circleb:before{content:'\\f70a'}\n.icon-circlec:before{content:'\\f70b'}\n.icon-circled:before{content:'\\f70c'}\n.icon-circlee:before{content:'\\f70d'}\n.icon-circlef:before{content:'\\f70e'}\n.icon-circleg:before{content:'\\f70f'}\n.icon-circleh:before{content:'\\f710'}\n.icon-circlei:before{content:'\\f711'}\n.icon-circlej:before{content:'\\f712'}\n.icon-circlek:before{content:'\\f713'}\n.icon-circlel:before{content:'\\f714'}\n.icon-circlem:before{content:'\\f715'}\n.icon-circlen:before{content:'\\f716'}\n.icon-circleo:before{content:'\\f717'}\n.icon-circlep:before{content:'\\f718'}\n.icon-circleq:before{content:'\\f719'}\n.icon-circler:before{content:'\\f71a'}\n.icon-circles:before{content:'\\f71b'}\n.icon-circlet:before{content:'\\f71c'}\n.icon-circleu:before{content:'\\f71d'}\n.icon-circlev:before{content:'\\f71e'}\n.icon-circlew:before{content:'\\f71f'}\n.icon-circlex:before{content:'\\f720'}\n.icon-circley:before{content:'\\f721'}\n.icon-circlez:before{content:'\\f722'}\n.icon-creeper:before{content:'\\f723'}\n.icon-minecraft:before{content:'\\f724'}\n.icon-minecraftalt:before{content:'\\f725'}\n.icon-pixelsword:before{content:'\\f726'}\n.icon-pixelbroadsword:before{content:'\\f727'}\n.icon-pixelwand:before{content:'\\f728'}\n.icon-pixelpotion:before{content:'\\f729'}\n.icon-pixelpotionalt:before{content:'\\f72a'}\n.icon-pixelpickaxe:before{content:'\\f72b'}\n.icon-pixelbow:before{content:'\\f72c'}\n.icon-pixelarrow:before{content:'\\f72d'}\n.icon-pixelaxe:before{content:'\\f72e'}\n.icon-pixeldagger:before{content:'\\f72f'}\n.icon-pixelbastardsword:before{content:'\\f730'}\n.icon-pixellance:before{content:'\\f731'}\n.icon-pixelbattleaxe:before{content:'\\f732'}\n.icon-pixelshovel:before{content:'\\f733'}\n.icon-pixelsphere:before{content:'\\f734'}\n.icon-pixelelixir:before{content:'\\f735'}\n.icon-pixelchest:before{content:'\\f736'}\n.icon-pixelshield:before{content:'\\f737'}\n.icon-pixelheart:before{content:'\\f738'}\n.icon-rudder:before{content:'\\f739'}\n.icon-folderalt:before{content:'\\f73a'}\n.icon-removefolderalt:before{content:'\\f73b'}\n.icon-addfolderalt:before{content:'\\f73c'}\n.icon-deletefolderalt:before{content:'\\f73d'}\n.icon-openfolderalt:before{content:'\\f73e'}\n.icon-clipboardalt:before{content:'\\f73f'}\n.icon-pastealt:before{content:'\\f740'}\n.icon-loadingflowccw:before{content:'\\f741'}\n.icon-loadingflowcw:before{content:'\\f742'}\n.icon-code:before{content:'\\f743'}\n.icon-cloveralt:before{content:'\\f744'}\n.icon-lips:before{content:'\\f745'}\n.icon-kiss:before{content:'\\f746'}\n.icon-manualshift:before{content:'\\f747'}\n.icon-simcardthree:before{content:'\\f748'}\n.icon-parthenon:before{content:'\\f749'}\n.icon-addcomment:before{content:'\\f74a'}\n.icon-deletecomment:before{content:'\\f74b'}\n.icon-gender:before{content:'\\f74c'}\n.icon-callalt:before{content:'\\f74d'}\n.icon-outgoingcallalt:before{content:'\\f74e'}\n.icon-incomingcallalt:before{content:'\\f74f'}\n.icon-missedcallalt:before{content:'\\f750'}\n.icon-export:before{content:'\\f751'}\n.icon-import:before{content:'\\f752'}\n.icon-cherryalt:before{content:'\\f753'}\n.icon-panties:before{content:'\\f754'}\n.icon-kimai:before{content:'\\f755'}\n.icon-livejournal:before{content:'\\f756'}\n.icon-livejournalalt:before{content:'\\f757'}\n.icon-tagged:before{content:'\\f758'}\n.icon-temple:before{content:'\\f759'}\n.icon-mayanpyramid:before{content:'\\f75a'}\n.icon-egyptpyramid:before{content:'\\f75b'}\n.icon-tampermonkey:before{content:'\\f75c'}\n.icon-pushbullet:before{content:'\\f75d'}\n.icon-currents:before{content:'\\f75e'}\n.icon-communitysmall:before{content:'\\f75f'}\n.icon-squaregithub:before{content:'\\f760'}\n.icon-projectfork:before{content:'\\f761'}\n.icon-projectmerge:before{content:'\\f762'}\n.icon-projectcompare:before{content:'\\f763'}\n.icon-history:before{content:'\\f764'}\n.icon-notebook:before{content:'\\f765'}\n.icon-issue:before{content:'\\f766'}\n.icon-issueclosed:before{content:'\\f767'}\n.icon-issuereopened:before{content:'\\f768'}\n.icon-rubyalt:before{content:'\\f769'}\n.icon-lighton:before{content:'\\f76a'}\n.icon-lightoff:before{content:'\\f76b'}\n.icon-bellalt:before{content:'\\f76c'}\n.icon-versions:before{content:'\\f777'}\n.icon-twog:before{content:'\\f76e'}\n.icon-threeg:before{content:'\\f76f'}\n.icon-fourg:before{content:'\\f770'}\n.icon-gpsalt:before{content:'\\f771'}\n.icon-circleloaderfull:before{content:'\\f772'}\n.icon-circleloaderseven:before{content:'\\f773'}\n.icon-circleloadersix:before{content:'\\f774'}\n.icon-circleloaderfive:before{content:'\\f775'}\n.icon-circleloaderfour:before{content:'\\f776'}\n.icon-circleloaderthree:before{content:'\\f777'}\n.icon-circleloadertwo:before{content:'\\f778'}\n.icon-circleloaderone:before{content:'\\f779'}\n.icon-circleloaderempty:before{content:'\\f77a'}\n.icon-whatsapp:before{content:'\\f77b'}\n.icon-whatsappalt:before{content:'\\f77c'}\n.icon-viber:before{content:'\\f77d'}\n.icon-squareviber:before{content:'\\f77e'}\n.icon-teamviewer:before{content:'\\f77f'}\n.icon-tunein:before{content:'\\f780'}\n.icon-tuneinalt:before{content:'\\f781'}\n.icon-weightscale:before{content:'\\f782'}\n.icon-boxing:before{content:'\\f783'}\n.icon-speedalt:before{content:'\\f784'}\n.icon-scriptalt:before{content:'\\f785'}\n.icon-splitthree:before{content:'\\f786'}\n.icon-mergethree:before{content:'\\f787'}\n.icon-layersthree:before{content:'\\f788'}\n.icon-mutemic:before{content:'\\f789'}\n.icon-zerply:before{content:'\\f78a'}\n.icon-circlegoogleplus:before{content:'\\f78b'}\n.icon-circletwitter:before{content:'\\f78c'}\n.icon-circlefacebook:before{content:'\\f78d'}\n.icon-circleyahoo:before{content:'\\f78e'}\n.icon-circlegithub:before{content:'\\f78f'}\n.icon-forumsalt:before{content:'\\f790'}\n.icon-circlepath:before{content:'\\f791'}\n.icon-circlevimeo:before{content:'\\f792'}\n.icon-circlevine:before{content:'\\f793'}\n.icon-instagramtwo:before{content:'\\f794'}\n.icon-instagramthree:before{content:'\\f795'}\n.icon-flickrthree:before{content:'\\f796'}\n.icon-quora:before{content:'\\f797'}\n.icon-squarequora:before{content:'\\f798'}\n.icon-circlequora:before{content:'\\f799'}\n.icon-picasa:before{content:'\\f79a'}\n.icon-branch:before{content:'\\f79b'}\n.icon-ingress:before{content:'\\f79c'}\n.icon-squarezerply:before{content:'\\f79d'}\n.icon-circlezerply:before{content:'\\f79e'}\n.icon-squarevimeo:before{content:'\\f79f'}\n.icon-squaretwitter:before{content:'\\f7a0'}\n.icon-brightnessalt:before{content:'\\f7a1'}\n.icon-brightnessalthalf:before{content:'\\f7a2'}\n.icon-brightnessaltfull:before{content:'\\f7a3'}\n.icon-brightnessaltauto:before{content:'\\f7a4'}\n.icon-shirtbuttonthree:before{content:'\\f7a5'}\n.icon-openshare:before{content:'\\f7a6'}\n.icon-copyapp:before{content:'\\f7a7'}\n.icon-bowl:before{content:'\\f7a8'}\n.icon-cloudalt:before{content:'\\f7a9'}\n.icon-cloudaltdownload:before{content:'\\f7aa'}\n.icon-cloudaltupload:before{content:'\\f7ab'}\n.icon-cloudaltsync:before{content:'\\f7ac'}\n.icon-cloudaltprivate:before{content:'\\f7ad'}\n.icon-flipboard:before{content:'\\f7ae'}\n.icon-octoloaderempty:before{content:'\\f7af'}\n.icon-octoloaderone:before{content:'\\f7b0'}\n.icon-octoloadertwo:before{content:'\\f7b1'}\n.icon-octoloaderthree:before{content:'\\f7b2'}\n.icon-octoloaderfour:before{content:'\\f7b3'}\n.icon-octoloaderfive:before{content:'\\f7b4'}\n.icon-octoloadersix:before{content:'\\f7b5'}\n.icon-octoloaderseven:before{content:'\\f7b6'}\n.icon-octoloaderfull:before{content:'\\f7b7'}\n.icon-selectionsymbol:before{content:'\\f7b8'}\n.icon-infinityalt:before{content:'\\f7b9'}\n.icon-pullrequest:before{content:'\\f7ba'}\n.icon-projectforkdelete:before{content:'\\f7bb'}\n.icon-projectforkprivate:before{content:'\\f7bc'}\n.icon-commit:before{content:'\\f7bd'}\n.icon-htmlfile:before{content:'\\f7be'}\n.icon-pushalt:before{content:'\\f7bf'}\n.icon-pullalt:before{content:'\\f7c0'}\n.icon-photonineframes:before{content:'\\f7c1'}\n.icon-wetfloor:before{content:'\\f7c2'}\n.icon-instagramfour:before{content:'\\f7c3'}\n.icon-circleinstagram:before{content:'\\f7c4'}\n.icon-videocamerathree:before{content:'\\f7c5'}\n.icon-subtitles:before{content:'\\f7c6'}\n.icon-subtitlesoff:before{content:'\\f7c7'}\n.icon-compress:before{content:'\\f7c8'}\n.icon-baby:before{content:'\\f7c9'}\n.icon-ducky:before{content:'\\f7ca'}\n.icon-handswipe:before{content:'\\f7cb'}\n.icon-swipeup:before{content:'\\f7cc'}\n.icon-swipedown:before{content:'\\f7cd'}\n.icon-twofingerswipedown:before{content:'\\f7ce'}\n.icon-twofingerswipeup:before{content:'\\f7cf'}\n.icon-doubletap:before{content:'\\f7d0'}\n.icon-dribbblealt:before{content:'\\f7d1'}\n.icon-circlecallmissed:before{content:'\\f7d2'}\n.icon-circlecallincoming:before{content:'\\f7d3'}\n.icon-circlecalloutgoing:before{content:'\\f7d4'}\n.icon-circledownload:before{content:'\\f7d5'}\n.icon-circleupload:before{content:'\\f7d6'}\n.icon-minismile:before{content:'\\f7d7'}\n.icon-minisad:before{content:'\\f7d8'}\n.icon-minilaugh:before{content:'\\f7d9'}\n.icon-minigrin:before{content:'\\f7da'}\n.icon-miniangry:before{content:'\\f7db'}\n.icon-minitongue:before{content:'\\f7dc'}\n.icon-minitonguealt:before{content:'\\f7dd'}\n.icon-miniwink:before{content:'\\f7de'}\n.icon-minitonguewink:before{content:'\\f7df'}\n.icon-miniconfused:before{content:'\\f7e0'}\n.icon-soundright:before{content:'\\f7e1'}\n.icon-soundleft:before{content:'\\f7e2'}\n.icon-savetodrive:before{content:'\\f7e3'}\n.icon-layerorderup:before{content:'\\f7e4'}\n.icon-layerorderdown:before{content:'\\f7e5'}\n.icon-layerorder:before{content:'\\f7e6'}\n.icon-circledribbble:before{content:'\\f7e7'}\n.icon-squaredribbble:before{content:'\\f7e8'}\n.icon-handexpand:before{content:'\\f7e9'}\n.icon-handpinch:before{content:'\\f7ea'}\n.icon-fontserif:before{content:'\\f7eb'}\n.icon-fontsansserif:before{content:'\\f7ec'}\n.icon-fontrounded:before{content:'\\f7ed'}\n.icon-fonthandwriting:before{content:'\\f7ee'}\n.icon-fonttypewriter:before{content:'\\f7ef'}\n.icon-fontcomic:before{content:'\\f7f0'}\n.icon-fontcaligraphy:before{content:'\\f7f1'}\n.icon-fontgothic:before{content:'\\f7f2'}\n.icon-fontstencil:before{content:'\\f7f3'}\n"]}
  • musicidb-calendar/trunk/css/scss/admin/admin-styles.scss

    r2980848 r3158876  
    1 @mixin clearfix() {
    2     &:before,
    3     &:after {
    4         content: " ";
    5         display: table;
    6     }
    7     &:after {
    8         clear: both;
    9     }
    10 }
    11 /* Generated by Glyphter (http://www.glyphter.com) on  Sat Jun 23 2018*/
    12 @font-face {
    13     font-family: 'Glyphter';
    14     src: url('./font/Glyphter.eot');
    15     src: url('./font/Glyphter.eot?#iefix') format('embedded-opentype'),
    16          url('./font/Glyphter.woff') format('woff'),
    17          url('./font/Glyphter.ttf') format('truetype'),
    18          url('./font/Glyphter.svg#Glyphter') format('svg');
    19     font-weight: normal;
    20     font-style: normal;
    21 }
    22 [class*='custicon-']:before{
    23     display: inline-block;
    24    font-family: 'Glyphter';
    25    font-style: normal;
    26    font-weight: normal;
    27    line-height: 1;
    28    -webkit-font-smoothing: antialiased;
    29    -moz-osx-font-smoothing: grayscale
    30 }
    31 .custicon-MusicIDBiconPunchout:before{content:'\0041';}
    32 .custicon-MusicIDBicon:before{content:'\0042';}
    33 
    34 #musicidb-events-settings {
    35     .musicidb-admin-tabs {
    36         @include clearfix();
    37         margin: 0 !important;
    38         padding: 0 !important;
    39 
    40         li {
    41             position: relative;
    42             top: 1px;
    43             display: block;
    44             float: left;
    45             margin: 0 !important;
    46 
    47             &:before {
    48                 content: '' !important;
    49             }
    50 
    51             a {
    52                 display: block;
    53                 background: #ddd;
    54                 color: #545454;
    55                 padding: 10px 15px;
    56                 border-left: #d8d8d8 1px solid;
    57                 border-top: #d8d8d8 1px solid;
    58                 font-size: 15px;
    59                 line-height: 19px;
    60                 text-decoration: none;
    61 
    62                 &:hover {
    63                     background: #ccc;
    64                 }
    65 
    66                 &:focus {
    67                     box-shadow: none;
    68                 }
    69 
    70                 &.current {
    71                     background: #fff;
    72                 }
    73             }
    74 
    75             &:last-child a {
    76                 border-right: #d8d8d8 1px solid;
    77             }
    78         }
    79     }
    80 
    81     a, a:focus {
    82         outline:none !important;
    83         box-shadow:none !important;
    84     }
    85 
    86     .admin-tab {
    87         background: #fff;
    88         padding: 10px 20px;
    89         border: #d8d8d8 1px solid;
    90 
    91         &.current {
    92             display: block;
    93         }
    94 
    95         li {
    96             &:before {
    97                 content: '' !important;
    98             }
    99         }
    100 
    101     }
    102 
    103 
    104     #musicidb-events-settings-general {
    105         .connected,
    106         .not-connected {
    107             font-weight: bold;
    108         }
    109 
    110         .green {
    111             color: #0F0;
    112         }
    113 
    114         .red {
    115             color: #F00;
    116         }
    117     }
    118 
    119     #musicidb-events-settings-sc {
    120         ul.optionList {
    121             > li {
    122                 @include clearfix();
    123                 margin-bottom: 20px;
    124                
    125                 > label {
    126                     text-align:right;
    127                     width:240px;
    128                     margin-right:30px;
    129                     float:left;     
    130                     span.small {
    131                         display: block;
    132                         font-size: 9px;
    133                     }
    134                 }
    135             }           
    136         }
    137 
    138         div#idSelect,
    139         div#selected-venue {
    140             float: left;
    141 
    142             ul.selectedEntities {
    143                 > li {
    144                     input {
    145                         margin-right: 10px;
    146                     }
    147                 }
    148             }
    149         }
    150 
    151         input.shortcode,
    152         input.shortcode-slider {
    153             width: 60%;
    154         }
    155 
    156     }
    157 
    158     .MusicIDBlogo {     
    159         float:right;
    160         margin:0;
    161         position:relative;
    162         top:7px;
    163         img {
    164             height:auto;       
    165             width:200px;
    166         }
    167     }
    168 }
    169 
    170 #musiscidb-insert-shortcode {
    171 
    172     .wp-media-buttons-icon {
    173        
    174         padding-bottom: 3px;
    175         padding-right: 3px;
    176 
    177         img {
    178             padding: 0;
    179         }
    180 
    181     }
    182 
    183 }
     1@import 'admin';
     2@import 'admin-responsive';
  • musicidb-calendar/trunk/css/scss/front-end/_base.scss

    r3080024 r3158876  
    182182    $color_rangoon_green_approx: #1b1b1b;
    183183    $color_pizza_approx: #ca8f08;
    184     $color_corn_harvest_approx: #926d19;
    185 
    186 // @font-face {
    187 //  font-family: 'Montserrat-SemiBold';
    188 //  src: url('./font/Montserrat/Montserrat-SemiBold.eot');
    189 //  src: url('./font/Montserrat/Montserrat-SemiBold.eot?#iefix') format('embedded-opentype'),
    190 //  url('./font/Montserrat/Montserrat-SemiBold.woff2') format('woff2'),
    191 //  url('./font/Montserrat/Montserrat-SemiBold.woff') format('woff'),
    192 //  url('./font/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
    193 //  font-weight: 600;
    194 //  font-style: normal;
    195 // }
    196 
    197 // @font-face {
    198 //  font-family: 'Montserrat-Regular';
    199 //  src: url('./font/Montserrat/Montserrat-Regular.eot');
    200 //  src: url('./font/Montserrat/Montserrat-Regular.eot?#iefix') format('embedded-opentype'),
    201 //  url('./font/Montserrat/Montserrat-Regular.woff2') format('woff2'),
    202 //  url('./font/Montserrat/Montserrat-Regular.woff') format('woff'),
    203 //  url('./font/Montserrat/Montserrat-Regular.ttf') format('truetype');
    204 //  font-weight: normal;
    205 //  font-style: normal;
    206 // }
     184
    207185
    208186//Extends
    209187   
    210 
    211188    //original selectors
    212189    //.artistDetails .socialBubbleIcons li, .cardFloater .socialBubbleIcons li
     
    314291    .musicidb-events-integration {
    315292        position: relative;
    316 
     293        margin-bottom:35px;
    317294        //Links and Buttons
    318295            a {
     
    905882                            background:#333;
    906883                            width: 100%;
    907                             margin-bottom: 10px;
    908                             /* This height works with a container width 1150px; */ height: 350px;
     884                            margin-bottom: 10px;                           
     885                            /* This height works with a container width 1150px; */ height: 315px;
    909886                            overflow:hidden;
    910887                            display: flex;
     
    988965                .rowView {
    989966                        width: 100%;
    990                         display:table;
     967                        display:flex;   
     968                        align-items: center;
    991969                        .rowColumn{
    992                             display:table-cell;   
    993970                            text-align: left;
    994971                            vertical-align: top;
     
    996973                            padding: 5px 5px;
    997974                            box-sizing: border-box;
     975                            display: flex;
     976                            align-items: center;
     977                            // flex-direction: row;
     978                            // align-content: center;                           
    998979                            .cardFloater{
    999980                               
     
    1004985                            &.detailsColumn{
    1005986                                position: relative;
    1006                                 top: -13px;
     987                                // top: -13px;
    1007988                            }
    1008989                           
     
    1011992                                text-align: right;
    1012993                                min-width: 220px;
     994                                display:flex;
     995                                flex-direction: row-reverse;
     996                                align-items: center;
    1013997                            }
    1014998                           
     
    10971081                position: relative;
    10981082                display: inline-block;
    1099                 padding-top: 9px;
    1100                 padding-top:13px; //Better on dirty dottys..
     1083                padding-top: 10px;
     1084                //padding-top:13px; //Better on dirty dottys..
    11011085               
    11021086                &:hover {
     
    11131097                    display: none;
    11141098                    position: absolute;
    1115                     bottom: 28px;
     1099                    bottom: 23px;
    11161100                    left: -10px;
    11171101                    overflow: hidden; /*beta change */
     
    11291113                .socialBubbleIcons {                   
    11301114                    left:auto;
    1131                     right: -9px;
     1115                    right: 4px;
    11321116                    position: absolute;
    11331117                    z-index: 3;
     
    11371121                    margin: 0 !important;
    11381122                    padding: 0 !important;
     1123                    box-sizing: border-box;
    11391124                    // left: 8px;
    11401125                   
     
    13251310        //Tabs
    13261311            .musicidb-tabs {
     1312                padding-bottom:10px;
     1313               
    13271314                &.horizontal {
    13281315                    display: block;
  • musicidb-calendar/trunk/css/scss/front-end/_responsive.scss

    r3080024 r3158876  
    22
    33.musicidb-events-integration{
    4     @media only screen and(max-width: 1500px) {
     4    @media only screen and (max-width: 1500px) {
    55        .window {
    66            width: 85%;
     
    1414
    1515    /* Smaller Than Most Screens */
    16     @media only screen and(max-width: 1150px) {
     16    @media only screen and (max-width: 1150px) {
    1717        .window {
    1818            width: 100%;
     
    2727
    2828    /* Tablet View */
    29     @media only screen and(max-width: 1000px) {
     29    @media only screen and (max-width: 1000px) {
    3030        .viewPosters{
    3131            ul.eventsList{
     
    198198    } //1000px
    199199
    200     @media only screen and(max-width: 700px) {
     200    @media only screen and (max-width: 700px) {
    201201        .viewPosters{
    202202            ul.eventsList{
     
    346346
    347347    /* Mobile Devices */
    348     @media only screen and(max-width: 595px) {
     348    @media only screen and (max-width: 595px) {
    349349       
    350350        /* Mobile Hide 'em */
     
    607607    } //595px
    608608
    609     @media only screen and(max-width: 400px) {
     609    @media only screen and (max-width: 400px) {
    610610        .webVideo iframe {
    611611            width: 100%;
     
    633633#musicidb-featured-events.tvScreen,
    634634.tvScreen #musicidb-featured-events{
    635     @media only screen and(max-width: 700px) {
     635    @media only screen and (max-width: 700px) {
    636636        .slider-banner{
    637637            .slick-slide{
     
    643643        }
    644644    }
    645     @media only screen and(max-width: 595px) {
     645    @media only screen and (max-width: 595px) {
    646646        .slider-banner{
    647647            .slick-slide{
     
    654654.infinite-body-outer-wrapper .musicidb-events-integration{
    655655/* Smaller Than Most Screens */
    656     @media only screen and(max-width: 1000px) {
     656    @media only screen and (max-width: 1000px) {
    657657        .window {
    658658            top: 77px !important;
  • musicidb-calendar/trunk/css/slick-theme.css

    r2136043 r3158876  
    1 .musicidb-events-integration .slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;padding:0 15px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.musicidb-events-integration .slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.musicidb-events-integration .slick-list:focus{outline:none}.musicidb-events-integration .slick-list.dragging{cursor:pointer;cursor:hand}.musicidb-events-integration .slick-slider .slick-track,.musicidb-events-integration .slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.musicidb-events-integration .slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto;margin:0}.musicidb-events-integration .slick-track:before,.musicidb-events-integration .slick-track:after{display:table;content:''}.musicidb-events-integration .slick-track:after{clear:both}.musicidb-events-integration .slick-loading .slick-track{visibility:hidden}.musicidb-events-integration .slick-slide{display:none;float:left;height:100%;min-height:1px}.musicidb-events-integration [dir='rtl'] .slick-slide{float:right}.musicidb-events-integration .slick-slide img{display:block;background:none;border:none;width:130px;height:auto}.musicidb-events-integration .slick-slide.slick-loading img{display:none}.musicidb-events-integration .slick-slide.dragging img{pointer-events:none}.musicidb-events-integration .slick-initialized .slick-slide{display:block}.musicidb-events-integration .slick-loading .slick-slide{visibility:hidden}.musicidb-events-integration .slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.musicidb-events-integration .slick-arrow.slick-hidden{display:none}@font-face{font-family:'slick';font-weight:normal;font-style:normal;src:url("./fonts/slick.eot");src:url("./fonts/slick.eot?#iefix") format("embedded-opentype"),url("./fonts/slick.woff") format("woff"),url("./fonts/slick.ttf") format("truetype"),url("./fonts/slick.svg#slick") format("svg")}.musicidb-events-integration .slick-prev,.musicidb-events-integration .slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;-webkit-transform:translate(0, -50%);transform:translate(0, -50%);cursor:pointer;color:transparent;border:none;outline:none;background:transparent}.musicidb-events-integration .slick-prev:hover,.musicidb-events-integration .slick-prev:focus,.musicidb-events-integration .slick-next:hover,.musicidb-events-integration .slick-next:focus{color:transparent;outline:none;background:transparent}.musicidb-events-integration .slick-prev:hover:before,.musicidb-events-integration .slick-prev:focus:before,.musicidb-events-integration .slick-next:hover:before,.musicidb-events-integration .slick-next:focus:before{opacity:1}.musicidb-events-integration .slick-prev.slick-disabled:before,.musicidb-events-integration .slick-next.slick-disabled:before{opacity:.25}.musicidb-events-integration .slick-prev:before,.musicidb-events-integration .slick-next:before{font-family:'slick';font-size:20px;line-height:1;opacity:.75;color:white;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.musicidb-events-integration .slick-prev{left:-25px}.musicidb-events-integration [dir='rtl'] .slick-prev{right:-25px;left:auto}.musicidb-events-integration .slick-prev:before{content:'←'}.musicidb-events-integration [dir='rtl'] .slick-prev:before{content:'→'}.musicidb-events-integration .slick-next{right:-25px}.musicidb-events-integration [dir='rtl'] .slick-next{right:auto;left:-25px}.musicidb-events-integration .slick-next:before{content:'→'}.musicidb-events-integration [dir='rtl'] .slick-next:before{content:'←'}.musicidb-events-integration .slick-dotted.slick-slider{margin-bottom:30px}.musicidb-events-integration .slick-dots{position:absolute !important;bottom:-25px;left:0 !important;display:block;width:100%;padding:0 !important;margin:0 !important;list-style:none;text-align:center}.musicidb-events-integration .slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.musicidb-events-integration .slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:transparent;border:0;outline:none;background:transparent}.musicidb-events-integration .slick-dots li button:hover,.musicidb-events-integration .slick-dots li button:focus{outline:none}.musicidb-events-integration .slick-dots li button:hover:before,.musicidb-events-integration .slick-dots li button:focus:before{opacity:1}.musicidb-events-integration .slick-dots li button:before{font-family:'slick';font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:'•';text-align:center;opacity:.25;color:black;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.musicidb-events-integration .slick-dots li.slick-active button:before{opacity:.75;color:black}
    2 
     1.musicidb-events-integration .slick-slider{position:relative;display:block;box-sizing:border-box;padding:0 15px;-webkit-user-select:none;-moz-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0)}.musicidb-events-integration .slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.musicidb-events-integration .slick-list:focus{outline:none}.musicidb-events-integration .slick-list.dragging{cursor:pointer;cursor:hand}.musicidb-events-integration .slick-slider .slick-track,.musicidb-events-integration .slick-slider .slick-list{transform:translate3d(0, 0, 0)}.musicidb-events-integration .slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto;margin:0}.musicidb-events-integration .slick-track:before,.musicidb-events-integration .slick-track:after{display:table;content:""}.musicidb-events-integration .slick-track:after{clear:both}.musicidb-events-integration .slick-loading .slick-track{visibility:hidden}.musicidb-events-integration .slick-slide{display:none;float:left;height:100%;min-height:1px}.musicidb-events-integration [dir=rtl] .slick-slide{float:right}.musicidb-events-integration .slick-slide img{display:block;background:none;border:none;width:130px;height:auto}.musicidb-events-integration .slick-slide.slick-loading img{display:none}.musicidb-events-integration .slick-slide.dragging img{pointer-events:none}.musicidb-events-integration .slick-initialized .slick-slide{display:block}.musicidb-events-integration .slick-loading .slick-slide{visibility:hidden}.musicidb-events-integration .slick-vertical .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0)}.musicidb-events-integration .slick-arrow.slick-hidden{display:none}@font-face{font-family:"slick";font-weight:normal;font-style:normal;src:url("./fonts/slick.eot");src:url("./fonts/slick.eot?#iefix") format("embedded-opentype"),url("./fonts/slick.woff") format("woff"),url("./fonts/slick.ttf") format("truetype"),url("./fonts/slick.svg#slick") format("svg")}.musicidb-events-integration .slick-prev,.musicidb-events-integration .slick-next{font-size:0;line-height:0;position:absolute;top:50%;display:block;width:20px;height:20px;padding:0;transform:translate(0, -50%);cursor:pointer;color:rgba(0,0,0,0);border:none;outline:none;background:rgba(0,0,0,0)}.musicidb-events-integration .slick-prev:hover,.musicidb-events-integration .slick-prev:focus,.musicidb-events-integration .slick-next:hover,.musicidb-events-integration .slick-next:focus{color:rgba(0,0,0,0);outline:none;background:rgba(0,0,0,0)}.musicidb-events-integration .slick-prev:hover:before,.musicidb-events-integration .slick-prev:focus:before,.musicidb-events-integration .slick-next:hover:before,.musicidb-events-integration .slick-next:focus:before{opacity:1}.musicidb-events-integration .slick-prev.slick-disabled:before,.musicidb-events-integration .slick-next.slick-disabled:before{opacity:.25}.musicidb-events-integration .slick-prev:before,.musicidb-events-integration .slick-next:before{font-family:"slick";font-size:20px;line-height:1;opacity:.75;color:#fff;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.musicidb-events-integration .slick-prev{left:-25px}.musicidb-events-integration [dir=rtl] .slick-prev{right:-25px;left:auto}.musicidb-events-integration .slick-prev:before{content:"←"}.musicidb-events-integration [dir=rtl] .slick-prev:before{content:"→"}.musicidb-events-integration .slick-next{right:-25px}.musicidb-events-integration [dir=rtl] .slick-next{right:auto;left:-25px}.musicidb-events-integration .slick-next:before{content:"→"}.musicidb-events-integration [dir=rtl] .slick-next:before{content:"←"}.musicidb-events-integration .slick-dotted.slick-slider{margin-bottom:30px}.musicidb-events-integration .slick-dots{position:absolute !important;bottom:-25px;left:0 !important;display:block;width:100%;padding:0 !important;margin:0 !important;list-style:none;text-align:center}.musicidb-events-integration .slick-dots li{position:relative;display:inline-block;width:20px;height:20px;margin:0 5px;padding:0;cursor:pointer}.musicidb-events-integration .slick-dots li button{font-size:0;line-height:0;display:block;width:20px;height:20px;padding:5px;cursor:pointer;color:rgba(0,0,0,0);border:0;outline:none;background:rgba(0,0,0,0)}.musicidb-events-integration .slick-dots li button:hover,.musicidb-events-integration .slick-dots li button:focus{outline:none}.musicidb-events-integration .slick-dots li button:hover:before,.musicidb-events-integration .slick-dots li button:focus:before{opacity:1}.musicidb-events-integration .slick-dots li button:before{font-family:"slick";font-size:6px;line-height:20px;position:absolute;top:0;left:0;width:20px;height:20px;content:"•";text-align:center;opacity:.25;color:#000;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.musicidb-events-integration .slick-dots li.slick-active button:before{opacity:.75;color:#000}
    32/*# sourceMappingURL=maps/slick-theme.css.map */
  • musicidb-calendar/trunk/css/styles.css

    r3080024 r3158876  
    1 .musicidb-events-integration .cardFloater .socialBubbleIcons li{float:right;padding:0 0 0 2px;margin-bottom:2px;list-style-type:none}.musicidb-events-integration .eventInfoArea .venueInfoTile,.musicidb-events-integration .eventInfoArea .tilesContainer{float:left;clear:none;width:50%}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}body.noScroll{overflow:hidden}.slide{position:relative}.slide .right{position:absolute;left:0;top:0;min-height:350px;width:20%;z-index:10;opacity:0.8;color:#fff}.slide .right .label{display:block;background:#b4b6ba;color:#000;width:40%;margin:15px 0;padding:5px 15px;text-align:center;line-height:normal}.slide .right .date{float:left;margin:15px 15px 0 15px;font-size:11px}.slide .right .name{text-transform:uppercase;float:left;margin:0 15px;clear:both;font-size:14px;line-height:1em}.slide .right .tickets,.slide .right .view-event{clear:both;float:left;margin:15px}.slide .left{width:100%}.slide .left img{width:100%}.musicidb-events-integration{position:relative}.musicidb-events-integration a{border:none;text-decoration:none;-webkit-box-shadow:none;box-shadow:none;outline:none !important}.musicidb-events-integration a:focus{outline:none !important}.musicidb-events-integration .controlbar{display:table;margin:0 auto 0;margin-bottom:0 !important;width:auto;float:none !important;position:relative;padding:0}.musicidb-events-integration .controlbar .accent{top:24px;font-size:10px !important;display:block;font-size:11px;text-align:center;position:absolute;margin:auto;right:0;left:0;bottom:-1px}.musicidb-events-integration .controlbar .greenBtn{margin-right:0}.musicidb-events-integration .controlbar .silverBtn{margin-right:0}.musicidb-events-integration .controlbar .blueBtn{margin-right:0}.musicidb-events-integration .controlbar .orangeBtn{margin-right:0}.musicidb-events-integration .controlbar .mediaBtn{padding-left:31px !important}.musicidb-events-integration .controlbar .inactiveBtn{margin-right:0;background:#999 !important;color:#fff;cursor:default}.musicidb-events-integration .controlbar li{display:inline-block;float:left;margin-bottom:4px;position:relative;margin-right:4px}.musicidb-events-integration .controlbar li:last-child{margin-right:0}.musicidb-events-integration .controlbar a{font:14px/14px Arial,"Open Sans",sans-serif !important}.musicidb-events-integration .controlbar a:hover{text-decoration:none !important}.musicidb-events-integration .controlbar a.musicIDBevent img.whiteIcon{display:none}.musicidb-events-integration .controlbar span{text-align:center;font:13px/15px 'Open Sans', sans-serif}.musicidb-events-integration .controlbar>li>a{background:#fff;border-radius:4px;padding:7px 10px 4px;display:block;border-right:none;color:#292929;max-width:100px;position:relative;height:30px;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:inherit;border:1px solid transparent}.musicidb-events-integration .controlbar>li>a:hover{background:#6d6d6d;background:#333;color:#fff}.musicidb-events-integration .controlbar>li a.TicketLink{position:relative;border:1px solid #2ea23b !important}.musicidb-events-integration .controlbar>li a.TicketLink.ticketSmall{border:1px solid #00af18 !important}.musicidb-events-integration .controlbar>li a.orangeBtn{background:#f60;color:#fff;margin:0}.musicidb-events-integration .controlbar>li a.orangeBtn:hover{background:#d05126;text-decoration:none !important}.musicidb-events-integration .controlbar.msgBar li{float:none;margin:0 -2px}.musicidb-events-integration .controlbar.msgBar a{height:16px;background:#fff;margin-right:5px}.musicidb-events-integration .controlbar.msgBar .aReplacement{height:16px;background:#fff;margin-right:5px}.musicidb-events-integration .controlbar .tableize{display:table}.musicidb-events-integration .controlbar .playBtn{top:0}.musicidb-events-integration .controlbar .claim{float:right}.musicidb-events-integration .controlbar .buttonSpinner,.musicidb-events-integration .controlbar .buttonMsg{position:relative;top:3px;left:4px}.musicidb-events-integration .greenBtn{font-family:"Roboto";padding:2px 17px;height:34px;display:table-cell;vertical-align:middle;font-size:16px;text-transform:none;border:0;cursor:pointer;margin-right:10px;padding:9px 20px;height:inherit;border-radius:4px;color:#fff !important;min-height:18px;background:#2ea23b !important}.musicidb-events-integration .greenBtn:hover{text-decoration:none !important;background:#10c024 !important}.musicidb-events-integration .eventInfoWide{font-size:12px;line-height:15px;margin-bottom:13px}.musicidb-events-integration .eventInfoWide a{color:#e78d00}.musicidb-events-integration .eventInfoWide a:hover{color:#e78d00}.musicidb-events-integration .btn i{padding:0 7px 0 0;float:left}.musicidb-events-integration .simpleBtn{display:inline-block;margin:0 4px 0 0;padding:4px 8px;border-radius:5px;border:1px solid #ccc;font-size:11px !important;background:#fff;color:#444}.musicidb-events-integration .TicketLink span,.musicidb-events-integration .orangeBtn span{font:14px/15px Arial,"Open Sans",sans-serif !important}.musicidb-events-integration .TicketLink span i,.musicidb-events-integration .orangeBtn span i{position:absolute;left:10px;top:5px}.musicidb-events-integration a.fbLinkWide{color:#fff !important;background:#3B5998 !important;border:1px solid transparent !important}.musicidb-events-integration a.fbLinkWide i.fui-facebook{color:#FFF}.musicidb-events-integration a.fbLinkWide:hover{color:#fff !important;background:#1919f3 !important}.musicidb-events-integration.blackBack .eventsList .rowView .rowColumn .simpleBtn{background:#181818;color:#eee}.musicidb-events-integration.blackBack .eventsList .rowView .rowColumn .simpleBtn:hover{background:#000}.musicidb-events-integration.blackBack .fbLinkWide{background:#3B5998 !important;border:none !important;border:1px solid transparent !important}.musicidb-events-integration.blackBack .fbLinkWide:hover{background:#153a85 !important;color:#fff !important}.musicidb-events-integration img{max-width:100%;height:auto;border:none;background:none}.musicidb-events-integration .preLoader{display:table;margin:140px auto}.musicidb-events-integration .fui-plus-circle{cursor:pointer;color:#797979}.musicidb-events-integration .summaryToggle:hover .fui-plus-circle{color:#444}.musicidb-events-integration h2.date{font-size:20px;margin:0 0 5px}.musicidb-events-integration ul{left:0;list-style:none;padding-right:0;margin-left:0}.musicidb-events-integration ul.eventsList{margin:0 !important;padding:0 !important}.musicidb-events-integration .thumbTileHolder{width:220px;height:220px;position:relative}.musicidb-events-integration .viewListPics .eventsList{list-style:none;left:0;padding-left:0;margin-left:0}.musicidb-events-integration .viewListPics .eventsList .listEvent{background:#fff;background:#ffffffe0;border:1px solid #fff !important;margin-bottom:0;margin:0 0 5px 0;padding:8px 8px 5px 16px;position:relative;clear:both}.musicidb-events-integration .viewListPics .eventsList .listEvent .centeredBlock{margin-top:0}.musicidb-events-integration .viewListPics .eventsList .listEvent:nth-child(2n){background:#fbfbfbe0;border-top:1px solid #efefef;border-bottom:1px solid #efefef}.musicidb-events-integration .viewListPics .eventsList .listEvent .summaryToggle{position:absolute;top:7px;left:10px}.musicidb-events-integration .viewListPics .eventsList .listEvent.noExpand{padding-left:8px}.musicidb-events-integration .viewListPics .eventsList .listEvent article{margin-bottom:5px}.musicidb-events-integration .viewListPics .eventsList .listEvent .details{margin-bottom:0}.musicidb-events-integration .viewListPics .eventsList .listEvent .navWithBubbles .bubbleContent{bottom:44px}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date{background:none;padding:1px 0px 0px;font-size:18px;float:left;margin:4px 6px 0 0}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span{color:#5d5d5d !important;background:none !important;width:65px}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span.monthName{font:15px/17px "Arial", "sans-serif";padding:2px 0 0;height:15px}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span.dayNameAbb{text-transform:none}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span.dayNum{font:35px/35px "Raleway", "Arial", "sans-serif";height:39px;position:relative;top:-3px}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span.yearNum{color:#999 !important}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea{max-height:140px;width:125px;overflow:hidden;float:left}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea img{width:100%;height:auto;margin:7px 0 0;max-height:none;background:#eaeaea;max-width:100%}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea.large{width:350px}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea img.defaultPic{opacity:.3}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea .bandPicBox img{margin:0 auto;height:auto;min-width:41px;width:100% !important}.musicidb-events-integration .viewListPics .eventsList .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList .listEvent .controlbar.moveLeft{margin-left:215px}.musicidb-events-integration .viewListPics .eventsList .listEvent .listingBody h3{margin-bottom:12px}.musicidb-events-integration .viewListPics .eventsList .listEvent .listingBody h3 .atText{font-size:12px}.musicidb-events-integration .viewListPics .eventsList .listEvent .listingBody p{margin-bottom:4px;padding:0}.musicidb-events-integration .viewListPics .eventsList .listEvent .details{margin-bottom:4px}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventLogistics{height:inherit;margin-bottom:3px}.musicidb-events-integration .viewListPics .eventsList .listEvent .venueInfo .detailsRow{width:70%}.musicidb-events-integration .viewListPics .eventsList .listEvent .fullInfo{margin-top:15px}.musicidb-events-integration .viewListPics .eventsList .listEvent span.monthName,.musicidb-events-integration .viewListPics .eventsList .listEvent span.dayNum,.musicidb-events-integration .viewListPics .eventsList .listEvent span.yearNum{display:block;text-align:center}.musicidb-events-integration .viewListPics .eventsList .listEvent span.monthName{font:14px/20px "Roboto","Arial","sans-serif";text-transform:uppercase;padding:2px 0;width:80px;font-weight:bold;height:19px}.musicidb-events-integration .viewListPics .eventsList .listEvent span.dayNum{font:60px/63px "Roboto","Arial","sans-serif";font-weight:bold;padding:0;width:80px;height:80px;margin-bottom:0;overflow:hidden}.musicidb-events-integration .viewListPics .eventsList .listEvent span.yearNum{color:#999 !important;font-size:10px;position:relative;top:-8px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea{width:330px;max-height:none}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .bandPics{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;height:100%;width:100%;max-height:500px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .bandPics .bandPicBox{float:none;width:50%;height:auto;aspect-ratio:1 / 1;gap:0px;-ms-flex-line-pack:center;align-content:center}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .bandPics.oneBand .bandPicBox{width:100%}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .controlbar.moveLeft{margin-left:420px !important}.musicidb-events-integration .viewPosters{max-width:1140px}.musicidb-events-integration .viewPosters ul.eventsList{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;list-style:none;margin:0 !important;padding:0 !important}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent{-webkit-box-sizing:border-box;box-sizing:border-box;width:33%;width:calc(33% - 20px);margin-bottom:20px;gap:0px;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-ms-flex-line-pack:start;align-content:flex-start;-ms-flex-wrap:wrap;flex-wrap:wrap;position:relative}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent .summaryToggle{position:absolute;top:1px;left:2px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent .summaryToggle .musicidb-events-integration .fui-plus-circle{color:#bbb}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea{background:#333;width:100%;margin-bottom:10px;height:350px;overflow:hidden;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea a{display:block;margin:0 auto}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea .eventImg{width:100%}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea .bandPics{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-ms-flex-wrap:wrap;flex-wrap:wrap;height:100%;width:100%}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea .bandPics .bandPicBox{float:none;width:50%;height:auto;aspect-ratio:1 / 1;gap:0px;-ms-flex-line-pack:center;align-content:center}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea .bandPics.oneBand .bandPicBox{width:100%}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody{padding:0 10px;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody h3.date{margin-bottom:8px;font-size:18px;line-height:1.1em}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody h3.titleofevent{margin-bottom:12px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody h3.titleofevent .cardFloater{padding-top:0}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody .eventInfoArea .marginBottom{margin-bottom:5px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent ul.controlbar{left:0;margin-left:0;padding:0;margin:0;list-style:none;width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:nowrap;flex-wrap:nowrap;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;-webkit-box-align:center;-ms-flex-align:center;align-items:center}.musicidb-events-integration .viewCompact .rowView{width:100%;display:table}.musicidb-events-integration .viewCompact .rowView .rowColumn{display:table-cell;text-align:left;vertical-align:top;width:20%;padding:5px 5px;-webkit-box-sizing:border-box;box-sizing:border-box}.musicidb-events-integration .viewCompact .rowView .rowColumn.venueColumn{width:20%}.musicidb-events-integration .viewCompact .rowView .rowColumn.detailsColumn{position:relative;top:-13px}.musicidb-events-integration .viewCompact .rowView .rowColumn.buttonsColumn{width:26%;text-align:right;min-width:220px}.musicidb-events-integration .viewCompact .rowView .rowColumn span.yearNum{text-align:left;display:inline;top:0}.musicidb-events-integration .viewCompact .rowView .rowColumn .simpleBtn{display:inline-block;font-size:11px !important}.musicidb-events-integration .viewCompact .rowView .rowColumn .simpleBtn.fbLinkWide{display:inline-block}.musicidb-events-integration .viewCompact .rowView .locationColumn{width:14%}.musicidb-events-integration .viewCompact .rowView .simpleTitle{font-size:14px;line-height:15px;margin-bottom:6px}.musicidb-events-integration .eventInfoArea .left{width:50%}.musicidb-events-integration .eventDescription{color:#414141 !important;font-family:Arial, sans-serif !important;font-size:16px !important;line-height:22px !important}.musicidb-events-integration .eventDescription span,.musicidb-events-integration .eventDescription div,.musicidb-events-integration .eventDescription p,.musicidb-events-integration .eventDescription h1,.musicidb-events-integration .eventDescription h2,.musicidb-events-integration .eventDescription h3,.musicidb-events-integration .eventDescription h4,.musicidb-events-integration .eventDescription h5,.musicidb-events-integration .eventDescription h6{color:#414141 !important;background:none !important}.musicidb-events-integration .eventDescription a{background:none !important}.musicidb-events-integration .eventDescription span,.musicidb-events-integration .eventDescription div,.musicidb-events-integration .eventDescription p{font-family:Arial, sans-serif !important;font-size:16px !important;line-height:22px !important}.musicidb-events-integration .eventDescription div,.musicidb-events-integration .eventDescription p{margin-bottom:15px !important;padding:0 !important}.musicidb-events-integration .thumbTileHolder{width:220px;height:220px;position:relative}.musicidb-events-integration .cardFloater{position:relative;display:inline-block;padding-top:9px;padding-top:13px}.musicidb-events-integration .cardFloater:hover .hoverArtist{color:#333;text-decoration:underline}.musicidb-events-integration .cardFloater:hover .thumbTileHolder{display:block}.musicidb-events-integration .cardFloater .thumbTileHolder{display:none;position:absolute;bottom:28px;left:-10px;overflow:hidden;z-index:3;font-weight:normal;font-size:14px;margin:0}.musicidb-events-integration .cardFloater .linkTileHolder{border:8px solid #ebebeb;-webkit-box-sizing:border-box;box-sizing:border-box}.musicidb-events-integration .cardFloater .socialBubbleIcons{left:auto;right:-9px;position:absolute;z-index:3;bottom:-1px;height:25px;padding-right:0;margin:0 !important;padding:0 !important}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.fbLink,.musicidb-events-integration .cardFloater .socialBubbleIcons li a.facebook{background:url("../images/social-icons.png") no-repeat -133px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.fbLink:hover,.musicidb-events-integration .cardFloater .socialBubbleIcons li a.facebook:hover{background:url("../images/social-icons.png") no-repeat -133px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.twitterLink{background:url("../images/social-icons.png") no-repeat -67px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.twitterLink:hover{background:url("../images/social-icons.png") no-repeat -67px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.otherLink{background:url("../images/social-icons.png") no-repeat -263px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.otherLink:hover{background:url("../images/social-icons.png") no-repeat -263px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.soundcloudLink{background:url("../images/social-icons.png") no-repeat -100px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.soundcloudLink:hover{background:url("../images/social-icons.png") no-repeat -100px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.instagramLink{background:url("../images/social-icons.png") no-repeat -166px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.instagramLink:hover{background:url("../images/social-icons.png") no-repeat -166px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.googlePlusLink{background:url("../images/social-icons.png") no-repeat -199px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.googlePlusLink:hover{background:url("../images/social-icons.png") no-repeat -199px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.linkedinLink{background:url("../images/social-icons.png") no-repeat -133px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.linkedinLink:hover{background:url("../images/social-icons.png") no-repeat -133px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.pinterestLink{background:url("../images/social-icons.png") no-repeat -232px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.pinterestLink:hover{background:url("../images/social-icons.png") no-repeat -232px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.bandcampLink{background:url("../images/social-icons.png") no-repeat -2px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.bandcampLink:hover{background:url("../images/social-icons.png") no-repeat -2px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.reverbLink{background:url("../images/social-icons.png") no-repeat -199px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.reverbLink:hover{background:url("../images/social-icons.png") no-repeat -199px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.webLink{background:url("../images/social-icons.png") no-repeat -67px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.webLink:hover{background:url("../images/social-icons.png") no-repeat -67px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.youtubeLink{background:url("../images/social-icons.png") no-repeat -2px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.youtubeLink:hover{background:url("../images/social-icons.png") no-repeat -2px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.vevoLink{background:url("../images/social-icons.png") no-repeat -35px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.vevoLink:hover{background:url("../images/social-icons.png") no-repeat -35px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.itunesLink{background:url("../images/social-icons.png") no-repeat -232px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.itunesLink:hover{background:url("../images/social-icons.png") no-repeat -232px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.spotLink{background:url("../images/social-icons.png") no-repeat -355px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.spotLink:hover{background:url("../images/social-icons.png") no-repeat -355px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.wikiLink{background:url("../images/social-icons.png") no-repeat -324px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.wikiLink:hover{background:url("../images/social-icons.png") no-repeat -324px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.storeLink{background:url("../images/social-icons.png") no-repeat -293px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.storeLink:hover{background:url("../images/social-icons.png") no-repeat -293px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a{width:21px;height:21px;opacity:.8;display:block;background-size:381px 123px !important}.musicidb-events-integration .cardFloater .socialBubbleIcons li a:hover{opacity:1}.musicidb-events-integration .cardFloater .socialBubbleIcons li img{width:100% !important;display:block}.musicidb-events-integration .cardFloater .oneBand .bandPicBox{width:100%}.musicidb-events-integration .cardFloater .oneBand .bandPicBox img{width:100% !important}.musicidb-events-integration .cardFloater .thumbTile img{border:none;margin:0;border-radius:0;max-width:100%}.musicidb-events-integration .thumbTile,.musicidb-events-integration .thumbTile .frame{height:204px}.musicidb-events-integration .thumbTile{position:relative;color:#999 !important;display:block;background:#fff}.musicidb-events-integration .thumbTile .tileData{position:absolute;bottom:0;left:0;height:106px;-webkit-box-sizing:border-box;box-sizing:border-box;width:100%;padding:3px 10px;overflow:hidden;background:-webkit-gradient(linear, left top, left bottom, color-stop(0, rgba(255,255,255,0.84)), color-stop(1%, rgba(255,255,255,0.84)), to(#fff));background:linear-gradient(to bottom, rgba(255,255,255,0.84) 0, rgba(255,255,255,0.84) 1%, #fff 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#d6ffffff', endColorstr='#ffffff', GradientType=0)}.musicidb-events-integration .thumbTile .tileData p{margin-bottom:2px;line-height:13px;font-size:12px}.musicidb-events-integration .thumbTile .tileData h3{margin-right:0;color:#525252;font:18px/22px 'Roboto', Arial, sans-serif !important;margin-bottom:5px}.musicidb-events-integration .thumbTile:hover{text-decoration:none}.musicidb-events-integration .thumbTile .frame{overflow:hidden;position:relative}.musicidb-events-integration .thumbTile img{position:relative;width:100%;height:auto;vertical-align:middle;display:table-cell}.musicidb-events-integration .thumbTile .bandPicBox{width:73px;height:73px;margin-right:0;margin-bottom:0;background:#111}.musicidb-events-integration .thumbTile h3{font:20px/19px 'Roboto', Arial, sans-serif !important}.musicidb-events-integration .thumbTile .fourSet .bandPicBox{width:110px;height:110px}.musicidb-events-integration .bandPicBox{width:62px;height:62px;display:block;overflow:hidden;float:left;margin-right:0px;margin-bottom:0px;-webkit-box-sizing:border-box;box-sizing:border-box;text-align:center}.musicidb-events-integration .bandPicBox:nth-child(2n){margin-right:0}.musicidb-events-integration .eventsList .listEvent .oneBand .bandPicBox{width:125px;height:auto;float:none;margin-right:0}.musicidb-events-integration .eventsList .listEvent .oneBand .bandPicBox img{width:100% !important}.musicidb-events-integration .musicidb-tabs.horizontal{display:block;width:100%;clear:both}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav{left:0;float:left;padding:0;margin:0 0 7px 0 !important}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav li{list-style:none;float:left;display:inline-block;margin:0 8px 8px 0}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav li a{display:block;background:none;padding:10px 16px;border-radius:3px}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav li a:hover{background:#333;color:#FFF}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav li.current a{background:#ececec;color:#444}.musicidb-events-integration .musicidb-tabs>a{font:17px/20px 'Roboto',Arial,sans-serif}.musicidb-events-integration .musicidb-tabs ul.calViewButtons{float:right !important;position:absolute !important;right:5px;left:inherit !important;z-index:3;padding:0 !important}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li{display:block;float:left;margin:0 0px 8px 0}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li a{border:1px solid #eee !important;background:#FFF !important;display:block;padding:11px;font-size:23px;line-height:20px;color:#5d5d5d}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li a:hover{color:#000;border:1px solid #eee !important}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li a#listViewToggle{border-radius:3px 0px 0px 3px}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li a#calViewToggle{border-radius:0px 3px 3px 0px}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li.current a{color:#000;border:1px solid #eee !important}.musicidb-events-integration .musicidb-tab{display:none;clear:both}.musicidb-events-integration .musicidb-tab.current{display:block}.musicidb-events-integration .mediaTabNav{display:block;float:left;margin:0;list-style:none;padding:0}.musicidb-events-integration .mediaTabNav li{float:left;margin-right:5px;margin-bottom:0}.musicidb-events-integration .mediaTabNav li a{display:block;padding:1px 8px 0px;color:#9a9a9a;border-radius:0 0 5px 5px;font-family:Arial, sans-serif;line-height:24px;font-size:18px}.musicidb-events-integration .mediaTabNav li a:hover{background:#eee;color:#656565}.musicidb-events-integration .mediaTabNav li.current a{background:#eee;color:#656565}.musicidb-events-integration .eventDetailModal{width:60%;left:0 !important;right:0 !important;top:39px !important;margin:0 auto;-webkit-box-sizing:border-box;box-sizing:border-box;max-height:95%}.musicidb-events-integration .eventDetailModal p{margin-bottom:5px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap{width:90%;max-width:770px;margin:0 auto;padding:0;margin-bottom:14px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider{padding:0 !important;background:#dcdcdc;margin:0 auto 0px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .mediaHolder{float:left;color:#656565;background:#FFF;padding:7px;width:66% !important;margin:5px 0 0 9px !important;-webkit-box-sizing:border-box;box-sizing:border-box}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .cardFloater{padding-top:0;float:left;max-width:28%;width:28% !important;margin:5px 0 0 2% !important;-webkit-box-sizing:border-box;box-sizing:border-box}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .cardFloater .thumbTile,.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .cardFloater .linkTileHolder,.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .cardFloater .frame{max-width:100%;border:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .linkTileHolder{margin-left:0}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile{width:250px;width:100%;height:250px;-webkit-box-sizing:border-box;box-sizing:border-box;padding:7px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile .frame{height:250px;max-height:100%}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile .tileData{width:100%;max-width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile .tileData .socialBubbleIcons{bottom:inherit;top:73px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile .tileData .socialBubbleIcons li a{background-size:381px 123px !important}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTabs{height:208px;overflow:hidden}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab{width:100%;height:100%;display:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab iframe{width:100%;height:100%}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab.current{display:block}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab.artistBio{overflow:auto;background:white}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab.artistBio .bioWrapper{padding:10px;display:block;color:#5f5f5f;font:14px/18px Arial, sans-serif !important}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab.artistBio .bioWrapper span{background:none !important;color:#5f5f5f !important;font:14px/18px Arial, sans-serif !important}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .mediaHolder.noMedia{display:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .noMedia .thumbTile{background:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .noMedia .thumbTile .tileData{background:none;left:210px;bottom:60px;width:338px;max-width:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .noMedia .thumbTile .tileData .socialBubbleIcons{left:8px;right:0}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .noMedia .thumbTile .tileData .socialBubbleIcons li{float:left}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider,.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider ul.slides,.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .slides li.slick-slide{height:270px !important}.musicidb-events-integration .eventDetailModal #artistCardsList{display:none}.musicidb-events-integration .eventDetailModal #artistCardsList>h2{text-align:center}.musicidb-events-integration .eventDetailModal #artistCardsList .cardFloater{display:block;width:236px;margin:0 auto 35px}.musicidb-events-integration .eventDetailModal #artistCardsList .linkTileHolder{margin-left:0}.musicidb-events-integration .eventDetailModal #artistCardsList span.stat{background:none;color:#888}.musicidb-events-integration .eventDetailModal .artistMediaExpander{cursor:pointer;text-align:center;padding-bottom:10px;margin-bottom:0;font-size:22px}.musicidb-events-integration .eventDetailModal .artistMediaExpander i.leftIcon{margin-right:12px;top:3px;position:relative}.musicidb-events-integration .eventDetailModal .artistMediaExpander i.expandCollapseIcon{float:right;font-size:13px;margin-top:5px}.musicidb-events-integration .eventDetailModal .artistMediaSection{display:none}.musicidb-events-integration .eventDetailModal .artistMediaSection iframe{width:100%}.musicidb-events-integration .eventDetailModal .modalTickets{max-width:770px;padding:9px 0;margin:0 auto 20px}.musicidb-events-integration .eventDetailModal .playNowText{display:block;float:left;display:none;margin-right:15px}.musicidb-events-integration .eventDetailModal .eventDescription{min-height:250px}.musicidb-events-integration .eventDetailModal .eventTopDetails,.musicidb-events-integration .eventDetailModal .eventDescription{padding:0;width:770px;max-width:90%;margin:0 auto 10px}.musicidb-events-integration .eventDetailModal .eventTopDetails{margin-top:5px}.musicidb-events-integration .eventDetailModal .eventTopDetails h2.date{padding-top:25px}.musicidb-events-integration .eventArtistStats{float:right;position:relative;top:4px}.musicidb-events-integration .eventArtistStats span{display:block;float:left;margin-right:5px;font-size:16px;line-height:19px}.musicidb-events-integration .eventArtistStats span.pageLink{font-size:12px;position:relative;color:#999;top:3px}.musicidb-events-integration .eventArtistStats span i{font-size:11px}.musicidb-events-integration .eventArtistStats span a:hover{text-decoration:none}.musicidb-events-integration .eventArtistStats span:last-child{margin-right:0}.musicidb-events-integration .eventArtistStats span.stat{padding:2px 5px}.musicidb-events-integration .musicidb-integration-mask{display:none;position:fixed;top:0;left:0;cursor:pointer;width:100% !important;height:100% !important;z-index:9000;background-color:rgba(0,0,0,0.87)}.musicidb-events-integration .window{display:none;position:fixed;z-index:9999;border:12px solid #ffffff;border-radius:10px;-webkit-box-sizing:border-box;box-sizing:border-box;background-clip:padding-box;background:#f8f8f8;width:85%;max-width:none;min-width:796px;height:90%;overflow:auto;min-height:inherit !important;padding-bottom:10px}.musicidb-events-integration .modalClose{text-transform:none;color:#c55959;position:absolute;top:5px;right:10px;font-size:12px;float:right;margin-bottom:5px;padding:7px 6px 6px;border:1px solid #c1c1c1;color:#777 !important;font-size:10px;line-height:12px;position:relative;z-index:100;font-size:20px}.musicidb-events-integration .modalClose:hover{color:#ff3b52;background:#fff;color:#444}.musicidb-events-integration .slick-slider{position:relative;display:block;-webkit-box-sizing:border-box;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.musicidb-events-integration .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.musicidb-events-integration .slick-list:focus{outline:none}.musicidb-events-integration .slick-list.dragging{cursor:pointer;cursor:hand}.musicidb-events-integration .slick-slider .slick-track,.musicidb-events-integration .slick-slider .slick-list{-webkit-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.musicidb-events-integration .slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}.musicidb-events-integration .slick-track:before,.musicidb-events-integration .slick-track:after{content:"";display:table}.musicidb-events-integration .slick-track:after{clear:both}.slick-loading .musicidb-events-integration .slick-track{visibility:hidden}.musicidb-events-integration .slick-slide{float:left;height:0;-webkit-box-sizing:border-box;box-sizing:border-box;min-height:1px}.musicidb-events-integration .slick-slide.slick-active{height:100% !important}[dir="rtl"] .musicidb-events-integration .slick-slide{float:right}.musicidb-events-integration .slick-slide img{display:block}.musicidb-events-integration .slick-slide.slick-loading img{display:none}.musicidb-events-integration .slick-slide.dragging img{pointer-events:none}.slick-initialized .musicidb-events-integration .slick-slide{display:block}.slick-loading .musicidb-events-integration .slick-slide{visibility:hidden}.musicidb-events-integration .slick-slide .slick-loading{background:url("../images/loading.svg") no-repeat center;min-height:300px}.slick-vertical .musicidb-events-integration .slick-slide{display:block;height:auto;border:1px solid transparent}.musicidb-events-integration .slick-arrow.slick-hidden{display:none}.musicidb-events-integration ul.slides{overflow:visible !important;list-style:none}.musicidb-events-integration ul.slides .slick-arrow{display:block !important;width:21px;height:35px;position:absolute;top:110px;cursor:pointer;background-color:transparent !important;background-image:url("../images/arrows.png");outline:none !important;border:none !important;text-indent:-9999px}.musicidb-events-integration ul.slides .slick-arrow.slick-prev{background-position:top left;left:-30px}.musicidb-events-integration ul.slides .slick-arrow.slick-next{background-position:top right;right:-30px}.musicidb-events-integration .centerThisGuy{text-align:center}.musicidb-events-integration .centerThisGuy .loadMoreBtn{margin:0 auto;display:inline-block}.musicidb-events-integration .modalFootLinkers{font-size:12px;line-height:15px;margin-bottom:13px}.musicidb-events-integration .modalFootLinkers a{color:#969696}.musicidb-events-integration .widgetsLink{float:right}.musicidb-events-integration .widgetsLink img{width:100px}.musicidb-events-integration.blackBack{color:#EEE}.musicidb-events-integration.blackBack .musicidb-integration-mask{background-color:rgba(0,0,0,0.9);background-color:rgba(0,0,0,0.84)}.musicidb-events-integration.blackBack .modalInner{background:#000}.musicidb-events-integration.blackBack .st-bg{border:#1b1b1b 1px solid !important}.musicidb-events-integration.blackBack .summaryToggle:hover .fui-plus-circle{color:#FFF}.musicidb-events-integration.blackBack .window{background:#000;border:12px solid #353535}.musicidb-events-integration.blackBack div.fbutton{border:#1b1b1b 1px solid !important}.musicidb-events-integration.blackBack div .rb-m .rb-i{background:#1b1b1b;background:rgba(14,14,14,0.91);color:#dedede}.musicidb-events-integration.blackBack .rb-i .dateBoxTextUnderImg{background:rgba(14,14,14,0.91);color:#FFF !important}.musicidb-events-integration.blackBack .rb-i:hover .dateBoxTextUnderImg{background:#333 !important}.musicidb-events-integration.blackBack .month-row{border:none !important}.musicidb-events-integration.blackBack .preferencesBox{color:#767676 !important}.musicidb-events-integration.blackBack .eventsList .listEvent{background:#191919;border:1px solid #191919 !important}.musicidb-events-integration.blackBack .eventsList .listEvent:nth-child(2n){background:#191919}.musicidb-events-integration.blackBack .eventsList .listEvent h3{margin-bottom:5px}.musicidb-events-integration.blackBack .eventsList .listEvent h3.date span{color:#c3c3c3 !important}.musicidb-events-integration.blackBack h3{color:#eee}.musicidb-events-integration.blackBack .musicidb-tabs ul.calViewButtons li a{border:1px solid #232323 !important;background:#272727 !important;color:#a5a5a5}.musicidb-events-integration.blackBack .musicidb-tabs ul.calViewButtons li a:hover{background:#ff7630 !important;color:#FFF !important}.musicidb-events-integration.blackBack ul.slides .slick-arrow{background-image:url("../images/arrowsdark.png")}.musicidb-events-integration.lightBack h2,.musicidb-events-integration.lightBack h3{color:#565656}.musicidb-events-integration.lightBack h4{color:#5d5d5d}.musicidb-events-integration.lightBack p{color:#5d5d5d}.musicidb-events-integration.lightBack .listItem:nth-child(2n),.musicidb-events-integration.lightBack .tableEventView:nth-child(2n){border-top:1px solid #eee;border-bottom:1px solid #eee;clear:both}.musicidb-events-integration.blackBack .horizontal .ui-tabs-panel,.musicidb-events-integration.blackBack .musicidb-tabNav li.current a,.musicidb-events-integration.blackBack .modalSections>.modalTabNav a.currentState,.musicidb-events-integration.blackBack .horizontal .musicidb-tabNav li a,.musicidb-events-integration.blackBack .musicidb-tabNav li:first-child,.musicidb-events-integration.lightBack .horizontal .ui-tabs-panel,.musicidb-events-integration.lightBack .musicidb-tabNav li.current a,.musicidb-events-integration.lightBack .modalSections>.modalTabNav a.currentState,.musicidb-events-integration.lightBack .horizontal .musicidb-tabNav li a,.musicidb-events-integration.lightBack .musicidb-tabNav li:first-child{background:none;border:none !important}.musicidb-events-integration.blackBack .horizontal .musicidb-tabNav li.current,.musicidb-events-integration.lightBack .horizontal .musicidb-tabNav li.current{top:inherit}.musicidb-events-integration.blackBack .musicidb-tabNav li.current a,.musicidb-events-integration.blackBack .horizontal .musicidb-tabNav li a:hover{color:#EEE !important;background:#272727 !important}.musicidb-events-integration.blackBack .horizontal .musicidb-tabNav li a{color:#6d6d6d;background:#272727 !important}.musicidb-events-integration.blackBack .listItem:nth-child(2n),.musicidb-events-integration.blackBack .tableEventView:nth-child(2n){border-top:1px solid #373737;border-bottom:1px solid #373737;clear:both}.musicidb-events-integration.lightBack .listItem:nth-child(2n),.musicidb-events-integration.lightBack .tableEventView:nth-child(2n){border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3;clear:both}.musicidb-events-integration.blackBack .artistFacts{color:#7b7b7b}.musicidb-events-integration.blackBack a,.musicidb-events-integration.blackBack h3 a{color:#1aadff}.musicidb-events-integration.blackBack .linkTile{background:#1d1d1d !important}.musicidb-events-integration.blackBack .linkTile.lightBack h4{color:#9f9f9f !important}.musicidb-events-integration.blackBack img.alignleft{border:1px solid #1d1d1d}.musicidb-events-integration.blackBack .modalTickets{border-top:1px solid #383838;border-bottom:1px solid #383838}.musicidb-events-integration.blackBack.venue-377 .listingBody a{color:#c4c4c4}.musicidb-events-integration.blackBack .controlbar>li>a{border:1px solid transparent !important}.musicidb-events-integration.blackBack img.alignleft{border:none !important}.musicidb-events-integration.lightBack #caltoolbar,.musicidb-events-integration.lightBack #gridcontainer,.musicidb-events-integration.lightBack .cc,.musicidb-events-integration.lightBack .mv-daynames-table,.musicidb-events-integration.lightBack .mv-event-container,.musicidb-events-integration.lightBack .st-dtitle,.musicidb-events-integration.lightBack div.ctoolbar div.fbutton.fcurrent,.musicidb-events-integration.lightBack .whiteBack{background:none !important}.musicidb-events-integration.lightBack div.fbutton{border:none}.musicidb-events-integration.lightBack div#sfnextbtn,.musicidb-events-integration.lightBack div#sfprevbtn{border:#ececec 1px solid;border-radius:2px}.musicidb-events-integration.blackBack .whiteBack,.musicidb-events-integration.blackBack div.ctoolbar,.musicidb-events-integration.blackBack div.fbutton.fcurrent,.musicidb-events-integration.blackBack .st-dtitle-nonmonth,.musicidb-events-integration.blackBack .cc,.musicidb-events-integration.blackBack .mv-daynames-table,.musicidb-events-integration.blackBack .mv-event-container,.musicidb-events-integration.blackBack #gridcontainer,.musicidb-events-integration.blackBack .st-dtitle,.musicidb-events-integration.blackBack ul.calViewButtons,.musicidb-events-integration.blackBack .st-bg{background:none !important}.musicidb-events-integration.blackBack .cardFloater:hover .hoverArtist{color:#eee !important;text-decoration:none}.musicidb-events-integration.blackBack h1,.musicidb-events-integration.blackBack div.ctoolbar div.fshowdatep,.musicidb-events-integration.blackBack div.ctoolbar{color:#eee !important}.musicidb-events-integration.blackBack div.fbutton:hover i{color:#eee}.musicidb-events-integration.blackBack .st-bg,.musicidb-events-integration.blackBack div.fbutton{border:#4d4d4d 1px solid !important}.musicidb-events-integration.blackBack div.ctoolbar div.fshowdatep{border:none !important}.musicidb-events-integration.blackBack .st-dtitle{border-left:none !important}.musicidb-events-integration.blackBack .controlbar>li a.TicketLink{border:1px solid #0d440d !important}.musicidb-events-integration.blackBack .stageImageAndName{background:#161616}.musicidb-events-integration.blackBack .stageImageAndName h3{color:#eee}.musicidb-events-integration.blackBack .listItem:nth-child(2n){border-top:1px solid #2d2d2d;border-bottom:1px solid #2d2d2d}.musicidb-events-integration.blackBack .eventDescription{color:#ddd !important}.musicidb-events-integration.blackBack .eventDescription span,.musicidb-events-integration.blackBack .eventDescription div,.musicidb-events-integration.blackBack .eventDescription p,.musicidb-events-integration.blackBack .eventDescription h1,.musicidb-events-integration.blackBack .eventDescription h2,.musicidb-events-integration.blackBack .eventDescription h3,.musicidb-events-integration.blackBack .eventDescription h4,.musicidb-events-integration.blackBack .eventDescription h5,.musicidb-events-integration.blackBack .eventDescription h6{color:#ddd !important;background:none !important}.musicidb-events-integration.blackBack h1,.musicidb-events-integration.blackBack h2,.musicidb-events-integration.blackBack h3,.musicidb-events-integration.blackBack h4,.musicidb-events-integration.blackBack h5,.musicidb-events-integration.blackBack h6,.musicidb-events-integration.blackBack .framePage h3,.musicidb-events-integration.blackBack .h2,.musicidb-events-integration.blackBack .h3,.musicidb-events-integration.blackBack .h4,.musicidb-events-integration.blackBack .h5,.musicidb-events-integration.blackBack .h6{color:#cecece}.musicidb-events-integration.blackBack .controlbar>li a.TicketLink{border:1px solid #15bd15 !important}.musicidb-events-integration.blackBack .eventLogistics,.musicidb-events-integration.blackBack .listEvent .date span{color:#929292}.musicidb-events-integration.blackBack .eventInfoArea .eventDescription *{color:#d0d0d0 !important}.musicidb-events-integration .listEvent .controlbar.moveLeft{text-align:left;margin:0}.musicidb-events-integration .listEvent .controlbar.moveRight{text-align:right;margin:0;float:right !important}.musicidb-events-integration .listEvent .controlbar.moveCenter{text-align:center;margin:0 auto;clear:both;float:none !important}.musicidb-events-integration .slider-wrapper{position:relative;overflow:hidden}.musicidb-events-integration .slider-wrapper .rightSlideArea{position:absolute;bottom:30px;right:15px}.musicidb-events-integration .slider-wrapper .slider-controllers{display:-webkit-box;display:-ms-flexbox;display:flex;position:relative}.musicidb-events-integration .slider-wrapper .slider-controllers .btn{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#cc3333;background-image:url("../images/arrow-left.png");background-position:center;background-repeat:no-repeat;background-size:50%;outline:none;border:none;cursor:pointer;display:-webkit-box;display:-ms-flexbox;display:flex;height:50px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:50px;-webkit-transform:none;transform:none;position:absolute;bottom:0px;right:50px}.musicidb-events-integration .slider-wrapper .slider-controllers .btn:hover{background-color:#a92121}.musicidb-events-integration .slider-wrapper .slider-controllers .btn-next{-webkit-transform:rotate(180deg);transform:rotate(180deg);right:0}.musicidb-events-integration .slider-wrapper .slider-controllers .btn:before{content:none}.musicidb-events-integration .slider-wrapper .slick-dots{height:24px}.musicidb-events-integration .slider-wrapper .slick-dots li button{background:#5f0505;border-radius:10px}.musicidb-events-integration .slider-wrapper .slick-dots li button:before{content:none}.musicidb-events-integration .slider-banner{max-width:1240px;width:100%;display:none;min-height:350px}.musicidb-events-integration .slider-banner.slick-initialized{display:block}.musicidb-events-integration .slider-banner *{-webkit-box-sizing:border-box;box-sizing:border-box}.musicidb-events-integration .slider-banner img{height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.musicidb-events-integration .slider-banner .overlay{background-color:#cc3333;opacity:0.8}.musicidb-events-integration .slider-banner .slider-foreground{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:relative}.musicidb-events-integration .slider-banner .detailsCard{max-width:350px;min-width:238px;width:27%}.musicidb-events-integration .slider-banner .rightSlideArea{-webkit-box-align:end;-ms-flex-align:end;align-items:flex-end;display:-webkit-box;display:-ms-flexbox;display:flex}.musicidb-events-integration .slider-banner .slider-label{-webkit-box-align:center;-ms-flex-align:center;align-items:center;background-color:#c9c9c9;display:-webkit-box;display:-ms-flexbox;display:flex;height:54px;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;line-height:1;color:#000;font-size:19px;text-transform:uppercase;width:206px;margin-top:20px}.musicidb-events-integration .slider-banner .slider-label span{font-size:31px}.musicidb-events-integration .slider-banner .slider-date{color:#fff;font-size:20px;margin-bottom:15px}.musicidb-events-integration .slider-banner .slider-title{color:#fff;font-size:50px;font-weight:400;line-height:1.12;margin:0;text-shadow:0 2px 1px rgba(0,0,0,0.75);text-transform:uppercase;max-height:140px;overflow:hidden}.musicidb-events-integration .slider-banner .content{padding:0 16px;margin-top:25px}.musicidb-events-integration .slider-banner .buttonsBlockSection{position:absolute;bottom:8px;left:10px}.musicidb-events-integration .slider-banner .buttonsBlockSection a{display:inline-block;padding:7px 23px;font-size:13px;line-height:18px;text-transform:uppercase}.musicidb-events-integration .slider-banner .buttonsBlockSection a i{line-height:10px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link,.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event{color:#333}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link.fbLinkWide,.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event.fbLinkWide{border-radius:6px;padding-left:12px;padding-right:12px;width:auto !important}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link.fbLinkWide .fui-facebook,.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event.fbLinkWide .fui-facebook{margin-right:3px;position:relative;top:4px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link{background:url("../images/ticket-link-bg.png") no-repeat center;background-size:contain;text-decoration:none;width:128px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link:hover{-webkit-filter:brightness(1.2);filter:brightness(1.2)}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link .link-arrow{border-color:transparent transparent transparent #033333;border-style:solid;border-width:5px 0 5px 7px;display:block;height:0;width:0;line-height:10px;position:absolute;left:30px;top:15px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.ticketsLink{padding:12px 25px 12px 45px;position:relative;height:44px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event{background:#ccc;border-radius:7px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event:hover,.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event:focus{background:#fff}.musicidb-events-integration .slider-banner .slick-dots li{width:8px;height:8px}.musicidb-events-integration .slider-banner .slick-dots li button{width:8px;height:8px}.musicidb-events-integration .slider-banner .slick-dots li:hover button,.musicidb-events-integration .slider-banner .slick-dots li.slick-active button{background:#cc3333}.musicidb-events-integration .slider-banner .slider-background,.musicidb-events-integration .slider-banner .overlay{bottom:0;left:0;position:absolute;right:0;top:0}.musicidb-events-integration .slider-banner .overlay{opacity:0.8}.musicidb-events-integration .slider-banner .slider-item,.musicidb-events-integration .slider-banner .detailsCard,.musicidb-events-integration .slider-banner .content-wrapper{position:relative}.musicidb-events-integration .slider-banner .slider-item{float:left;width:100%}.musicidb-events-integration .slider-banner .detailsCard{height:100%;min-height:330px}.musicidb-events-integration .slider-banner .content-wrapper{height:100%;min-height:330px}#musicidb-featured-events.tvScreen,.tvScreen #musicidb-featured-events{width:100% !important;max-width:100% !important}#musicidb-featured-events.tvScreen .detailsCard,.tvScreen #musicidb-featured-events .detailsCard{display:none}#musicidb-featured-events.tvScreen #featured-events-slider,.tvScreen #musicidb-featured-events #featured-events-slider{padding:0}#musicidb-featured-events.tvScreen .slider-banner,.tvScreen #musicidb-featured-events .slider-banner{max-width:100% !important;width:100% !important;margin-bottom:0 !important}#musicidb-featured-events.tvScreen .slider-banner .slider-foreground,.tvScreen #musicidb-featured-events .slider-banner .slider-foreground{display:none}#musicidb-featured-events.tvScreen .slider-banner .slider-background,.tvScreen #musicidb-featured-events .slider-banner .slider-background{left:auto;right:auto;top:auto;bottom:auto;position:relative}#musicidb-featured-events.tvScreen .rightSlideArea,.tvScreen #musicidb-featured-events .rightSlideArea{display:none}#musicidb-featured-events.tvScreen .slick-dots,.tvScreen #musicidb-featured-events .slick-dots{padding:0 37px 0 0 !important;text-align:right;bottom:21px}#musicidb-featured-events.fitImagesByHeight .slider-banner img{width:auto;height:100%;margin:0 auto !important}@media only screen and (max-width: 1500px){.musicidb-events-integration .window{width:85%}.musicidb-events-integration .modalInner{padding:15px 0 5px}}@media only screen and (max-width: 1150px){.musicidb-events-integration .window{width:100%;height:100%;border-radius:0;-webkit-box-sizing:border-box;box-sizing:border-box;right:0 !important;left:0 !important;top:0 !important}}@media only screen and (max-width: 1000px){.musicidb-events-integration .viewPosters ul.eventsList li.listEvent{width:calc(50% - 10px)}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea{width:190px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .controlbar.moveLeft{margin-left:280px !important}.musicidb-events-integration .controlbar li{float:left !important}.musicidb-events-integration .modalHead{background:none !important;margin-bottom:13px}.musicidb-events-integration .eventInfoArea .left,.musicidb-events-integration .eventInfoArea .venueInfoTile,.musicidb-events-integration .eventInfoArea .tilesContainer{width:100%}.musicidb-events-integration .thumbTileHolder{width:205px;height:205px;position:relative;margin:0 auto;float:none}.musicidb-events-integration .controlButtons{right:0;position:relative;clear:both;height:67px}.musicidb-events-integration .controlButtons a{padding:9px 7px 2px 25px;width:inherit}.musicidb-events-integration .controlButtons li i{font-size:13px;left:5px;top:8px}.musicidb-events-integration .controlbar li{float:none}.musicidb-events-integration .controlBarEvents li{float:left}.musicidb-events-integration .controlButtons .current a:before,.musicidb-events-integration .controlButtons li:hover a:before{left:45px}.musicidb-events-integration .social-links{position:relative;width:99%;right:inherit;width:inherit;text-align:center;margin:0 auto}.musicidb-events-integration .social-links li{float:none}.musicidb-events-integration .greenCta{float:none}.musicidb-events-integration .btnBlock .greenCta{float:left}.musicidb-events-integration .outerExpander{position:relative}.musicidb-events-integration .window{width:60%;min-width:60%;left:15px;top:20px !important}.musicidb-events-integration .window .scrollingContent{height:100%;padding:10px 5px}.musicidb-events-integration .mobileHide{display:none !important}.musicidb-events-integration .mobileShow{display:block}.musicidb-events-integration .window{padding:30px 1% 25px;width:100% !important;-webkit-box-sizing:border-box;box-sizing:border-box;height:100% !important;min-height:auto !important;top:0px !important;right:auto;left:0 !important;border-radius:0;top:0 !important;border:none}.musicidb-events-integration .eventDetailModal{top:0 !important}.musicidb-events-integration .modalClose{margin-right:10px}.musicidb-events-integration .modalTab{max-height:inherit;overflow:inherit}.musicidb-events-integration .modalHead img{display:none}.musicidb-events-integration .modalHead .artistInfo{width:50%}.musicidb-events-integration .modalTitle h2{padding:0 !important;font-size:18px;line-height:19px;margin:0}.musicidb-events-integration .modalTitle{font:14px/16px Arial, sans-serif}.musicidb-events-integration .modalInner{padding:0 5px 5px !important}.musicidb-events-integration .cardFloater .thumbTileHolder{width:220px;height:220px}.musicidb-events-integration .controlbar li{float:left !important}}@media only screen and (max-width: 700px){.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea{height:310px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea{width:150px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .controlbar.moveLeft{margin-left:240px !important}.musicidb-events-integration .viewCompact .rowView{display:-webkit-box;display:-ms-flexbox;display:flex}.musicidb-events-integration .viewCompact .rowView .rowColumn{display:inline-block}.musicidb-events-integration .viewCompact .rowView .rowColumn.detailsColumn{top:0}.musicidb-events-integration #artistCardsSlider ul.bjqs-controls.v-centered li a{font-size:22px}.musicidb-events-integration #artistCardsSlider ul.bjqs-controls.v-centered li.bjqs-prev a{left:-25px}.musicidb-events-integration #artistCardsSlider ul.bjqs-controls.v-centered li.bjqs-next a{right:-15px}.musicidb-events-integration .webVideo iframe{width:100%;min-height:330px}.musicidb-events-integration .slider-banner{min-height:auto}.musicidb-events-integration .slider-banner .slick-slide{min-height:390px}.musicidb-events-integration .slider-banner .slick-slide .slider-label{display:none}.musicidb-events-integration .slider-banner .slick-slide .detailsCard{width:100%;max-width:100%;height:auto;top:250px;min-height:140px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content{margin-top:8px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .slider-date{font-size:17px;margin-bottom:2px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .slider-title{font-size:28px !important;max-height:63px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .buttonsBlockSection{bottom:10px;left:4px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .buttonsBlockSection a.slider-link{background-size:110px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .buttonsBlockSection a.slider-link,.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .buttonsBlockSection a.view-event{font-size:12px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .view-event-wrapper{bottom:16px;left:134px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content-wrapper{min-height:auto}.musicidb-events-integration .rightSlideArea .slider-controllers .btn{height:38px;width:38px}.musicidb-events-integration .eventsList .rowView,.musicidb-events-integration .style-viewCompact li{display:block;border-bottom:1px solid #dcdcdc}.musicidb-events-integration .eventsList .rowView .buttonsColumn,.musicidb-events-integration .style-viewCompact li .buttonsColumn{display:block;width:100% !important}.musicidb-events-integration .eventsList .rowView .rowColumn.dateColumn,.musicidb-events-integration .style-viewCompact li .rowColumn.dateColumn{width:77px !important}.musicidb-events-integration .eventsList .rowView .rowColumn .simpleBtn,.musicidb-events-integration .style-viewCompact li .rowColumn .simpleBtn{width:auto}.musicidb-events-integration .eventsList .rowView .rowColumn .cardFloater,.musicidb-events-integration .style-viewCompact li .rowColumn .cardFloater{top:0}.musicidb-events-integration.blackBack .eventsList .rowView{border-bottom:1px solid #444}}@media only screen and (max-width: 650px){.musicidb-events-integration .rowView .rowColumn{width:33% !important}.musicidb-events-integration .rowView .rowColumn.locationColumn{display:none}.musicidb-events-integration .rowView .rowColumn.buttonsColumn a{width:95%;margin-bottom:3px;text-align:center}.musicidb-events-integration .viewCompact .rowView .simpleTitle{font-size:12px}}@media only screen and (max-width: 595px){.musicidb-events-integration .setTime .helpText,.musicidb-events-integration .filtersLabel,.musicidb-events-integration #artistCardsSlider,.musicidb-events-integration #showtodaybtn,.musicidb-events-integration .footLinks nav,.musicidb-events-integration .checkBoxCol,.musicidb-events-integration #mailBoxTable thead th:nth-child(5),.musicidb-events-integration #mailBoxTable thead th:nth-child(6),.musicidb-events-integration #mailBoxTable thead th:nth-child(7),.musicidb-events-integration .sectionHead #embedCodeBtn,.musicidb-events-integration .eventsList .listItem .summaryToggle,.musicidb-events-integration .flavorText,.musicidb-events-integration .artistList .listingImgWrap,.musicidb-events-integration .listArtists .listingImgWrap,.musicidb-events-integration .calendarLegend,.musicidb-events-integration .imageLeftWrapper,.musicidb-events-integration .gigList .navWithBubbles{display:none}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea{display:block !important;width:120px !important}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .bandPicBox{width:50%;height:40px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .oneBand .bandPicBox{width:75px !important}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .controlbar.moveLeft{margin-left:205px !important}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea{height:250px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody{padding:0 5px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody h3.titleofevent{font-size:17px;line-height:20px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent ul.controlbar{-ms-flex-wrap:wrap;flex-wrap:wrap}.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent .eventPosterArea{width:330px;max-height:none}.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent .eventPosterArea .oneBand .bandPicBox{width:100%}.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent .listingBody,.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent .controlbar.moveLeft{margin-left:420px !important}.musicidb-events-integration .slider-banner .slick-slide{min-height:340px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard{top:200px}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav.eventTabsLinks li a{padding:10px 8px;font-size:11px}.musicidb-events-integration #artistDetailsPopup #artistCardsSlider{display:block}.musicidb-events-integration #artistCardsList{display:block !important}.musicidb-events-integration #artistDetailsPopup .artistLeftCol{float:none;width:100%;margin-right:0}.musicidb-events-integration #artistDetailsPopup .artistRightCol{width:100%}.musicidb-events-integration #artistDetailsPopup #artistSelector li a h3{margin-bottom:3px}.musicidb-events-integration #artistSelector li a .festivalArtistTextArea h3{max-height:35px}.musicidb-events-integration .controlbar.msgBar li{float:left;margin:0 0 5px}.musicidb-events-integration .controlbar span{float:none}.musicidb-events-integration .padding15{padding:15px 5px !important}.musicidb-events-integration .modalHead{width:98%}.musicidb-events-integration textarea{padding:5px 5px}.musicidb-events-integration .window .greenBtn{margin-bottom:20px}.musicidb-events-integration .window{padding:5px 1% 5px 1% !important;width:100% !important;max-height:100% !important;-webkit-box-sizing:border-box;box-sizing:border-box}.musicidb-events-integration .textarea{width:93%}.musicidb-events-integration .modalClose{margin-right:0px}.musicidb-events-integration .modalTab{border:none;border-top:1px solid #ddd}.musicidb-events-integration .modalTabs{padding:0}.musicidb-events-integration .modalColumns>.column{width:98%}.musicidb-events-integration .modalTab h4.sectionTitle{font-size:13px}.musicidb-events-integration .eventsList .listItem{padding:5px 0 5px 0}.musicidb-events-integration .eventsList .listItem h3.titleofevent{font-size:17px;line-height:18px;margin:0 0 6px 0}.musicidb-events-integration .eventsList .listItem .subtitleEvent{font-size:17px;line-height:18px;margin:0 0 6px 0}.musicidb-events-integration .cardFloater{padding-top:0 !important;padding-bottom:0 !important}.musicidb-events-integration select{padding:5px;width:100% !important;margin-top:0}.musicidb-events-integration .genreData{position:relative;top:12px;margin-bottom:10px;clear:both}.musicidb-events-integration .cardFloater .thumbTileHolder{bottom:19px}.musicidb-events-integration .linkTile{width:100% !important}.musicidb-events-integration .eventDescription .eventDescription span,.musicidb-events-integration .eventDescription div,.musicidb-events-integration .eventDescription p{font-size:14px !important;line-height:18px !important}.musicidb-events-integration .listEvent h3.date .monthName,.musicidb-events-integration .listEvent h3.date .dayNum,.musicidb-events-integration .listEvent h3.date .yearNum{font-size:13px !important;line-height:14px !important}.musicidb-events-integration .listEvent h3.date .yearNum{font-size:13px !important}.musicidb-events-integration .viewListPics .listEvent h3.date .dayNum{font-size:22px !important;line-height:33px !important;top:-6px !important}.musicidb-events-integration .listEvent .controlbar{text-align:center;float:none !important;margin:0 auto}}@media only screen and (max-width: 400px){.musicidb-events-integration .webVideo iframe{width:100%;min-height:330px;height:inherit}.musicidb-events-integration .fullInfo{display:none}.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent div.eventPosterArea{height:150px}}@media only screen and (max-width: 700px){#musicidb-featured-events.tvScreen .slider-banner .slick-slide,.tvScreen #musicidb-featured-events .slider-banner .slick-slide{min-height:1px}#musicidb-featured-events.tvScreen .slick-dots,.tvScreen #musicidb-featured-events .slick-dots{display:none !important}}@media only screen and (max-width: 595px){#musicidb-featured-events.tvScreen .slider-banner .slick-slide,.tvScreen #musicidb-featured-events .slider-banner .slick-slide{min-height:1px}}@media only screen and (max-width: 1000px){.infinite-body-outer-wrapper .musicidb-events-integration .window{top:77px !important}}
    2 
     1.musicidb-events-integration .cardFloater .socialBubbleIcons li{float:right;padding:0 0 0 2px;margin-bottom:2px;list-style-type:none}.musicidb-events-integration .eventInfoArea .tilesContainer,.musicidb-events-integration .eventInfoArea .venueInfoTile{float:left;clear:none;width:50%}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}body.noScroll{overflow:hidden}.slide{position:relative}.slide .right{position:absolute;left:0;top:0;min-height:350px;width:20%;z-index:10;opacity:.8;color:#fff}.slide .right .label{display:block;background:#b4b6ba;color:#000;width:40%;margin:15px 0;padding:5px 15px;text-align:center;line-height:normal}.slide .right .date{float:left;margin:15px 15px 0 15px;font-size:11px}.slide .right .name{text-transform:uppercase;float:left;margin:0 15px;clear:both;font-size:14px;line-height:1em}.slide .right .tickets,.slide .right .view-event{clear:both;float:left;margin:15px}.slide .left{width:100%}.slide .left img{width:100%}.musicidb-events-integration{position:relative;margin-bottom:35px}.musicidb-events-integration a{border:none;text-decoration:none;box-shadow:none;outline:none !important}.musicidb-events-integration a:focus{outline:none !important}.musicidb-events-integration .controlbar{display:table;margin:0 auto 0;margin-bottom:0 !important;width:auto;float:none !important;position:relative;padding:0}.musicidb-events-integration .controlbar .accent{top:24px;font-size:10px !important;display:block;font-size:11px;text-align:center;position:absolute;margin:auto;right:0;left:0;bottom:-1px}.musicidb-events-integration .controlbar .greenBtn{margin-right:0}.musicidb-events-integration .controlbar .silverBtn{margin-right:0}.musicidb-events-integration .controlbar .blueBtn{margin-right:0}.musicidb-events-integration .controlbar .orangeBtn{margin-right:0}.musicidb-events-integration .controlbar .mediaBtn{padding-left:31px !important}.musicidb-events-integration .controlbar .inactiveBtn{margin-right:0;background:#999 !important;color:#fff;cursor:default}.musicidb-events-integration .controlbar li{display:inline-block;float:left;margin-bottom:4px;position:relative;margin-right:4px}.musicidb-events-integration .controlbar li:last-child{margin-right:0}.musicidb-events-integration .controlbar a{font:14px/14px Arial,"Open Sans",sans-serif !important}.musicidb-events-integration .controlbar a:hover{text-decoration:none !important}.musicidb-events-integration .controlbar a.musicIDBevent img.whiteIcon{display:none}.musicidb-events-integration .controlbar span{text-align:center;font:13px/15px "Open Sans",sans-serif}.musicidb-events-integration .controlbar>li>a{background:#fff;border-radius:4px;padding:7px 10px 4px;display:block;border-right:none;color:#292929;max-width:100px;position:relative;height:30px;box-sizing:border-box;min-height:inherit;border:1px solid rgba(0,0,0,0)}.musicidb-events-integration .controlbar>li>a:hover{background:#6d6d6d;background:#333;color:#fff}.musicidb-events-integration .controlbar>li a.TicketLink{position:relative;border:1px solid #2ea23b !important}.musicidb-events-integration .controlbar>li a.TicketLink.ticketSmall{border:1px solid #00af18 !important}.musicidb-events-integration .controlbar>li a.orangeBtn{background:#f60;color:#fff;margin:0}.musicidb-events-integration .controlbar>li a.orangeBtn:hover{background:#d05126;text-decoration:none !important}.musicidb-events-integration .controlbar.msgBar li{float:none;margin:0 -2px}.musicidb-events-integration .controlbar.msgBar a{height:16px;background:#fff;margin-right:5px}.musicidb-events-integration .controlbar.msgBar .aReplacement{height:16px;background:#fff;margin-right:5px}.musicidb-events-integration .controlbar .tableize{display:table}.musicidb-events-integration .controlbar .playBtn{top:0}.musicidb-events-integration .controlbar .claim{float:right}.musicidb-events-integration .controlbar .buttonSpinner,.musicidb-events-integration .controlbar .buttonMsg{position:relative;top:3px;left:4px}.musicidb-events-integration .greenBtn{font-family:"Roboto";padding:2px 17px;height:34px;display:table-cell;vertical-align:middle;font-size:16px;text-transform:none;border:0;cursor:pointer;margin-right:10px;padding:9px 20px;height:inherit;border-radius:4px;color:#fff !important;min-height:18px;background:#2ea23b !important}.musicidb-events-integration .greenBtn:hover{text-decoration:none !important;background:#10c024 !important}.musicidb-events-integration .eventInfoWide{font-size:12px;line-height:15px;margin-bottom:13px}.musicidb-events-integration .eventInfoWide a{color:#e78d00}.musicidb-events-integration .eventInfoWide a:hover{color:#e78d00}.musicidb-events-integration .btn i{padding:0 7px 0 0;float:left}.musicidb-events-integration .simpleBtn{display:inline-block;margin:0 4px 0 0;padding:4px 8px;border-radius:5px;border:1px solid #ccc;font-size:11px !important;background:#fff;color:#444}.musicidb-events-integration .TicketLink span,.musicidb-events-integration .orangeBtn span{font:14px/15px Arial,"Open Sans",sans-serif !important}.musicidb-events-integration .TicketLink span i,.musicidb-events-integration .orangeBtn span i{position:absolute;left:10px;top:5px}.musicidb-events-integration a.fbLinkWide{color:#fff !important;background:#3b5998 !important;border:1px solid rgba(0,0,0,0) !important}.musicidb-events-integration a.fbLinkWide i.fui-facebook{color:#fff}.musicidb-events-integration a.fbLinkWide:hover{color:#fff !important;background:#1919f3 !important}.musicidb-events-integration.blackBack .eventsList .rowView .rowColumn .simpleBtn{background:#181818;color:#eee}.musicidb-events-integration.blackBack .eventsList .rowView .rowColumn .simpleBtn:hover{background:#000}.musicidb-events-integration.blackBack .fbLinkWide{background:#3b5998 !important;border:none !important;border:1px solid rgba(0,0,0,0) !important}.musicidb-events-integration.blackBack .fbLinkWide:hover{background:#153a85 !important;color:#fff !important}.musicidb-events-integration img{max-width:100%;height:auto;border:none;background:none}.musicidb-events-integration .preLoader{display:table;margin:140px auto}.musicidb-events-integration .fui-plus-circle{cursor:pointer;color:#797979}.musicidb-events-integration .summaryToggle:hover .fui-plus-circle{color:#444}.musicidb-events-integration h2.date{font-size:20px;margin:0 0 5px}.musicidb-events-integration ul{left:0;list-style:none;padding-right:0;margin-left:0}.musicidb-events-integration ul.eventsList{margin:0 !important;padding:0 !important}.musicidb-events-integration .thumbTileHolder{width:220px;height:220px;position:relative}.musicidb-events-integration .viewListPics .eventsList{list-style:none;left:0;padding-left:0;margin-left:0}.musicidb-events-integration .viewListPics .eventsList .listEvent{background:#fff;background:rgba(255,255,255,.8784313725);border:1px solid #fff !important;margin-bottom:0;margin:0 0 5px 0;padding:8px 8px 5px 16px;position:relative;clear:both}.musicidb-events-integration .viewListPics .eventsList .listEvent .centeredBlock{margin-top:0}.musicidb-events-integration .viewListPics .eventsList .listEvent:nth-child(2n){background:rgba(251,251,251,.8784313725);border-top:1px solid #efefef;border-bottom:1px solid #efefef}.musicidb-events-integration .viewListPics .eventsList .listEvent .summaryToggle{position:absolute;top:7px;left:10px}.musicidb-events-integration .viewListPics .eventsList .listEvent.noExpand{padding-left:8px}.musicidb-events-integration .viewListPics .eventsList .listEvent article{margin-bottom:5px}.musicidb-events-integration .viewListPics .eventsList .listEvent .details{margin-bottom:0}.musicidb-events-integration .viewListPics .eventsList .listEvent .navWithBubbles .bubbleContent{bottom:44px}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date{background:none;padding:1px 0px 0px;font-size:18px;float:left;margin:4px 6px 0 0}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span{color:#5d5d5d !important;background:none !important;width:65px}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span.monthName{font:15px/17px "Arial","sans-serif";padding:2px 0 0;height:15px}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span.dayNameAbb{text-transform:none}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span.dayNum{font:35px/35px "Raleway","Arial","sans-serif";height:39px;position:relative;top:-3px}.musicidb-events-integration .viewListPics .eventsList .listEvent h3.date span.yearNum{color:#999 !important}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea{max-height:140px;width:125px;overflow:hidden;float:left}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea img{width:100%;height:auto;margin:7px 0 0;max-height:none;background:#eaeaea;max-width:100%}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea.large{width:350px}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea img.defaultPic{opacity:.3}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventPosterArea .bandPicBox img{margin:0 auto;height:auto;min-width:41px;width:100% !important}.musicidb-events-integration .viewListPics .eventsList .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList .listEvent .controlbar.moveLeft{margin-left:215px}.musicidb-events-integration .viewListPics .eventsList .listEvent .listingBody h3{margin-bottom:12px}.musicidb-events-integration .viewListPics .eventsList .listEvent .listingBody h3 .atText{font-size:12px}.musicidb-events-integration .viewListPics .eventsList .listEvent .listingBody p{margin-bottom:4px;padding:0}.musicidb-events-integration .viewListPics .eventsList .listEvent .details{margin-bottom:4px}.musicidb-events-integration .viewListPics .eventsList .listEvent .eventLogistics{height:inherit;margin-bottom:3px}.musicidb-events-integration .viewListPics .eventsList .listEvent .venueInfo .detailsRow{width:70%}.musicidb-events-integration .viewListPics .eventsList .listEvent .fullInfo{margin-top:15px}.musicidb-events-integration .viewListPics .eventsList .listEvent span.monthName,.musicidb-events-integration .viewListPics .eventsList .listEvent span.dayNum,.musicidb-events-integration .viewListPics .eventsList .listEvent span.yearNum{display:block;text-align:center}.musicidb-events-integration .viewListPics .eventsList .listEvent span.monthName{font:14px/20px "Roboto","Arial","sans-serif";text-transform:uppercase;padding:2px 0;width:80px;font-weight:bold;height:19px}.musicidb-events-integration .viewListPics .eventsList .listEvent span.dayNum{font:60px/63px "Roboto","Arial","sans-serif";font-weight:bold;padding:0;width:80px;height:80px;margin-bottom:0;overflow:hidden}.musicidb-events-integration .viewListPics .eventsList .listEvent span.yearNum{color:#999 !important;font-size:10px;position:relative;top:-8px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea{width:330px;max-height:none}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .bandPics{display:flex;justify-content:center;flex-wrap:wrap;height:100%;width:100%;max-height:500px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .bandPics .bandPicBox{float:none;width:50%;height:auto;aspect-ratio:1/1;gap:0px;align-content:center}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .bandPics.oneBand .bandPicBox{width:100%}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .controlbar.moveLeft{margin-left:420px !important}.musicidb-events-integration .viewPosters{max-width:1140px}.musicidb-events-integration .viewPosters ul.eventsList{display:flex;flex-wrap:wrap;justify-content:space-between;list-style:none;margin:0 !important;padding:0 !important}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent{box-sizing:border-box;width:33%;width:calc(33% - 20px);margin-bottom:20px;gap:0px;display:flex;justify-content:space-between;align-items:center;align-content:flex-start;flex-wrap:wrap;position:relative}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent .summaryToggle{position:absolute;top:1px;left:2px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent .summaryToggle .musicidb-events-integration .fui-plus-circle{color:#bbb}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea{background:#333;width:100%;margin-bottom:10px;height:315px;overflow:hidden;display:flex;align-items:center}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea a{display:block;margin:0 auto}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea .eventImg{width:100%}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea .bandPics{display:flex;justify-content:center;flex-wrap:wrap;height:100%;width:100%}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea .bandPics .bandPicBox{float:none;width:50%;height:auto;aspect-ratio:1/1;gap:0px;align-content:center}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea .bandPics.oneBand .bandPicBox{width:100%}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody{padding:0 10px;box-sizing:border-box;width:100%}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody h3.date{margin-bottom:8px;font-size:18px;line-height:1.1em}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody h3.titleofevent{margin-bottom:12px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody h3.titleofevent .cardFloater{padding-top:0}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody .eventInfoArea .marginBottom{margin-bottom:5px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent ul.controlbar{left:0;margin-left:0;padding:0;margin:0;list-style:none;width:100%;display:flex;flex-wrap:nowrap;justify-content:center;align-items:center}.musicidb-events-integration .viewCompact .rowView{width:100%;display:flex;align-items:center}.musicidb-events-integration .viewCompact .rowView .rowColumn{text-align:left;vertical-align:top;width:20%;padding:5px 5px;box-sizing:border-box;display:flex;align-items:center}.musicidb-events-integration .viewCompact .rowView .rowColumn.venueColumn{width:20%}.musicidb-events-integration .viewCompact .rowView .rowColumn.detailsColumn{position:relative}.musicidb-events-integration .viewCompact .rowView .rowColumn.buttonsColumn{width:26%;text-align:right;min-width:220px;display:flex;flex-direction:row-reverse;align-items:center}.musicidb-events-integration .viewCompact .rowView .rowColumn span.yearNum{text-align:left;display:inline;top:0}.musicidb-events-integration .viewCompact .rowView .rowColumn .simpleBtn{display:inline-block;font-size:11px !important}.musicidb-events-integration .viewCompact .rowView .rowColumn .simpleBtn.fbLinkWide{display:inline-block}.musicidb-events-integration .viewCompact .rowView .locationColumn{width:14%}.musicidb-events-integration .viewCompact .rowView .simpleTitle{font-size:14px;line-height:15px;margin-bottom:6px}.musicidb-events-integration .eventInfoArea .left{width:50%}.musicidb-events-integration .eventDescription{color:#414141 !important;font-family:Arial,sans-serif !important;font-size:16px !important;line-height:22px !important}.musicidb-events-integration .eventDescription span,.musicidb-events-integration .eventDescription div,.musicidb-events-integration .eventDescription p,.musicidb-events-integration .eventDescription h1,.musicidb-events-integration .eventDescription h2,.musicidb-events-integration .eventDescription h3,.musicidb-events-integration .eventDescription h4,.musicidb-events-integration .eventDescription h5,.musicidb-events-integration .eventDescription h6{color:#414141 !important;background:none !important}.musicidb-events-integration .eventDescription a{background:none !important}.musicidb-events-integration .eventDescription span,.musicidb-events-integration .eventDescription div,.musicidb-events-integration .eventDescription p{font-family:Arial,sans-serif !important;font-size:16px !important;line-height:22px !important}.musicidb-events-integration .eventDescription div,.musicidb-events-integration .eventDescription p{margin-bottom:15px !important;padding:0 !important}.musicidb-events-integration .thumbTileHolder{width:220px;height:220px;position:relative}.musicidb-events-integration .cardFloater{position:relative;display:inline-block;padding-top:10px}.musicidb-events-integration .cardFloater:hover .hoverArtist{color:#333;text-decoration:underline}.musicidb-events-integration .cardFloater:hover .thumbTileHolder{display:block}.musicidb-events-integration .cardFloater .thumbTileHolder{display:none;position:absolute;bottom:23px;left:-10px;overflow:hidden;z-index:3;font-weight:normal;font-size:14px;margin:0}.musicidb-events-integration .cardFloater .linkTileHolder{border:8px solid #ebebeb;box-sizing:border-box}.musicidb-events-integration .cardFloater .socialBubbleIcons{left:auto;right:4px;position:absolute;z-index:3;bottom:-1px;height:25px;padding-right:0;margin:0 !important;padding:0 !important;box-sizing:border-box}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.fbLink,.musicidb-events-integration .cardFloater .socialBubbleIcons li a.facebook{background:url("../images/social-icons.png") no-repeat -133px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.fbLink:hover,.musicidb-events-integration .cardFloater .socialBubbleIcons li a.facebook:hover{background:url("../images/social-icons.png") no-repeat -133px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.twitterLink{background:url("../images/social-icons.png") no-repeat -67px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.twitterLink:hover{background:url("../images/social-icons.png") no-repeat -67px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.otherLink{background:url("../images/social-icons.png") no-repeat -263px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.otherLink:hover{background:url("../images/social-icons.png") no-repeat -263px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.soundcloudLink{background:url("../images/social-icons.png") no-repeat -100px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.soundcloudLink:hover{background:url("../images/social-icons.png") no-repeat -100px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.instagramLink{background:url("../images/social-icons.png") no-repeat -166px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.instagramLink:hover{background:url("../images/social-icons.png") no-repeat -166px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.googlePlusLink{background:url("../images/social-icons.png") no-repeat -199px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.googlePlusLink:hover{background:url("../images/social-icons.png") no-repeat -199px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.linkedinLink{background:url("../images/social-icons.png") no-repeat -133px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.linkedinLink:hover{background:url("../images/social-icons.png") no-repeat -133px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.pinterestLink{background:url("../images/social-icons.png") no-repeat -232px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.pinterestLink:hover{background:url("../images/social-icons.png") no-repeat -232px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.bandcampLink{background:url("../images/social-icons.png") no-repeat -2px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.bandcampLink:hover{background:url("../images/social-icons.png") no-repeat -2px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.reverbLink{background:url("../images/social-icons.png") no-repeat -199px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.reverbLink:hover{background:url("../images/social-icons.png") no-repeat -199px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.webLink{background:url("../images/social-icons.png") no-repeat -67px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.webLink:hover{background:url("../images/social-icons.png") no-repeat -67px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.youtubeLink{background:url("../images/social-icons.png") no-repeat -2px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.youtubeLink:hover{background:url("../images/social-icons.png") no-repeat -2px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.vevoLink{background:url("../images/social-icons.png") no-repeat -35px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.vevoLink:hover{background:url("../images/social-icons.png") no-repeat -35px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.itunesLink{background:url("../images/social-icons.png") no-repeat -232px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.itunesLink:hover{background:url("../images/social-icons.png") no-repeat -232px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.spotLink{background:url("../images/social-icons.png") no-repeat -355px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.spotLink:hover{background:url("../images/social-icons.png") no-repeat -355px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.wikiLink{background:url("../images/social-icons.png") no-repeat -324px -66px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.wikiLink:hover{background:url("../images/social-icons.png") no-repeat -324px -2px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.storeLink{background:url("../images/social-icons.png") no-repeat -293px -98px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a.storeLink:hover{background:url("../images/social-icons.png") no-repeat -293px -34px}.musicidb-events-integration .cardFloater .socialBubbleIcons li a{width:21px;height:21px;opacity:.8;display:block;background-size:381px 123px !important}.musicidb-events-integration .cardFloater .socialBubbleIcons li a:hover{opacity:1}.musicidb-events-integration .cardFloater .socialBubbleIcons li img{width:100% !important;display:block}.musicidb-events-integration .cardFloater .oneBand .bandPicBox{width:100%}.musicidb-events-integration .cardFloater .oneBand .bandPicBox img{width:100% !important}.musicidb-events-integration .cardFloater .thumbTile img{border:none;margin:0;border-radius:0;max-width:100%}.musicidb-events-integration .thumbTile,.musicidb-events-integration .thumbTile .frame{height:204px}.musicidb-events-integration .thumbTile{position:relative;color:#999 !important;display:block;background:#fff}.musicidb-events-integration .thumbTile .tileData{position:absolute;bottom:0;left:0;height:106px;box-sizing:border-box;width:100%;padding:3px 10px;overflow:hidden;background:linear-gradient(to bottom, rgba(255, 255, 255, 0.84) 0, rgba(255, 255, 255, 0.84) 1%, rgb(255, 255, 255) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#d6ffffff", endColorstr="#ffffff", GradientType=0)}.musicidb-events-integration .thumbTile .tileData p{margin-bottom:2px;line-height:13px;font-size:12px}.musicidb-events-integration .thumbTile .tileData h3{margin-right:0;color:#525252;font:18px/22px "Roboto",Arial,sans-serif !important;margin-bottom:5px}.musicidb-events-integration .thumbTile:hover{text-decoration:none}.musicidb-events-integration .thumbTile .frame{overflow:hidden;position:relative}.musicidb-events-integration .thumbTile img{position:relative;width:100%;height:auto;vertical-align:middle;display:table-cell}.musicidb-events-integration .thumbTile .bandPicBox{width:73px;height:73px;margin-right:0;margin-bottom:0;background:#111}.musicidb-events-integration .thumbTile h3{font:20px/19px "Roboto",Arial,sans-serif !important}.musicidb-events-integration .thumbTile .fourSet .bandPicBox{width:110px;height:110px}.musicidb-events-integration .bandPicBox{width:62px;height:62px;display:block;overflow:hidden;float:left;margin-right:0px;margin-bottom:0px;box-sizing:border-box;text-align:center}.musicidb-events-integration .bandPicBox:nth-child(2n){margin-right:0}.musicidb-events-integration .eventsList .listEvent .oneBand .bandPicBox{width:125px;height:auto;float:none;margin-right:0}.musicidb-events-integration .eventsList .listEvent .oneBand .bandPicBox img{width:100% !important}.musicidb-events-integration .musicidb-tabs{padding-bottom:10px}.musicidb-events-integration .musicidb-tabs.horizontal{display:block;width:100%;clear:both}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav{left:0;float:left;padding:0;margin:0 0 7px 0 !important}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav li{list-style:none;float:left;display:inline-block;margin:0 8px 8px 0}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav li a{display:block;background:none;padding:10px 16px;border-radius:3px}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav li a:hover{background:#333;color:#fff}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav li.current a{background:#ececec;color:#444}.musicidb-events-integration .musicidb-tabs>a{font:17px/20px "Roboto",Arial,sans-serif}.musicidb-events-integration .musicidb-tabs ul.calViewButtons{float:right !important;position:absolute !important;right:5px;left:inherit !important;z-index:3;padding:0 !important}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li{display:block;float:left;margin:0 0px 8px 0}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li a{border:1px solid #eee !important;background:#fff !important;display:block;padding:11px;font-size:23px;line-height:20px;color:#5d5d5d}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li a:hover{color:#000;border:1px solid #eee !important}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li a#listViewToggle{border-radius:3px 0px 0px 3px}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li a#calViewToggle{border-radius:0px 3px 3px 0px}.musicidb-events-integration .musicidb-tabs ul.calViewButtons li.current a{color:#000;border:1px solid #eee !important}.musicidb-events-integration .musicidb-tab{display:none;clear:both}.musicidb-events-integration .musicidb-tab.current{display:block}.musicidb-events-integration .mediaTabNav{display:block;float:left;margin:0;list-style:none;padding:0}.musicidb-events-integration .mediaTabNav li{float:left;margin-right:5px;margin-bottom:0}.musicidb-events-integration .mediaTabNav li a{display:block;padding:1px 8px 0px;color:#9a9a9a;border-radius:0 0 5px 5px;font-family:Arial,sans-serif;line-height:24px;font-size:18px}.musicidb-events-integration .mediaTabNav li a:hover{background:#eee;color:#656565}.musicidb-events-integration .mediaTabNav li.current a{background:#eee;color:#656565}.musicidb-events-integration .eventDetailModal{width:60%;left:0 !important;right:0 !important;top:39px !important;margin:0 auto;box-sizing:border-box;max-height:95%}.musicidb-events-integration .eventDetailModal p{margin-bottom:5px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap{width:90%;max-width:770px;margin:0 auto;padding:0;margin-bottom:14px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider{padding:0 !important;background:#dcdcdc;margin:0 auto 0px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .mediaHolder{float:left;color:#656565;background:#fff;padding:7px;width:66% !important;margin:5px 0 0 9px !important;box-sizing:border-box}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .cardFloater{padding-top:0;float:left;max-width:28%;width:28% !important;margin:5px 0 0 2% !important;box-sizing:border-box}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .cardFloater .thumbTile,.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .cardFloater .linkTileHolder,.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .cardFloater .frame{max-width:100%;border:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .linkTileHolder{margin-left:0}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile{width:250px;width:100%;height:250px;box-sizing:border-box;padding:7px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile .frame{height:250px;max-height:100%}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile .tileData{width:100%;max-width:100%;box-sizing:border-box}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile .tileData .socialBubbleIcons{bottom:inherit;top:73px}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .thumbTile .tileData .socialBubbleIcons li a{background-size:381px 123px !important}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTabs{height:208px;overflow:hidden}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab{width:100%;height:100%;display:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab iframe{width:100%;height:100%}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab.current{display:block}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab.artistBio{overflow:auto;background:#fff}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab.artistBio .bioWrapper{padding:10px;display:block;color:#5f5f5f;font:14px/18px Arial,sans-serif !important}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .artistMediaTab.artistBio .bioWrapper span{background:none !important;color:#5f5f5f !important;font:14px/18px Arial,sans-serif !important}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .mediaHolder.noMedia{display:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .noMedia .thumbTile{background:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .noMedia .thumbTile .tileData{background:none;left:210px;bottom:60px;width:338px;max-width:none}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .noMedia .thumbTile .tileData .socialBubbleIcons{left:8px;right:0}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .noMedia .thumbTile .tileData .socialBubbleIcons li{float:left}.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider,.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider ul.slides,.musicidb-events-integration .eventDetailModal .cardsSlideWrap #artistCardsSlider .slides li.slick-slide{height:270px !important}.musicidb-events-integration .eventDetailModal #artistCardsList{display:none}.musicidb-events-integration .eventDetailModal #artistCardsList>h2{text-align:center}.musicidb-events-integration .eventDetailModal #artistCardsList .cardFloater{display:block;width:236px;margin:0 auto 35px}.musicidb-events-integration .eventDetailModal #artistCardsList .linkTileHolder{margin-left:0}.musicidb-events-integration .eventDetailModal #artistCardsList span.stat{background:none;color:#888}.musicidb-events-integration .eventDetailModal .artistMediaExpander{cursor:pointer;text-align:center;padding-bottom:10px;margin-bottom:0;font-size:22px}.musicidb-events-integration .eventDetailModal .artistMediaExpander i.leftIcon{margin-right:12px;top:3px;position:relative}.musicidb-events-integration .eventDetailModal .artistMediaExpander i.expandCollapseIcon{float:right;font-size:13px;margin-top:5px}.musicidb-events-integration .eventDetailModal .artistMediaSection{display:none}.musicidb-events-integration .eventDetailModal .artistMediaSection iframe{width:100%}.musicidb-events-integration .eventDetailModal .modalTickets{max-width:770px;padding:9px 0;margin:0 auto 20px}.musicidb-events-integration .eventDetailModal .playNowText{display:block;float:left;display:none;margin-right:15px}.musicidb-events-integration .eventDetailModal .eventDescription{min-height:250px}.musicidb-events-integration .eventDetailModal .eventTopDetails,.musicidb-events-integration .eventDetailModal .eventDescription{padding:0;width:770px;max-width:90%;margin:0 auto 10px}.musicidb-events-integration .eventDetailModal .eventTopDetails{margin-top:5px}.musicidb-events-integration .eventDetailModal .eventTopDetails h2.date{padding-top:25px}.musicidb-events-integration .eventArtistStats{float:right;position:relative;top:4px}.musicidb-events-integration .eventArtistStats span{display:block;float:left;margin-right:5px;font-size:16px;line-height:19px}.musicidb-events-integration .eventArtistStats span.pageLink{font-size:12px;position:relative;color:#999;top:3px}.musicidb-events-integration .eventArtistStats span i{font-size:11px}.musicidb-events-integration .eventArtistStats span a:hover{text-decoration:none}.musicidb-events-integration .eventArtistStats span:last-child{margin-right:0}.musicidb-events-integration .eventArtistStats span.stat{padding:2px 5px}.musicidb-events-integration .musicidb-integration-mask{display:none;position:fixed;top:0;left:0;cursor:pointer;width:100% !important;height:100% !important;z-index:9000;background-color:rgba(0,0,0,.87)}.musicidb-events-integration .window{display:none;position:fixed;z-index:9999;border:12px solid #fff;border-radius:10px;box-sizing:border-box;background-clip:padding-box;background:#f8f8f8;width:85%;max-width:none;min-width:796px;height:90%;overflow:auto;min-height:inherit !important;padding-bottom:10px}.musicidb-events-integration .modalClose{text-transform:none;color:#c55959;position:absolute;top:5px;right:10px;font-size:12px;float:right;margin-bottom:5px;padding:7px 6px 6px;border:1px solid #c1c1c1;color:#777 !important;font-size:10px;line-height:12px;position:relative;z-index:100;font-size:20px}.musicidb-events-integration .modalClose:hover{color:#ff3b52;background:#fff;color:#444}.musicidb-events-integration .slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;touch-action:pan-y;-webkit-tap-highlight-color:rgba(0,0,0,0)}.musicidb-events-integration .slick-list{position:relative;overflow:hidden;display:block;margin:0;padding:0}.musicidb-events-integration .slick-list:focus{outline:none}.musicidb-events-integration .slick-list.dragging{cursor:pointer;cursor:hand}.musicidb-events-integration .slick-slider .slick-track,.musicidb-events-integration .slick-slider .slick-list{transform:translate3d(0, 0, 0)}.musicidb-events-integration .slick-track{position:relative;left:0;top:0;display:block;margin-left:auto;margin-right:auto}.musicidb-events-integration .slick-track:before,.musicidb-events-integration .slick-track:after{content:"";display:table}.musicidb-events-integration .slick-track:after{clear:both}.slick-loading .musicidb-events-integration .slick-track{visibility:hidden}.musicidb-events-integration .slick-slide{float:left;height:0;box-sizing:border-box;min-height:1px}.musicidb-events-integration .slick-slide.slick-active{height:100% !important}[dir=rtl] .musicidb-events-integration .slick-slide{float:right}.musicidb-events-integration .slick-slide img{display:block}.musicidb-events-integration .slick-slide.slick-loading img{display:none}.musicidb-events-integration .slick-slide.dragging img{pointer-events:none}.slick-initialized .musicidb-events-integration .slick-slide{display:block}.slick-loading .musicidb-events-integration .slick-slide{visibility:hidden}.musicidb-events-integration .slick-slide .slick-loading{background:url("../images/loading.svg") no-repeat center;min-height:300px}.slick-vertical .musicidb-events-integration .slick-slide{display:block;height:auto;border:1px solid rgba(0,0,0,0)}.musicidb-events-integration .slick-arrow.slick-hidden{display:none}.musicidb-events-integration ul.slides{overflow:visible !important;list-style:none}.musicidb-events-integration ul.slides .slick-arrow{display:block !important;width:21px;height:35px;position:absolute;top:110px;cursor:pointer;background-color:rgba(0,0,0,0) !important;background-image:url("../images/arrows.png");outline:none !important;border:none !important;text-indent:-9999px}.musicidb-events-integration ul.slides .slick-arrow.slick-prev{background-position:top left;left:-30px}.musicidb-events-integration ul.slides .slick-arrow.slick-next{background-position:top right;right:-30px}.musicidb-events-integration .centerThisGuy{text-align:center}.musicidb-events-integration .centerThisGuy .loadMoreBtn{margin:0 auto;display:inline-block}.musicidb-events-integration .modalFootLinkers{font-size:12px;line-height:15px;margin-bottom:13px}.musicidb-events-integration .modalFootLinkers a{color:#969696}.musicidb-events-integration .widgetsLink{float:right}.musicidb-events-integration .widgetsLink img{width:100px}.musicidb-events-integration.blackBack{color:#eee}.musicidb-events-integration.blackBack .musicidb-integration-mask{background-color:rgba(0,0,0,.9);background-color:rgba(0,0,0,.84)}.musicidb-events-integration.blackBack .modalInner{background:#000}.musicidb-events-integration.blackBack .st-bg{border:#1b1b1b 1px solid !important}.musicidb-events-integration.blackBack .summaryToggle:hover .fui-plus-circle{color:#fff}.musicidb-events-integration.blackBack .window{background:#000;border:12px solid #353535}.musicidb-events-integration.blackBack div.fbutton{border:#1b1b1b 1px solid !important}.musicidb-events-integration.blackBack div .rb-m .rb-i{background:#1b1b1b;background:rgba(14,14,14,.91);color:#dedede}.musicidb-events-integration.blackBack .rb-i .dateBoxTextUnderImg{background:rgba(14,14,14,.91);color:#fff !important}.musicidb-events-integration.blackBack .rb-i:hover .dateBoxTextUnderImg{background:#333 !important}.musicidb-events-integration.blackBack .month-row{border:none !important}.musicidb-events-integration.blackBack .preferencesBox{color:#767676 !important}.musicidb-events-integration.blackBack .eventsList .listEvent{background:#191919;border:1px solid #191919 !important}.musicidb-events-integration.blackBack .eventsList .listEvent:nth-child(2n){background:#191919}.musicidb-events-integration.blackBack .eventsList .listEvent h3{margin-bottom:5px}.musicidb-events-integration.blackBack .eventsList .listEvent h3.date span{color:#c3c3c3 !important}.musicidb-events-integration.blackBack h3{color:#eee}.musicidb-events-integration.blackBack .musicidb-tabs ul.calViewButtons li a{border:1px solid #232323 !important;background:#272727 !important;color:#a5a5a5}.musicidb-events-integration.blackBack .musicidb-tabs ul.calViewButtons li a:hover{background:#ff7630 !important;color:#fff !important}.musicidb-events-integration.blackBack ul.slides .slick-arrow{background-image:url("../images/arrowsdark.png")}.musicidb-events-integration.lightBack h2,.musicidb-events-integration.lightBack h3{color:#565656}.musicidb-events-integration.lightBack h4{color:#5d5d5d}.musicidb-events-integration.lightBack p{color:#5d5d5d}.musicidb-events-integration.lightBack .listItem:nth-child(2n),.musicidb-events-integration.lightBack .tableEventView:nth-child(2n){border-top:1px solid #eee;border-bottom:1px solid #eee;clear:both}.musicidb-events-integration.blackBack .horizontal .ui-tabs-panel,.musicidb-events-integration.blackBack .musicidb-tabNav li.current a,.musicidb-events-integration.blackBack .modalSections>.modalTabNav a.currentState,.musicidb-events-integration.blackBack .horizontal .musicidb-tabNav li a,.musicidb-events-integration.blackBack .musicidb-tabNav li:first-child,.musicidb-events-integration.lightBack .horizontal .ui-tabs-panel,.musicidb-events-integration.lightBack .musicidb-tabNav li.current a,.musicidb-events-integration.lightBack .modalSections>.modalTabNav a.currentState,.musicidb-events-integration.lightBack .horizontal .musicidb-tabNav li a,.musicidb-events-integration.lightBack .musicidb-tabNav li:first-child{background:none;border:none !important}.musicidb-events-integration.blackBack .horizontal .musicidb-tabNav li.current,.musicidb-events-integration.lightBack .horizontal .musicidb-tabNav li.current{top:inherit}.musicidb-events-integration.blackBack .musicidb-tabNav li.current a,.musicidb-events-integration.blackBack .horizontal .musicidb-tabNav li a:hover{color:#eee !important;background:#272727 !important}.musicidb-events-integration.blackBack .horizontal .musicidb-tabNav li a{color:#6d6d6d;background:#272727 !important}.musicidb-events-integration.blackBack .listItem:nth-child(2n),.musicidb-events-integration.blackBack .tableEventView:nth-child(2n){border-top:1px solid #373737;border-bottom:1px solid #373737;clear:both}.musicidb-events-integration.lightBack .listItem:nth-child(2n),.musicidb-events-integration.lightBack .tableEventView:nth-child(2n){border-top:1px solid #d3d3d3;border-bottom:1px solid #d3d3d3;clear:both}.musicidb-events-integration.blackBack .artistFacts{color:#7b7b7b}.musicidb-events-integration.blackBack a,.musicidb-events-integration.blackBack h3 a{color:#1aadff}.musicidb-events-integration.blackBack .linkTile{background:#1d1d1d !important}.musicidb-events-integration.blackBack .linkTile.lightBack h4{color:#9f9f9f !important}.musicidb-events-integration.blackBack img.alignleft{border:1px solid #1d1d1d}.musicidb-events-integration.blackBack .modalTickets{border-top:1px solid #383838;border-bottom:1px solid #383838}.musicidb-events-integration.blackBack.venue-377 .listingBody a{color:#c4c4c4}.musicidb-events-integration.blackBack .controlbar>li>a{border:1px solid rgba(0,0,0,0) !important}.musicidb-events-integration.blackBack img.alignleft{border:none !important}.musicidb-events-integration.lightBack #caltoolbar,.musicidb-events-integration.lightBack #gridcontainer,.musicidb-events-integration.lightBack .cc,.musicidb-events-integration.lightBack .mv-daynames-table,.musicidb-events-integration.lightBack .mv-event-container,.musicidb-events-integration.lightBack .st-dtitle,.musicidb-events-integration.lightBack div.ctoolbar div.fbutton.fcurrent,.musicidb-events-integration.lightBack .whiteBack{background:none !important}.musicidb-events-integration.lightBack div.fbutton{border:none}.musicidb-events-integration.lightBack div#sfnextbtn,.musicidb-events-integration.lightBack div#sfprevbtn{border:#ececec 1px solid;border-radius:2px}.musicidb-events-integration.blackBack .whiteBack,.musicidb-events-integration.blackBack div.ctoolbar,.musicidb-events-integration.blackBack div.fbutton.fcurrent,.musicidb-events-integration.blackBack .st-dtitle-nonmonth,.musicidb-events-integration.blackBack .cc,.musicidb-events-integration.blackBack .mv-daynames-table,.musicidb-events-integration.blackBack .mv-event-container,.musicidb-events-integration.blackBack #gridcontainer,.musicidb-events-integration.blackBack .st-dtitle,.musicidb-events-integration.blackBack ul.calViewButtons,.musicidb-events-integration.blackBack .st-bg{background:none !important}.musicidb-events-integration.blackBack .cardFloater:hover .hoverArtist{color:#eee !important;text-decoration:none}.musicidb-events-integration.blackBack h1,.musicidb-events-integration.blackBack div.ctoolbar div.fshowdatep,.musicidb-events-integration.blackBack div.ctoolbar{color:#eee !important}.musicidb-events-integration.blackBack div.fbutton:hover i{color:#eee}.musicidb-events-integration.blackBack .st-bg,.musicidb-events-integration.blackBack div.fbutton{border:#4d4d4d 1px solid !important}.musicidb-events-integration.blackBack div.ctoolbar div.fshowdatep{border:none !important}.musicidb-events-integration.blackBack .st-dtitle{border-left:none !important}.musicidb-events-integration.blackBack .controlbar>li a.TicketLink{border:1px solid #0d440d !important}.musicidb-events-integration.blackBack .stageImageAndName{background:#161616}.musicidb-events-integration.blackBack .stageImageAndName h3{color:#eee}.musicidb-events-integration.blackBack .listItem:nth-child(2n){border-top:1px solid #2d2d2d;border-bottom:1px solid #2d2d2d}.musicidb-events-integration.blackBack .eventDescription{color:#ddd !important}.musicidb-events-integration.blackBack .eventDescription span,.musicidb-events-integration.blackBack .eventDescription div,.musicidb-events-integration.blackBack .eventDescription p,.musicidb-events-integration.blackBack .eventDescription h1,.musicidb-events-integration.blackBack .eventDescription h2,.musicidb-events-integration.blackBack .eventDescription h3,.musicidb-events-integration.blackBack .eventDescription h4,.musicidb-events-integration.blackBack .eventDescription h5,.musicidb-events-integration.blackBack .eventDescription h6{color:#ddd !important;background:none !important}.musicidb-events-integration.blackBack h1,.musicidb-events-integration.blackBack h2,.musicidb-events-integration.blackBack h3,.musicidb-events-integration.blackBack h4,.musicidb-events-integration.blackBack h5,.musicidb-events-integration.blackBack h6,.musicidb-events-integration.blackBack .framePage h3,.musicidb-events-integration.blackBack .h2,.musicidb-events-integration.blackBack .h3,.musicidb-events-integration.blackBack .h4,.musicidb-events-integration.blackBack .h5,.musicidb-events-integration.blackBack .h6{color:#cecece}.musicidb-events-integration.blackBack .controlbar>li a.TicketLink{border:1px solid #15bd15 !important}.musicidb-events-integration.blackBack .eventLogistics,.musicidb-events-integration.blackBack .listEvent .date span{color:#929292}.musicidb-events-integration.blackBack .eventInfoArea .eventDescription *{color:#d0d0d0 !important}.musicidb-events-integration .listEvent .controlbar.moveLeft{text-align:left;margin:0}.musicidb-events-integration .listEvent .controlbar.moveRight{text-align:right;margin:0;float:right !important}.musicidb-events-integration .listEvent .controlbar.moveCenter{text-align:center;margin:0 auto;clear:both;float:none !important}.musicidb-events-integration .slider-wrapper{position:relative;overflow:hidden}.musicidb-events-integration .slider-wrapper .rightSlideArea{position:absolute;bottom:30px;right:15px}.musicidb-events-integration .slider-wrapper .slider-controllers{display:flex;position:relative}.musicidb-events-integration .slider-wrapper .slider-controllers .btn{align-items:center;background-color:#c33;background-image:url("../images/arrow-left.png");background-position:center;background-repeat:no-repeat;background-size:50%;outline:none;border:none;cursor:pointer;display:flex;height:50px;justify-content:center;width:50px;transform:none;position:absolute;bottom:0px;right:50px}.musicidb-events-integration .slider-wrapper .slider-controllers .btn:hover{background-color:#a92121}.musicidb-events-integration .slider-wrapper .slider-controllers .btn-next{transform:rotate(180deg);right:0}.musicidb-events-integration .slider-wrapper .slider-controllers .btn:before{content:none}.musicidb-events-integration .slider-wrapper .slick-dots{height:24px}.musicidb-events-integration .slider-wrapper .slick-dots li button{background:#5f0505;border-radius:10px}.musicidb-events-integration .slider-wrapper .slick-dots li button:before{content:none}.musicidb-events-integration .slider-banner{max-width:1240px;width:100%;display:none;min-height:350px}.musicidb-events-integration .slider-banner.slick-initialized{display:block}.musicidb-events-integration .slider-banner *{box-sizing:border-box}.musicidb-events-integration .slider-banner img{height:auto;-o-object-fit:cover;object-fit:cover;width:100%}.musicidb-events-integration .slider-banner .overlay{background-color:#c33;opacity:.8}.musicidb-events-integration .slider-banner .slider-foreground{display:flex;justify-content:space-between;position:relative}.musicidb-events-integration .slider-banner .detailsCard{max-width:350px;min-width:238px;width:27%}.musicidb-events-integration .slider-banner .rightSlideArea{align-items:flex-end;display:flex}.musicidb-events-integration .slider-banner .slider-label{align-items:center;background-color:#c9c9c9;display:flex;height:54px;justify-content:center;line-height:1;color:#000;font-size:19px;text-transform:uppercase;width:206px;margin-top:20px}.musicidb-events-integration .slider-banner .slider-label span{font-size:31px}.musicidb-events-integration .slider-banner .slider-date{color:#fff;font-size:20px;margin-bottom:15px}.musicidb-events-integration .slider-banner .slider-title{color:#fff;font-size:50px;font-weight:400;line-height:1.12;margin:0;text-shadow:0 2px 1px rgba(0,0,0,.75);text-transform:uppercase;max-height:140px;overflow:hidden}.musicidb-events-integration .slider-banner .content{padding:0 16px;margin-top:25px}.musicidb-events-integration .slider-banner .buttonsBlockSection{position:absolute;bottom:8px;left:10px}.musicidb-events-integration .slider-banner .buttonsBlockSection a{display:inline-block;padding:7px 23px;font-size:13px;line-height:18px;text-transform:uppercase}.musicidb-events-integration .slider-banner .buttonsBlockSection a i{line-height:10px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link,.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event{color:#333}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link.fbLinkWide,.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event.fbLinkWide{border-radius:6px;padding-left:12px;padding-right:12px;width:auto !important}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link.fbLinkWide .fui-facebook,.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event.fbLinkWide .fui-facebook{margin-right:3px;position:relative;top:4px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link{background:url("../images/ticket-link-bg.png") no-repeat center;background-size:contain;text-decoration:none;width:128px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link:hover{filter:brightness(1.2)}.musicidb-events-integration .slider-banner .buttonsBlockSection a.slider-link .link-arrow{border-color:rgba(0,0,0,0) rgba(0,0,0,0) rgba(0,0,0,0) #033333;border-style:solid;border-width:5px 0 5px 7px;display:block;height:0;width:0;line-height:10px;position:absolute;left:30px;top:15px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.ticketsLink{padding:12px 25px 12px 45px;position:relative;height:44px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event{background:#ccc;border-radius:7px}.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event:hover,.musicidb-events-integration .slider-banner .buttonsBlockSection a.view-event:focus{background:#fff}.musicidb-events-integration .slider-banner .slick-dots li{width:8px;height:8px}.musicidb-events-integration .slider-banner .slick-dots li button{width:8px;height:8px}.musicidb-events-integration .slider-banner .slick-dots li:hover button,.musicidb-events-integration .slider-banner .slick-dots li.slick-active button{background:#c33}.musicidb-events-integration .slider-banner .slider-background,.musicidb-events-integration .slider-banner .overlay{bottom:0;left:0;position:absolute;right:0;top:0}.musicidb-events-integration .slider-banner .overlay{opacity:.8}.musicidb-events-integration .slider-banner .slider-item,.musicidb-events-integration .slider-banner .detailsCard,.musicidb-events-integration .slider-banner .content-wrapper{position:relative}.musicidb-events-integration .slider-banner .slider-item{float:left;width:100%}.musicidb-events-integration .slider-banner .detailsCard{height:100%;min-height:330px}.musicidb-events-integration .slider-banner .content-wrapper{height:100%;min-height:330px}#musicidb-featured-events.tvScreen,.tvScreen #musicidb-featured-events{width:100% !important;max-width:100% !important}#musicidb-featured-events.tvScreen .detailsCard,.tvScreen #musicidb-featured-events .detailsCard{display:none}#musicidb-featured-events.tvScreen #featured-events-slider,.tvScreen #musicidb-featured-events #featured-events-slider{padding:0}#musicidb-featured-events.tvScreen .slider-banner,.tvScreen #musicidb-featured-events .slider-banner{max-width:100% !important;width:100% !important;margin-bottom:0 !important}#musicidb-featured-events.tvScreen .slider-banner .slider-foreground,.tvScreen #musicidb-featured-events .slider-banner .slider-foreground{display:none}#musicidb-featured-events.tvScreen .slider-banner .slider-background,.tvScreen #musicidb-featured-events .slider-banner .slider-background{left:auto;right:auto;top:auto;bottom:auto;position:relative}#musicidb-featured-events.tvScreen .rightSlideArea,.tvScreen #musicidb-featured-events .rightSlideArea{display:none}#musicidb-featured-events.tvScreen .slick-dots,.tvScreen #musicidb-featured-events .slick-dots{padding:0 37px 0 0 !important;text-align:right;bottom:21px}#musicidb-featured-events.fitImagesByHeight .slider-banner img{width:auto;height:100%;margin:0 auto !important}@media only screen and (max-width: 1500px){.musicidb-events-integration .window{width:85%}.musicidb-events-integration .modalInner{padding:15px 0 5px}}@media only screen and (max-width: 1150px){.musicidb-events-integration .window{width:100%;height:100%;border-radius:0;box-sizing:border-box;right:0 !important;left:0 !important;top:0 !important}}@media only screen and (max-width: 1000px){.musicidb-events-integration .viewPosters ul.eventsList li.listEvent{width:calc(50% - 10px)}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea{width:190px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .controlbar.moveLeft{margin-left:280px !important}.musicidb-events-integration .controlbar li{float:left !important}.musicidb-events-integration .modalHead{background:none !important;margin-bottom:13px}.musicidb-events-integration .eventInfoArea .left,.musicidb-events-integration .eventInfoArea .venueInfoTile,.musicidb-events-integration .eventInfoArea .tilesContainer{width:100%}.musicidb-events-integration .thumbTileHolder{width:205px;height:205px;position:relative;margin:0 auto;float:none}.musicidb-events-integration .controlButtons{right:0;position:relative;clear:both;height:67px}.musicidb-events-integration .controlButtons a{padding:9px 7px 2px 25px;width:inherit}.musicidb-events-integration .controlButtons li i{font-size:13px;left:5px;top:8px}.musicidb-events-integration .controlbar li{float:none}.musicidb-events-integration .controlBarEvents li{float:left}.musicidb-events-integration .controlButtons .current a:before,.musicidb-events-integration .controlButtons li:hover a:before{left:45px}.musicidb-events-integration .social-links{position:relative;width:99%;right:inherit;width:inherit;text-align:center;margin:0 auto}.musicidb-events-integration .social-links li{float:none}.musicidb-events-integration .greenCta{float:none}.musicidb-events-integration .btnBlock .greenCta{float:left}.musicidb-events-integration .outerExpander{position:relative}.musicidb-events-integration .window{width:60%;min-width:60%;left:15px;top:20px !important}.musicidb-events-integration .window .scrollingContent{height:100%;padding:10px 5px}.musicidb-events-integration .mobileHide{display:none !important}.musicidb-events-integration .mobileShow{display:block}.musicidb-events-integration .window{padding:30px 1% 25px;width:100% !important;box-sizing:border-box;height:100% !important;min-height:auto !important;top:0px !important;right:auto;left:0 !important;border-radius:0;top:0 !important;border:none}.musicidb-events-integration .eventDetailModal{top:0 !important}.musicidb-events-integration .modalClose{margin-right:10px}.musicidb-events-integration .modalTab{max-height:inherit;overflow:inherit}.musicidb-events-integration .modalHead img{display:none}.musicidb-events-integration .modalHead .artistInfo{width:50%}.musicidb-events-integration .modalTitle h2{padding:0 !important;font-size:18px;line-height:19px;margin:0}.musicidb-events-integration .modalTitle{font:14px/16px Arial,sans-serif}.musicidb-events-integration .modalInner{padding:0 5px 5px !important}.musicidb-events-integration .cardFloater .thumbTileHolder{width:220px;height:220px}.musicidb-events-integration .controlbar li{float:left !important}}@media only screen and (max-width: 700px){.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea{height:310px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea{width:150px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .controlbar.moveLeft{margin-left:240px !important}.musicidb-events-integration .viewCompact .rowView{display:flex}.musicidb-events-integration .viewCompact .rowView .rowColumn{display:inline-block}.musicidb-events-integration .viewCompact .rowView .rowColumn.detailsColumn{top:0}.musicidb-events-integration #artistCardsSlider ul.bjqs-controls.v-centered li a{font-size:22px}.musicidb-events-integration #artistCardsSlider ul.bjqs-controls.v-centered li.bjqs-prev a{left:-25px}.musicidb-events-integration #artistCardsSlider ul.bjqs-controls.v-centered li.bjqs-next a{right:-15px}.musicidb-events-integration .webVideo iframe{width:100%;min-height:330px}.musicidb-events-integration .slider-banner{min-height:auto}.musicidb-events-integration .slider-banner .slick-slide{min-height:390px}.musicidb-events-integration .slider-banner .slick-slide .slider-label{display:none}.musicidb-events-integration .slider-banner .slick-slide .detailsCard{width:100%;max-width:100%;height:auto;top:250px;min-height:140px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content{margin-top:8px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .slider-date{font-size:17px;margin-bottom:2px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .slider-title{font-size:28px !important;max-height:63px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .buttonsBlockSection{bottom:10px;left:4px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .buttonsBlockSection a.slider-link{background-size:110px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .buttonsBlockSection a.slider-link,.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .buttonsBlockSection a.view-event{font-size:12px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content .view-event-wrapper{bottom:16px;left:134px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard .content-wrapper{min-height:auto}.musicidb-events-integration .rightSlideArea .slider-controllers .btn{height:38px;width:38px}.musicidb-events-integration .eventsList .rowView,.musicidb-events-integration .style-viewCompact li{display:block;border-bottom:1px solid #dcdcdc}.musicidb-events-integration .eventsList .rowView .buttonsColumn,.musicidb-events-integration .style-viewCompact li .buttonsColumn{display:block;width:100% !important}.musicidb-events-integration .eventsList .rowView .rowColumn.dateColumn,.musicidb-events-integration .style-viewCompact li .rowColumn.dateColumn{width:77px !important}.musicidb-events-integration .eventsList .rowView .rowColumn .simpleBtn,.musicidb-events-integration .style-viewCompact li .rowColumn .simpleBtn{width:auto}.musicidb-events-integration .eventsList .rowView .rowColumn .cardFloater,.musicidb-events-integration .style-viewCompact li .rowColumn .cardFloater{top:0}.musicidb-events-integration.blackBack .eventsList .rowView{border-bottom:1px solid #444}}@media only screen and (max-width: 650px){.musicidb-events-integration .rowView .rowColumn{width:33% !important}.musicidb-events-integration .rowView .rowColumn.locationColumn{display:none}.musicidb-events-integration .rowView .rowColumn.buttonsColumn a{width:95%;margin-bottom:3px;text-align:center}.musicidb-events-integration .viewCompact .rowView .simpleTitle{font-size:12px}}@media only screen and (max-width: 595px){.musicidb-events-integration .setTime .helpText,.musicidb-events-integration .filtersLabel,.musicidb-events-integration #artistCardsSlider,.musicidb-events-integration #showtodaybtn,.musicidb-events-integration .footLinks nav,.musicidb-events-integration .checkBoxCol,.musicidb-events-integration #mailBoxTable thead th:nth-child(5),.musicidb-events-integration #mailBoxTable thead th:nth-child(6),.musicidb-events-integration #mailBoxTable thead th:nth-child(7),.musicidb-events-integration .sectionHead #embedCodeBtn,.musicidb-events-integration .eventsList .listItem .summaryToggle,.musicidb-events-integration .flavorText,.musicidb-events-integration .artistList .listingImgWrap,.musicidb-events-integration .listArtists .listingImgWrap,.musicidb-events-integration .calendarLegend,.musicidb-events-integration .imageLeftWrapper,.musicidb-events-integration .gigList .navWithBubbles{display:none}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea{display:block !important;width:120px !important}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .bandPicBox{width:50%;height:40px}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .eventPosterArea .oneBand .bandPicBox{width:75px !important}.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .listingBody,.musicidb-events-integration .viewListPics .eventsList.largePics .listEvent .controlbar.moveLeft{margin-left:205px !important}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.eventPosterArea{height:250px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody{padding:0 5px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent div.listingBody h3.titleofevent{font-size:17px;line-height:20px}.musicidb-events-integration .viewPosters ul.eventsList li.listEvent ul.controlbar{flex-wrap:wrap}.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent .eventPosterArea{width:330px;max-height:none}.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent .eventPosterArea .oneBand .bandPicBox{width:100%}.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent .listingBody,.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent .controlbar.moveLeft{margin-left:420px !important}.musicidb-events-integration .slider-banner .slick-slide{min-height:340px}.musicidb-events-integration .slider-banner .slick-slide .detailsCard{top:200px}.musicidb-events-integration .musicidb-tabs ul.musicidb-tabNav.eventTabsLinks li a{padding:10px 8px;font-size:11px}.musicidb-events-integration #artistDetailsPopup #artistCardsSlider{display:block}.musicidb-events-integration #artistCardsList{display:block !important}.musicidb-events-integration #artistDetailsPopup .artistLeftCol{float:none;width:100%;margin-right:0}.musicidb-events-integration #artistDetailsPopup .artistRightCol{width:100%}.musicidb-events-integration #artistDetailsPopup #artistSelector li a h3{margin-bottom:3px}.musicidb-events-integration #artistSelector li a .festivalArtistTextArea h3{max-height:35px}.musicidb-events-integration .controlbar.msgBar li{float:left;margin:0 0 5px}.musicidb-events-integration .controlbar span{float:none}.musicidb-events-integration .padding15{padding:15px 5px !important}.musicidb-events-integration .modalHead{width:98%}.musicidb-events-integration textarea{padding:5px 5px}.musicidb-events-integration .window .greenBtn{margin-bottom:20px}.musicidb-events-integration .window{padding:5px 1% 5px 1% !important;width:100% !important;max-height:100% !important;box-sizing:border-box}.musicidb-events-integration .textarea{width:93%}.musicidb-events-integration .modalClose{margin-right:0px}.musicidb-events-integration .modalTab{border:none;border-top:1px solid #ddd}.musicidb-events-integration .modalTabs{padding:0}.musicidb-events-integration .modalColumns>.column{width:98%}.musicidb-events-integration .modalTab h4.sectionTitle{font-size:13px}.musicidb-events-integration .eventsList .listItem{padding:5px 0 5px 0}.musicidb-events-integration .eventsList .listItem h3.titleofevent{font-size:17px;line-height:18px;margin:0 0 6px 0}.musicidb-events-integration .eventsList .listItem .subtitleEvent{font-size:17px;line-height:18px;margin:0 0 6px 0}.musicidb-events-integration .cardFloater{padding-top:0 !important;padding-bottom:0 !important}.musicidb-events-integration select{padding:5px;width:100% !important;margin-top:0}.musicidb-events-integration .genreData{position:relative;top:12px;margin-bottom:10px;clear:both}.musicidb-events-integration .cardFloater .thumbTileHolder{bottom:19px}.musicidb-events-integration .linkTile{width:100% !important}.musicidb-events-integration .eventDescription .eventDescription span,.musicidb-events-integration .eventDescription div,.musicidb-events-integration .eventDescription p{font-size:14px !important;line-height:18px !important}.musicidb-events-integration .listEvent h3.date .monthName,.musicidb-events-integration .listEvent h3.date .dayNum,.musicidb-events-integration .listEvent h3.date .yearNum{font-size:13px !important;line-height:14px !important}.musicidb-events-integration .listEvent h3.date .yearNum{font-size:13px !important}.musicidb-events-integration .viewListPics .listEvent h3.date .dayNum{font-size:22px !important;line-height:33px !important;top:-6px !important}.musicidb-events-integration .listEvent .controlbar{text-align:center;float:none !important;margin:0 auto}}@media only screen and (max-width: 400px){.musicidb-events-integration .webVideo iframe{width:100%;min-height:330px;height:inherit}.musicidb-events-integration .fullInfo{display:none}.musicidb-events-integration .viewPosters ul.eventsList.largePics li.listEvent div.eventPosterArea{height:150px}}@media only screen and (max-width: 700px){#musicidb-featured-events.tvScreen .slider-banner .slick-slide,.tvScreen #musicidb-featured-events .slider-banner .slick-slide{min-height:1px}#musicidb-featured-events.tvScreen .slick-dots,.tvScreen #musicidb-featured-events .slick-dots{display:none !important}}@media only screen and (max-width: 595px){#musicidb-featured-events.tvScreen .slider-banner .slick-slide,.tvScreen #musicidb-featured-events .slider-banner .slick-slide{min-height:1px}}@media only screen and (max-width: 1000px){.infinite-body-outer-wrapper .musicidb-events-integration .window{top:77px !important}}
    32/*# sourceMappingURL=maps/styles.css.map */
  • musicidb-calendar/trunk/css/whhg-flat-ui.css

    r1854371 r3158876  
    1 @font-face{font-family:'Flat-UI-Icons';src:url("../font/flat-ui-icons-regular.eot");src:url("font/flat-ui-icons-regular.eot?#iefix") format("embedded-opentype"),url("font/flat-ui-icons-regular.woff") format("woff"),url("font/flat-ui-icons-regular.ttf") format("truetype"),url("font/flat-ui-icons-regular.svg#flat-ui-icons-regular") format("svg")}[class^="fui-"],[class*="fui-"],.bjqs-next,.bjqs-prev{font-family:'Flat-UI-Icons';speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fui-triangle-up:before{content:"\e600"}.fui-triangle-down:before{content:"\e601"}.fui-triangle-up-small:before{content:"\e602"}.fui-triangle-down-small:before{content:"\e603"}.fui-triangle-left-large:before{content:"\e604"}.fui-triangle-right-large:before{content:"\e605"}.fui-arrow-left:before,.bjqs-prev a:before{content:"\e606"}.fui-arrow-right:before,.bjqs-next a:before{content:"\e607"}.fui-plus:before{content:"\e608"}.fui-cross:before{content:"\e609"}.fui-check:before{content:"\e60a"}.fui-radio-unchecked:before{content:"\e60b"}.fui-radio-checked:before{content:"\e60c"}.fui-checkbox-unchecked:before{content:"\e60d"}.fui-checkbox-checked:before{content:"\e60e"}.fui-info-circle:before{content:"\e60f"}.fui-alert-circle:before{content:"\e610"}.fui-question-circle:before{content:"\e611"}.fui-check-circle:before{content:"\e612"}.fui-cross-circle:before{content:"\e613"}.fui-plus-circle:before{content:"\e614"}.fui-pause:before{content:"\e615"}.fui-play:before{content:"\e616"}.fui-volume:before{content:"\e617"}.fui-mute:before{content:"\e618"}.fui-resize:before{content:"\e619"}.fui-list:before{content:"\e61a"}.fui-list-thumbnailed:before{content:"\e61b"}.fui-list-small-thumbnails:before{content:"\e61c"}.fui-list-large-thumbnails:before{content:"\e61d"}.fui-list-numbered:before{content:"\e61e"}.fui-list-columned:before{content:"\e61f"}.fui-list-bulleted:before{content:"\e620"}.fui-window:before{content:"\e621"}.fui-windows:before{content:"\e622"}.fui-loop:before{content:"\e623"}.fui-cmd:before{content:"\e624"}.fui-mic:before{content:"\e625"}.fui-heart:before{content:"\e626"}.fui-location:before{content:"\e627"}.fui-new:before{content:"\e628"}.fui-video:before{content:"\e629"}.fui-photo:before{content:"\e62a"}.fui-time:before{content:"\e62b"}.fui-eye:before{content:"\e62c"}.fui-chat:before{content:"\e62d"}.fui-home:before{content:"\e62e"}.fui-upload:before{content:"\e62f"}.fui-search:before{content:"\e630"}.fui-user:before{content:"\e631"}.fui-mail:before{content:"\e632"}.fui-lock:before{content:"\e633"}.fui-power:before{content:"\e634"}.fui-calendar:before{content:"\e635"}.fui-gear:before{content:"\e636"}.fui-bookmark:before{content:"\e637"}.fui-exit:before{content:"\e638"}.fui-trash:before{content:"\e639"}.fui-folder:before{content:"\e63a"}.fui-bubble:before{content:"\e63b"}.fui-export:before{content:"\e63c"}.fui-calendar-solid:before{content:"\e63d"}.fui-star:before{content:"\e63e"}.fui-star-2:before{content:"\e63f"}.fui-credit-card:before{content:"\e640"}.fui-clip:before{content:"\e641"}.fui-link:before{content:"\e642"}.fui-tag:before{content:"\e643"}.fui-document:before{content:"\e644"}.fui-image:before{content:"\e645"}.fui-facebook:before{content:"\e646"}.fui-youtube:before{content:"\e647"}.fui-vimeo:before{content:"\e648"}.fui-twitter:before{content:"\e649"}.fui-spotify:before{content:"\e64a"}.fui-skype:before{content:"\e64b"}.fui-pinterest:before{content:"\e64c"}.fui-path:before{content:"\e64d"}.fui-linkedin:before{content:"\e64e"}.fui-google-plus:before{content:"\e64f"}.fui-dribbble:before{content:"\e650"}.fui-behance:before{content:"\e651"}.fui-stumbleupon:before{content:"\e652"}.fui-yelp:before{content:"\e653"}.fui-wordpress:before{content:"\e654"}.fui-windows-8:before{content:"\e655"}.fui-vine:before{content:"\e656"}.fui-tumblr:before{content:"\e657"}.fui-paypal:before{content:"\e658"}.fui-lastfm:before{content:"\e659"}.fui-instagram:before{content:"\e65a"}.fui-html5:before{content:"\e65b"}.fui-github:before{content:"\e65c"}.fui-foursquare:before{content:"\e65d"}.fui-dropbox:before{content:"\e65e"}.fui-android:before{content:"\e65f"}.fui-apple:before{content:"\e660"}@media (min-width: 768px){.dl-horizontal dt{width:160px}.dl-horizontal dd{margin-left:180px}}sub,sup{font-size:70%}code,kbd,pre,samp{font-family:Monaco, Menlo, Consolas, "Courier New", monospace}code{padding:2px 6px;font-size:85%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}pre{padding:8px;margin:0 0 15px;font-size:13px;line-height:1.72222;color:inherit;background-color:#ffffff;border:2px solid #e7e9ec;border-radius:6px;white-space:pre}.pre-scrollable{max-height:340px}.thumbnailmotion{-webkit-transition:border 0.25s ease-in-out;transition:border 0.25s ease-in-out}.btnMotion{-webkit-font-smoothing:subpixel-antialiased;-webkit-transition:border 0.25s linear, color 0.25s linear, background-color 0.25s linear;transition:border 0.25s linear, color 0.25s linear, background-color 0.25s linear}
    2 
     1@font-face{font-family:"Flat-UI-Icons";src:url("../font/flat-ui-icons-regular.eot");src:url("font/flat-ui-icons-regular.eot?#iefix") format("embedded-opentype"),url("font/flat-ui-icons-regular.woff") format("woff"),url("font/flat-ui-icons-regular.ttf") format("truetype"),url("font/flat-ui-icons-regular.svg#flat-ui-icons-regular") format("svg")}[class^=fui-],[class*=fui-],.bjqs-next,.bjqs-prev{font-family:"Flat-UI-Icons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fui-triangle-up:before{content:""}.fui-triangle-down:before{content:""}.fui-triangle-up-small:before{content:""}.fui-triangle-down-small:before{content:""}.fui-triangle-left-large:before{content:""}.fui-triangle-right-large:before{content:""}.fui-arrow-left:before,.bjqs-prev a:before{content:""}.fui-arrow-right:before,.bjqs-next a:before{content:""}.fui-plus:before{content:""}.fui-cross:before{content:""}.fui-check:before{content:""}.fui-radio-unchecked:before{content:""}.fui-radio-checked:before{content:""}.fui-checkbox-unchecked:before{content:""}.fui-checkbox-checked:before{content:""}.fui-info-circle:before{content:""}.fui-alert-circle:before{content:""}.fui-question-circle:before{content:""}.fui-check-circle:before{content:""}.fui-cross-circle:before{content:""}.fui-plus-circle:before{content:""}.fui-pause:before{content:""}.fui-play:before{content:""}.fui-volume:before{content:""}.fui-mute:before{content:""}.fui-resize:before{content:""}.fui-list:before{content:""}.fui-list-thumbnailed:before{content:""}.fui-list-small-thumbnails:before{content:""}.fui-list-large-thumbnails:before{content:""}.fui-list-numbered:before{content:""}.fui-list-columned:before{content:""}.fui-list-bulleted:before{content:""}.fui-window:before{content:""}.fui-windows:before{content:""}.fui-loop:before{content:""}.fui-cmd:before{content:""}.fui-mic:before{content:""}.fui-heart:before{content:""}.fui-location:before{content:""}.fui-new:before{content:""}.fui-video:before{content:""}.fui-photo:before{content:""}.fui-time:before{content:""}.fui-eye:before{content:""}.fui-chat:before{content:""}.fui-home:before{content:""}.fui-upload:before{content:""}.fui-search:before{content:""}.fui-user:before{content:""}.fui-mail:before{content:""}.fui-lock:before{content:""}.fui-power:before{content:""}.fui-calendar:before{content:""}.fui-gear:before{content:""}.fui-bookmark:before{content:""}.fui-exit:before{content:""}.fui-trash:before{content:""}.fui-folder:before{content:""}.fui-bubble:before{content:""}.fui-export:before{content:""}.fui-calendar-solid:before{content:""}.fui-star:before{content:""}.fui-star-2:before{content:""}.fui-credit-card:before{content:""}.fui-clip:before{content:""}.fui-link:before{content:""}.fui-tag:before{content:""}.fui-document:before{content:""}.fui-image:before{content:""}.fui-facebook:before{content:""}.fui-youtube:before{content:""}.fui-vimeo:before{content:""}.fui-twitter:before{content:""}.fui-spotify:before{content:""}.fui-skype:before{content:""}.fui-pinterest:before{content:""}.fui-path:before{content:""}.fui-linkedin:before{content:""}.fui-google-plus:before{content:""}.fui-dribbble:before{content:""}.fui-behance:before{content:""}.fui-stumbleupon:before{content:""}.fui-yelp:before{content:""}.fui-wordpress:before{content:""}.fui-windows-8:before{content:""}.fui-vine:before{content:""}.fui-tumblr:before{content:""}.fui-paypal:before{content:""}.fui-lastfm:before{content:""}.fui-instagram:before{content:""}.fui-html5:before{content:""}.fui-github:before{content:""}.fui-foursquare:before{content:""}.fui-dropbox:before{content:""}.fui-android:before{content:""}.fui-apple:before{content:""}@media(min-width: 768px){.dl-horizontal dt{width:160px}.dl-horizontal dd{margin-left:180px}}sub,sup{font-size:70%}code,kbd,pre,samp{font-family:Monaco,Menlo,Consolas,"Courier New",monospace}code{padding:2px 6px;font-size:85%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}pre{padding:8px;margin:0 0 15px;font-size:13px;line-height:1.72222;color:inherit;background-color:#fff;border:2px solid #e7e9ec;border-radius:6px;white-space:pre}.pre-scrollable{max-height:340px}.thumbnailmotion{transition:border .25s ease-in-out}.btnMotion{-webkit-font-smoothing:subpixel-antialiased;transition:border .25s linear,color .25s linear,background-color .25s linear}
    32/*# sourceMappingURL=maps/whhg-flat-ui.css.map */
  • musicidb-calendar/trunk/css/whhg.css

    r1854371 r3158876  
    1 @font-face{font-family:'WebHostingHub-Glyphs';src:url("font/webhostinghub-glyphs.eot");src:url("font/webhostinghub-glyphs.eot?#iefix") format("embedded-opentype"),url("font/webhostinghub-glyphs.ttf") format("truetype");font-weight:normal;font-style:normal;-moz-font-feature-settings:"calt=0,liga=0"}[class^="icon-"],[class*=" icon-"],.toggle-triangle,.prevLink,.nextLink,.updateLink{font-family:'WebHostingHub-Glyphs';background:none;width:auto;height:auto;font-style:normal}.icon-aaabattery:before{content:'\f413'}.icon-abacus:before{content:'\f261'}.icon-accountfilter:before{content:'\f05e'}.icon-acsource:before{content:'\f3ea'}.icon-addfriend:before{content:'\f3da'}.icon-address:before{content:'\f08f'}.icon-addshape:before{content:'\f1fd'}.icon-addtocart:before{content:'\f394'}.icon-addtolist:before{content:'\f2ac'}.icon-adjust:before{content:'\f484'}.icon-adobe:before{content:'\f1c9'}.icon-ads-bilboard:before{content:'\f082'}.icon-affiliate:before{content:'\f01e'}.icon-ajax:before{content:'\f06f'}.icon-alarm:before{content:'\f233'}.icon-alarmalt:before{content:'\f23d'}.icon-album-cover:before{content:'\f19f'}.icon-alertalt:before{content:'\f2b4'}.icon-alertpay:before{content:'\f269'}.icon-algorhythm:before{content:'\f0b8'}.icon-alienship:before{content:'\f41f'}.icon-alienware:before{content:'\f3be'}.icon-align-center:before{content:'\f1d9'}.icon-align-justify:before{content:'\f1da'}.icon-align-left:before{content:'\f1d7'}.icon-align-right:before{content:'\f1d8'}.icon-alignbottomedge:before{content:'\f1d3'}.icon-alignhorizontalcenter:before{content:'\f1d2'}.icon-alignleftedge:before{content:'\f1d6'}.icon-alignrightedge:before{content:'\f1d5'}.icon-aligntopedge:before{content:'\f1d4'}.icon-alignverticalcenter:before{content:'\f1d1'}.icon-amd:before{content:'\f020'}.icon-analogdown:before{content:'\f2cb'}.icon-analogleft:before{content:'\f2c8'}.icon-analogright:before{content:'\f2c9'}.icon-analogup:before{content:'\f2ca'}.icon-analytics-piechart:before{content:'\f000'}.icon-analyticsalt-piechartalt:before{content:'\f001'}.icon-anchor-port:before{content:'\f21d'}.icon-android:before{content:'\f12a'}.icon-angrybirds:before{content:'\f3c1'}.icon-antenna:before{content:'\f3ec'}.icon-apache-feather:before{content:'\f056'}.icon-aperture:before{content:'\f356'}.icon-appointment-agenda:before{content:'\f26c'}.icon-archive:before{content:'\f171'}.icon-arrow-down:before{content:'\f2fe'}.icon-arrow-left:before{content:'\f305'}.icon-arrow-right:before{content:'\f304'}.icon-arrow-up:before{content:'\f301'}.icon-asterisk:before{content:'\f317'}.icon-asteriskalt:before{content:'\002a'}.icon-at:before{content:'\40'}.icon-atari:before{content:'\f3b9'}.icon-authentication-keyalt:before{content:'\f051'}.icon-automobile-car:before{content:'\f239'}.icon-autorespond:before{content:'\f08e'}.icon-avatar:before{content:'\f15a'}.icon-avataralt:before{content:'\f161'}.icon-avengers:before{content:'\f342'}.icon-awstats:before{content:'\f04c'}.icon-axe:before{content:'\f2ef'}.icon-backup-vault:before{content:'\f004'}.icon-backupalt-vaultalt:before{content:'\f005'}.icon-backupwizard:before{content:'\f05f'}.icon-backward:before{content:'\f183'}.icon-bag:before{content:'\f234'}.icon-baloon:before{content:'\f405'}.icon-ban-circle:before{content:'\f313'}.icon-banana:before{content:'\f3f4'}.icon-bandwidth:before{content:'\f006'}.icon-bank:before{content:'\f262'}.icon-barchart:before{content:'\f02f'}.icon-barchartalt:before{content:'\f07d'}.icon-barcode:before{content:'\f276'}.icon-basecamp:before{content:'\f160'}.icon-basketball:before{content:'\f2e9'}.icon-bat:before{content:'\f3d3'}.icon-batman:before{content:'\f348'}.icon-batteryaltcharging:before{content:'\f104'}.icon-batteryaltfull:before{content:'\f101'}.icon-batteryaltsixty:before{content:'\f102'}.icon-batteryaltthird:before{content:'\f103'}.icon-batterycharged:before{content:'\f0f4'}.icon-batterycharging:before{content:'\f0f3'}.icon-batteryeighty:before{content:'\f0f9'}.icon-batteryempty:before{content:'\f0f5'}.icon-batteryforty:before{content:'\f0f7'}.icon-batteryfull:before{content:'\f0fa'}.icon-batterysixty:before{content:'\f0f8'}.icon-batterytwenty:before{content:'\f0f6'}.icon-bed:before{content:'\f2b9'}.icon-beer:before{content:'\f244'}.icon-bell:before{content:'\2407'}.icon-bigger:before{content:'\f30a'}.icon-bill:before{content:'\f278'}.icon-binary:before{content:'\f087'}.icon-binoculars-searchalt:before{content:'\f2a0'}.icon-birdhouse:before{content:'\f390'}.icon-birthday:before{content:'\f36b'}.icon-bishop:before{content:'\f2f9'}.icon-blackberry:before{content:'\f421'}.icon-blankstare:before{content:'\f13e'}.icon-blogger-blog:before{content:'\f167'}.icon-bluetooth:before{content:'\f12b'}.icon-bluetoothconnected:before{content:'\f386'}.icon-boardgame:before{content:'\f2d9'}.icon-boat:before{content:'\f21a'}.icon-bold:before{content:'\f1f4'}.icon-bomb:before{content:'\f2dc'}.icon-bone:before{content:'\f35f'}.icon-book:before{content:'\f1ba'}.icon-bookmark:before{content:'\f143'}.icon-boombox:before{content:'\f195'}.icon-bottle:before{content:'\f361'}.icon-bow:before{content:'\f2ee'}.icon-bowling:before{content:'\f2f3'}.icon-bowlingpins:before{content:'\f3d2'}.icon-bowtie:before{content:'\f37f'}.icon-boxtrapper-mousetrap:before{content:'\f046'}.icon-braces:before{content:'\f0b4'}.icon-braille0:before{content:'\f44b'}.icon-braille1:before{content:'\f44c'}.icon-braille2:before{content:'\f44d'}.icon-braille3:before{content:'\f44e'}.icon-braille4:before{content:'\f44f'}.icon-braille5:before{content:'\f450'}.icon-braille6:before{content:'\f451'}.icon-braille7:before{content:'\f452'}.icon-braille8:before{content:'\f453'}.icon-braille9:before{content:'\f454'}.icon-braillea:before{content:'\f431'}.icon-brailleb:before{content:'\f432'}.icon-braillec:before{content:'\f433'}.icon-brailled:before{content:'\f434'}.icon-braillee:before{content:'\f435'}.icon-braillef:before{content:'\f436'}.icon-brailleg:before{content:'\f437'}.icon-brailleh:before{content:'\f438'}.icon-braillei:before{content:'\f439'}.icon-braillej:before{content:'\f43a'}.icon-braillek:before{content:'\f43b'}.icon-braillel:before{content:'\f43c'}.icon-braillem:before{content:'\f43d'}.icon-braillen:before{content:'\f43e'}.icon-brailleo:before{content:'\f43f'}.icon-braillep:before{content:'\f440'}.icon-brailleq:before{content:'\f441'}.icon-brailler:before{content:'\f442'}.icon-brailles:before{content:'\f443'}.icon-braillespace:before{content:'\f455'}.icon-braillet:before{content:'\f444'}.icon-brailleu:before{content:'\f445'}.icon-braillev:before{content:'\f446'}.icon-braillew:before{content:'\f447'}.icon-braillex:before{content:'\f448'}.icon-brailley:before{content:'\f449'}.icon-braillez:before{content:'\f44a'}.icon-brain:before{content:'\f3e3'}.icon-bread:before{content:'\f42f'}.icon-breakable:before{content:'\f41c'}.icon-briefcase:before{content:'\f25e'}.icon-briefcasethree:before{content:'\f25f'}.icon-briefcasetwo:before{content:'\f0a2'}.icon-brightness:before{content:'\f10a'}.icon-brightnessfull:before{content:'\f10b'}.icon-brightnesshalf:before{content:'\f10c'}.icon-broom:before{content:'\f40a'}.icon-browser:before{content:'\f159'}.icon-brush:before{content:'\f1b8'}.icon-bucket:before{content:'\f1b5'}.icon-bug:before{content:'\f0a7'}.icon-bullhorn:before{content:'\f287'}.icon-bus:before{content:'\f241'}.icon-businesscardalt:before{content:'\f137'}.icon-buttona:before{content:'\f2bf'}.icon-buttonb:before{content:'\f2c0'}.icon-buttonx:before{content:'\f2c1'}.icon-buttony:before{content:'\f2c2'}.icon-cactus-desert:before{content:'\f22c'}.icon-calculator:before{content:'\f258'}.icon-calculatoralt:before{content:'\f265'}.icon-calendar:before{content:'\f20f'}.icon-calendaralt-cronjobs:before{content:'\f0a1'}.icon-camera:before{content:'\f19b'}.icon-candle:before{content:'\f29a'}.icon-candy:before{content:'\f42d'}.icon-candycane:before{content:'\f37d'}.icon-cannon:before{content:'\f401'}.icon-canvas:before{content:'\f1c8'}.icon-canvasrulers:before{content:'\f205'}.icon-capacitator:before{content:'\f3e8'}.icon-capslock:before{content:'\21ea'}.icon-captainamerica:before{content:'\f341'}.icon-carrot:before{content:'\f3f2'}.icon-cashregister:before{content:'\f26e'}.icon-cassette:before{content:'\f377'}.icon-cd-dvd:before{content:'\f0cd'}.icon-certificate:before{content:'\f277'}.icon-certificatealt:before{content:'\f058'}.icon-certificatethree:before{content:'\f059'}.icon-cgi:before{content:'\f086'}.icon-cgicenter:before{content:'\f079'}.icon-chair:before{content:'\2441'}.icon-chat:before{content:'\f162'}.icon-check:before{content:'\f310'}.icon-checkboxalt:before{content:'\f311'}.icon-checkin:before{content:'\f223'}.icon-checkinalt:before{content:'\f227'}.icon-chef:before{content:'\f3ce'}.icon-cherry:before{content:'\f35d'}.icon-chevron-down:before{content:'\f48b'}.icon-chevron-left:before{content:'\f489'}.icon-chevron-right:before{content:'\f488'}.icon-chevron-up:before{content:'\f48a'}.icon-chevrons:before{content:'\f0b5'}.icon-chicken:before{content:'\f359'}.icon-chocolate:before{content:'\f367'}.icon-christiancross:before{content:'\f40f'}.icon-christmastree:before{content:'\f37b'}.icon-chrome:before{content:'\f14e'}.icon-cigarette:before{content:'\f229'}.icon-circle-arrow-down:before{content:'\f475'}.icon-circle-arrow-left:before,.prevLink:before{content:'\f472'}.icon-circle-arrow-right:before,.nextLink:before{content:'\f473'}.icon-circle-arrow-up:before{content:'\f474'}.icon-circleadd:before{content:'\f0d1'}.icon-circledelete:before{content:'\f0d2'}.icon-circledown:before{content:'\f3c7'}.icon-circleleft:before{content:'\f3c6'}.icon-circleright:before{content:'\f3c9'}.icon-circleselect:before{content:'\f0d3'}.icon-circleselection:before{content:'\f1b1'}.icon-circleup:before{content:'\f3c8'}.icon-clearformatting:before{content:'\f1e7'}.icon-clipboard-paste:before{content:'\f0cb'}.icon-clockalt-timealt:before{content:'\f22b'}.icon-closetab:before{content:'\f170'}.icon-closewindow:before{content:'\f16e'}.icon-cloud:before{content:'\f0b9'}.icon-clouddownload:before{content:'\f0bb'}.icon-cloudhosting:before{content:'\f007'}.icon-cloudsync:before{content:'\f0bc'}.icon-cloudupload:before{content:'\f0ba'}.icon-clubs:before{content:'\f2f6'}.icon-cmd:before{content:'\f33a'}.icon-cms:before{content:'\f036'}.icon-cmsmadesimple:before{content:'\f0b0'}.icon-codeigniter:before{content:'\f077'}.icon-coffee:before{content:'\f235'}.icon-coffeebean:before{content:'\f366'}.icon-cog:before{content:'\f00f'}.icon-colocation:before{content:'\f024'}.icon-colocationalt:before{content:'\f023'}.icon-colors:before{content:'\f1e6'}.icon-comment:before{content:'\f12c'}.icon-commentout:before{content:'\f080'}.icon-commentround:before{content:'\f155'}.icon-commentroundempty:before{content:'\f156'}.icon-commentroundtyping:before{content:'\f157'}.icon-commentroundtypingempty:before{content:'\f158'}.icon-commenttyping:before{content:'\f12d'}.icon-compass:before{content:'\263c'}.icon-concretefive:before{content:'\f0af'}.icon-contact-businesscard:before{content:'\f040'}.icon-controllernes:before{content:'\f2d2'}.icon-controllerps:before{content:'\f2d1'}.icon-controllersnes:before{content:'\f2d3'}.icon-controlpanel:before{content:'\f008'}.icon-controlpanelalt:before{content:'\f009'}.icon-cooling:before{content:'\f00a'}.icon-coppermine:before{content:'\f0a4'}.icon-copy:before{content:'\f0c9'}.icon-copyright:before{content:'\00a9'}.icon-coupon:before{content:'\f254'}.icon-cpanel:before{content:'\f072'}.icon-cplusplus:before{content:'\f0b1'}.icon-cpu-processor:before{content:'\f002'}.icon-cpualt-processoralt:before{content:'\f003'}.icon-crayon:before{content:'\f383'}.icon-createfile:before{content:'\f0c6'}.icon-createfolder:before{content:'\f0da'}.icon-creativecommons:before{content:'\f1fc'}.icon-creditcard:before{content:'\f279'}.icon-cricket:before{content:'\f418'}.icon-croisant:before{content:'\f29f'}.icon-crop:before{content:'\f1af'}.icon-crown:before{content:'\f28f'}.icon-csharp:before{content:'\f0b2'}.icon-cssthree:before{content:'\f06a'}.icon-cup-coffeealt:before{content:'\f24b'}.icon-cupcake:before{content:'\f35b'}.icon-curling:before{content:'\f3d7'}.icon-cursor:before{content:'\f0dc'}.icon-cut-scissors:before{content:'\f0ca'}.icon-dagger:before{content:'\2020'}.icon-danger:before{content:'\f415'}.icon-dart:before{content:'\f3d4'}.icon-darthvader:before{content:'\f34a'}.icon-database:before{content:'\f00b'}.icon-databaseadd:before{content:'\f00c'}.icon-databasedelete:before{content:'\f00d'}.icon-davidstar:before{content:'\f40e'}.icon-dcsource:before{content:'\f3e9'}.icon-dedicatedserver:before{content:'\f00e'}.icon-deletefile:before{content:'\f0c7'}.icon-deletefolder:before{content:'\f0db'}.icon-delicious:before{content:'\f152'}.icon-designcontest:before{content:'\f351'}.icon-desklamp:before{content:'\f412'}.icon-dialpad:before{content:'\f399'}.icon-diamond:before{content:'\2666'}.icon-diamonds:before{content:'\f2f7'}.icon-die-dice:before{content:'\f2d8'}.icon-diefive:before{content:'\f3fb'}.icon-diefour:before{content:'\f3fa'}.icon-dieone:before{content:'\f3f7'}.icon-diesix:before{content:'\f3fc'}.icon-diethree:before{content:'\f3f9'}.icon-dietwo:before{content:'\f3f8'}.icon-diode:before{content:'\f3e7'}.icon-director:before{content:'\f2ae'}.icon-diskspace:before{content:'\f096'}.icon-distributehorizontalcenters:before{content:'\f1dc'}.icon-distributeverticalcenters:before{content:'\f1db'}.icon-divide:before{content:'\00f7'}.icon-dna:before{content:'\f409'}.icon-dnszone:before{content:'\f07f'}.icon-document:before{content:'\f0c2'}.icon-doghouse:before{content:'\f38f'}.icon-dollar:before{content:'\24'}.icon-dollaralt:before{content:'\f259'}.icon-dolphinsoftware:before{content:'\f064'}.icon-domain:before{content:'\f01d'}.icon-domainaddon:before{content:'\f053'}.icon-domino:before{content:'\f3d5'}.icon-donut:before{content:'\f3ca'}.icon-downleft:before{content:'\f2ff'}.icon-download:before{content:'\f47b'}.icon-download-alt:before{content:'\f11a'}.icon-downright:before{content:'\f300'}.icon-draft:before{content:'\f172'}.icon-dreamweaver:before{content:'\f1d0'}.icon-dribbble:before{content:'\f14c'}.icon-dropmenu:before{content:'\f0a5'}.icon-drupal:before{content:'\f075'}.icon-drwho:before{content:'\f3c0'}.icon-edit:before{content:'\f47c'}.icon-editalt:before{content:'\f0f2'}.icon-egg:before{content:'\f407'}.icon-eightball:before{content:'\f36e'}.icon-eject:before{content:'\f199'}.icon-elipse:before{content:'\f1bc'}.icon-emailalt:before{content:'\f136'}.icon-emailexport:before{content:'\f176'}.icon-emailforward:before{content:'\f175'}.icon-emailforwarders:before{content:'\f049'}.icon-emailimport:before{content:'\f177'}.icon-emailrefresh:before{content:'\f174'}.icon-emailtrace:before{content:'\f091'}.icon-emergency:before{content:'\f246'}.icon-emptycart:before{content:'\f395'}.icon-enter:before{content:'\f323'}.icon-envelope:before{content:'\f028'}.icon-equalizer:before{content:'\f18e'}.icon-equalizeralt:before{content:'\f18f'}.icon-equals:before{content:'\f30c'}.icon-eraser:before{content:'\f1f1'}.icon-erroralt:before{content:'\f05a'}.icon-euro:before{content:'\20ac'}.icon-euroalt:before{content:'\f25a'}.icon-evernote:before{content:'\f17c'}.icon-exchange-currency:before{content:'\f26b'}.icon-exclamation-sign:before{content:'\f04a'}.icon-excludeshape:before{content:'\f200'}.icon-exit:before{content:'\f324'}.icon-explorerwindow:before{content:'\f0d9'}.icon-exportfile:before{content:'\f32f'}.icon-exposure:before{content:'\f1de'}.icon-extinguisher:before{content:'\f2b7'}.icon-eye-close:before{content:'\f481'}.icon-eye-open:before{content:'\f2b5'}.icon-eye-view:before{content:'\f280'}.icon-eyedropper:before{content:'\f1ad'}.icon-facebook:before{content:'\f140'}.icon-facebookalt:before{content:'\f14b'}.icon-facetime-video:before{content:'\f19c'}.icon-factory:before{content:'\f27a'}.icon-fantastico:before{content:'\f0ae'}.icon-faq:before{content:'\f099'}.icon-fast-backward:before{content:'\f47e'}.icon-fast-forward:before{content:'\f47f'}.icon-fastdown:before{content:'\f31d'}.icon-fastleft:before{content:'\f31a'}.icon-fastright:before{content:'\f31b'}.icon-fastup:before{content:'\f31c'}.icon-favoritefile:before{content:'\f381'}.icon-favoritefolder:before{content:'\f382'}.icon-featheralt-write:before{content:'\f1c5'}.icon-fedora:before{content:'\f3f1'}.icon-fence:before{content:'\f2af'}.icon-file:before{content:'\f0d6'}.icon-film:before{content:'\f19d'}.icon-filmstrip:before{content:'\f3ed'}.icon-filter:before{content:'\f05c'}.icon-finder:before{content:'\f398'}.icon-fire:before{content:'\f27f'}.icon-firefox:before{content:'\f420'}.icon-firewall:before{content:'\f021'}.icon-firewire:before{content:'\f0fc'}.icon-firstaid:before{content:'\f2ba'}.icon-fish:before{content:'\f35a'}.icon-fishbone:before{content:'\f42b'}.icon-flag:before{content:'\f487'}.icon-flagalt:before{content:'\f232'}.icon-flagtriangle:before{content:'\f20b'}.icon-flash:before{content:'\f1cf'}.icon-flashlight:before{content:'\f299'}.icon-flashplayer:before{content:'\f070'}.icon-flaskfull:before{content:'\f27e'}.icon-flickr:before{content:'\f146'}.icon-flower:before{content:'\f2a5'}.icon-flowernew:before{content:'\f3a8'}.icon-folder-close:before{content:'\f094'}.icon-folder-open:before{content:'\f483'}.icon-foldertree:before{content:'\f0f0'}.icon-font:before{content:'\f1ae'}.icon-foodtray:before{content:'\f3d0'}.icon-football-soccer:before{content:'\f2eb'}.icon-forbiddenalt:before{content:'\f314'}.icon-forest-tree:before{content:'\f217'}.icon-forestalt-treealt:before{content:'\f21c'}.icon-fork:before{content:'\22d4'}.icon-forklift:before{content:'\f29b'}.icon-form:before{content:'\f08c'}.icon-forrst:before{content:'\f14d'}.icon-fort:before{content:'\f400'}.icon-forward:before{content:'\f182'}.icon-fourohfour:before{content:'\f09d'}.icon-foursquare:before{content:'\f42a'}.icon-freeway:before{content:'\f24a'}.icon-fridge:before{content:'\f40d'}.icon-fries:before{content:'\f36a'}.icon-ftp:before{content:'\f029'}.icon-ftpaccounts:before{content:'\f07b'}.icon-ftpsession:before{content:'\f07c'}.icon-fullscreen:before{content:'\f485'}.icon-gameboy:before{content:'\f403'}.icon-gamecursor:before{content:'\f2d0'}.icon-gasstation:before{content:'\f216'}.icon-gearfour:before{content:'\f3a7'}.icon-ghost:before{content:'\f2da'}.icon-gift:before{content:'\f260'}.icon-github:before{content:'\f081'}.icon-glass:before{content:'\f236'}.icon-glasses:before{content:'\f295'}.icon-glassesalt:before{content:'\f39d'}.icon-globe:before{content:'\f01b'}.icon-globealt:before{content:'\f36c'}.icon-glue:before{content:'\f36d'}.icon-gmail:before{content:'\f150'}.icon-golf:before{content:'\f2f1'}.icon-googledrive:before{content:'\f163'}.icon-googleplus:before{content:'\f165'}.icon-googlewallet:before{content:'\f270'}.icon-gpsoff-gps:before{content:'\f21e'}.icon-gpson:before{content:'\f21f'}.icon-gpu-graphicscard:before{content:'\f108'}.icon-gradient:before{content:'\2207'}.icon-grails:before{content:'\f085'}.icon-greenlantern:before{content:'\f340'}.icon-greenlightbulb:before{content:'\f406'}.icon-grooveshark:before{content:'\f3a2'}.icon-groups-friends:before{content:'\f134'}.icon-guitar:before{content:'\f19a'}.icon-halflife:before{content:'\f3ba'}.icon-halo:before{content:'\f3bb'}.icon-hamburger:before{content:'\f2b3'}.icon-hammer:before{content:'\f291'}.icon-hand-down:before{content:'\f387'}.icon-hand-left:before{content:'\f389'}.icon-hand-right:before{content:'\f388'}.icon-hand-up:before{content:'\f0dd'}.icon-handcuffs:before{content:'\f393'}.icon-handdrag:before{content:'\f0de'}.icon-handtwofingers:before{content:'\f0df'}.icon-hanger:before{content:'\f2ab'}.icon-happy:before{content:'\f13c'}.icon-harrypotter:before{content:'\f38b'}.icon-hdd:before{content:'\f02a'}.icon-hdtv:before{content:'\f1a0'}.icon-headphones:before{content:'\f180'}.icon-headphonesalt:before{content:'\f1a3'}.icon-heart:before{content:'\f131'}.icon-heartempty-love:before{content:'\f132'}.icon-hearts:before{content:'\f2f4'}.icon-helicopter:before{content:'\f3e4'}.icon-hexagon-polygon:before{content:'\f1be'}.icon-hockey:before{content:'\f3d9'}.icon-home:before{content:'\21b8'}.icon-homealt:before{content:'\f02b'}.icon-hospital:before{content:'\f247'}.icon-hotdog:before{content:'\f3cc'}.icon-hotlinkprotection:before{content:'\f050'}.icon-hourglassalt:before{content:'\f122'}.icon-html:before{content:'\f068'}.icon-htmlfive:before{content:'\f069'}.icon-hydrant:before{content:'\f3ff'}.icon-icecream:before{content:'\f2a4'}.icon-icecreamalt:before{content:'\f289'}.icon-illustrator:before{content:'\f1ce'}.icon-imac:before{content:'\f0fb'}.icon-images-gallery:before{content:'\f09f'}.icon-importcontacts:before{content:'\f092'}.icon-importfile:before{content:'\f32e'}.icon-inbox:before{content:'\f17a'}.icon-inboxalt:before{content:'\f178'}.icon-incomingcall:before{content:'\f15d'}.icon-indent-left:before{content:'\f1f2'}.icon-indent-right:before{content:'\f1f3'}.icon-indexmanager:before{content:'\f09e'}.icon-infinity:before{content:'\221e'}.icon-info-sign:before{content:'\f315'}.icon-infographic:before{content:'\f336'}.icon-ink:before{content:'\f3f6'}.icon-inkpen:before{content:'\f1ac'}.icon-insertbarchart:before{content:'\f1e5'}.icon-insertpicture:before{content:'\f1e0'}.icon-insertpicturecenter:before{content:'\f1e3'}.icon-insertpictureleft:before{content:'\f1e1'}.icon-insertpictureright:before{content:'\f1e2'}.icon-insertpiechart:before{content:'\f1e4'}.icon-instagram:before{content:'\f14a'}.icon-install:before{content:'\f128'}.icon-intel:before{content:'\f01f'}.icon-intersection:before{content:'\2229'}.icon-intersectshape:before{content:'\f1ff'}.icon-invert:before{content:'\f1df'}.icon-invoice:before{content:'\f3e5'}.icon-ipcontrol:before{content:'\f08b'}.icon-iphone:before{content:'\f0e6'}.icon-ipod:before{content:'\f190'}.icon-ironman:before{content:'\f349'}.icon-islam:before{content:'\f410'}.icon-island:before{content:'\f392'}.icon-italic:before{content:'\f1f5'}.icon-jar:before{content:'\f2b6'}.icon-jason:before{content:'\f38c'}.icon-java:before{content:'\f083'}.icon-joomla:before{content:'\f073'}.icon-joystickarcade:before{content:'\f2d4'}.icon-joystickatari:before{content:'\f2d5'}.icon-jquery:before{content:'\f06b'}.icon-jqueryui:before{content:'\f06c'}.icon-kerning:before{content:'\f1e9'}.icon-key:before{content:'\f093'}.icon-keyboard:before{content:'\f119'}.icon-keyboardalt:before{content:'\f105'}.icon-keyboarddelete:before{content:'\f3a6'}.icon-kidney:before{content:'\f3e0'}.icon-king:before{content:'\f2fc'}.icon-knife:before{content:'\f214'}.icon-knight:before{content:'\f2fb'}.icon-knob:before{content:'\f376'}.icon-lab-flask:before{content:'\f27d'}.icon-lamp:before{content:'\f2b1'}.icon-lan:before{content:'\f0ee'}.icon-language:before{content:'\f042'}.icon-laptop:before{content:'\f0d8'}.icon-lasso:before{content:'\f396'}.icon-lastfm:before{content:'\f3a3'}.icon-laugh:before{content:'\f13f'}.icon-law:before{content:'\f263'}.icon-layers:before{content:'\f1ca'}.icon-layersalt:before{content:'\f1cb'}.icon-leaf:before{content:'\f039'}.icon-leechprotect:before{content:'\f07e'}.icon-legacyfilemanager:before{content:'\f095'}.icon-lego:before{content:'\f370'}.icon-lifeempty:before{content:'\f2e1'}.icon-lifefull:before{content:'\f2e3'}.icon-lifehacker:before{content:'\f380'}.icon-lifehalf:before{content:'\f2e2'}.icon-lifepreserver:before{content:'\f015'}.icon-lightbulb-idea:before{content:'\f338'}.icon-lighthouse:before{content:'\f3e6'}.icon-lightning:before{content:'\f231'}.icon-lightningalt:before{content:'\f2a8'}.icon-line:before{content:'\f1bf'}.icon-lineheight:before{content:'\f1c0'}.icon-link:before{content:'\f022'}.icon-linkalt:before{content:'\f333'}.icon-linkedin:before{content:'\f166'}.icon-linux:before{content:'\f01a'}.icon-list:before{content:'\f111'}.icon-list-alt:before{content:'\f480'}.icon-liver:before{content:'\f3e2'}.icon-loading-hourglass:before{content:'\f123'}.icon-loadingalt:before{content:'\f339'}.icon-lock:before{content:'\f0be'}.icon-lockalt-keyhole:before{content:'\f0eb'}.icon-lollypop:before{content:'\f3ee'}.icon-lungs:before{content:'\f3df'}.icon-macpro:before{content:'\f3a5'}.icon-macro-plant:before{content:'\f1c6'}.icon-magazine:before{content:'\f1ec'}.icon-magento:before{content:'\f06e'}.icon-magnet:before{content:'\f281'}.icon-mailbox:before{content:'\f044'}.icon-mailinglists:before{content:'\f090'}.icon-man-male:before{content:'\f2a1'}.icon-managedhosting:before{content:'\f038'}.icon-map:before{content:'\f209'}.icon-map-marker:before{content:'\f220'}.icon-marker:before{content:'\f204'}.icon-marvin:before{content:'\f3dd'}.icon-mastercard:before{content:'\f266'}.icon-maximize:before{content:'\f30f'}.icon-medal:before{content:'\f2e5'}.icon-medalbronze:before{content:'\f2e8'}.icon-medalgold:before{content:'\f2e6'}.icon-medalsilver:before{content:'\f2e7'}.icon-mediarepeat:before{content:'\f187'}.icon-men:before{content:'\f24c'}.icon-menu:before{content:'\f127'}.icon-merge:before{content:'\f334'}.icon-mergecells:before{content:'\f327'}.icon-mergeshapes:before{content:'\f201'}.icon-metro-subway:before{content:'\f24f'}.icon-metronome:before{content:'\f374'}.icon-mickeymouse:before{content:'\f37a'}.icon-microphone:before{content:'\f191'}.icon-microscope:before{content:'\f283'}.icon-microsd:before{content:'\f107'}.icon-microwave:before{content:'\f42e'}.icon-mimetype:before{content:'\f057'}.icon-minimize:before{content:'\f30e'}.icon-minus:before{content:'\2212'}.icon-minus-sign:before{content:'\f477'}.icon-missedcall:before{content:'\f15c'}.icon-mobile:before{content:'\f0e8'}.icon-moleskine:before{content:'\f1f0'}.icon-money-cash:before{content:'\f27b'}.icon-moneybag:before{content:'\f271'}.icon-monitor:before{content:'\f0d5'}.icon-monstersinc:before{content:'\f3bd'}.icon-moon-night:before{content:'\f207'}.icon-mouse:before{content:'\f0d4'}.icon-mousealt:before{content:'\f126'}.icon-move:before{content:'\f322'}.icon-movieclapper:before{content:'\f193'}.icon-moviereel:before{content:'\f17f'}.icon-muffin:before{content:'\f363'}.icon-mug:before{content:'\f24e'}.icon-mushroom:before{content:'\f35e'}.icon-music:before{content:'\f181'}.icon-musicalt:before{content:'\f18d'}.icon-mutealt:before{content:'\f0e5'}.icon-mxentry:before{content:'\f07a'}.icon-mybb:before{content:'\f065'}.icon-myspace:before{content:'\f153'}.icon-mysql-dolphin:before{content:'\f076'}.icon-nail:before{content:'\f428'}.icon-navigation:before{content:'\f23a'}.icon-network:before{content:'\f0a6'}.icon-networksignal:before{content:'\f3a9'}.icon-news:before{content:'\f256'}.icon-newtab:before{content:'\f16f'}.icon-newwindow:before{content:'\f16d'}.icon-next:before{content:'\f18a'}.icon-nexus:before{content:'\f0e7'}.icon-nintendods:before{content:'\f404'}.icon-nodejs:before{content:'\f084'}.icon-notes:before{content:'\f0d7'}.icon-notificationbottom:before{content:'\f144'}.icon-notificationtop:before{content:'\f145'}.icon-nut:before{content:'\f427'}.icon-off:before{content:'\f11d'}.icon-office-building:before{content:'\f245'}.icon-officechair:before{content:'\f26d'}.icon-ok:before{content:'\2713'}.icon-ok-circle:before{content:'\f471'}.icon-ok-sign:before{content:'\f479'}.icon-oneup:before{content:'\f3b7'}.icon-oneupalt:before{content:'\f3b6'}.icon-opencart:before{content:'\f060'}.icon-opennewwindow:before{content:'\f332'}.icon-orange:before{content:'\f29e'}.icon-outbox:before{content:'\f179'}.icon-outgoingcall:before{content:'\f15e'}.icon-oxwall:before{content:'\f06d'}.icon-pacman:before{content:'\f2db'}.icon-pageback:before{content:'\f31e'}.icon-pagebreak:before{content:'\f1cc'}.icon-pageforward:before{content:'\f31f'}.icon-pagesetup:before{content:'\f331'}.icon-paintbrush:before{content:'\f1e8'}.icon-paintroll:before{content:'\f1fa'}.icon-palette-painting:before{content:'\f1b9'}.icon-paperclip:before{content:'\f284'}.icon-paperclipalt:before{content:'\f285'}.icon-paperclipvertical:before{content:'\f286'}.icon-paperplane:before{content:'\f296'}.icon-parentheses:before{content:'\f3c4'}.icon-parkeddomain:before{content:'\f055'}.icon-password:before{content:'\f03e'}.icon-passwordalt:before{content:'\f03f'}.icon-pasta:before{content:'\f408'}.icon-patch:before{content:'\f2a3'}.icon-path:before{content:'\f169'}.icon-pause:before{content:'\f186'}.icon-paw-pet:before{content:'\f29d'}.icon-pawn:before{content:'\f2f8'}.icon-paypal:before{content:'\f267'}.icon-peace:before{content:'\f2a7'}.icon-pen:before{content:'\f1ee'}.icon-pencil:before{content:'\f1b7'}.icon-pepperoni:before{content:'\f364'}.icon-percent:before{content:'\25'}.icon-perl-camel:before{content:'\f0b6'}.icon-perlalt:before{content:'\f0b7'}.icon-phone-call:before{content:'\f14f'}.icon-phonealt:before{content:'\f15b'}.icon-phonebook:before{content:'\f149'}.icon-phonebookalt:before{content:'\f135'}.icon-phonemic:before{content:'\f391'}.icon-phoneold:before{content:'\f148'}.icon-photoshop:before{content:'\f1cd'}.icon-php:before{content:'\f09c'}.icon-phpbb:before{content:'\f063'}.icon-phppear:before{content:'\f09b'}.icon-piano:before{content:'\f19e'}.icon-picture:before{content:'\22b7'}.icon-pictureframe:before{content:'\f41e'}.icon-piggybank:before{content:'\f257'}.icon-pigpena:before{content:'\f456'}.icon-pigpenb:before{content:'\f457'}.icon-pigpenc:before{content:'\f458'}.icon-pigpend:before{content:'\f459'}.icon-pigpene:before{content:'\f45a'}.icon-pigpenf:before{content:'\f45b'}.icon-pigpeng:before{content:'\f45c'}.icon-pigpenh:before{content:'\f45d'}.icon-pigpeni:before{content:'\f45e'}.icon-pigpenj:before{content:'\f45f'}.icon-pigpenk:before{content:'\f460'}.icon-pigpenl:before{content:'\f461'}.icon-pigpenm:before{content:'\f462'}.icon-pigpenn:before{content:'\f463'}.icon-pigpeno:before{content:'\f464'}.icon-pigpenp:before{content:'\f465'}.icon-pigpenq:before{content:'\f466'}.icon-pigpenr:before{content:'\f467'}.icon-pigpens:before{content:'\f468'}.icon-pigpent:before{content:'\f469'}.icon-pigpenu:before{content:'\f46a'}.icon-pigpenv:before{content:'\f46b'}.icon-pigpenw:before{content:'\f46c'}.icon-pigpenx:before{content:'\f46d'}.icon-pigpeny:before{content:'\f46e'}.icon-pigpenz:before{content:'\f46f'}.icon-pilcrow:before{content:'\00b6'}.icon-pill-antivirusalt:before{content:'\f0aa'}.icon-pin:before{content:'\f20a'}.icon-pipe:before{content:'\01c0'}.icon-piwigo:before{content:'\f0ad'}.icon-pizza:before{content:'\f35c'}.icon-placeadd:before{content:'\f221'}.icon-placealt:before{content:'\f224'}.icon-placealtadd:before{content:'\f225'}.icon-placealtdelete:before{content:'\f226'}.icon-placedelete:before{content:'\f222'}.icon-placeios:before{content:'\f20c'}.icon-plane:before{content:'\f23e'}.icon-plaque:before{content:'\f2b8'}.icon-play:before{content:'\f184'}.icon-play-circle:before{content:'\f17e'}.icon-playstore:before{content:'\f255'}.icon-playvideo:before{content:'\f03d'}.icon-plug:before{content:'\f0ea'}.icon-pluginalt:before{content:'\f098'}.icon-plus:before{content:'\002b'}.icon-plus-sign:before{content:'\f476'}.icon-pocket:before{content:'\f16b'}.icon-podcast:before{content:'\f1a2'}.icon-podium-winner:before{content:'\f2d6'}.icon-pokemon:before{content:'\f354'}.icon-police:before{content:'\f2aa'}.icon-polygonlasso:before{content:'\f397'}.icon-post:before{content:'\f12e'}.icon-postalt:before{content:'\f130'}.icon-pound:before{content:'\f25b'}.icon-poundalt:before{content:'\f25c'}.icon-powerjack:before{content:'\f0fd'}.icon-powerplug:before{content:'\f0ed'}.icon-powerplugeu:before{content:'\f28b'}.icon-powerplugus:before{content:'\f28c'}.icon-presentation:before{content:'\f0c4'}.icon-prestashop:before{content:'\f061'}.icon-pretzel:before{content:'\f3cf'}.icon-preview:before{content:'\f330'}.icon-previous:before{content:'\f18b'}.icon-print:before{content:'\f125'}.icon-protecteddirectory:before{content:'\f04d'}.icon-pscircle:before{content:'\f2bb'}.icon-pscursor:before{content:'\f2c3'}.icon-psdown:before{content:'\f2c6'}.icon-psleft:before{content:'\f2c7'}.icon-pslone:before{content:'\f2cc'}.icon-psltwo:before{content:'\f2cd'}.icon-psright:before{content:'\f2c5'}.icon-psrone:before{content:'\f2ce'}.icon-psrtwo:before{content:'\f2cf'}.icon-pssquare:before{content:'\f2bc'}.icon-pstriangle:before{content:'\f2bd'}.icon-psup:before{content:'\f2c4'}.icon-psx:before{content:'\f2be'}.icon-pull:before{content:'\f089'}.icon-punisher:before{content:'\f343'}.icon-push:before{content:'\f088'}.icon-puzzle-plugin:before{content:'\f0a0'}.icon-python:before{content:'\f071'}.icon-qrcode:before{content:'\f275'}.icon-quake:before{content:'\f355'}.icon-queen:before{content:'\f2fd'}.icon-query:before{content:'\f08a'}.icon-question-sign:before{content:'\f0a3'}.icon-quote:before{content:'\f12f'}.icon-quotedown:before{content:'\f329'}.icon-quoteup:before{content:'\f328'}.icon-raceflag:before{content:'\f38e'}.icon-racquet:before{content:'\f2f2'}.icon-radio:before{content:'\f1a1'}.icon-radioactive:before{content:'\f282'}.icon-radiobutton:before{content:'\f312'}.icon-railroad:before{content:'\f248'}.icon-rain:before{content:'\f22f'}.icon-ram:before{content:'\f02c'}.icon-random:before{content:'\f188'}.icon-rar:before{content:'\f117'}.icon-raspberry:before{content:'\f368'}.icon-raspberrypi:before{content:'\f369'}.icon-rawaccesslogs:before{content:'\f0c1'}.icon-razor:before{content:'\f416'}.icon-reademail:before{content:'\f173'}.icon-record:before{content:'\f189'}.icon-rectangle:before{content:'\25ad'}.icon-recycle:before{content:'\f297'}.icon-reddit:before{content:'\f154'}.icon-redirect:before{content:'\f054'}.icon-refresh:before{content:'\f078'}.icon-reliability:before{content:'\f016'}.icon-remote:before{content:'\f298'}.icon-remove:before{content:'\00d7'}.icon-remove-circle:before{content:'\f470'}.icon-remove-sign:before{content:'\f478'}.icon-removefriend:before{content:'\f3db'}.icon-repeat:before{content:'\f32b'}.icon-repeatone:before{content:'\f196'}.icon-resellerhosting:before{content:'\f03a'}.icon-residentevil:before{content:'\f350'}.icon-resistor:before{content:'\f3eb'}.icon-resize:before{content:'\f1ed'}.icon-resize-full:before{content:'\f325'}.icon-resize-horizontal:before{content:'\f318'}.icon-resize-small:before{content:'\f326'}.icon-resize-vertical:before{content:'\f319'}.icon-restart:before{content:'\f11f'}.icon-restaurantmenu:before{content:'\f362'}.icon-restore:before{content:'\f30d'}.icon-restricted:before{content:'\f0ab'}.icon-retweet:before{content:'\f486'}.icon-rim:before{content:'\f36f'}.icon-ring:before{content:'\02da'}.icon-road:before{content:'\f249'}.icon-roadsign-roadsignright:before{content:'\f21b'}.icon-roadsignleft:before{content:'\f240'}.icon-robocop:before{content:'\f357'}.icon-rocket-launch:before{content:'\f29c'}.icon-rook:before{content:'\f2fa'}.icon-root:before{content:'\f33c'}.icon-rorschach:before{content:'\f358'}.icon-rotateclockwise:before{content:'\f202'}.icon-rotatecounterclockwise:before{content:'\f203'}.icon-roundrectangle:before{content:'\f1bd'}.icon-route:before{content:'\f402'}.icon-router:before{content:'\f0e9'}.icon-rss:before{content:'\f17b'}.icon-rubberstamp:before{content:'\f274'}.icon-ruby:before{content:'\f067'}.icon-ruler:before{content:'\f1ef'}.icon-sad:before{content:'\f13d'}.icon-safetypin:before{content:'\f417'}.icon-satellite:before{content:'\f38a'}.icon-satellitedish-remotemysql:before{content:'\f0c0'}.icon-save-floppy:before{content:'\f0c8'}.icon-scales:before{content:'\f3fd'}.icon-science-atom:before{content:'\f2b0'}.icon-scope-scan:before{content:'\f212'}.icon-scopealt:before{content:'\f237'}.icon-screenshot:before{content:'\f109'}.icon-screw:before{content:'\f426'}.icon-screwdriver:before{content:'\f292'}.icon-screwdriveralt:before{content:'\f293'}.icon-script:before{content:'\f08d'}.icon-sd:before{content:'\f106'}.icon-search:before{content:'\f0c5'}.icon-searchdocument:before{content:'\f419'}.icon-searchfolder:before{content:'\f41a'}.icon-security-shield:before{content:'\f02d'}.icon-securityalt-shieldalt:before{content:'\f02e'}.icon-selection-rectangleselection:before{content:'\f1b0'}.icon-selectionadd:before{content:'\f1b2'}.icon-selectionintersect:before{content:'\f1b4'}.icon-selectionremove:before{content:'\f1b3'}.icon-seo:before{content:'\f030'}.icon-server:before{content:'\f026'}.icon-servers:before{content:'\f027'}.icon-settingsandroid:before{content:'\f309'}.icon-settingsfour-gearsalt:before{content:'\f306'}.icon-settingsthree-gears:before{content:'\f307'}.icon-settingstwo-gearalt:before,.updateLink:before{content:'\f308'}.icon-shades-sunglasses:before{content:'\f294'}.icon-shapes:before{content:'\f1dd'}.icon-share:before{content:'\f47d'}.icon-share-alt:before{content:'\f16c'}.icon-sharealt:before{content:'\f147'}.icon-sharedfile:before{content:'\f0ef'}.icon-sharedhosting:before{content:'\f037'}.icon-sharethree:before{content:'\f414'}.icon-sheriff:before{content:'\f2a9'}.icon-shipping:before{content:'\f23f'}.icon-shopping:before{content:'\f010'}.icon-shopping-cart:before{content:'\f035'}.icon-shoppingbag:before{content:'\f273'}.icon-shortcut:before{content:'\f043'}.icon-shovel:before{content:'\f290'}.icon-shredder:before{content:'\f27c'}.icon-shutdown:before{content:'\f11e'}.icon-sidebar:before{content:'\f124'}.icon-signal:before{content:'\f100'}.icon-sim:before{content:'\f0e1'}.icon-simalt:before{content:'\f121'}.icon-skrill:before{content:'\f268'}.icon-skull:before{content:'\f38d'}.icon-skype:before{content:'\f141'}.icon-skypeaway:before{content:'\f39f'}.icon-skypebusy:before{content:'\f3a0'}.icon-skypeoffline:before{content:'\f3a1'}.icon-skypeonline:before{content:'\f39e'}.icon-smaller:before{content:'\f30b'}.icon-smf:before{content:'\f062'}.icon-smile:before{content:'\263a'}.icon-snow:before{content:'\f22e'}.icon-snowman:before{content:'\f37c'}.icon-socialnetwork:before{content:'\f03b'}.icon-software:before{content:'\f09a'}.icon-sortbynameascending-atoz:before{content:'\f1c2'}.icon-sortbynamedescending-ztoa:before{content:'\f1c1'}.icon-sortbysizeascending:before{content:'\f1c3'}.icon-sortbysizedescending:before{content:'\f1c4'}.icon-soundwave:before{content:'\f194'}.icon-soup:before{content:'\f3d1'}.icon-spaceinvaders:before{content:'\f352'}.icon-spades:before{content:'\f2f5'}.icon-spam:before{content:'\f047'}.icon-spamalt:before{content:'\f048'}.icon-spawn:before{content:'\f344'}.icon-speaker:before{content:'\f372'}.icon-speed:before{content:'\f40b'}.icon-spider:before{content:'\f346'}.icon-spiderman:before{content:'\f347'}.icon-split:before{content:'\f335'}.icon-spoon:before{content:'\f213'}.icon-spray:before{content:'\f1c7'}.icon-spreadsheet:before{content:'\f0c3'}.icon-squareapp:before{content:'\f26f'}.icon-squarebrackets:before{content:'\f0b3'}.icon-ssh:before{content:'\f04e'}.icon-sslmanager:before{content:'\f04f'}.icon-stadium:before{content:'\f3d6'}.icon-stamp:before{content:'\f242'}.icon-stampalt:before{content:'\f243'}.icon-star:before{content:'\f13a'}.icon-star-empty:before{content:'\f13b'}.icon-starempty:before{content:'\f2de'}.icon-starfull:before{content:'\f2e0'}.icon-starhalf:before{content:'\f2df'}.icon-steak:before{content:'\f360'}.icon-steam:before{content:'\f2dd'}.icon-step-backward:before{content:'\f198'}.icon-step-forward:before{content:'\f197'}.icon-sticker:before{content:'\f3f5'}.icon-stiletto:before{content:'\f429'}.icon-stockdown:before{content:'\f252'}.icon-stocks:before{content:'\f250'}.icon-stockup:before{content:'\f251'}.icon-stomach:before{content:'\f3e1'}.icon-stop:before{content:'\f185'}.icon-stopwatch:before{content:'\f219'}.icon-storage-box:before{content:'\f011'}.icon-storagealt-drawer:before{content:'\f012'}.icon-store:before{content:'\f272'}.icon-storm:before{content:'\f230'}.icon-stove:before{content:'\f371'}.icon-strawberry:before{content:'\f3f3'}.icon-strikethrough:before{content:'\f1f7'}.icon-student-school:before{content:'\f288'}.icon-stumbleupon:before{content:'\f40c'}.icon-subdomain:before{content:'\f052'}.icon-submarine:before{content:'\f373'}.icon-subscript:before{content:'\f1ea'}.icon-subtractshape:before{content:'\f1fe'}.icon-sum:before{content:'\f33b'}.icon-sun-day:before{content:'\f206'}.icon-sunnysideup:before{content:'\f365'}.icon-superman:before{content:'\f33f'}.icon-superscript:before{content:'\f1eb'}.icon-support:before{content:'\f013'}.icon-supportalt:before{content:'\f014'}.icon-switch:before{content:'\f28a'}.icon-switchoff:before{content:'\f32d'}.icon-switchoffalt:before{content:'\f28e'}.icon-switchon:before{content:'\f32c'}.icon-switchonalt:before{content:'\f28d'}.icon-sword:before{content:'\f2ed'}.icon-sync:before{content:'\f0bd'}.icon-syncalt:before{content:'\f11c'}.icon-synckeeplocal:before{content:'\f33e'}.icon-synckeepserver:before{content:'\f33d'}.icon-syringe-antivirus:before{content:'\f0a9'}.icon-tablet:before{content:'\f118'}.icon-tabletennis-pingpong:before{content:'\f2f0'}.icon-taco:before{content:'\f3cd'}.icon-tag:before{content:'\f032'}.icon-tagalt-pricealt:before{content:'\f264'}.icon-tags:before{content:'\f482'}.icon-tagvertical:before{content:'\f15f'}.icon-tank:before{content:'\f423'}.icon-target:before{content:'\f2a6'}.icon-taskmanager-logprograms:before{content:'\f04b'}.icon-tasks:before{content:'\f0e0'}.icon-taxi:before{content:'\f3a4'}.icon-tea:before{content:'\f3cb'}.icon-teapot:before{content:'\f42c'}.icon-telescope:before{content:'\f3ef'}.icon-temperature-thermometer:before{content:'\f20d'}.icon-temperaturealt-thermometeralt:before{content:'\f20e'}.icon-tennis:before{content:'\f2ea'}.icon-tent-camping:before{content:'\f215'}.icon-terminal:before{content:'\f114'}.icon-tethering:before{content:'\f0f1'}.icon-tetrisone:before{content:'\f34b'}.icon-tetristhree:before{content:'\f34d'}.icon-tetristwo:before{content:'\f34c'}.icon-text-height:before{content:'\f1f8'}.icon-text-width:before{content:'\f1f9'}.icon-th:before{content:'\f110'}.icon-th-large:before{content:'\f112'}.icon-th-list:before{content:'\f113'}.icon-theather:before{content:'\f39c'}.icon-theme-style:before{content:'\f041'}.icon-thissideup:before{content:'\f41d'}.icon-threecolumns:before{content:'\f1ab'}.icon-thumbs-down:before{content:'\f139'}.icon-thumbs-up:before{content:'\f138'}.icon-ticket:before{content:'\f3dc'}.icon-tictactoe:before{content:'\f39a'}.icon-tie-business:before{content:'\2040'}.icon-time:before{content:'\f210'}.icon-timeline:before{content:'\f253'}.icon-tint:before{content:'\f208'}.icon-toast:before{content:'\f2ad'}.icon-toiletpaper:before{content:'\f384'}.icon-tooth:before{content:'\f3de'}.icon-toothbrush:before{content:'\f385'}.icon-tophat:before{content:'\f3f0'}.icon-torigate:before{content:'\f411'}.icon-touchpad:before{content:'\f115'}.icon-trafficlight:before{content:'\f22a'}.icon-transform:before{content:'\f1a6'}.icon-trash:before{content:'\f0ce'}.icon-trashempty:before{content:'\f0cf'}.icon-trashfull:before{content:'\f0d0'}.icon-travel:before{content:'\f422'}.icon-treediagram:before{content:'\f0ec'}.icon-treeornament:before{content:'\f37e'}.icon-triangle:before{content:'\25b3'}.icon-tron:before{content:'\f34f'}.icon-trophy:before{content:'\f2d7'}.icon-truck:before{content:'\f211'}.icon-trumpet:before{content:'\f375'}.icon-tumblr:before{content:'\f164'}.icon-tv:before{content:'\f1a4'}.icon-twitter:before{content:'\f16a'}.icon-twocolumnsleft:before{content:'\f1a9'}.icon-twocolumnsleftalt:before{content:'\f1aa'}.icon-twocolumnsright:before{content:'\f1a7'}.icon-twocolumnsrightalt:before{content:'\f1a8'}.icon-ubuntu:before{content:'\f120'}.icon-umbrella:before{content:'\f218'}.icon-underline:before{content:'\f1f6'}.icon-undo:before{content:'\f32a'}.icon-unlock:before{content:'\f0bf'}.icon-upleft:before{content:'\f302'}.icon-upload:before{content:'\f47a'}.icon-uploadalt:before{content:'\f11b'}.icon-upright:before{content:'\f303'}.icon-uptime:before{content:'\f017'}.icon-usb:before{content:'\f10d'}.icon-usbalt:before{content:'\f10e'}.icon-usbplug:before{content:'\f10f'}.icon-user:before{content:'\f133'}.icon-userfilter:before{content:'\f05d'}.icon-usfootball:before{content:'\f2ec'}.icon-value-coins:before{content:'\f018'}.icon-vector:before{content:'\f1b6'}.icon-vendetta:before{content:'\f3c5'}.icon-video:before{content:'\f17d'}.icon-viking:before{content:'\f379'}.icon-vimeo:before{content:'\f168'}.icon-vinyl:before{content:'\f0cc'}.icon-violin:before{content:'\f1a5'}.icon-virus:before{content:'\f0a8'}.icon-visa:before{content:'\f3c2'}.icon-visitor:before{content:'\f097'}.icon-vlc-cone:before{content:'\f192'}.icon-voice:before{content:'\f18c'}.icon-volume-down:before{content:'\f0e3'}.icon-volume-off:before{content:'\f0e4'}.icon-volume-up:before{content:'\f0e2'}.icon-vps:before{content:'\f025'}.icon-wacom:before{content:'\f1bb'}.icon-walle:before{content:'\f3bc'}.icon-wallet:before{content:'\e000'}.icon-warcraft:before{content:'\f3bf'}.icon-warmedal:before{content:'\f2e4'}.icon-warning-sign:before{content:'\f316'}.icon-washer:before{content:'\f39b'}.icon-watch:before{content:'\f378'}.icon-watertap-plumbing:before{content:'\f22d'}.icon-wave-sea:before{content:'\f23c'}.icon-wavealt-seaalt:before{content:'\f23b'}.icon-webcam:before{content:'\f0fe'}.icon-webcamalt:before{content:'\f129'}.icon-webhostinghub:before{content:'\f031'}.icon-webmail:before{content:'\f045'}.icon-webpage:before{content:'\f033'}.icon-webplatform:before{content:'\f3c3'}.icon-websitealt:before{content:'\f01c'}.icon-websitebuilder:before{content:'\f034'}.icon-weight:before{content:'\f430'}.icon-westernunion:before{content:'\f26a'}.icon-wheel:before{content:'\f228'}.icon-wheelchair:before{content:'\f3fe'}.icon-whistle:before{content:'\f3d8'}.icon-whmcs:before{content:'\f066'}.icon-wifi:before{content:'\f0ff'}.icon-wind:before{content:'\f41b'}.icon-windleft:before{content:'\f424'}.icon-windows:before{content:'\f019'}.icon-windright:before{content:'\f425'}.icon-wine:before{content:'\f238'}.icon-wizard:before{content:'\f03c'}.icon-wizardalt:before{content:'\f1fb'}.icon-wizardhat:before{content:'\f337'}.icon-woman-female:before{content:'\f2a2'}.icon-women:before{content:'\f24d'}.icon-wordpress:before{content:'\f074'}.icon-wrench:before{content:'\f05b'}.icon-wrenchalt:before{content:'\f2b2'}.icon-xbox:before{content:'\f353'}.icon-xmen:before{content:'\f345'}.icon-yahoo:before{content:'\f151'}.icon-yen:before{content:'\00a5'}.icon-yenalt:before{content:'\f25d'}.icon-yinyang:before{content:'\262f'}.icon-youtube:before{content:'\f142'}.icon-zelda:before{content:'\f3b8'}.icon-zikula:before{content:'\f0ac'}.icon-zip:before{content:'\f116'}.icon-zodiac-aquarius:before{content:'\f3b4'}.icon-zodiac-aries:before{content:'\f3aa'}.icon-zodiac-cancer:before{content:'\f3ad'}.icon-zodiac-capricorn:before{content:'\f3b3'}.icon-zodiac-gemini:before{content:'\f3ac'}.icon-zodiac-leo:before{content:'\f3ae'}.icon-zodiac-libra:before{content:'\f3b0'}.icon-zodiac-pisces:before{content:'\f3b5'}.icon-zodiac-sagitarius:before{content:'\f3b2'}.icon-zodiac-scorpio:before{content:'\f3b1'}.icon-zodiac-taurus:before{content:'\f3ab'}.icon-zodiac-virgo:before{content:'\f3af'}.icon-zoom-in:before{content:'\f320'}.icon-zoom-out:before{content:'\f321'}.icon-vk:before{content:'\f34e'}.icon-bitcoin:before{content:'\f584'}.icon-rouble:before{content:'\f4ca'}.icon-phpnuke:before{content:'\f48c'}.icon-modx:before{content:'\f48d'}.icon-eoneohseven:before{content:'\f48e'}.icon-subrion:before{content:'\f48f'}.icon-typothree:before{content:'\f490'}.icon-tikiwiki:before{content:'\f491'}.icon-pligg:before{content:'\f492'}.icon-pyrocms:before{content:'\f493'}.icon-mambo:before{content:'\f494'}.icon-contao:before{content:'\f495'}.icon-crackedegg:before{content:'\f496'}.icon-coffeecupalt:before{content:'\f497'}.icon-reademailalt:before{content:'\f498'}.icon-train:before{content:'\f499'}.icon-shoebox:before{content:'\f49a'}.icon-bathtub:before{content:'\f49b'}.icon-ninegag:before{content:'\f49c'}.icon-pebble:before{content:'\f49d'}.icon-musicthree:before{content:'\f49e'}.icon-stairsup:before{content:'\f49f'}.icon-stairsdown:before{content:'\f4a0'}.icon-bookalt:before{content:'\f4a1'}.icon-programclose:before{content:'\f4a2'}.icon-programok:before{content:'\f4a3'}.icon-splitalt:before{content:'\f4a4'}.icon-solarsystem:before{content:'\f4a5'}.icon-honeycomb:before{content:'\f4a6'}.icon-tools:before{content:'\f4a7'}.icon-xoops:before{content:'\f4a8'}.icon-pixie:before{content:'\f4a9'}.icon-dotclear:before{content:'\f4aa'}.icon-impresscms:before{content:'\f4ab'}.icon-saurus:before{content:'\f4ac'}.icon-impresspages:before{content:'\f4ad'}.icon-monstra:before{content:'\f4ae'}.icon-snews:before{content:'\f4af'}.icon-jcore:before{content:'\f4b0'}.icon-silverstripe:before{content:'\f4b1'}.icon-btwoevolution:before{content:'\f4b2'}.icon-nucleus:before{content:'\f4b3'}.icon-symphony:before{content:'\f4b5'}.icon-vanillacms:before{content:'\f4b6'}.icon-bbpress:before{content:'\f4b7'}.icon-phpbbalt:before{content:'\f4b8'}.icon-chyrp:before{content:'\f4b9'}.icon-pivotx:before{content:'\f4ba'}.icon-pagecookery:before{content:'\f4bb'}.icon-moviereelalt:before{content:'\f4bc'}.icon-cassettealt:before{content:'\f4bd'}.icon-photobucket:before{content:'\f4be'}.icon-technorati:before{content:'\f4bf'}.icon-theverge:before{content:'\f4c0'}.icon-stacks:before{content:'\f4c1'}.icon-dotlist:before{content:'\f4c2'}.icon-numberlist:before{content:'\f4c3'}.icon-indentleft:before{content:'\f4c4'}.icon-indentright:before{content:'\f4c5'}.icon-fblike:before{content:'\f4c6'}.icon-fbdislike:before{content:'\f4c7'}.icon-sale:before{content:'\f4c8'}.icon-sharetronix:before{content:'\f4c9'}.icon-markerdown:before{content:'\f4cb'}.icon-markerup:before{content:'\f4cc'}.icon-markerleft:before{content:'\f4cd'}.icon-markerright:before{content:'\f4ce'}.icon-bookmarkalt:before{content:'\f4cf'}.icon-calendarthree:before{content:'\f4d0'}.icon-wineglass:before{content:'\f4d1'}.icon-slidersoff:before{content:'\f4d2'}.icon-slidersmiddle:before{content:'\f4d3'}.icon-slidersfull:before{content:'\f4d4'}.icon-slidersdesc:before{content:'\f4d5'}.icon-slidersasc:before{content:'\f4d6'}.icon-slideronefull:before{content:'\f4d7'}.icon-slidertwofull:before{content:'\f4d8'}.icon-sliderthreefull:before{content:'\f4d9'}.icon-noborders:before{content:'\f4da'}.icon-bottomborder:before{content:'\f4db'}.icon-topborder:before{content:'\f4dc'}.icon-leftborder:before{content:'\f4dd'}.icon-rightborder:before{content:'\f4de'}.icon-horizontalborder:before{content:'\f4df'}.icon-verticalborder:before{content:'\f4e0'}.icon-outerborders:before{content:'\f4e1'}.icon-innerborders:before{content:'\f4e2'}.icon-fullborders:before{content:'\f4e3'}.icon-networksignalalt:before{content:'\f4e4'}.icon-resizeverticalalt:before{content:'\f4e5'}.icon-resizehorizontalalt:before{content:'\f4e6'}.icon-moneyalt:before{content:'\f4e7'}.icon-fontcase:before{content:'\f4e8'}.icon-playstation:before{content:'\f4e9'}.icon-cube:before{content:'\f4ea'}.icon-sphere:before{content:'\f4eb'}.icon-ceilinglight:before{content:'\f4ec'}.icon-chandelier:before{content:'\f4ed'}.icon-details:before{content:'\f4ee'}.icon-detailsalt:before{content:'\f4ef'}.icon-bullet:before{content:'\f4f0'}.icon-gun:before{content:'\f4f1'}.icon-processorthree:before{content:'\f4f2'}.icon-world:before{content:'\f4f3'}.icon-statistics:before{content:'\f4f4'}.icon-shoppingcartalt:before{content:'\f4f5'}.icon-microphonealt:before{content:'\f4f6'}.icon-routeralt:before{content:'\f4f7'}.icon-shell:before{content:'\f4f8'}.icon-squareplay:before{content:'\f4f9'}.icon-squarestop:before{content:'\f4fa'}.icon-squarepause:before{content:'\f4fb'}.icon-squarerecord:before{content:'\f4fc'}.icon-squareforward:before{content:'\f4fd'}.icon-squareback:before{content:'\f4fe'}.icon-squarenext:before{content:'\f4ff'}.icon-squareprevious:before{content:'\f500'}.icon-mega:before{content:'\f501'}.icon-charliechaplin:before{content:'\f502'}.icon-popcorn:before{content:'\f503'}.icon-fatarrowright:before{content:'\f504'}.icon-fatarrowleft:before{content:'\f505'}.icon-fatarrowdown:before{content:'\f506'}.icon-fatarrowup:before{content:'\f507'}.icon-shirtbutton:before{content:'\f508'}.icon-shirtbuttonalt:before{content:'\f509'}.icon-cuckooclock:before{content:'\f50a'}.icon-lens:before{content:'\f50b'}.icon-voltage:before{content:'\f50c'}.icon-planealt:before{content:'\f50d'}.icon-busalt:before{content:'\f50e'}.icon-lipstick:before{content:'\f50f'}.icon-plantalt:before{content:'\f510'}.icon-paperboat:before{content:'\f511'}.icon-texture:before{content:'\f512'}.icon-dominoone:before{content:'\f513'}.icon-dominotwo:before{content:'\f514'}.icon-dominothree:before{content:'\f515'}.icon-dominofour:before{content:'\f516'}.icon-dominofive:before{content:'\f517'}.icon-dominosix:before{content:'\f518'}.icon-dominoseven:before{content:'\f519'}.icon-dominoeight:before{content:'\f51a'}.icon-dominonine:before{content:'\f51b'}.icon-connected:before{content:'\f51c'}.icon-connectedpc:before{content:'\f51d'}.icon-musicsheet:before{content:'\f51e'}.icon-rdio:before{content:'\f51f'}.icon-spotify:before{content:'\f520'}.icon-deviantart:before{content:'\f521'}.icon-yelp:before{content:'\f522'}.icon-behance:before{content:'\f523'}.icon-nfc:before{content:'\f524'}.icon-earbudsalt:before{content:'\f525'}.icon-earbuds:before{content:'\f526'}.icon-amazon:before{content:'\f527'}.icon-openid:before{content:'\f528'}.icon-digg:before{content:'\f529'}.icon-retweet:before{content:'\f52a'}.icon-moonnew:before{content:'\f52b'}.icon-moonwaxingcrescent:before{content:'\f52c'}.icon-moonfirstquarter:before{content:'\f52d'}.icon-moonwaxinggibbous:before{content:'\f52e'}.icon-moonfull:before{content:'\f52f'}.icon-moonwaninggibbous:before{content:'\f530'}.icon-moonthirdquarter:before{content:'\f531'}.icon-moonwaningcrescent:before{content:'\f532'}.icon-planet:before{content:'\f533'}.icon-sodacup:before{content:'\f534'}.icon-cocktail:before{content:'\f535'}.icon-church:before{content:'\f536'}.icon-mosque:before{content:'\f537'}.icon-comedy:before{content:'\f538'}.icon-tragedy:before{content:'\f539'}.icon-bacon:before{content:'\f53a'}.icon-trailor:before{content:'\f53b'}.icon-tshirt:before{content:'\f53c'}.icon-design:before{content:'\f53d'}.icon-spiderweb:before{content:'\f53e'}.icon-fireplace:before{content:'\f53f'}.icon-tallglass:before{content:'\f540'}.icon-grapes:before{content:'\f541'}.icon-biohazard:before{content:'\f542'}.icon-directions:before{content:'\f543'}.icon-equalizerthree:before{content:'\f544'}.icon-mountains:before{content:'\f545'}.icon-bing:before{content:'\f546'}.icon-windowseight:before{content:'\f547'}.icon-microsoftoffice:before{content:'\f548'}.icon-salealt:before{content:'\f549'}.icon-purse:before{content:'\f54a'}.icon-chickenalt:before{content:'\f54b'}.icon-podium:before{content:'\f54c'}.icon-findfriends:before{content:'\f54d'}.icon-microphonethree:before{content:'\f54e'}.icon-workshirt:before{content:'\f54f'}.icon-donotdisturb:before{content:'\f550'}.icon-addtags:before{content:'\f551'}.icon-removetags:before{content:'\f556'}.icon-carbattery:before{content:'\f553'}.icon-debug:before{content:'\f554'}.icon-trojan:before{content:'\f555'}.icon-molecule:before{content:'\f556'}.icon-safetygoggles:before{content:'\f557'}.icon-leather:before{content:'\f558'}.icon-teddybear:before{content:'\f559'}.icon-stroller:before{content:'\f55a'}.icon-circleplay:before{content:'\f55b'}.icon-circlestop:before{content:'\f55c'}.icon-circlepause:before{content:'\f55d'}.icon-circlerecord:before{content:'\f55e'}.icon-circleforward:before{content:'\f55f'}.icon-circlebackward:before{content:'\f560'}.icon-circlenext:before{content:'\f561'}.icon-circleprevious:before{content:'\f562'}.icon-circleplayempty:before{content:'\f563'}.icon-circlestopempty:before{content:'\f564'}.icon-circlepauseempty:before{content:'\f565'}.icon-circlerecordempty:before{content:'\f566'}.icon-circleforwardempty:before{content:'\f567'}.icon-circlebackwardempty:before{content:'\f568'}.icon-circlenextempty:before{content:'\f569'}.icon-circlepreviousempty:before{content:'\f56a'}.icon-belt:before{content:'\f56b'}.icon-bait:before{content:'\f56c'}.icon-manalt:before{content:'\f56d'}.icon-womanalt:before{content:'\f56e'}.icon-clover:before{content:'\f56f'}.icon-pacifier:before{content:'\f570'}.icon-calcplus:before{content:'\f571'}.icon-calcminus:before{content:'\f572'}.icon-calcmultiply:before{content:'\f573'}.icon-calcdivide:before{content:'\f574'}.icon-calcequals:before{content:'\f575'}.icon-city:before{content:'\f576'}.icon-hdvideo:before{content:'\f577'}.icon-horizontalexpand:before{content:'\f578'}.icon-horizontalcontract:before{content:'\f579'}.icon-radar:before{content:'\f57a'}.icon-threed:before{content:'\f57b'}.icon-flickralt:before{content:'\f57c'}.icon-pattern:before{content:'\f57d'}.icon-elevator:before{content:'\f57e'}.icon-escalator:before{content:'\f57f'}.icon-portrait:before{content:'\f580'}.icon-cigar:before{content:'\f581'}.icon-dropbox:before{content:'\f582'}.icon-origami:before{content:'\f583'}.icon-opensource:before{content:'\f585'}.icon-redaxscript:before{content:'\f586'}.icon-mahara:before{content:'\f587'}.icon-forkcms:before{content:'\f588'}.icon-pimcore:before{content:'\f589'}.icon-bigace:before{content:'\f58a'}.icon-aef:before{content:'\f58b'}.icon-punbb:before{content:'\f58c'}.icon-phorum:before{content:'\f58d'}.icon-fluxbb:before{content:'\f58e'}.icon-minibb:before{content:'\f58f'}.icon-zenphoto:before{content:'\f590'}.icon-fourimages:before{content:'\f591'}.icon-plogger:before{content:'\f592'}.icon-jcow:before{content:'\f593'}.icon-elgg:before{content:'\f594'}.icon-etano:before{content:'\f595'}.icon-openclassifieds:before{content:'\f596'}.icon-osclass:before{content:'\f597'}.icon-openx:before{content:'\f598'}.icon-phplist:before{content:'\f599'}.icon-roundcube:before{content:'\f59a'}.icon-pommo:before{content:'\f59b'}.icon-webinsta:before{content:'\f59c'}.icon-limesurvey:before{content:'\f59d'}.icon-fengoffice:before{content:'\f59e'}.icon-eyeos:before{content:'\f59f'}.icon-dotproject:before{content:'\f5a0'}.icon-collabtive:before{content:'\f5a1'}.icon-projectpier:before{content:'\f5a2'}.icon-taskfreak:before{content:'\f5a3'}.icon-eventum:before{content:'\f5a4'}.icon-traq:before{content:'\f5a5'}.icon-mantisbugtracker:before{content:'\f5a6'}.icon-oscommerce:before{content:'\f5a7'}.icon-zencart:before{content:'\f5a8'}.icon-tomatocart:before{content:'\f5a9'}.icon-boxbilling:before{content:'\f5aa'}.icon-zurmo:before{content:'\f5ab'}.icon-orangehrm:before{content:'\f5ac'}.icon-vtiger:before{content:'\f5ad'}.icon-mibew:before{content:'\f5ae'}.icon-phpmyfaq:before{content:'\f5af'}.icon-yiiframework:before{content:'\f5b0'}.icon-zendframework:before{content:'\f5b1'}.icon-fuelphp:before{content:'\f5b2'}.icon-kohana:before{content:'\f5b3'}.icon-smarty:before{content:'\f5b4'}.icon-sidu:before{content:'\f5b5'}.icon-simplepie:before{content:'\f5b6'}.icon-projectsend:before{content:'\f5b7'}.icon-extjs:before{content:'\f5b8'}.icon-raphael:before{content:'\f5b9'}.icon-sizzle:before{content:'\f5ba'}.icon-yui:before{content:'\f5bb'}.icon-scissorsalt:before{content:'\f5bc'}.icon-cuthere:before{content:'\f5bd'}.icon-coinsalt:before{content:'\f5be'}.icon-parkingmeter:before{content:'\f5bf'}.icon-treethree:before{content:'\f5c0'}.icon-packarchive:before{content:'\f5c1'}.icon-unpackarchive:before{content:'\f5c2'}.icon-terminalalt:before{content:'\f5c3'}.icon-jersey:before{content:'\f5c4'}.icon-vial:before{content:'\f5c5'}.icon-noteslist:before{content:'\f5c6'}.icon-notestasks:before{content:'\f5c7'}.icon-notesdate:before{content:'\f5c8'}.icon-noteslocation:before{content:'\f5c9'}.icon-noteslistalt:before{content:'\f5ca'}.icon-notestasksalt:before{content:'\f5cb'}.icon-notesdatealt:before{content:'\f5cc'}.icon-noteslocationalt:before{content:'\f5cd'}.icon-useralt:before{content:'\f5ce'}.icon-adduseralt:before{content:'\f5cf'}.icon-removeuseralt:before{content:'\f5d0'}.icon-banuseralt:before{content:'\f5d1'}.icon-banuser:before{content:'\f5d2'}.icon-paintrollalt:before{content:'\f5d3'}.icon-textcursor:before{content:'\f5d4'}.icon-textfield:before{content:'\f5d5'}.icon-precisecursor:before{content:'\f5d6'}.icon-brokenlink:before{content:'\f5d7'}.icon-bookmarkthree:before{content:'\f5d8'}.icon-bookmarkfour:before{content:'\f5d9'}.icon-warmedalalt:before{content:'\f5da'}.icon-thinking:before{content:'\f5db'}.icon-commentlove:before{content:'\f5dc'}.icon-commentsmiley:before{content:'\f5dd'}.icon-sharetwo:before{content:'\f147'}.icon-emptystar:before{content:'\f2de'}.icon-halfstar:before{content:'\f2df'}.icon-fullstar:before{content:'\f2e0'}.icon-forbidden:before{content:'\f314'}.icon-indentleftalt:before{content:'\f4c4'}.icon-indentrightalt:before{content:'\f4c5'}.icon-modxalt:before{content:'\f5de'}.icon-apple:before{content:'\f5df'}.icon-greekcolumn:before{content:'\f5e0'}.icon-walletalt:before{content:'\f5e1'}.icon-dollarsquare:before{content:'\f5e2'}.icon-poundsquare:before{content:'\f5e3'}.icon-yensquare:before{content:'\f5e4'}.icon-eurosquare:before{content:'\f5e5'}.icon-bitcoinsquare:before{content:'\f5e6'}.icon-roublesquare:before{content:'\f5e7'}.icon-roublealt:before{content:'\f5e8'}.icon-bitcoinalt:before{content:'\f5e9'}.icon-gavel:before{content:'\f5ea'}.icon-barchartasc:before{content:'\f5eb'}.icon-barchartdesc:before{content:'\f5ec'}.icon-house:before{content:'\f5ed'}.icon-garage:before{content:'\f5ee'}.icon-milk:before{content:'\f5ef'}.icon-hryvnia:before{content:'\f5f0'}.icon-hryvniasquare:before{content:'\f5f1'}.icon-hryvniaalt:before{content:'\f5f2'}.icon-beeralt:before{content:'\f5f3'}.icon-trolleyfull:before{content:'\f5f4'}.icon-trolleyload:before{content:'\f5f5'}.icon-trolleyunload:before{content:'\f5f6'}.icon-trolleyempty:before{content:'\f5f7'}.icon-mootools:before{content:'\f5f8'}.icon-mootoolstwo:before{content:'\f5f9'}.icon-mootoolsthree:before{content:'\f5fa'}.icon-mysqlthree:before{content:'\f5fb'}.icon-mysqlalt:before{content:'\f5fc'}.icon-pgsql:before{content:'\f5fd'}.icon-mongodb:before{content:'\f5fe'}.icon-neofourj:before{content:'\f5ff'}.icon-nosql:before{content:'\f600'}.icon-catface:before{content:'\f601'}.icon-polaroid:before{content:'\f602'}.icon-clouderror:before{content:'\f603'}.icon-camcorder:before{content:'\f604'}.icon-projector:before{content:'\f605'}.icon-sdvideo:before{content:'\f606'}.icon-fx:before{content:'\f607'}.icon-gramophone:before{content:'\f608'}.icon-speakeralt:before{content:'\f609'}.icon-hddalt:before{content:'\f60a'}.icon-usbflash:before{content:'\f60b'}.icon-manillaenvelope:before{content:'\f60c'}.icon-stickynote:before{content:'\f60d'}.icon-stickynotealt:before{content:'\f60e'}.icon-torch:before{content:'\f60f'}.icon-flashlightalt:before{content:'\f610'}.icon-campfire:before{content:'\f611'}.icon-cctv:before{content:'\f612'}.icon-drill:before{content:'\f613'}.icon-lampalt:before{content:'\f614'}.icon-flowerpot:before{content:'\f615'}.icon-defragment:before{content:'\f616'}.icon-panoramio:before{content:'\f617'}.icon-panorama:before{content:'\f618'}.icon-photosphere:before{content:'\f619'}.icon-panoramaalt:before{content:'\f61a'}.icon-timer:before{content:'\f61b'}.icon-burstmode:before{content:'\f61c'}.icon-cameraflash:before{content:'\f61d'}.icon-autoflash:before{content:'\f61e'}.icon-noflash:before{content:'\f61f'}.icon-threetofour:before{content:'\f620'}.icon-sixteentonine:before{content:'\f621'}.icon-cat:before{content:'\f622'}.icon-dog:before{content:'\f623'}.icon-rabbit:before{content:'\f624'}.icon-koala:before{content:'\f625'}.icon-butterflyalt:before{content:'\f626'}.icon-butterfly:before{content:'\f627'}.icon-wwf:before{content:'\f628'}.icon-poop:before{content:'\f629'}.icon-poopalt:before{content:'\f62a'}.icon-kiwi:before{content:'\f62b'}.icon-kiwifruit:before{content:'\f62c'}.icon-lemon:before{content:'\f62d'}.icon-pear:before{content:'\f62e'}.icon-watermelon:before{content:'\f62f'}.icon-onion:before{content:'\f630'}.icon-turnip:before{content:'\f631'}.icon-eggplant:before{content:'\f632'}.icon-avocado:before{content:'\f633'}.icon-perfume:before{content:'\f634'}.icon-arch:before{content:'\f635'}.icon-pluspages:before{content:'\f636'}.icon-community:before{content:'\f637'}.icon-pluscircles:before{content:'\f638'}.icon-googleplusold:before{content:'\f639'}.icon-plusgames:before{content:'\f63a'}.icon-event:before{content:'\f63b'}.icon-miui:before{content:'\f63c'}.icon-hot:before{content:'\f63d'}.icon-flowup:before{content:'\f63e'}.icon-flowdown:before{content:'\f63f'}.icon-moustache:before{content:'\f640'}.icon-angle:before{content:'\f641'}.icon-sleep:before{content:'\f642'}.icon-acorn:before{content:'\f643'}.icon-steamalt:before{content:'\f644'}.icon-resizeupleft:before{content:'\f645'}.icon-resizeupright:before{content:'\f646'}.icon-resizedownright:before{content:'\f647'}.icon-resizedownleft:before{content:'\f648'}.icon-hammeralt:before{content:'\f649'}.icon-bamboo:before{content:'\f64a'}.icon-mypictures:before{content:'\f64b'}.icon-mymusic:before{content:'\f64c'}.icon-myvideos:before{content:'\f64d'}.icon-systemfolder:before{content:'\f64e'}.icon-bookthree:before{content:'\f64f'}.icon-compile:before{content:'\f650'}.icon-report:before{content:'\f651'}.icon-fliphorizontal:before{content:'\f652'}.icon-flipvertical:before{content:'\f653'}.icon-construction:before{content:'\f654'}.icon-counteralt:before{content:'\f655'}.icon-counter:before{content:'\f656'}.icon-papercutter:before{content:'\f657'}.icon-snaptodot:before{content:'\f658'}.icon-snaptogrid:before{content:'\f659'}.icon-caligraphy:before{content:'\f65a'}.icon-icecreamthree:before{content:'\f65b'}.icon-skitch:before{content:'\f65c'}.icon-archlinux:before{content:'\f65d'}.icon-elementaryos:before{content:'\f65e'}.icon-loadingone:before{content:'\f65f'}.icon-loadingtwo:before{content:'\f660'}.icon-loadingthree:before{content:'\f661'}.icon-loadingfour:before{content:'\f662'}.icon-loadingfive:before{content:'\f663'}.icon-loadingsix:before{content:'\f664'}.icon-loadingseven:before{content:'\f665'}.icon-loadingeight:before{content:'\f666'}.icon-brokenheart:before{content:'\f667'}.icon-heartarrow:before{content:'\f668'}.icon-heartsparkle:before{content:'\f669'}.icon-cell:before{content:'\f66a'}.icon-panda:before{content:'\f66b'}.icon-refreshalt:before{content:'\f66c'}.icon-mirror:before{content:'\f66d'}.icon-headphonesthree:before{content:'\f66e'}.icon-fan:before{content:'\f66f'}.icon-tornado:before{content:'\f670'}.icon-hangout:before{content:'\f671'}.icon-beaker:before{content:'\f672'}.icon-beakeralt:before{content:'\f673'}.icon-phonescreensize:before{content:'\f674'}.icon-tabletscreensize:before{content:'\f675'}.icon-notification:before{content:'\f676'}.icon-googleglass:before{content:'\f677'}.icon-pinterest:before{content:'\f678'}.icon-soundcloud:before{content:'\f679'}.icon-alarmclock:before{content:'\f67a'}.icon-addalarm:before{content:'\f67b'}.icon-deletealarm:before{content:'\f67c'}.icon-turnoffalarm:before{content:'\f67d'}.icon-snooze:before{content:'\f67e'}.icon-bringforward:before{content:'\f67f'}.icon-sendbackward:before{content:'\f680'}.icon-bringtofront:before{content:'\f681'}.icon-sendtoback:before{content:'\f682'}.icon-tectile:before{content:'\f683'}.icon-grave:before{content:'\f684'}.icon-gravetwo:before{content:'\f685'}.icon-gravethree:before{content:'\f686'}.icon-gravefour:before{content:'\f687'}.icon-textlayer:before{content:'\f688'}.icon-vectoralt:before{content:'\f689'}.icon-drmanhattan:before{content:'\f68a'}.icon-foursquarealt:before{content:'\f68b'}.icon-hashtag:before{content:'\f68c'}.icon-enteralt:before{content:'\f68d'}.icon-exitalt:before{content:'\f68e'}.icon-cartalt:before{content:'\f68f'}.icon-vaultthree:before{content:'\f690'}.icon-fatundo:before{content:'\f691'}.icon-fatredo:before{content:'\f692'}.icon-feedly:before{content:'\f693'}.icon-feedlyalt:before{content:'\f694'}.icon-squareheart:before{content:'\f695'}.icon-squarestar:before{content:'\f696'}.icon-squarecomment:before{content:'\f697'}.icon-squarelike:before{content:'\f698'}.icon-squarebookmark:before{content:'\f699'}.icon-squaresearch:before{content:'\f69a'}.icon-squaresettings:before{content:'\f69b'}.icon-squarevoice:before{content:'\f69c'}.icon-google:before{content:'\f69d'}.icon-emojigrinalt:before{content:'\f69e'}.icon-emojigrin:before{content:'\f69f'}.icon-constellation:before{content:'\f6a0'}.icon-emojisurprise:before{content:'\f6a1'}.icon-emojidead:before{content:'\f6a2'}.icon-emojiangry:before{content:'\f6a3'}.icon-emojidevil:before{content:'\f6a4'}.icon-emojiwink:before{content:'\f6a5'}.icon-moonorbit:before{content:'\f6a6'}.icon-emojismile:before{content:'\f6a7'}.icon-emojisorry:before{content:'\f6a8'}.icon-emojiconfused:before{content:'\f6a9'}.icon-emojisleep:before{content:'\f6aa'}.icon-emojicry:before{content:'\f6ab'}.icon-circlefork:before{content:'\f6ac'}.icon-circlespoon:before{content:'\f6ad'}.icon-circleknife:before{content:'\f6ae'}.icon-circlepencil:before{content:'\f6af'}.icon-circlehammer:before{content:'\f6b0'}.icon-circlescrewdriver:before{content:'\f6b1'}.icon-middlefinger:before{content:'\f6b2'}.icon-heavymetal:before{content:'\f6b3'}.icon-turnright:before{content:'\f6b4'}.icon-turnleft:before{content:'\f6b5'}.icon-vineapp:before{content:'\f6b6'}.icon-vineappalt:before{content:'\f6b7'}.icon-finance:before{content:'\f6b8'}.icon-survey:before{content:'\f6b9'}.icon-hangouts:before{content:'\f6ba'}.icon-square0:before{content:'\f6bb'}.icon-square1:before{content:'\f6bc'}.icon-square2:before{content:'\f6bd'}.icon-square3:before{content:'\f6be'}.icon-square4:before{content:'\f6bf'}.icon-square5:before{content:'\f6c0'}.icon-square6:before{content:'\f6c1'}.icon-square7:before{content:'\f6c2'}.icon-square8:before{content:'\f6c3'}.icon-square9:before{content:'\f6c4'}.icon-squarea:before{content:'\f6c5'}.icon-squareb:before{content:'\f6c6'}.icon-squarec:before{content:'\f6c7'}.icon-squared:before{content:'\f6c8'}.icon-squaree:before{content:'\f6c9'}.icon-squaref:before{content:'\f6ca'}.icon-squareg:before{content:'\f6cb'}.icon-squareh:before{content:'\f6cc'}.icon-squarei:before{content:'\f6cd'}.icon-squarej:before{content:'\f6ce'}.icon-squarek:before{content:'\f6cf'}.icon-squarel:before{content:'\f6d0'}.icon-squarem:before{content:'\f6d1'}.icon-squaren:before{content:'\f6d2'}.icon-squareo:before{content:'\f6d3'}.icon-squarep:before{content:'\f6d4'}.icon-squareq:before{content:'\f6d5'}.icon-squarer:before{content:'\f6d6'}.icon-squares:before{content:'\f6d7'}.icon-squaret:before{content:'\f6d8'}.icon-squareu:before{content:'\f6d9'}.icon-squarev:before{content:'\f6da'}.icon-squarew:before{content:'\f6db'}.icon-squarex:before{content:'\f6dc'}.icon-squarey:before{content:'\f6dd'}.icon-squarez:before{content:'\f6de'}.icon-shuttle:before{content:'\f6df'}.icon-meteor:before{content:'\f6e0'}.icon-galaxy:before{content:'\f6e1'}.icon-observatory:before{content:'\f6e2'}.icon-astronaut:before{content:'\f6e3'}.icon-asteroid:before{content:'\f6e4'}.icon-sunrise:before{content:'\f6e5'}.icon-sunset:before{content:'\f6e6'}.icon-tiderise:before{content:'\f6e7'}.icon-tidefall:before{content:'\f6e8'}.icon-mushroomcloud:before{content:'\f6e9'}.icon-galaxyalt:before{content:'\f6ea'}.icon-sputnik:before{content:'\f6eb'}.icon-sextant:before{content:'\f6ec'}.icon-spock:before{content:'\f6ed'}.icon-meteorite:before{content:'\f6ee'}.icon-deathstar:before{content:'\f6ef'}.icon-deathstarbulding:before{content:'\f6f0'}.icon-fallingstar:before{content:'\f6f1'}.icon-windmill:before{content:'\f6f2'}.icon-windmillalt:before{content:'\f6f3'}.icon-pumpjack:before{content:'\f6f4'}.icon-nuclearplant:before{content:'\f6f5'}.icon-solarpanel:before{content:'\f6f6'}.icon-barrel:before{content:'\f6f7'}.icon-canister:before{content:'\f6f8'}.icon-railtunnel:before{content:'\f6f9'}.icon-roadtunnel:before{content:'\f6fa'}.icon-pickaxe:before{content:'\f6fb'}.icon-cow:before{content:'\f6fc'}.icon-sheep:before{content:'\f6fd'}.icon-fountain:before{content:'\f6fe'}.icon-circlezero:before{content:'\f6ff'}.icon-circleone:before{content:'\f700'}.icon-circletwo:before{content:'\f701'}.icon-circlethree:before{content:'\f702'}.icon-circlefour:before{content:'\f703'}.icon-circlefive:before{content:'\f704'}.icon-circlesix:before{content:'\f705'}.icon-circleseven:before{content:'\f706'}.icon-circleeight:before{content:'\f707'}.icon-circlenine:before{content:'\f708'}.icon-circlea:before{content:'\f709'}.icon-circleb:before{content:'\f70a'}.icon-circlec:before{content:'\f70b'}.icon-circled:before{content:'\f70c'}.icon-circlee:before{content:'\f70d'}.icon-circlef:before{content:'\f70e'}.icon-circleg:before{content:'\f70f'}.icon-circleh:before{content:'\f710'}.icon-circlei:before{content:'\f711'}.icon-circlej:before{content:'\f712'}.icon-circlek:before{content:'\f713'}.icon-circlel:before{content:'\f714'}.icon-circlem:before{content:'\f715'}.icon-circlen:before{content:'\f716'}.icon-circleo:before{content:'\f717'}.icon-circlep:before{content:'\f718'}.icon-circleq:before{content:'\f719'}.icon-circler:before{content:'\f71a'}.icon-circles:before{content:'\f71b'}.icon-circlet:before{content:'\f71c'}.icon-circleu:before{content:'\f71d'}.icon-circlev:before{content:'\f71e'}.icon-circlew:before{content:'\f71f'}.icon-circlex:before{content:'\f720'}.icon-circley:before{content:'\f721'}.icon-circlez:before{content:'\f722'}.icon-creeper:before{content:'\f723'}.icon-minecraft:before{content:'\f724'}.icon-minecraftalt:before{content:'\f725'}.icon-pixelsword:before{content:'\f726'}.icon-pixelbroadsword:before{content:'\f727'}.icon-pixelwand:before{content:'\f728'}.icon-pixelpotion:before{content:'\f729'}.icon-pixelpotionalt:before{content:'\f72a'}.icon-pixelpickaxe:before{content:'\f72b'}.icon-pixelbow:before{content:'\f72c'}.icon-pixelarrow:before{content:'\f72d'}.icon-pixelaxe:before{content:'\f72e'}.icon-pixeldagger:before{content:'\f72f'}.icon-pixelbastardsword:before{content:'\f730'}.icon-pixellance:before{content:'\f731'}.icon-pixelbattleaxe:before{content:'\f732'}.icon-pixelshovel:before{content:'\f733'}.icon-pixelsphere:before{content:'\f734'}.icon-pixelelixir:before{content:'\f735'}.icon-pixelchest:before{content:'\f736'}.icon-pixelshield:before{content:'\f737'}.icon-pixelheart:before{content:'\f738'}.icon-rudder:before{content:'\f739'}.icon-folderalt:before{content:'\f73a'}.icon-removefolderalt:before{content:'\f73b'}.icon-addfolderalt:before{content:'\f73c'}.icon-deletefolderalt:before{content:'\f73d'}.icon-openfolderalt:before{content:'\f73e'}.icon-clipboardalt:before{content:'\f73f'}.icon-pastealt:before{content:'\f740'}.icon-loadingflowccw:before{content:'\f741'}.icon-loadingflowcw:before{content:'\f742'}.icon-code:before{content:'\f743'}.icon-cloveralt:before{content:'\f744'}.icon-lips:before{content:'\f745'}.icon-kiss:before{content:'\f746'}.icon-manualshift:before{content:'\f747'}.icon-simcardthree:before{content:'\f748'}.icon-parthenon:before{content:'\f749'}.icon-addcomment:before{content:'\f74a'}.icon-deletecomment:before{content:'\f74b'}.icon-gender:before{content:'\f74c'}.icon-callalt:before{content:'\f74d'}.icon-outgoingcallalt:before{content:'\f74e'}.icon-incomingcallalt:before{content:'\f74f'}.icon-missedcallalt:before{content:'\f750'}.icon-export:before{content:'\f751'}.icon-import:before{content:'\f752'}.icon-cherryalt:before{content:'\f753'}.icon-panties:before{content:'\f754'}.icon-kimai:before{content:'\f755'}.icon-livejournal:before{content:'\f756'}.icon-livejournalalt:before{content:'\f757'}.icon-tagged:before{content:'\f758'}.icon-temple:before{content:'\f759'}.icon-mayanpyramid:before{content:'\f75a'}.icon-egyptpyramid:before{content:'\f75b'}.icon-tampermonkey:before{content:'\f75c'}.icon-pushbullet:before{content:'\f75d'}.icon-currents:before{content:'\f75e'}.icon-communitysmall:before{content:'\f75f'}.icon-squaregithub:before{content:'\f760'}.icon-projectfork:before{content:'\f761'}.icon-projectmerge:before{content:'\f762'}.icon-projectcompare:before{content:'\f763'}.icon-history:before{content:'\f764'}.icon-notebook:before{content:'\f765'}.icon-issue:before{content:'\f766'}.icon-issueclosed:before{content:'\f767'}.icon-issuereopened:before{content:'\f768'}.icon-rubyalt:before{content:'\f769'}.icon-lighton:before{content:'\f76a'}.icon-lightoff:before{content:'\f76b'}.icon-bellalt:before{content:'\f76c'}.icon-versions:before{content:'\f777'}.icon-twog:before{content:'\f76e'}.icon-threeg:before{content:'\f76f'}.icon-fourg:before{content:'\f770'}.icon-gpsalt:before{content:'\f771'}.icon-circleloaderfull:before{content:'\f772'}.icon-circleloaderseven:before{content:'\f773'}.icon-circleloadersix:before{content:'\f774'}.icon-circleloaderfive:before{content:'\f775'}.icon-circleloaderfour:before{content:'\f776'}.icon-circleloaderthree:before{content:'\f777'}.icon-circleloadertwo:before{content:'\f778'}.icon-circleloaderone:before{content:'\f779'}.icon-circleloaderempty:before{content:'\f77a'}.icon-whatsapp:before{content:'\f77b'}.icon-whatsappalt:before{content:'\f77c'}.icon-viber:before{content:'\f77d'}.icon-squareviber:before{content:'\f77e'}.icon-teamviewer:before{content:'\f77f'}.icon-tunein:before{content:'\f780'}.icon-tuneinalt:before{content:'\f781'}.icon-weightscale:before{content:'\f782'}.icon-boxing:before{content:'\f783'}.icon-speedalt:before{content:'\f784'}.icon-scriptalt:before{content:'\f785'}.icon-splitthree:before{content:'\f786'}.icon-mergethree:before{content:'\f787'}.icon-layersthree:before{content:'\f788'}.icon-mutemic:before{content:'\f789'}.icon-zerply:before{content:'\f78a'}.icon-circlegoogleplus:before{content:'\f78b'}.icon-circletwitter:before{content:'\f78c'}.icon-circlefacebook:before{content:'\f78d'}.icon-circleyahoo:before{content:'\f78e'}.icon-circlegithub:before{content:'\f78f'}.icon-forumsalt:before{content:'\f790'}.icon-circlepath:before{content:'\f791'}.icon-circlevimeo:before{content:'\f792'}.icon-circlevine:before{content:'\f793'}.icon-instagramtwo:before{content:'\f794'}.icon-instagramthree:before{content:'\f795'}.icon-flickrthree:before{content:'\f796'}.icon-quora:before{content:'\f797'}.icon-squarequora:before{content:'\f798'}.icon-circlequora:before{content:'\f799'}.icon-picasa:before{content:'\f79a'}.icon-branch:before{content:'\f79b'}.icon-ingress:before{content:'\f79c'}.icon-squarezerply:before{content:'\f79d'}.icon-circlezerply:before{content:'\f79e'}.icon-squarevimeo:before{content:'\f79f'}.icon-squaretwitter:before{content:'\f7a0'}.icon-brightnessalt:before{content:'\f7a1'}.icon-brightnessalthalf:before{content:'\f7a2'}.icon-brightnessaltfull:before{content:'\f7a3'}.icon-brightnessaltauto:before{content:'\f7a4'}.icon-shirtbuttonthree:before{content:'\f7a5'}.icon-openshare:before{content:'\f7a6'}.icon-copyapp:before{content:'\f7a7'}.icon-bowl:before{content:'\f7a8'}.icon-cloudalt:before{content:'\f7a9'}.icon-cloudaltdownload:before{content:'\f7aa'}.icon-cloudaltupload:before{content:'\f7ab'}.icon-cloudaltsync:before{content:'\f7ac'}.icon-cloudaltprivate:before{content:'\f7ad'}.icon-flipboard:before{content:'\f7ae'}.icon-octoloaderempty:before{content:'\f7af'}.icon-octoloaderone:before{content:'\f7b0'}.icon-octoloadertwo:before{content:'\f7b1'}.icon-octoloaderthree:before{content:'\f7b2'}.icon-octoloaderfour:before{content:'\f7b3'}.icon-octoloaderfive:before{content:'\f7b4'}.icon-octoloadersix:before{content:'\f7b5'}.icon-octoloaderseven:before{content:'\f7b6'}.icon-octoloaderfull:before{content:'\f7b7'}.icon-selectionsymbol:before{content:'\f7b8'}.icon-infinityalt:before{content:'\f7b9'}.icon-pullrequest:before{content:'\f7ba'}.icon-projectforkdelete:before{content:'\f7bb'}.icon-projectforkprivate:before{content:'\f7bc'}.icon-commit:before{content:'\f7bd'}.icon-htmlfile:before{content:'\f7be'}.icon-pushalt:before{content:'\f7bf'}.icon-pullalt:before{content:'\f7c0'}.icon-photonineframes:before{content:'\f7c1'}.icon-wetfloor:before{content:'\f7c2'}.icon-instagramfour:before{content:'\f7c3'}.icon-circleinstagram:before{content:'\f7c4'}.icon-videocamerathree:before{content:'\f7c5'}.icon-subtitles:before{content:'\f7c6'}.icon-subtitlesoff:before{content:'\f7c7'}.icon-compress:before{content:'\f7c8'}.icon-baby:before{content:'\f7c9'}.icon-ducky:before{content:'\f7ca'}.icon-handswipe:before{content:'\f7cb'}.icon-swipeup:before{content:'\f7cc'}.icon-swipedown:before{content:'\f7cd'}.icon-twofingerswipedown:before{content:'\f7ce'}.icon-twofingerswipeup:before{content:'\f7cf'}.icon-doubletap:before{content:'\f7d0'}.icon-dribbblealt:before{content:'\f7d1'}.icon-circlecallmissed:before{content:'\f7d2'}.icon-circlecallincoming:before{content:'\f7d3'}.icon-circlecalloutgoing:before{content:'\f7d4'}.icon-circledownload:before{content:'\f7d5'}.icon-circleupload:before{content:'\f7d6'}.icon-minismile:before{content:'\f7d7'}.icon-minisad:before{content:'\f7d8'}.icon-minilaugh:before{content:'\f7d9'}.icon-minigrin:before{content:'\f7da'}.icon-miniangry:before{content:'\f7db'}.icon-minitongue:before{content:'\f7dc'}.icon-minitonguealt:before{content:'\f7dd'}.icon-miniwink:before{content:'\f7de'}.icon-minitonguewink:before{content:'\f7df'}.icon-miniconfused:before{content:'\f7e0'}.icon-soundright:before{content:'\f7e1'}.icon-soundleft:before{content:'\f7e2'}.icon-savetodrive:before{content:'\f7e3'}.icon-layerorderup:before{content:'\f7e4'}.icon-layerorderdown:before{content:'\f7e5'}.icon-layerorder:before{content:'\f7e6'}.icon-circledribbble:before{content:'\f7e7'}.icon-squaredribbble:before{content:'\f7e8'}.icon-handexpand:before{content:'\f7e9'}.icon-handpinch:before{content:'\f7ea'}.icon-fontserif:before{content:'\f7eb'}.icon-fontsansserif:before{content:'\f7ec'}.icon-fontrounded:before{content:'\f7ed'}.icon-fonthandwriting:before{content:'\f7ee'}.icon-fonttypewriter:before{content:'\f7ef'}.icon-fontcomic:before{content:'\f7f0'}.icon-fontcaligraphy:before{content:'\f7f1'}.icon-fontgothic:before{content:'\f7f2'}.icon-fontstencil:before{content:'\f7f3'}
    2 
     1@font-face{font-family:"WebHostingHub-Glyphs";src:url("font/webhostinghub-glyphs.eot");src:url("font/webhostinghub-glyphs.eot?#iefix") format("embedded-opentype"),url("font/webhostinghub-glyphs.ttf") format("truetype");font-weight:normal;font-style:normal;-moz-font-feature-settings:"calt=0,liga=0"}[class^=icon-],[class*=" icon-"],.toggle-triangle,.prevLink,.nextLink,.updateLink{font-family:"WebHostingHub-Glyphs";background:none;width:auto;height:auto;font-style:normal}.icon-aaabattery:before{content:""}.icon-abacus:before{content:""}.icon-accountfilter:before{content:""}.icon-acsource:before{content:""}.icon-addfriend:before{content:""}.icon-address:before{content:""}.icon-addshape:before{content:""}.icon-addtocart:before{content:""}.icon-addtolist:before{content:""}.icon-adjust:before{content:""}.icon-adobe:before{content:""}.icon-ads-bilboard:before{content:""}.icon-affiliate:before{content:""}.icon-ajax:before{content:""}.icon-alarm:before{content:""}.icon-alarmalt:before{content:""}.icon-album-cover:before{content:""}.icon-alertalt:before{content:""}.icon-alertpay:before{content:""}.icon-algorhythm:before{content:""}.icon-alienship:before{content:""}.icon-alienware:before{content:""}.icon-align-center:before{content:""}.icon-align-justify:before{content:""}.icon-align-left:before{content:""}.icon-align-right:before{content:""}.icon-alignbottomedge:before{content:""}.icon-alignhorizontalcenter:before{content:""}.icon-alignleftedge:before{content:""}.icon-alignrightedge:before{content:""}.icon-aligntopedge:before{content:""}.icon-alignverticalcenter:before{content:""}.icon-amd:before{content:""}.icon-analogdown:before{content:""}.icon-analogleft:before{content:""}.icon-analogright:before{content:""}.icon-analogup:before{content:""}.icon-analytics-piechart:before{content:""}.icon-analyticsalt-piechartalt:before{content:""}.icon-anchor-port:before{content:""}.icon-android:before{content:""}.icon-angrybirds:before{content:""}.icon-antenna:before{content:""}.icon-apache-feather:before{content:""}.icon-aperture:before{content:""}.icon-appointment-agenda:before{content:""}.icon-archive:before{content:""}.icon-arrow-down:before{content:""}.icon-arrow-left:before{content:""}.icon-arrow-right:before{content:""}.icon-arrow-up:before{content:""}.icon-asterisk:before{content:""}.icon-asteriskalt:before{content:"*"}.icon-at:before{content:"@"}.icon-atari:before{content:""}.icon-authentication-keyalt:before{content:""}.icon-automobile-car:before{content:""}.icon-autorespond:before{content:""}.icon-avatar:before{content:""}.icon-avataralt:before{content:""}.icon-avengers:before{content:""}.icon-awstats:before{content:""}.icon-axe:before{content:""}.icon-backup-vault:before{content:""}.icon-backupalt-vaultalt:before{content:""}.icon-backupwizard:before{content:""}.icon-backward:before{content:""}.icon-bag:before{content:""}.icon-baloon:before{content:""}.icon-ban-circle:before{content:""}.icon-banana:before{content:""}.icon-bandwidth:before{content:""}.icon-bank:before{content:""}.icon-barchart:before{content:""}.icon-barchartalt:before{content:""}.icon-barcode:before{content:""}.icon-basecamp:before{content:""}.icon-basketball:before{content:""}.icon-bat:before{content:""}.icon-batman:before{content:""}.icon-batteryaltcharging:before{content:""}.icon-batteryaltfull:before{content:""}.icon-batteryaltsixty:before{content:""}.icon-batteryaltthird:before{content:""}.icon-batterycharged:before{content:""}.icon-batterycharging:before{content:""}.icon-batteryeighty:before{content:""}.icon-batteryempty:before{content:""}.icon-batteryforty:before{content:""}.icon-batteryfull:before{content:""}.icon-batterysixty:before{content:""}.icon-batterytwenty:before{content:""}.icon-bed:before{content:""}.icon-beer:before{content:""}.icon-bell:before{content:"␇"}.icon-bigger:before{content:""}.icon-bill:before{content:""}.icon-binary:before{content:""}.icon-binoculars-searchalt:before{content:""}.icon-birdhouse:before{content:""}.icon-birthday:before{content:""}.icon-bishop:before{content:""}.icon-blackberry:before{content:""}.icon-blankstare:before{content:""}.icon-blogger-blog:before{content:""}.icon-bluetooth:before{content:""}.icon-bluetoothconnected:before{content:""}.icon-boardgame:before{content:""}.icon-boat:before{content:""}.icon-bold:before{content:""}.icon-bomb:before{content:""}.icon-bone:before{content:""}.icon-book:before{content:""}.icon-bookmark:before{content:""}.icon-boombox:before{content:""}.icon-bottle:before{content:""}.icon-bow:before{content:""}.icon-bowling:before{content:""}.icon-bowlingpins:before{content:""}.icon-bowtie:before{content:""}.icon-boxtrapper-mousetrap:before{content:""}.icon-braces:before{content:""}.icon-braille0:before{content:""}.icon-braille1:before{content:""}.icon-braille2:before{content:""}.icon-braille3:before{content:""}.icon-braille4:before{content:""}.icon-braille5:before{content:""}.icon-braille6:before{content:""}.icon-braille7:before{content:""}.icon-braille8:before{content:""}.icon-braille9:before{content:""}.icon-braillea:before{content:""}.icon-brailleb:before{content:""}.icon-braillec:before{content:""}.icon-brailled:before{content:""}.icon-braillee:before{content:""}.icon-braillef:before{content:""}.icon-brailleg:before{content:""}.icon-brailleh:before{content:""}.icon-braillei:before{content:""}.icon-braillej:before{content:""}.icon-braillek:before{content:""}.icon-braillel:before{content:""}.icon-braillem:before{content:""}.icon-braillen:before{content:""}.icon-brailleo:before{content:""}.icon-braillep:before{content:""}.icon-brailleq:before{content:""}.icon-brailler:before{content:""}.icon-brailles:before{content:""}.icon-braillespace:before{content:""}.icon-braillet:before{content:""}.icon-brailleu:before{content:""}.icon-braillev:before{content:""}.icon-braillew:before{content:""}.icon-braillex:before{content:""}.icon-brailley:before{content:""}.icon-braillez:before{content:""}.icon-brain:before{content:""}.icon-bread:before{content:""}.icon-breakable:before{content:""}.icon-briefcase:before{content:""}.icon-briefcasethree:before{content:""}.icon-briefcasetwo:before{content:""}.icon-brightness:before{content:""}.icon-brightnessfull:before{content:""}.icon-brightnesshalf:before{content:""}.icon-broom:before{content:""}.icon-browser:before{content:""}.icon-brush:before{content:""}.icon-bucket:before{content:""}.icon-bug:before{content:""}.icon-bullhorn:before{content:""}.icon-bus:before{content:""}.icon-businesscardalt:before{content:""}.icon-buttona:before{content:""}.icon-buttonb:before{content:""}.icon-buttonx:before{content:""}.icon-buttony:before{content:""}.icon-cactus-desert:before{content:""}.icon-calculator:before{content:""}.icon-calculatoralt:before{content:""}.icon-calendar:before{content:""}.icon-calendaralt-cronjobs:before{content:""}.icon-camera:before{content:""}.icon-candle:before{content:""}.icon-candy:before{content:""}.icon-candycane:before{content:""}.icon-cannon:before{content:""}.icon-canvas:before{content:""}.icon-canvasrulers:before{content:""}.icon-capacitator:before{content:""}.icon-capslock:before{content:"⇪"}.icon-captainamerica:before{content:""}.icon-carrot:before{content:""}.icon-cashregister:before{content:""}.icon-cassette:before{content:""}.icon-cd-dvd:before{content:""}.icon-certificate:before{content:""}.icon-certificatealt:before{content:""}.icon-certificatethree:before{content:""}.icon-cgi:before{content:""}.icon-cgicenter:before{content:""}.icon-chair:before{content:"⑁"}.icon-chat:before{content:""}.icon-check:before{content:""}.icon-checkboxalt:before{content:""}.icon-checkin:before{content:""}.icon-checkinalt:before{content:""}.icon-chef:before{content:""}.icon-cherry:before{content:""}.icon-chevron-down:before{content:""}.icon-chevron-left:before{content:""}.icon-chevron-right:before{content:""}.icon-chevron-up:before{content:""}.icon-chevrons:before{content:""}.icon-chicken:before{content:""}.icon-chocolate:before{content:""}.icon-christiancross:before{content:""}.icon-christmastree:before{content:""}.icon-chrome:before{content:""}.icon-cigarette:before{content:""}.icon-circle-arrow-down:before{content:""}.icon-circle-arrow-left:before,.prevLink:before{content:""}.icon-circle-arrow-right:before,.nextLink:before{content:""}.icon-circle-arrow-up:before{content:""}.icon-circleadd:before{content:""}.icon-circledelete:before{content:""}.icon-circledown:before{content:""}.icon-circleleft:before{content:""}.icon-circleright:before{content:""}.icon-circleselect:before{content:""}.icon-circleselection:before{content:""}.icon-circleup:before{content:""}.icon-clearformatting:before{content:""}.icon-clipboard-paste:before{content:""}.icon-clockalt-timealt:before{content:""}.icon-closetab:before{content:""}.icon-closewindow:before{content:""}.icon-cloud:before{content:""}.icon-clouddownload:before{content:""}.icon-cloudhosting:before{content:""}.icon-cloudsync:before{content:""}.icon-cloudupload:before{content:""}.icon-clubs:before{content:""}.icon-cmd:before{content:""}.icon-cms:before{content:""}.icon-cmsmadesimple:before{content:""}.icon-codeigniter:before{content:""}.icon-coffee:before{content:""}.icon-coffeebean:before{content:""}.icon-cog:before{content:""}.icon-colocation:before{content:""}.icon-colocationalt:before{content:""}.icon-colors:before{content:""}.icon-comment:before{content:""}.icon-commentout:before{content:""}.icon-commentround:before{content:""}.icon-commentroundempty:before{content:""}.icon-commentroundtyping:before{content:""}.icon-commentroundtypingempty:before{content:""}.icon-commenttyping:before{content:""}.icon-compass:before{content:"☼"}.icon-concretefive:before{content:""}.icon-contact-businesscard:before{content:""}.icon-controllernes:before{content:""}.icon-controllerps:before{content:""}.icon-controllersnes:before{content:""}.icon-controlpanel:before{content:""}.icon-controlpanelalt:before{content:""}.icon-cooling:before{content:""}.icon-coppermine:before{content:""}.icon-copy:before{content:""}.icon-copyright:before{content:"©"}.icon-coupon:before{content:""}.icon-cpanel:before{content:""}.icon-cplusplus:before{content:""}.icon-cpu-processor:before{content:""}.icon-cpualt-processoralt:before{content:""}.icon-crayon:before{content:""}.icon-createfile:before{content:""}.icon-createfolder:before{content:""}.icon-creativecommons:before{content:""}.icon-creditcard:before{content:""}.icon-cricket:before{content:""}.icon-croisant:before{content:""}.icon-crop:before{content:""}.icon-crown:before{content:""}.icon-csharp:before{content:""}.icon-cssthree:before{content:""}.icon-cup-coffeealt:before{content:""}.icon-cupcake:before{content:""}.icon-curling:before{content:""}.icon-cursor:before{content:""}.icon-cut-scissors:before{content:""}.icon-dagger:before{content:"†"}.icon-danger:before{content:""}.icon-dart:before{content:""}.icon-darthvader:before{content:""}.icon-database:before{content:""}.icon-databaseadd:before{content:""}.icon-databasedelete:before{content:""}.icon-davidstar:before{content:""}.icon-dcsource:before{content:""}.icon-dedicatedserver:before{content:""}.icon-deletefile:before{content:""}.icon-deletefolder:before{content:""}.icon-delicious:before{content:""}.icon-designcontest:before{content:""}.icon-desklamp:before{content:""}.icon-dialpad:before{content:""}.icon-diamond:before{content:"♦"}.icon-diamonds:before{content:""}.icon-die-dice:before{content:""}.icon-diefive:before{content:""}.icon-diefour:before{content:""}.icon-dieone:before{content:""}.icon-diesix:before{content:""}.icon-diethree:before{content:""}.icon-dietwo:before{content:""}.icon-diode:before{content:""}.icon-director:before{content:""}.icon-diskspace:before{content:""}.icon-distributehorizontalcenters:before{content:""}.icon-distributeverticalcenters:before{content:""}.icon-divide:before{content:"÷"}.icon-dna:before{content:""}.icon-dnszone:before{content:""}.icon-document:before{content:""}.icon-doghouse:before{content:""}.icon-dollar:before{content:"$"}.icon-dollaralt:before{content:""}.icon-dolphinsoftware:before{content:""}.icon-domain:before{content:""}.icon-domainaddon:before{content:""}.icon-domino:before{content:""}.icon-donut:before{content:""}.icon-downleft:before{content:""}.icon-download:before{content:""}.icon-download-alt:before{content:""}.icon-downright:before{content:""}.icon-draft:before{content:""}.icon-dreamweaver:before{content:""}.icon-dribbble:before{content:""}.icon-dropmenu:before{content:""}.icon-drupal:before{content:""}.icon-drwho:before{content:""}.icon-edit:before{content:""}.icon-editalt:before{content:""}.icon-egg:before{content:""}.icon-eightball:before{content:""}.icon-eject:before{content:""}.icon-elipse:before{content:""}.icon-emailalt:before{content:""}.icon-emailexport:before{content:""}.icon-emailforward:before{content:""}.icon-emailforwarders:before{content:""}.icon-emailimport:before{content:""}.icon-emailrefresh:before{content:""}.icon-emailtrace:before{content:""}.icon-emergency:before{content:""}.icon-emptycart:before{content:""}.icon-enter:before{content:""}.icon-envelope:before{content:""}.icon-equalizer:before{content:""}.icon-equalizeralt:before{content:""}.icon-equals:before{content:""}.icon-eraser:before{content:""}.icon-erroralt:before{content:""}.icon-euro:before{content:"€"}.icon-euroalt:before{content:""}.icon-evernote:before{content:""}.icon-exchange-currency:before{content:""}.icon-exclamation-sign:before{content:""}.icon-excludeshape:before{content:""}.icon-exit:before{content:""}.icon-explorerwindow:before{content:""}.icon-exportfile:before{content:""}.icon-exposure:before{content:""}.icon-extinguisher:before{content:""}.icon-eye-close:before{content:""}.icon-eye-open:before{content:""}.icon-eye-view:before{content:""}.icon-eyedropper:before{content:""}.icon-facebook:before{content:""}.icon-facebookalt:before{content:""}.icon-facetime-video:before{content:""}.icon-factory:before{content:""}.icon-fantastico:before{content:""}.icon-faq:before{content:""}.icon-fast-backward:before{content:""}.icon-fast-forward:before{content:""}.icon-fastdown:before{content:""}.icon-fastleft:before{content:""}.icon-fastright:before{content:""}.icon-fastup:before{content:""}.icon-favoritefile:before{content:""}.icon-favoritefolder:before{content:""}.icon-featheralt-write:before{content:""}.icon-fedora:before{content:""}.icon-fence:before{content:""}.icon-file:before{content:""}.icon-film:before{content:""}.icon-filmstrip:before{content:""}.icon-filter:before{content:""}.icon-finder:before{content:""}.icon-fire:before{content:""}.icon-firefox:before{content:""}.icon-firewall:before{content:""}.icon-firewire:before{content:""}.icon-firstaid:before{content:""}.icon-fish:before{content:""}.icon-fishbone:before{content:""}.icon-flag:before{content:""}.icon-flagalt:before{content:""}.icon-flagtriangle:before{content:""}.icon-flash:before{content:""}.icon-flashlight:before{content:""}.icon-flashplayer:before{content:""}.icon-flaskfull:before{content:""}.icon-flickr:before{content:""}.icon-flower:before{content:""}.icon-flowernew:before{content:""}.icon-folder-close:before{content:""}.icon-folder-open:before{content:""}.icon-foldertree:before{content:""}.icon-font:before{content:""}.icon-foodtray:before{content:""}.icon-football-soccer:before{content:""}.icon-forbiddenalt:before{content:""}.icon-forest-tree:before{content:""}.icon-forestalt-treealt:before{content:""}.icon-fork:before{content:"⋔"}.icon-forklift:before{content:""}.icon-form:before{content:""}.icon-forrst:before{content:""}.icon-fort:before{content:""}.icon-forward:before{content:""}.icon-fourohfour:before{content:""}.icon-foursquare:before{content:""}.icon-freeway:before{content:""}.icon-fridge:before{content:""}.icon-fries:before{content:""}.icon-ftp:before{content:""}.icon-ftpaccounts:before{content:""}.icon-ftpsession:before{content:""}.icon-fullscreen:before{content:""}.icon-gameboy:before{content:""}.icon-gamecursor:before{content:""}.icon-gasstation:before{content:""}.icon-gearfour:before{content:""}.icon-ghost:before{content:""}.icon-gift:before{content:""}.icon-github:before{content:""}.icon-glass:before{content:""}.icon-glasses:before{content:""}.icon-glassesalt:before{content:""}.icon-globe:before{content:""}.icon-globealt:before{content:""}.icon-glue:before{content:""}.icon-gmail:before{content:""}.icon-golf:before{content:""}.icon-googledrive:before{content:""}.icon-googleplus:before{content:""}.icon-googlewallet:before{content:""}.icon-gpsoff-gps:before{content:""}.icon-gpson:before{content:""}.icon-gpu-graphicscard:before{content:""}.icon-gradient:before{content:"∇"}.icon-grails:before{content:""}.icon-greenlantern:before{content:""}.icon-greenlightbulb:before{content:""}.icon-grooveshark:before{content:""}.icon-groups-friends:before{content:""}.icon-guitar:before{content:""}.icon-halflife:before{content:""}.icon-halo:before{content:""}.icon-hamburger:before{content:""}.icon-hammer:before{content:""}.icon-hand-down:before{content:""}.icon-hand-left:before{content:""}.icon-hand-right:before{content:""}.icon-hand-up:before{content:""}.icon-handcuffs:before{content:""}.icon-handdrag:before{content:""}.icon-handtwofingers:before{content:""}.icon-hanger:before{content:""}.icon-happy:before{content:""}.icon-harrypotter:before{content:""}.icon-hdd:before{content:""}.icon-hdtv:before{content:""}.icon-headphones:before{content:""}.icon-headphonesalt:before{content:""}.icon-heart:before{content:""}.icon-heartempty-love:before{content:""}.icon-hearts:before{content:""}.icon-helicopter:before{content:""}.icon-hexagon-polygon:before{content:""}.icon-hockey:before{content:""}.icon-home:before{content:"↸"}.icon-homealt:before{content:""}.icon-hospital:before{content:""}.icon-hotdog:before{content:""}.icon-hotlinkprotection:before{content:""}.icon-hourglassalt:before{content:""}.icon-html:before{content:""}.icon-htmlfive:before{content:""}.icon-hydrant:before{content:""}.icon-icecream:before{content:""}.icon-icecreamalt:before{content:""}.icon-illustrator:before{content:""}.icon-imac:before{content:""}.icon-images-gallery:before{content:""}.icon-importcontacts:before{content:""}.icon-importfile:before{content:""}.icon-inbox:before{content:""}.icon-inboxalt:before{content:""}.icon-incomingcall:before{content:""}.icon-indent-left:before{content:""}.icon-indent-right:before{content:""}.icon-indexmanager:before{content:""}.icon-infinity:before{content:"∞"}.icon-info-sign:before{content:""}.icon-infographic:before{content:""}.icon-ink:before{content:""}.icon-inkpen:before{content:""}.icon-insertbarchart:before{content:""}.icon-insertpicture:before{content:""}.icon-insertpicturecenter:before{content:""}.icon-insertpictureleft:before{content:""}.icon-insertpictureright:before{content:""}.icon-insertpiechart:before{content:""}.icon-instagram:before{content:""}.icon-install:before{content:""}.icon-intel:before{content:""}.icon-intersection:before{content:"∩"}.icon-intersectshape:before{content:""}.icon-invert:before{content:""}.icon-invoice:before{content:""}.icon-ipcontrol:before{content:""}.icon-iphone:before{content:""}.icon-ipod:before{content:""}.icon-ironman:before{content:""}.icon-islam:before{content:""}.icon-island:before{content:""}.icon-italic:before{content:""}.icon-jar:before{content:""}.icon-jason:before{content:""}.icon-java:before{content:""}.icon-joomla:before{content:""}.icon-joystickarcade:before{content:""}.icon-joystickatari:before{content:""}.icon-jquery:before{content:""}.icon-jqueryui:before{content:""}.icon-kerning:before{content:""}.icon-key:before{content:""}.icon-keyboard:before{content:""}.icon-keyboardalt:before{content:""}.icon-keyboarddelete:before{content:""}.icon-kidney:before{content:""}.icon-king:before{content:""}.icon-knife:before{content:""}.icon-knight:before{content:""}.icon-knob:before{content:""}.icon-lab-flask:before{content:""}.icon-lamp:before{content:""}.icon-lan:before{content:""}.icon-language:before{content:""}.icon-laptop:before{content:""}.icon-lasso:before{content:""}.icon-lastfm:before{content:""}.icon-laugh:before{content:""}.icon-law:before{content:""}.icon-layers:before{content:""}.icon-layersalt:before{content:""}.icon-leaf:before{content:""}.icon-leechprotect:before{content:""}.icon-legacyfilemanager:before{content:""}.icon-lego:before{content:""}.icon-lifeempty:before{content:""}.icon-lifefull:before{content:""}.icon-lifehacker:before{content:""}.icon-lifehalf:before{content:""}.icon-lifepreserver:before{content:""}.icon-lightbulb-idea:before{content:""}.icon-lighthouse:before{content:""}.icon-lightning:before{content:""}.icon-lightningalt:before{content:""}.icon-line:before{content:""}.icon-lineheight:before{content:""}.icon-link:before{content:""}.icon-linkalt:before{content:""}.icon-linkedin:before{content:""}.icon-linux:before{content:""}.icon-list:before{content:""}.icon-list-alt:before{content:""}.icon-liver:before{content:""}.icon-loading-hourglass:before{content:""}.icon-loadingalt:before{content:""}.icon-lock:before{content:""}.icon-lockalt-keyhole:before{content:""}.icon-lollypop:before{content:""}.icon-lungs:before{content:""}.icon-macpro:before{content:""}.icon-macro-plant:before{content:""}.icon-magazine:before{content:""}.icon-magento:before{content:""}.icon-magnet:before{content:""}.icon-mailbox:before{content:""}.icon-mailinglists:before{content:""}.icon-man-male:before{content:""}.icon-managedhosting:before{content:""}.icon-map:before{content:""}.icon-map-marker:before{content:""}.icon-marker:before{content:""}.icon-marvin:before{content:""}.icon-mastercard:before{content:""}.icon-maximize:before{content:""}.icon-medal:before{content:""}.icon-medalbronze:before{content:""}.icon-medalgold:before{content:""}.icon-medalsilver:before{content:""}.icon-mediarepeat:before{content:""}.icon-men:before{content:""}.icon-menu:before{content:""}.icon-merge:before{content:""}.icon-mergecells:before{content:""}.icon-mergeshapes:before{content:""}.icon-metro-subway:before{content:""}.icon-metronome:before{content:""}.icon-mickeymouse:before{content:""}.icon-microphone:before{content:""}.icon-microscope:before{content:""}.icon-microsd:before{content:""}.icon-microwave:before{content:""}.icon-mimetype:before{content:""}.icon-minimize:before{content:""}.icon-minus:before{content:"−"}.icon-minus-sign:before{content:""}.icon-missedcall:before{content:""}.icon-mobile:before{content:""}.icon-moleskine:before{content:""}.icon-money-cash:before{content:""}.icon-moneybag:before{content:""}.icon-monitor:before{content:""}.icon-monstersinc:before{content:""}.icon-moon-night:before{content:""}.icon-mouse:before{content:""}.icon-mousealt:before{content:""}.icon-move:before{content:""}.icon-movieclapper:before{content:""}.icon-moviereel:before{content:""}.icon-muffin:before{content:""}.icon-mug:before{content:""}.icon-mushroom:before{content:""}.icon-music:before{content:""}.icon-musicalt:before{content:""}.icon-mutealt:before{content:""}.icon-mxentry:before{content:""}.icon-mybb:before{content:""}.icon-myspace:before{content:""}.icon-mysql-dolphin:before{content:""}.icon-nail:before{content:""}.icon-navigation:before{content:""}.icon-network:before{content:""}.icon-networksignal:before{content:""}.icon-news:before{content:""}.icon-newtab:before{content:""}.icon-newwindow:before{content:""}.icon-next:before{content:""}.icon-nexus:before{content:""}.icon-nintendods:before{content:""}.icon-nodejs:before{content:""}.icon-notes:before{content:""}.icon-notificationbottom:before{content:""}.icon-notificationtop:before{content:""}.icon-nut:before{content:""}.icon-off:before{content:""}.icon-office-building:before{content:""}.icon-officechair:before{content:""}.icon-ok:before{content:"✓"}.icon-ok-circle:before{content:""}.icon-ok-sign:before{content:""}.icon-oneup:before{content:""}.icon-oneupalt:before{content:""}.icon-opencart:before{content:""}.icon-opennewwindow:before{content:""}.icon-orange:before{content:""}.icon-outbox:before{content:""}.icon-outgoingcall:before{content:""}.icon-oxwall:before{content:""}.icon-pacman:before{content:""}.icon-pageback:before{content:""}.icon-pagebreak:before{content:""}.icon-pageforward:before{content:""}.icon-pagesetup:before{content:""}.icon-paintbrush:before{content:""}.icon-paintroll:before{content:""}.icon-palette-painting:before{content:""}.icon-paperclip:before{content:""}.icon-paperclipalt:before{content:""}.icon-paperclipvertical:before{content:""}.icon-paperplane:before{content:""}.icon-parentheses:before{content:""}.icon-parkeddomain:before{content:""}.icon-password:before{content:""}.icon-passwordalt:before{content:""}.icon-pasta:before{content:""}.icon-patch:before{content:""}.icon-path:before{content:""}.icon-pause:before{content:""}.icon-paw-pet:before{content:""}.icon-pawn:before{content:""}.icon-paypal:before{content:""}.icon-peace:before{content:""}.icon-pen:before{content:""}.icon-pencil:before{content:""}.icon-pepperoni:before{content:""}.icon-percent:before{content:"%"}.icon-perl-camel:before{content:""}.icon-perlalt:before{content:""}.icon-phone-call:before{content:""}.icon-phonealt:before{content:""}.icon-phonebook:before{content:""}.icon-phonebookalt:before{content:""}.icon-phonemic:before{content:""}.icon-phoneold:before{content:""}.icon-photoshop:before{content:""}.icon-php:before{content:""}.icon-phpbb:before{content:""}.icon-phppear:before{content:""}.icon-piano:before{content:""}.icon-picture:before{content:"⊷"}.icon-pictureframe:before{content:""}.icon-piggybank:before{content:""}.icon-pigpena:before{content:""}.icon-pigpenb:before{content:""}.icon-pigpenc:before{content:""}.icon-pigpend:before{content:""}.icon-pigpene:before{content:""}.icon-pigpenf:before{content:""}.icon-pigpeng:before{content:""}.icon-pigpenh:before{content:""}.icon-pigpeni:before{content:""}.icon-pigpenj:before{content:""}.icon-pigpenk:before{content:""}.icon-pigpenl:before{content:""}.icon-pigpenm:before{content:""}.icon-pigpenn:before{content:""}.icon-pigpeno:before{content:""}.icon-pigpenp:before{content:""}.icon-pigpenq:before{content:""}.icon-pigpenr:before{content:""}.icon-pigpens:before{content:""}.icon-pigpent:before{content:""}.icon-pigpenu:before{content:""}.icon-pigpenv:before{content:""}.icon-pigpenw:before{content:""}.icon-pigpenx:before{content:""}.icon-pigpeny:before{content:""}.icon-pigpenz:before{content:""}.icon-pilcrow:before{content:"¶"}.icon-pill-antivirusalt:before{content:""}.icon-pin:before{content:""}.icon-pipe:before{content:"ǀ"}.icon-piwigo:before{content:""}.icon-pizza:before{content:""}.icon-placeadd:before{content:""}.icon-placealt:before{content:""}.icon-placealtadd:before{content:""}.icon-placealtdelete:before{content:""}.icon-placedelete:before{content:""}.icon-placeios:before{content:""}.icon-plane:before{content:""}.icon-plaque:before{content:""}.icon-play:before{content:""}.icon-play-circle:before{content:""}.icon-playstore:before{content:""}.icon-playvideo:before{content:""}.icon-plug:before{content:""}.icon-pluginalt:before{content:""}.icon-plus:before{content:"+"}.icon-plus-sign:before{content:""}.icon-pocket:before{content:""}.icon-podcast:before{content:""}.icon-podium-winner:before{content:""}.icon-pokemon:before{content:""}.icon-police:before{content:""}.icon-polygonlasso:before{content:""}.icon-post:before{content:""}.icon-postalt:before{content:""}.icon-pound:before{content:""}.icon-poundalt:before{content:""}.icon-powerjack:before{content:""}.icon-powerplug:before{content:""}.icon-powerplugeu:before{content:""}.icon-powerplugus:before{content:""}.icon-presentation:before{content:""}.icon-prestashop:before{content:""}.icon-pretzel:before{content:""}.icon-preview:before{content:""}.icon-previous:before{content:""}.icon-print:before{content:""}.icon-protecteddirectory:before{content:""}.icon-pscircle:before{content:""}.icon-pscursor:before{content:""}.icon-psdown:before{content:""}.icon-psleft:before{content:""}.icon-pslone:before{content:""}.icon-psltwo:before{content:""}.icon-psright:before{content:""}.icon-psrone:before{content:""}.icon-psrtwo:before{content:""}.icon-pssquare:before{content:""}.icon-pstriangle:before{content:""}.icon-psup:before{content:""}.icon-psx:before{content:""}.icon-pull:before{content:""}.icon-punisher:before{content:""}.icon-push:before{content:""}.icon-puzzle-plugin:before{content:""}.icon-python:before{content:""}.icon-qrcode:before{content:""}.icon-quake:before{content:""}.icon-queen:before{content:""}.icon-query:before{content:""}.icon-question-sign:before{content:""}.icon-quote:before{content:""}.icon-quotedown:before{content:""}.icon-quoteup:before{content:""}.icon-raceflag:before{content:""}.icon-racquet:before{content:""}.icon-radio:before{content:""}.icon-radioactive:before{content:""}.icon-radiobutton:before{content:""}.icon-railroad:before{content:""}.icon-rain:before{content:""}.icon-ram:before{content:""}.icon-random:before{content:""}.icon-rar:before{content:""}.icon-raspberry:before{content:""}.icon-raspberrypi:before{content:""}.icon-rawaccesslogs:before{content:""}.icon-razor:before{content:""}.icon-reademail:before{content:""}.icon-record:before{content:""}.icon-rectangle:before{content:"▭"}.icon-recycle:before{content:""}.icon-reddit:before{content:""}.icon-redirect:before{content:""}.icon-refresh:before{content:""}.icon-reliability:before{content:""}.icon-remote:before{content:""}.icon-remove:before{content:"×"}.icon-remove-circle:before{content:""}.icon-remove-sign:before{content:""}.icon-removefriend:before{content:""}.icon-repeat:before{content:""}.icon-repeatone:before{content:""}.icon-resellerhosting:before{content:""}.icon-residentevil:before{content:""}.icon-resistor:before{content:""}.icon-resize:before{content:""}.icon-resize-full:before{content:""}.icon-resize-horizontal:before{content:""}.icon-resize-small:before{content:""}.icon-resize-vertical:before{content:""}.icon-restart:before{content:""}.icon-restaurantmenu:before{content:""}.icon-restore:before{content:""}.icon-restricted:before{content:""}.icon-retweet:before{content:""}.icon-rim:before{content:""}.icon-ring:before{content:"˚"}.icon-road:before{content:""}.icon-roadsign-roadsignright:before{content:""}.icon-roadsignleft:before{content:""}.icon-robocop:before{content:""}.icon-rocket-launch:before{content:""}.icon-rook:before{content:""}.icon-root:before{content:""}.icon-rorschach:before{content:""}.icon-rotateclockwise:before{content:""}.icon-rotatecounterclockwise:before{content:""}.icon-roundrectangle:before{content:""}.icon-route:before{content:""}.icon-router:before{content:""}.icon-rss:before{content:""}.icon-rubberstamp:before{content:""}.icon-ruby:before{content:""}.icon-ruler:before{content:""}.icon-sad:before{content:""}.icon-safetypin:before{content:""}.icon-satellite:before{content:""}.icon-satellitedish-remotemysql:before{content:""}.icon-save-floppy:before{content:""}.icon-scales:before{content:""}.icon-science-atom:before{content:""}.icon-scope-scan:before{content:""}.icon-scopealt:before{content:""}.icon-screenshot:before{content:""}.icon-screw:before{content:""}.icon-screwdriver:before{content:""}.icon-screwdriveralt:before{content:""}.icon-script:before{content:""}.icon-sd:before{content:""}.icon-search:before{content:""}.icon-searchdocument:before{content:""}.icon-searchfolder:before{content:""}.icon-security-shield:before{content:""}.icon-securityalt-shieldalt:before{content:""}.icon-selection-rectangleselection:before{content:""}.icon-selectionadd:before{content:""}.icon-selectionintersect:before{content:""}.icon-selectionremove:before{content:""}.icon-seo:before{content:""}.icon-server:before{content:""}.icon-servers:before{content:""}.icon-settingsandroid:before{content:""}.icon-settingsfour-gearsalt:before{content:""}.icon-settingsthree-gears:before{content:""}.icon-settingstwo-gearalt:before,.updateLink:before{content:""}.icon-shades-sunglasses:before{content:""}.icon-shapes:before{content:""}.icon-share:before{content:""}.icon-share-alt:before{content:""}.icon-sharealt:before{content:""}.icon-sharedfile:before{content:""}.icon-sharedhosting:before{content:""}.icon-sharethree:before{content:""}.icon-sheriff:before{content:""}.icon-shipping:before{content:""}.icon-shopping:before{content:""}.icon-shopping-cart:before{content:""}.icon-shoppingbag:before{content:""}.icon-shortcut:before{content:""}.icon-shovel:before{content:""}.icon-shredder:before{content:""}.icon-shutdown:before{content:""}.icon-sidebar:before{content:""}.icon-signal:before{content:""}.icon-sim:before{content:""}.icon-simalt:before{content:""}.icon-skrill:before{content:""}.icon-skull:before{content:""}.icon-skype:before{content:""}.icon-skypeaway:before{content:""}.icon-skypebusy:before{content:""}.icon-skypeoffline:before{content:""}.icon-skypeonline:before{content:""}.icon-smaller:before{content:""}.icon-smf:before{content:""}.icon-smile:before{content:"☺"}.icon-snow:before{content:""}.icon-snowman:before{content:""}.icon-socialnetwork:before{content:""}.icon-software:before{content:""}.icon-sortbynameascending-atoz:before{content:""}.icon-sortbynamedescending-ztoa:before{content:""}.icon-sortbysizeascending:before{content:""}.icon-sortbysizedescending:before{content:""}.icon-soundwave:before{content:""}.icon-soup:before{content:""}.icon-spaceinvaders:before{content:""}.icon-spades:before{content:""}.icon-spam:before{content:""}.icon-spamalt:before{content:""}.icon-spawn:before{content:""}.icon-speaker:before{content:""}.icon-speed:before{content:""}.icon-spider:before{content:""}.icon-spiderman:before{content:""}.icon-split:before{content:""}.icon-spoon:before{content:""}.icon-spray:before{content:""}.icon-spreadsheet:before{content:""}.icon-squareapp:before{content:""}.icon-squarebrackets:before{content:""}.icon-ssh:before{content:""}.icon-sslmanager:before{content:""}.icon-stadium:before{content:""}.icon-stamp:before{content:""}.icon-stampalt:before{content:""}.icon-star:before{content:""}.icon-star-empty:before{content:""}.icon-starempty:before{content:""}.icon-starfull:before{content:""}.icon-starhalf:before{content:""}.icon-steak:before{content:""}.icon-steam:before{content:""}.icon-step-backward:before{content:""}.icon-step-forward:before{content:""}.icon-sticker:before{content:""}.icon-stiletto:before{content:""}.icon-stockdown:before{content:""}.icon-stocks:before{content:""}.icon-stockup:before{content:""}.icon-stomach:before{content:""}.icon-stop:before{content:""}.icon-stopwatch:before{content:""}.icon-storage-box:before{content:""}.icon-storagealt-drawer:before{content:""}.icon-store:before{content:""}.icon-storm:before{content:""}.icon-stove:before{content:""}.icon-strawberry:before{content:""}.icon-strikethrough:before{content:""}.icon-student-school:before{content:""}.icon-stumbleupon:before{content:""}.icon-subdomain:before{content:""}.icon-submarine:before{content:""}.icon-subscript:before{content:""}.icon-subtractshape:before{content:""}.icon-sum:before{content:""}.icon-sun-day:before{content:""}.icon-sunnysideup:before{content:""}.icon-superman:before{content:""}.icon-superscript:before{content:""}.icon-support:before{content:""}.icon-supportalt:before{content:""}.icon-switch:before{content:""}.icon-switchoff:before{content:""}.icon-switchoffalt:before{content:""}.icon-switchon:before{content:""}.icon-switchonalt:before{content:""}.icon-sword:before{content:""}.icon-sync:before{content:""}.icon-syncalt:before{content:""}.icon-synckeeplocal:before{content:""}.icon-synckeepserver:before{content:""}.icon-syringe-antivirus:before{content:""}.icon-tablet:before{content:""}.icon-tabletennis-pingpong:before{content:""}.icon-taco:before{content:""}.icon-tag:before{content:""}.icon-tagalt-pricealt:before{content:""}.icon-tags:before{content:""}.icon-tagvertical:before{content:""}.icon-tank:before{content:""}.icon-target:before{content:""}.icon-taskmanager-logprograms:before{content:""}.icon-tasks:before{content:""}.icon-taxi:before{content:""}.icon-tea:before{content:""}.icon-teapot:before{content:""}.icon-telescope:before{content:""}.icon-temperature-thermometer:before{content:""}.icon-temperaturealt-thermometeralt:before{content:""}.icon-tennis:before{content:""}.icon-tent-camping:before{content:""}.icon-terminal:before{content:""}.icon-tethering:before{content:""}.icon-tetrisone:before{content:""}.icon-tetristhree:before{content:""}.icon-tetristwo:before{content:""}.icon-text-height:before{content:""}.icon-text-width:before{content:""}.icon-th:before{content:""}.icon-th-large:before{content:""}.icon-th-list:before{content:""}.icon-theather:before{content:""}.icon-theme-style:before{content:""}.icon-thissideup:before{content:""}.icon-threecolumns:before{content:""}.icon-thumbs-down:before{content:""}.icon-thumbs-up:before{content:""}.icon-ticket:before{content:""}.icon-tictactoe:before{content:""}.icon-tie-business:before{content:"⁀"}.icon-time:before{content:""}.icon-timeline:before{content:""}.icon-tint:before{content:""}.icon-toast:before{content:""}.icon-toiletpaper:before{content:""}.icon-tooth:before{content:""}.icon-toothbrush:before{content:""}.icon-tophat:before{content:""}.icon-torigate:before{content:""}.icon-touchpad:before{content:""}.icon-trafficlight:before{content:""}.icon-transform:before{content:""}.icon-trash:before{content:""}.icon-trashempty:before{content:""}.icon-trashfull:before{content:""}.icon-travel:before{content:""}.icon-treediagram:before{content:""}.icon-treeornament:before{content:""}.icon-triangle:before{content:"△"}.icon-tron:before{content:""}.icon-trophy:before{content:""}.icon-truck:before{content:""}.icon-trumpet:before{content:""}.icon-tumblr:before{content:""}.icon-tv:before{content:""}.icon-twitter:before{content:""}.icon-twocolumnsleft:before{content:""}.icon-twocolumnsleftalt:before{content:""}.icon-twocolumnsright:before{content:""}.icon-twocolumnsrightalt:before{content:""}.icon-ubuntu:before{content:""}.icon-umbrella:before{content:""}.icon-underline:before{content:""}.icon-undo:before{content:""}.icon-unlock:before{content:""}.icon-upleft:before{content:""}.icon-upload:before{content:""}.icon-uploadalt:before{content:""}.icon-upright:before{content:""}.icon-uptime:before{content:""}.icon-usb:before{content:""}.icon-usbalt:before{content:""}.icon-usbplug:before{content:""}.icon-user:before{content:""}.icon-userfilter:before{content:""}.icon-usfootball:before{content:""}.icon-value-coins:before{content:""}.icon-vector:before{content:""}.icon-vendetta:before{content:""}.icon-video:before{content:""}.icon-viking:before{content:""}.icon-vimeo:before{content:""}.icon-vinyl:before{content:""}.icon-violin:before{content:""}.icon-virus:before{content:""}.icon-visa:before{content:""}.icon-visitor:before{content:""}.icon-vlc-cone:before{content:""}.icon-voice:before{content:""}.icon-volume-down:before{content:""}.icon-volume-off:before{content:""}.icon-volume-up:before{content:""}.icon-vps:before{content:""}.icon-wacom:before{content:""}.icon-walle:before{content:""}.icon-wallet:before{content:""}.icon-warcraft:before{content:""}.icon-warmedal:before{content:""}.icon-warning-sign:before{content:""}.icon-washer:before{content:""}.icon-watch:before{content:""}.icon-watertap-plumbing:before{content:""}.icon-wave-sea:before{content:""}.icon-wavealt-seaalt:before{content:""}.icon-webcam:before{content:""}.icon-webcamalt:before{content:""}.icon-webhostinghub:before{content:""}.icon-webmail:before{content:""}.icon-webpage:before{content:""}.icon-webplatform:before{content:""}.icon-websitealt:before{content:""}.icon-websitebuilder:before{content:""}.icon-weight:before{content:""}.icon-westernunion:before{content:""}.icon-wheel:before{content:""}.icon-wheelchair:before{content:""}.icon-whistle:before{content:""}.icon-whmcs:before{content:""}.icon-wifi:before{content:""}.icon-wind:before{content:""}.icon-windleft:before{content:""}.icon-windows:before{content:""}.icon-windright:before{content:""}.icon-wine:before{content:""}.icon-wizard:before{content:""}.icon-wizardalt:before{content:""}.icon-wizardhat:before{content:""}.icon-woman-female:before{content:""}.icon-women:before{content:""}.icon-wordpress:before{content:""}.icon-wrench:before{content:""}.icon-wrenchalt:before{content:""}.icon-xbox:before{content:""}.icon-xmen:before{content:""}.icon-yahoo:before{content:""}.icon-yen:before{content:"¥"}.icon-yenalt:before{content:""}.icon-yinyang:before{content:"☯"}.icon-youtube:before{content:""}.icon-zelda:before{content:""}.icon-zikula:before{content:""}.icon-zip:before{content:""}.icon-zodiac-aquarius:before{content:""}.icon-zodiac-aries:before{content:""}.icon-zodiac-cancer:before{content:""}.icon-zodiac-capricorn:before{content:""}.icon-zodiac-gemini:before{content:""}.icon-zodiac-leo:before{content:""}.icon-zodiac-libra:before{content:""}.icon-zodiac-pisces:before{content:""}.icon-zodiac-sagitarius:before{content:""}.icon-zodiac-scorpio:before{content:""}.icon-zodiac-taurus:before{content:""}.icon-zodiac-virgo:before{content:""}.icon-zoom-in:before{content:""}.icon-zoom-out:before{content:""}.icon-vk:before{content:""}.icon-bitcoin:before{content:""}.icon-rouble:before{content:""}.icon-phpnuke:before{content:""}.icon-modx:before{content:""}.icon-eoneohseven:before{content:""}.icon-subrion:before{content:""}.icon-typothree:before{content:""}.icon-tikiwiki:before{content:""}.icon-pligg:before{content:""}.icon-pyrocms:before{content:""}.icon-mambo:before{content:""}.icon-contao:before{content:""}.icon-crackedegg:before{content:""}.icon-coffeecupalt:before{content:""}.icon-reademailalt:before{content:""}.icon-train:before{content:""}.icon-shoebox:before{content:""}.icon-bathtub:before{content:""}.icon-ninegag:before{content:""}.icon-pebble:before{content:""}.icon-musicthree:before{content:""}.icon-stairsup:before{content:""}.icon-stairsdown:before{content:""}.icon-bookalt:before{content:""}.icon-programclose:before{content:""}.icon-programok:before{content:""}.icon-splitalt:before{content:""}.icon-solarsystem:before{content:""}.icon-honeycomb:before{content:""}.icon-tools:before{content:""}.icon-xoops:before{content:""}.icon-pixie:before{content:""}.icon-dotclear:before{content:""}.icon-impresscms:before{content:""}.icon-saurus:before{content:""}.icon-impresspages:before{content:""}.icon-monstra:before{content:""}.icon-snews:before{content:""}.icon-jcore:before{content:""}.icon-silverstripe:before{content:""}.icon-btwoevolution:before{content:""}.icon-nucleus:before{content:""}.icon-symphony:before{content:""}.icon-vanillacms:before{content:""}.icon-bbpress:before{content:""}.icon-phpbbalt:before{content:""}.icon-chyrp:before{content:""}.icon-pivotx:before{content:""}.icon-pagecookery:before{content:""}.icon-moviereelalt:before{content:""}.icon-cassettealt:before{content:""}.icon-photobucket:before{content:""}.icon-technorati:before{content:""}.icon-theverge:before{content:""}.icon-stacks:before{content:""}.icon-dotlist:before{content:""}.icon-numberlist:before{content:""}.icon-indentleft:before{content:""}.icon-indentright:before{content:""}.icon-fblike:before{content:""}.icon-fbdislike:before{content:""}.icon-sale:before{content:""}.icon-sharetronix:before{content:""}.icon-markerdown:before{content:""}.icon-markerup:before{content:""}.icon-markerleft:before{content:""}.icon-markerright:before{content:""}.icon-bookmarkalt:before{content:""}.icon-calendarthree:before{content:""}.icon-wineglass:before{content:""}.icon-slidersoff:before{content:""}.icon-slidersmiddle:before{content:""}.icon-slidersfull:before{content:""}.icon-slidersdesc:before{content:""}.icon-slidersasc:before{content:""}.icon-slideronefull:before{content:""}.icon-slidertwofull:before{content:""}.icon-sliderthreefull:before{content:""}.icon-noborders:before{content:""}.icon-bottomborder:before{content:""}.icon-topborder:before{content:""}.icon-leftborder:before{content:""}.icon-rightborder:before{content:""}.icon-horizontalborder:before{content:""}.icon-verticalborder:before{content:""}.icon-outerborders:before{content:""}.icon-innerborders:before{content:""}.icon-fullborders:before{content:""}.icon-networksignalalt:before{content:""}.icon-resizeverticalalt:before{content:""}.icon-resizehorizontalalt:before{content:""}.icon-moneyalt:before{content:""}.icon-fontcase:before{content:""}.icon-playstation:before{content:""}.icon-cube:before{content:""}.icon-sphere:before{content:""}.icon-ceilinglight:before{content:""}.icon-chandelier:before{content:""}.icon-details:before{content:""}.icon-detailsalt:before{content:""}.icon-bullet:before{content:""}.icon-gun:before{content:""}.icon-processorthree:before{content:""}.icon-world:before{content:""}.icon-statistics:before{content:""}.icon-shoppingcartalt:before{content:""}.icon-microphonealt:before{content:""}.icon-routeralt:before{content:""}.icon-shell:before{content:""}.icon-squareplay:before{content:""}.icon-squarestop:before{content:""}.icon-squarepause:before{content:""}.icon-squarerecord:before{content:""}.icon-squareforward:before{content:""}.icon-squareback:before{content:""}.icon-squarenext:before{content:""}.icon-squareprevious:before{content:""}.icon-mega:before{content:""}.icon-charliechaplin:before{content:""}.icon-popcorn:before{content:""}.icon-fatarrowright:before{content:""}.icon-fatarrowleft:before{content:""}.icon-fatarrowdown:before{content:""}.icon-fatarrowup:before{content:""}.icon-shirtbutton:before{content:""}.icon-shirtbuttonalt:before{content:""}.icon-cuckooclock:before{content:""}.icon-lens:before{content:""}.icon-voltage:before{content:""}.icon-planealt:before{content:""}.icon-busalt:before{content:""}.icon-lipstick:before{content:""}.icon-plantalt:before{content:""}.icon-paperboat:before{content:""}.icon-texture:before{content:""}.icon-dominoone:before{content:""}.icon-dominotwo:before{content:""}.icon-dominothree:before{content:""}.icon-dominofour:before{content:""}.icon-dominofive:before{content:""}.icon-dominosix:before{content:""}.icon-dominoseven:before{content:""}.icon-dominoeight:before{content:""}.icon-dominonine:before{content:""}.icon-connected:before{content:""}.icon-connectedpc:before{content:""}.icon-musicsheet:before{content:""}.icon-rdio:before{content:""}.icon-spotify:before{content:""}.icon-deviantart:before{content:""}.icon-yelp:before{content:""}.icon-behance:before{content:""}.icon-nfc:before{content:""}.icon-earbudsalt:before{content:""}.icon-earbuds:before{content:""}.icon-amazon:before{content:""}.icon-openid:before{content:""}.icon-digg:before{content:""}.icon-retweet:before{content:""}.icon-moonnew:before{content:""}.icon-moonwaxingcrescent:before{content:""}.icon-moonfirstquarter:before{content:""}.icon-moonwaxinggibbous:before{content:""}.icon-moonfull:before{content:""}.icon-moonwaninggibbous:before{content:""}.icon-moonthirdquarter:before{content:""}.icon-moonwaningcrescent:before{content:""}.icon-planet:before{content:""}.icon-sodacup:before{content:""}.icon-cocktail:before{content:""}.icon-church:before{content:""}.icon-mosque:before{content:""}.icon-comedy:before{content:""}.icon-tragedy:before{content:""}.icon-bacon:before{content:""}.icon-trailor:before{content:""}.icon-tshirt:before{content:""}.icon-design:before{content:""}.icon-spiderweb:before{content:""}.icon-fireplace:before{content:""}.icon-tallglass:before{content:""}.icon-grapes:before{content:""}.icon-biohazard:before{content:""}.icon-directions:before{content:""}.icon-equalizerthree:before{content:""}.icon-mountains:before{content:""}.icon-bing:before{content:""}.icon-windowseight:before{content:""}.icon-microsoftoffice:before{content:""}.icon-salealt:before{content:""}.icon-purse:before{content:""}.icon-chickenalt:before{content:""}.icon-podium:before{content:""}.icon-findfriends:before{content:""}.icon-microphonethree:before{content:""}.icon-workshirt:before{content:""}.icon-donotdisturb:before{content:""}.icon-addtags:before{content:""}.icon-removetags:before{content:""}.icon-carbattery:before{content:""}.icon-debug:before{content:""}.icon-trojan:before{content:""}.icon-molecule:before{content:""}.icon-safetygoggles:before{content:""}.icon-leather:before{content:""}.icon-teddybear:before{content:""}.icon-stroller:before{content:""}.icon-circleplay:before{content:""}.icon-circlestop:before{content:""}.icon-circlepause:before{content:""}.icon-circlerecord:before{content:""}.icon-circleforward:before{content:""}.icon-circlebackward:before{content:""}.icon-circlenext:before{content:""}.icon-circleprevious:before{content:""}.icon-circleplayempty:before{content:""}.icon-circlestopempty:before{content:""}.icon-circlepauseempty:before{content:""}.icon-circlerecordempty:before{content:""}.icon-circleforwardempty:before{content:""}.icon-circlebackwardempty:before{content:""}.icon-circlenextempty:before{content:""}.icon-circlepreviousempty:before{content:""}.icon-belt:before{content:""}.icon-bait:before{content:""}.icon-manalt:before{content:""}.icon-womanalt:before{content:""}.icon-clover:before{content:""}.icon-pacifier:before{content:""}.icon-calcplus:before{content:""}.icon-calcminus:before{content:""}.icon-calcmultiply:before{content:""}.icon-calcdivide:before{content:""}.icon-calcequals:before{content:""}.icon-city:before{content:""}.icon-hdvideo:before{content:""}.icon-horizontalexpand:before{content:""}.icon-horizontalcontract:before{content:""}.icon-radar:before{content:""}.icon-threed:before{content:""}.icon-flickralt:before{content:""}.icon-pattern:before{content:""}.icon-elevator:before{content:""}.icon-escalator:before{content:""}.icon-portrait:before{content:""}.icon-cigar:before{content:""}.icon-dropbox:before{content:""}.icon-origami:before{content:""}.icon-opensource:before{content:""}.icon-redaxscript:before{content:""}.icon-mahara:before{content:""}.icon-forkcms:before{content:""}.icon-pimcore:before{content:""}.icon-bigace:before{content:""}.icon-aef:before{content:""}.icon-punbb:before{content:""}.icon-phorum:before{content:""}.icon-fluxbb:before{content:""}.icon-minibb:before{content:""}.icon-zenphoto:before{content:""}.icon-fourimages:before{content:""}.icon-plogger:before{content:""}.icon-jcow:before{content:""}.icon-elgg:before{content:""}.icon-etano:before{content:""}.icon-openclassifieds:before{content:""}.icon-osclass:before{content:""}.icon-openx:before{content:""}.icon-phplist:before{content:""}.icon-roundcube:before{content:""}.icon-pommo:before{content:""}.icon-webinsta:before{content:""}.icon-limesurvey:before{content:""}.icon-fengoffice:before{content:""}.icon-eyeos:before{content:""}.icon-dotproject:before{content:""}.icon-collabtive:before{content:""}.icon-projectpier:before{content:""}.icon-taskfreak:before{content:""}.icon-eventum:before{content:""}.icon-traq:before{content:""}.icon-mantisbugtracker:before{content:""}.icon-oscommerce:before{content:""}.icon-zencart:before{content:""}.icon-tomatocart:before{content:""}.icon-boxbilling:before{content:""}.icon-zurmo:before{content:""}.icon-orangehrm:before{content:""}.icon-vtiger:before{content:""}.icon-mibew:before{content:""}.icon-phpmyfaq:before{content:""}.icon-yiiframework:before{content:""}.icon-zendframework:before{content:""}.icon-fuelphp:before{content:""}.icon-kohana:before{content:""}.icon-smarty:before{content:""}.icon-sidu:before{content:""}.icon-simplepie:before{content:""}.icon-projectsend:before{content:""}.icon-extjs:before{content:""}.icon-raphael:before{content:""}.icon-sizzle:before{content:""}.icon-yui:before{content:""}.icon-scissorsalt:before{content:""}.icon-cuthere:before{content:""}.icon-coinsalt:before{content:""}.icon-parkingmeter:before{content:""}.icon-treethree:before{content:""}.icon-packarchive:before{content:""}.icon-unpackarchive:before{content:""}.icon-terminalalt:before{content:""}.icon-jersey:before{content:""}.icon-vial:before{content:""}.icon-noteslist:before{content:""}.icon-notestasks:before{content:""}.icon-notesdate:before{content:""}.icon-noteslocation:before{content:""}.icon-noteslistalt:before{content:""}.icon-notestasksalt:before{content:""}.icon-notesdatealt:before{content:""}.icon-noteslocationalt:before{content:""}.icon-useralt:before{content:""}.icon-adduseralt:before{content:""}.icon-removeuseralt:before{content:""}.icon-banuseralt:before{content:""}.icon-banuser:before{content:""}.icon-paintrollalt:before{content:""}.icon-textcursor:before{content:""}.icon-textfield:before{content:""}.icon-precisecursor:before{content:""}.icon-brokenlink:before{content:""}.icon-bookmarkthree:before{content:""}.icon-bookmarkfour:before{content:""}.icon-warmedalalt:before{content:""}.icon-thinking:before{content:""}.icon-commentlove:before{content:""}.icon-commentsmiley:before{content:""}.icon-sharetwo:before{content:""}.icon-emptystar:before{content:""}.icon-halfstar:before{content:""}.icon-fullstar:before{content:""}.icon-forbidden:before{content:""}.icon-indentleftalt:before{content:""}.icon-indentrightalt:before{content:""}.icon-modxalt:before{content:""}.icon-apple:before{content:""}.icon-greekcolumn:before{content:""}.icon-walletalt:before{content:""}.icon-dollarsquare:before{content:""}.icon-poundsquare:before{content:""}.icon-yensquare:before{content:""}.icon-eurosquare:before{content:""}.icon-bitcoinsquare:before{content:""}.icon-roublesquare:before{content:""}.icon-roublealt:before{content:""}.icon-bitcoinalt:before{content:""}.icon-gavel:before{content:""}.icon-barchartasc:before{content:""}.icon-barchartdesc:before{content:""}.icon-house:before{content:""}.icon-garage:before{content:""}.icon-milk:before{content:""}.icon-hryvnia:before{content:""}.icon-hryvniasquare:before{content:""}.icon-hryvniaalt:before{content:""}.icon-beeralt:before{content:""}.icon-trolleyfull:before{content:""}.icon-trolleyload:before{content:""}.icon-trolleyunload:before{content:""}.icon-trolleyempty:before{content:""}.icon-mootools:before{content:""}.icon-mootoolstwo:before{content:""}.icon-mootoolsthree:before{content:""}.icon-mysqlthree:before{content:""}.icon-mysqlalt:before{content:""}.icon-pgsql:before{content:""}.icon-mongodb:before{content:""}.icon-neofourj:before{content:""}.icon-nosql:before{content:""}.icon-catface:before{content:""}.icon-polaroid:before{content:""}.icon-clouderror:before{content:""}.icon-camcorder:before{content:""}.icon-projector:before{content:""}.icon-sdvideo:before{content:""}.icon-fx:before{content:""}.icon-gramophone:before{content:""}.icon-speakeralt:before{content:""}.icon-hddalt:before{content:""}.icon-usbflash:before{content:""}.icon-manillaenvelope:before{content:""}.icon-stickynote:before{content:""}.icon-stickynotealt:before{content:""}.icon-torch:before{content:""}.icon-flashlightalt:before{content:""}.icon-campfire:before{content:""}.icon-cctv:before{content:""}.icon-drill:before{content:""}.icon-lampalt:before{content:""}.icon-flowerpot:before{content:""}.icon-defragment:before{content:""}.icon-panoramio:before{content:""}.icon-panorama:before{content:""}.icon-photosphere:before{content:""}.icon-panoramaalt:before{content:""}.icon-timer:before{content:""}.icon-burstmode:before{content:""}.icon-cameraflash:before{content:""}.icon-autoflash:before{content:""}.icon-noflash:before{content:""}.icon-threetofour:before{content:""}.icon-sixteentonine:before{content:""}.icon-cat:before{content:""}.icon-dog:before{content:""}.icon-rabbit:before{content:""}.icon-koala:before{content:""}.icon-butterflyalt:before{content:""}.icon-butterfly:before{content:""}.icon-wwf:before{content:""}.icon-poop:before{content:""}.icon-poopalt:before{content:""}.icon-kiwi:before{content:""}.icon-kiwifruit:before{content:""}.icon-lemon:before{content:""}.icon-pear:before{content:""}.icon-watermelon:before{content:""}.icon-onion:before{content:""}.icon-turnip:before{content:""}.icon-eggplant:before{content:""}.icon-avocado:before{content:""}.icon-perfume:before{content:""}.icon-arch:before{content:""}.icon-pluspages:before{content:""}.icon-community:before{content:""}.icon-pluscircles:before{content:""}.icon-googleplusold:before{content:""}.icon-plusgames:before{content:""}.icon-event:before{content:""}.icon-miui:before{content:""}.icon-hot:before{content:""}.icon-flowup:before{content:""}.icon-flowdown:before{content:""}.icon-moustache:before{content:""}.icon-angle:before{content:""}.icon-sleep:before{content:""}.icon-acorn:before{content:""}.icon-steamalt:before{content:""}.icon-resizeupleft:before{content:""}.icon-resizeupright:before{content:""}.icon-resizedownright:before{content:""}.icon-resizedownleft:before{content:""}.icon-hammeralt:before{content:""}.icon-bamboo:before{content:""}.icon-mypictures:before{content:""}.icon-mymusic:before{content:""}.icon-myvideos:before{content:""}.icon-systemfolder:before{content:""}.icon-bookthree:before{content:""}.icon-compile:before{content:""}.icon-report:before{content:""}.icon-fliphorizontal:before{content:""}.icon-flipvertical:before{content:""}.icon-construction:before{content:""}.icon-counteralt:before{content:""}.icon-counter:before{content:""}.icon-papercutter:before{content:""}.icon-snaptodot:before{content:""}.icon-snaptogrid:before{content:""}.icon-caligraphy:before{content:""}.icon-icecreamthree:before{content:""}.icon-skitch:before{content:""}.icon-archlinux:before{content:""}.icon-elementaryos:before{content:""}.icon-loadingone:before{content:""}.icon-loadingtwo:before{content:""}.icon-loadingthree:before{content:""}.icon-loadingfour:before{content:""}.icon-loadingfive:before{content:""}.icon-loadingsix:before{content:""}.icon-loadingseven:before{content:""}.icon-loadingeight:before{content:""}.icon-brokenheart:before{content:""}.icon-heartarrow:before{content:""}.icon-heartsparkle:before{content:""}.icon-cell:before{content:""}.icon-panda:before{content:""}.icon-refreshalt:before{content:""}.icon-mirror:before{content:""}.icon-headphonesthree:before{content:""}.icon-fan:before{content:""}.icon-tornado:before{content:""}.icon-hangout:before{content:""}.icon-beaker:before{content:""}.icon-beakeralt:before{content:""}.icon-phonescreensize:before{content:""}.icon-tabletscreensize:before{content:""}.icon-notification:before{content:""}.icon-googleglass:before{content:""}.icon-pinterest:before{content:""}.icon-soundcloud:before{content:""}.icon-alarmclock:before{content:""}.icon-addalarm:before{content:""}.icon-deletealarm:before{content:""}.icon-turnoffalarm:before{content:""}.icon-snooze:before{content:""}.icon-bringforward:before{content:""}.icon-sendbackward:before{content:""}.icon-bringtofront:before{content:""}.icon-sendtoback:before{content:""}.icon-tectile:before{content:""}.icon-grave:before{content:""}.icon-gravetwo:before{content:""}.icon-gravethree:before{content:""}.icon-gravefour:before{content:""}.icon-textlayer:before{content:""}.icon-vectoralt:before{content:""}.icon-drmanhattan:before{content:""}.icon-foursquarealt:before{content:""}.icon-hashtag:before{content:""}.icon-enteralt:before{content:""}.icon-exitalt:before{content:""}.icon-cartalt:before{content:""}.icon-vaultthree:before{content:""}.icon-fatundo:before{content:""}.icon-fatredo:before{content:""}.icon-feedly:before{content:""}.icon-feedlyalt:before{content:""}.icon-squareheart:before{content:""}.icon-squarestar:before{content:""}.icon-squarecomment:before{content:""}.icon-squarelike:before{content:""}.icon-squarebookmark:before{content:""}.icon-squaresearch:before{content:""}.icon-squaresettings:before{content:""}.icon-squarevoice:before{content:""}.icon-google:before{content:""}.icon-emojigrinalt:before{content:""}.icon-emojigrin:before{content:""}.icon-constellation:before{content:""}.icon-emojisurprise:before{content:""}.icon-emojidead:before{content:""}.icon-emojiangry:before{content:""}.icon-emojidevil:before{content:""}.icon-emojiwink:before{content:""}.icon-moonorbit:before{content:""}.icon-emojismile:before{content:""}.icon-emojisorry:before{content:""}.icon-emojiconfused:before{content:""}.icon-emojisleep:before{content:""}.icon-emojicry:before{content:""}.icon-circlefork:before{content:""}.icon-circlespoon:before{content:""}.icon-circleknife:before{content:""}.icon-circlepencil:before{content:""}.icon-circlehammer:before{content:""}.icon-circlescrewdriver:before{content:""}.icon-middlefinger:before{content:""}.icon-heavymetal:before{content:""}.icon-turnright:before{content:""}.icon-turnleft:before{content:""}.icon-vineapp:before{content:""}.icon-vineappalt:before{content:""}.icon-finance:before{content:""}.icon-survey:before{content:""}.icon-hangouts:before{content:""}.icon-square0:before{content:""}.icon-square1:before{content:""}.icon-square2:before{content:""}.icon-square3:before{content:""}.icon-square4:before{content:""}.icon-square5:before{content:""}.icon-square6:before{content:""}.icon-square7:before{content:""}.icon-square8:before{content:""}.icon-square9:before{content:""}.icon-squarea:before{content:""}.icon-squareb:before{content:""}.icon-squarec:before{content:""}.icon-squared:before{content:""}.icon-squaree:before{content:""}.icon-squaref:before{content:""}.icon-squareg:before{content:""}.icon-squareh:before{content:""}.icon-squarei:before{content:""}.icon-squarej:before{content:""}.icon-squarek:before{content:""}.icon-squarel:before{content:""}.icon-squarem:before{content:""}.icon-squaren:before{content:""}.icon-squareo:before{content:""}.icon-squarep:before{content:""}.icon-squareq:before{content:""}.icon-squarer:before{content:""}.icon-squares:before{content:""}.icon-squaret:before{content:""}.icon-squareu:before{content:""}.icon-squarev:before{content:""}.icon-squarew:before{content:""}.icon-squarex:before{content:""}.icon-squarey:before{content:""}.icon-squarez:before{content:""}.icon-shuttle:before{content:""}.icon-meteor:before{content:""}.icon-galaxy:before{content:""}.icon-observatory:before{content:""}.icon-astronaut:before{content:""}.icon-asteroid:before{content:""}.icon-sunrise:before{content:""}.icon-sunset:before{content:""}.icon-tiderise:before{content:""}.icon-tidefall:before{content:""}.icon-mushroomcloud:before{content:""}.icon-galaxyalt:before{content:""}.icon-sputnik:before{content:""}.icon-sextant:before{content:""}.icon-spock:before{content:""}.icon-meteorite:before{content:""}.icon-deathstar:before{content:""}.icon-deathstarbulding:before{content:""}.icon-fallingstar:before{content:""}.icon-windmill:before{content:""}.icon-windmillalt:before{content:""}.icon-pumpjack:before{content:""}.icon-nuclearplant:before{content:""}.icon-solarpanel:before{content:""}.icon-barrel:before{content:""}.icon-canister:before{content:""}.icon-railtunnel:before{content:""}.icon-roadtunnel:before{content:""}.icon-pickaxe:before{content:""}.icon-cow:before{content:""}.icon-sheep:before{content:""}.icon-fountain:before{content:""}.icon-circlezero:before{content:""}.icon-circleone:before{content:""}.icon-circletwo:before{content:""}.icon-circlethree:before{content:""}.icon-circlefour:before{content:""}.icon-circlefive:before{content:""}.icon-circlesix:before{content:""}.icon-circleseven:before{content:""}.icon-circleeight:before{content:""}.icon-circlenine:before{content:""}.icon-circlea:before{content:""}.icon-circleb:before{content:""}.icon-circlec:before{content:""}.icon-circled:before{content:""}.icon-circlee:before{content:""}.icon-circlef:before{content:""}.icon-circleg:before{content:""}.icon-circleh:before{content:""}.icon-circlei:before{content:""}.icon-circlej:before{content:""}.icon-circlek:before{content:""}.icon-circlel:before{content:""}.icon-circlem:before{content:""}.icon-circlen:before{content:""}.icon-circleo:before{content:""}.icon-circlep:before{content:""}.icon-circleq:before{content:""}.icon-circler:before{content:""}.icon-circles:before{content:""}.icon-circlet:before{content:""}.icon-circleu:before{content:""}.icon-circlev:before{content:""}.icon-circlew:before{content:""}.icon-circlex:before{content:""}.icon-circley:before{content:""}.icon-circlez:before{content:""}.icon-creeper:before{content:""}.icon-minecraft:before{content:""}.icon-minecraftalt:before{content:""}.icon-pixelsword:before{content:""}.icon-pixelbroadsword:before{content:""}.icon-pixelwand:before{content:""}.icon-pixelpotion:before{content:""}.icon-pixelpotionalt:before{content:""}.icon-pixelpickaxe:before{content:""}.icon-pixelbow:before{content:""}.icon-pixelarrow:before{content:""}.icon-pixelaxe:before{content:""}.icon-pixeldagger:before{content:""}.icon-pixelbastardsword:before{content:""}.icon-pixellance:before{content:""}.icon-pixelbattleaxe:before{content:""}.icon-pixelshovel:before{content:""}.icon-pixelsphere:before{content:""}.icon-pixelelixir:before{content:""}.icon-pixelchest:before{content:""}.icon-pixelshield:before{content:""}.icon-pixelheart:before{content:""}.icon-rudder:before{content:""}.icon-folderalt:before{content:""}.icon-removefolderalt:before{content:""}.icon-addfolderalt:before{content:""}.icon-deletefolderalt:before{content:""}.icon-openfolderalt:before{content:""}.icon-clipboardalt:before{content:""}.icon-pastealt:before{content:""}.icon-loadingflowccw:before{content:""}.icon-loadingflowcw:before{content:""}.icon-code:before{content:""}.icon-cloveralt:before{content:""}.icon-lips:before{content:""}.icon-kiss:before{content:""}.icon-manualshift:before{content:""}.icon-simcardthree:before{content:""}.icon-parthenon:before{content:""}.icon-addcomment:before{content:""}.icon-deletecomment:before{content:""}.icon-gender:before{content:""}.icon-callalt:before{content:""}.icon-outgoingcallalt:before{content:""}.icon-incomingcallalt:before{content:""}.icon-missedcallalt:before{content:""}.icon-export:before{content:""}.icon-import:before{content:""}.icon-cherryalt:before{content:""}.icon-panties:before{content:""}.icon-kimai:before{content:""}.icon-livejournal:before{content:""}.icon-livejournalalt:before{content:""}.icon-tagged:before{content:""}.icon-temple:before{content:""}.icon-mayanpyramid:before{content:""}.icon-egyptpyramid:before{content:""}.icon-tampermonkey:before{content:""}.icon-pushbullet:before{content:""}.icon-currents:before{content:""}.icon-communitysmall:before{content:""}.icon-squaregithub:before{content:""}.icon-projectfork:before{content:""}.icon-projectmerge:before{content:""}.icon-projectcompare:before{content:""}.icon-history:before{content:""}.icon-notebook:before{content:""}.icon-issue:before{content:""}.icon-issueclosed:before{content:""}.icon-issuereopened:before{content:""}.icon-rubyalt:before{content:""}.icon-lighton:before{content:""}.icon-lightoff:before{content:""}.icon-bellalt:before{content:""}.icon-versions:before{content:""}.icon-twog:before{content:""}.icon-threeg:before{content:""}.icon-fourg:before{content:""}.icon-gpsalt:before{content:""}.icon-circleloaderfull:before{content:""}.icon-circleloaderseven:before{content:""}.icon-circleloadersix:before{content:""}.icon-circleloaderfive:before{content:""}.icon-circleloaderfour:before{content:""}.icon-circleloaderthree:before{content:""}.icon-circleloadertwo:before{content:""}.icon-circleloaderone:before{content:""}.icon-circleloaderempty:before{content:""}.icon-whatsapp:before{content:""}.icon-whatsappalt:before{content:""}.icon-viber:before{content:""}.icon-squareviber:before{content:""}.icon-teamviewer:before{content:""}.icon-tunein:before{content:""}.icon-tuneinalt:before{content:""}.icon-weightscale:before{content:""}.icon-boxing:before{content:""}.icon-speedalt:before{content:""}.icon-scriptalt:before{content:""}.icon-splitthree:before{content:""}.icon-mergethree:before{content:""}.icon-layersthree:before{content:""}.icon-mutemic:before{content:""}.icon-zerply:before{content:""}.icon-circlegoogleplus:before{content:""}.icon-circletwitter:before{content:""}.icon-circlefacebook:before{content:""}.icon-circleyahoo:before{content:""}.icon-circlegithub:before{content:""}.icon-forumsalt:before{content:""}.icon-circlepath:before{content:""}.icon-circlevimeo:before{content:""}.icon-circlevine:before{content:""}.icon-instagramtwo:before{content:""}.icon-instagramthree:before{content:""}.icon-flickrthree:before{content:""}.icon-quora:before{content:""}.icon-squarequora:before{content:""}.icon-circlequora:before{content:""}.icon-picasa:before{content:""}.icon-branch:before{content:""}.icon-ingress:before{content:""}.icon-squarezerply:before{content:""}.icon-circlezerply:before{content:""}.icon-squarevimeo:before{content:""}.icon-squaretwitter:before{content:""}.icon-brightnessalt:before{content:""}.icon-brightnessalthalf:before{content:""}.icon-brightnessaltfull:before{content:""}.icon-brightnessaltauto:before{content:""}.icon-shirtbuttonthree:before{content:""}.icon-openshare:before{content:""}.icon-copyapp:before{content:""}.icon-bowl:before{content:""}.icon-cloudalt:before{content:""}.icon-cloudaltdownload:before{content:""}.icon-cloudaltupload:before{content:""}.icon-cloudaltsync:before{content:""}.icon-cloudaltprivate:before{content:""}.icon-flipboard:before{content:""}.icon-octoloaderempty:before{content:""}.icon-octoloaderone:before{content:""}.icon-octoloadertwo:before{content:""}.icon-octoloaderthree:before{content:""}.icon-octoloaderfour:before{content:""}.icon-octoloaderfive:before{content:""}.icon-octoloadersix:before{content:""}.icon-octoloaderseven:before{content:""}.icon-octoloaderfull:before{content:""}.icon-selectionsymbol:before{content:""}.icon-infinityalt:before{content:""}.icon-pullrequest:before{content:""}.icon-projectforkdelete:before{content:""}.icon-projectforkprivate:before{content:""}.icon-commit:before{content:""}.icon-htmlfile:before{content:""}.icon-pushalt:before{content:""}.icon-pullalt:before{content:""}.icon-photonineframes:before{content:""}.icon-wetfloor:before{content:""}.icon-instagramfour:before{content:""}.icon-circleinstagram:before{content:""}.icon-videocamerathree:before{content:""}.icon-subtitles:before{content:""}.icon-subtitlesoff:before{content:""}.icon-compress:before{content:""}.icon-baby:before{content:""}.icon-ducky:before{content:""}.icon-handswipe:before{content:""}.icon-swipeup:before{content:""}.icon-swipedown:before{content:""}.icon-twofingerswipedown:before{content:""}.icon-twofingerswipeup:before{content:""}.icon-doubletap:before{content:""}.icon-dribbblealt:before{content:""}.icon-circlecallmissed:before{content:""}.icon-circlecallincoming:before{content:""}.icon-circlecalloutgoing:before{content:""}.icon-circledownload:before{content:""}.icon-circleupload:before{content:""}.icon-minismile:before{content:""}.icon-minisad:before{content:""}.icon-minilaugh:before{content:""}.icon-minigrin:before{content:""}.icon-miniangry:before{content:""}.icon-minitongue:before{content:""}.icon-minitonguealt:before{content:""}.icon-miniwink:before{content:""}.icon-minitonguewink:before{content:""}.icon-miniconfused:before{content:""}.icon-soundright:before{content:""}.icon-soundleft:before{content:""}.icon-savetodrive:before{content:""}.icon-layerorderup:before{content:""}.icon-layerorderdown:before{content:""}.icon-layerorder:before{content:""}.icon-circledribbble:before{content:""}.icon-squaredribbble:before{content:""}.icon-handexpand:before{content:""}.icon-handpinch:before{content:""}.icon-fontserif:before{content:""}.icon-fontsansserif:before{content:""}.icon-fontrounded:before{content:""}.icon-fonthandwriting:before{content:""}.icon-fonttypewriter:before{content:""}.icon-fontcomic:before{content:""}.icon-fontcaligraphy:before{content:""}.icon-fontgothic:before{content:""}.icon-fontstencil:before{content:""}
    32/*# sourceMappingURL=maps/whhg.css.map */
  • musicidb-calendar/trunk/includes/partials/part-hover-cards.php

    r2363449 r3158876  
    4141                               
    4242                                <li>
    43                                     <a href="http://www.musicindustrydatabase.com/artist/artistDetail.htm?artistId=<?php esc_attr_e( $artist->get_id() ); ?>" class="musicidbLink" title="Visit <?php esc_attr_e( $artist->get_name() ); ?> on MusicIDB" target="_blank"><img src="//www.musicindustrydatabase.com/resources/images/social/MusicIDB-social-icon.jpg" alt="Visit <?php esc_attr_e( $artist->get_name() ); ?> on MusicIDB.com" title="Visit <?php esc_attr_e( $artist->get_name() ); ?> on MusicIDB.com" />
     43                                    <a href="https://musicidb.com/artist/artistDetail.htm?artistId=<?php esc_attr_e( $artist->get_id() ); ?>" class="musicidbLink" title="Visit <?php esc_attr_e( $artist->get_name() ); ?> on MusicIDB" target="_blank"><img src="//musicidb.com/resources/images/social/MusicIDB-social-icon.jpg" alt="Visit <?php esc_attr_e( $artist->get_name() ); ?> on MusicIDB.com" title="Visit <?php esc_attr_e( $artist->get_name() ); ?> on MusicIDB.com" />
    4444                                    </a>
    4545                                </li>
  • musicidb-calendar/trunk/js/admin-scripts.min.js

    r3080024 r3158876  
    1 !function(e){var t=e(document);function s(t){var s=e(t).find("ul.tabs");s.length<=0||s.hasClass("tabs-init")||(s.addClass("tabs-init"),s.each(function(){var t,s,i=e(this).find("a");(t=e(i.filter('[href="'+location.hash+'"]')[0]||i[0])).addClass("current"),s=e(t[0].hash),i.not(t).each(function(){e(this.hash).hide()}),e(this).on("click","a",function(i){t.removeClass("current"),s.hide(),t=e(this),s=e(this.hash),t.addClass("current"),s.show(),i.preventDefault()})}))}function i(s){if("object"!=typeof s)return!1;if(void 0===s.event_type)return console.error("event_type is required by musicidb_shortcode_field_update"),!1;if(void 0===s.field_selector)return console.error("field_selector is required by musicidb_shortcode_field_update"),!1;if(void 0===s.shortcode_att)return console.error("shortcode_att is required by musicidb_shortcode_field_update"),!1;if(void 0===s.output_selector)return console.error("output_selector is required by musicidb_shortcode_field_update"),!1;s={event_type:s.event_type,field_selector:s.field_selector,shortcode_att:s.shortcode_att,output_selector:s.output_selector,handler:void 0===s.handler?"val":s.handler,callback:void 0===s.callback?null:s.callback};t.on(s.event_type,s.field_selector,function(t){var i=e(s.output_selector),o=i.val(),n=o;"function"==typeof s.handler?n=s.handler(s.shortcode_att,o,e(this)):"string"==typeof s.handler&&(n=function(e,t,s,i){return"val"!=e&&"checked"!=e?s:("val"==e?o=i.val():"checked"==e&&(o=i.prop("checked")),c(t,o,s));var o}(s.handler,s.shortcode_att,o,e(this))),"function"==typeof s.callback&&s.callback(n),i.val(n)})}function c(e,t,s){var i=s.length,c=i-1,o=new RegExp("\\s"+e+'="[^"]*"',"g");return s.indexOf(" "+e)>0&&""!=t?s.replace(o," "+e+'="'+t+'"'):""!=t?s.substring(0,c)+" "+e+'="'+t+'"'+s.substring(i-1):s.replace(o,"")}t.ready(function(){s(document),t.on("click","#musicidb-events-settings-sc .copyToClipboard",function(t){t.preventDefault();var s=e(".shortcode"),i=e(".shortcode-slider");s.select(),i.select();try{document.execCommand("copy")?e(".copySuccess").fadeIn().delay(200).fadeOut():e(".copyFail").fadeIn().delay(200).fadeOut()}catch(t){console.log(t),e(".copyFail").fadeIn().delay(200).fadeOut()}}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #themeSelect",shortcode_att:"theme",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #idSelect",shortcode_att:"id",output_selector:"#musicidb-events-settings-sc .shortcode",handler:function(t,s,i){var o=i.find("input:checked"),n="";return o.length>0&&o.each(function(t){var s=e(this),i=s.val(),c=s.data("type");n+=c+":"+i,t<o.length-1&&(n+=",")}),c(t,n,s)}}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #buttonPositions",shortcode_att:"buttons",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #showDesc",shortcode_att:"descrip",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"checked"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #displyImgs",shortcode_att:"display",output_selector:"#musicidb-events-settings-sc .shortcode",handler:function(e,t,s){return c(e,s.prop("checked")?"img":"text",t)}}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #defaultView",shortcode_att:"view",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #largePicsOption",shortcode_att:"largepics",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"checked"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #showVenue",shortcode_att:"showvenue",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",shortcode_att:"showartist",field_selector:"#musicidb-events-settings-sc #showArtist",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #listStyleSelect",shortcode_att:"style",output_selector:"#musicidb-events-settings-sc .shortcode",handler:function(t,s,i){let o=i.val(),n="show",r="show",d=e("#showVenue"),l=e("#showArtist");switch(o){case"full":n="hide",r="show";break;case"compact":default:n="show",r="show"}return d.val(n),s=c("showvenue",n,s),l.val(r),c(t,o,s=c("showartist",r,s))}}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #selected-venue",shortcode_att:"id",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:function(t,s,i){var o=i.find("input:checked"),n="";return o.length>0&&o.each(function(t){var s=e(this).val();n+=s,t<o.length-1&&(n+=",")}),c(t,n,s)}}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #tickets-url",shortcode_att:"ticketDefault",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #flag-text",shortcode_att:"leftFlag",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #title-size",shortcode_att:"titleSize",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #amount",shortcode_att:"numevents",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #overlay",shortcode_att:"background",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #fallback-image",shortcode_att:"fallbackImage",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"});var o=e("#musiscidb-insert-shortcode");if(o.length>0){o.on("click",function(e){e.preventDefault(),tb_show("MusicIDB Shortcode Options",ajax_shortcode_options_url)}),t.on("click","#musicidb-events-settings-sc .insertShortcode",function(t){t.preventDefault();var s=e(this).data("target-class");if(void 0!==s)if(""!=s){var i=e(s="."+s);if(i.length>0){var c=i.val();wp.media.editor.insert(c),tb_remove()}}else console.error("target cannot be empty");else console.error("no target shortcode field supplied")});var n=e("#musicidb-events-settings").length>0;new MutationObserver(function(t){var i=e("#musicidb-events-settings");i.length<=0&&n?n=!1:i.length>0&&(n||(s("#musicidb-events-settings"),e("#TB_ajaxContent").css({width:"100%",height:"100%",padding:0}),e("#TB_window").css({overflow:"auto"})),n=!0)}).observe(document.body,{childList:!0})}})}(jQuery);
     1!function(e){var t=e(document);function s(t){var s=e(t).find("ul.tabs");s.length<=0||s.hasClass("tabs-init")||(s.addClass("tabs-init"),s.each(function(){var t,s,i=e(this).find("a");(t=e(i.filter('[href="'+location.hash+'"]')[0]||i[0])).addClass("current"),s=e(t[0].hash),i.not(t).each(function(){e(this.hash).hide()}),e(this).on("click","a",function(i){t.removeClass("current"),s.hide(),t=e(this),s=e(this.hash),t.addClass("current"),s.show(),i.preventDefault()})}))}function i(s){if("object"!=typeof s)return!1;if(void 0===s.event_type)return console.error("event_type is required by musicidb_shortcode_field_update"),!1;if(void 0===s.field_selector)return console.error("field_selector is required by musicidb_shortcode_field_update"),!1;if(void 0===s.shortcode_att)return console.error("shortcode_att is required by musicidb_shortcode_field_update"),!1;if(void 0===s.output_selector)return console.error("output_selector is required by musicidb_shortcode_field_update"),!1;s={event_type:s.event_type,field_selector:s.field_selector,shortcode_att:s.shortcode_att,output_selector:s.output_selector,handler:void 0===s.handler?"val":s.handler,callback:void 0===s.callback?null:s.callback};t.on(s.event_type,s.field_selector,function(t){var i=e(s.output_selector),o=i.val(),n=o;"function"==typeof s.handler?n=s.handler(s.shortcode_att,o,e(this)):"string"==typeof s.handler&&(n=function(e,t,s,i){return"val"!=e&&"checked"!=e?s:("val"==e?o=i.val():"checked"==e&&(o=i.prop("checked")),c(t,o,s));var o}(s.handler,s.shortcode_att,o,e(this))),"function"==typeof s.callback&&s.callback(n),i.val(n)})}function c(e,t,s){var i=s.length,c=i-1,o=new RegExp("\\s"+e+'="[^"]*"',"g");return s.indexOf(" "+e)>0&&""!=t?s.replace(o," "+e+'="'+t+'"'):""!=t?s.substring(0,c)+" "+e+'="'+t+'"'+s.substring(i-1):s.replace(o,"")}t.ready(function(){s(document),t.on("click","#musicidb-events-settings-sc .copyToClipboard",function(t){t.preventDefault();var s=e(".shortcode"),i=e(".shortcode-slider");s.select(),i.select();try{document.execCommand("copy")?e(".copySuccess").fadeIn().delay(200).fadeOut():e(".copyFail").fadeIn().delay(200).fadeOut()}catch(t){console.log(t),e(".copyFail").fadeIn().delay(200).fadeOut()}}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #themeSelect",shortcode_att:"theme",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #idSelect",shortcode_att:"id",output_selector:"#musicidb-events-settings-sc .shortcode",handler:function(t,s,i){var o=i.find("input:checked"),n="";return o.length>0&&o.each(function(t){var s=e(this),i=s.val(),c=s.data("type");n+=c+":"+i,t<o.length-1&&(n+=",")}),c(t,n,s)}}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #buttonPositions",shortcode_att:"buttons",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #showDesc",shortcode_att:"descrip",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"checked"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #displyImgs",shortcode_att:"display",output_selector:"#musicidb-events-settings-sc .shortcode",handler:function(e,t,s){return c(e,s.prop("checked")?"img":"text",t)}}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #defaultView",shortcode_att:"view",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #largePicsOption",shortcode_att:"largepics",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"checked"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #showVenue",shortcode_att:"showvenue",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",shortcode_att:"showartist",field_selector:"#musicidb-events-settings-sc #showArtist",output_selector:"#musicidb-events-settings-sc .shortcode",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-sc #listStyleSelect",shortcode_att:"style",output_selector:"#musicidb-events-settings-sc .shortcode",handler:function(t,s,i){let o=i.val(),n="show",r="show",d=e("#showVenue"),l=e("#showArtist");switch(o){case"listwithpics":case"largepics":case"bigpics":case"full":n="hide",r="show";break;case"simple":case"compact":default:n="show",r="show"}return d.val(n),s=c("showvenue",n,s),l.val(r),s=c("showartist",r,s),c(t,o,s)}}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #selected-venue",shortcode_att:"id",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:function(t,s,i){var o=i.find("input:checked"),n="";return o.length>0&&o.each(function(t){var s=e(this).val();n+=s,t<o.length-1&&(n+=",")}),c(t,n,s)}}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #tickets-url",shortcode_att:"ticketDefault",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #flag-text",shortcode_att:"leftFlag",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #title-size",shortcode_att:"titleSize",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #amount",shortcode_att:"numevents",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #overlay",shortcode_att:"background",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"}),i({event_type:"change",field_selector:"#musicidb-events-settings-featured-slider #fallback-image",shortcode_att:"fallbackImage",output_selector:"#musicidb-events-settings-featured-slider .shortcode-slider",handler:"val"});var o=e("#musiscidb-insert-shortcode");if(o.length>0){o.on("click",function(e){e.preventDefault(),tb_show("MusicIDB Shortcode Options",ajax_shortcode_options_url)}),t.on("click","#musicidb-events-settings-sc .insertShortcode",function(t){t.preventDefault();var s=e(this).data("target-class");if(void 0!==s)if(""!=s){var i=e(s="."+s);if(i.length>0){var c=i.val();wp.media.editor.insert(c),tb_remove()}}else console.error("target cannot be empty");else console.error("no target shortcode field supplied")});var n=e("#musicidb-events-settings").length>0;new MutationObserver(function(t){var i=e("#musicidb-events-settings");i.length<=0&&n?n=!1:i.length>0&&(n||(s("#musicidb-events-settings"),e("#TB_ajaxContent").css({width:"100%",height:"100%",padding:0}),e("#TB_window").css({overflow:"auto"})),n=!0)}).observe(document.body,{childList:!0})}})}(jQuery);
  • musicidb-calendar/trunk/js/src/admin-scripts.js

    r3080024 r3158876  
    149149                switch( list_style ) {
    150150
     151                    case 'listwithpics':
     152                    case 'largepics':
     153                    case 'bigpics':
    151154                    case 'full':
    152155                        show_venue = 'hide';
     
    154157                        break;
    155158
     159                    case 'simple':
    156160                    case 'compact':
    157161                        show_venue = 'show';
  • musicidb-calendar/trunk/musicidb-event-detail.php

    r2397314 r3158876  
    6060
    6161        <h2 class="eventTitleandArtists">
    62             <a href="//www.musicindustrydatabase.com/event/eventDetail.htm?eventId=<?php esc_attr_e( $event->get_id() ); ?>" target="_blank">
     62            <a href="//musicidb.com/event/eventDetail.htm?eventId=<?php esc_attr_e( $event->get_id() ); ?>" target="_blank">
    6363                <?php if($event->get_name() != "-"): ?>
    6464                    <?php esc_html_e( $event->get_name() ); ?>
     
    8282            <?php $venue = $event->get_venue(); ?>
    8383            <p>
    84                 at <a href="https://www.musicindustrydatabase.com/venue/getVenueDetail.htm?venueId=<?php esc_attr_e( $venue->get_id() ); ?>" title="<?php esc_attr_e( $venue_formatted_address ); ?>" target="_blank">
     84                at <a href="https://musicidb.com/venue/getVenueDetail.htm?venueId=<?php esc_attr_e( $venue->get_id() ); ?>" title="<?php esc_attr_e( $venue_formatted_address ); ?>" target="_blank">
    8585                    <?php esc_html_e( $venue->get_name() ); ?>
    8686                </a>
     
    147147                                                   
    148148                                                    <li>
    149                                                         <a href="http://www.musicindustrydatabase.com/artist/artistDetail.htm?artistId=<?php esc_attr_e( $eventArtist->get_id() ); ?>" class="musicidbLink" title="Visit <?php esc_attr_e ( $eventArtist->get_name() ); ?> on MusicIDB" target="_blank"><img src="//www.musicindustrydatabase.com/resources/images/social/MusicIDB-social-icon.jpg" alt="Visit <?php esc_attr_e( $eventArtist->get_name() ); ?> on MusicIDB.com" title="Visit <?php esc_attr_e( $eventArtist->get_name() ); ?> on MusicIDB.com" />
     149                                                        <a href="https://musicidb.com/artist/artistDetail.htm?artistId=<?php esc_attr_e( $eventArtist->get_id() ); ?>" class="musicidbLink" title="Visit <?php esc_attr_e ( $eventArtist->get_name() ); ?> on MusicIDB" target="_blank"><img src="//musicidb.com/resources/images/social/MusicIDB-social-icon.jpg" alt="Visit <?php esc_attr_e( $eventArtist->get_name() ); ?> on MusicIDB.com" title="Visit <?php esc_attr_e( $eventArtist->get_name() ); ?> on MusicIDB.com" />
    150150                                                        </a>
    151151                                                    </li>
     
    339339
    340340                                            <li>
    341                                                 <a href="//www.musicindustrydatabase.com/artist/artistDetail.htm?artistId=<?php esc_attr_e( $eventArtist->get_id() ); ?>" class="musicidbLink"
    342                                                         title="" target="_blank"><img src="//www.musicindustrydatabase.com/resources/images/social/MusicIDB-social-icon.jpg" alt="Visit <?php esc_attr_e( $eventArtist->get_name() ); ?> on MusicIDB.com" title="Visit <?php esc_attr_e( $eventArtist->get_name() ); ?> on MusicIDB.com">
     341                                                <a href="//musicidb.com/artist/artistDetail.htm?artistId=<?php esc_attr_e( $eventArtist->get_id() ); ?>" class="musicidbLink"
     342                                                        title="" target="_blank"><img src="//musicidb.com/resources/images/social/MusicIDB-social-icon.jpg" alt="Visit <?php esc_attr_e( $eventArtist->get_name() ); ?> on MusicIDB.com" title="Visit <?php esc_attr_e( $eventArtist->get_name() ); ?> on MusicIDB.com">
    343343                                                </a>
    344344                                            </li>
     
    502502    <?php if($event->get_id()): ?>
    503503        <div class="centerThisGuy modalFootLinkers">
    504             <a href="//www.musicindustrydatabase.com/event/eventDetail.htm?eventId=<?php esc_attr_e( $event->get_id() ); ?>" class="inconViewLink" title="View this Event on MusicIDB.com" target="_blank">
     504            <a href="//musicidb.com/event/eventDetail.htm?eventId=<?php esc_attr_e( $event->get_id() ); ?>" class="inconViewLink" title="View this Event on MusicIDB.com" target="_blank">
    505505            View on MusicIDB</a>
    506506        </div>
  • musicidb-calendar/trunk/musicidb-events-sc-output.php

    r3080024 r3158876  
    1414        $themeAtt = $musicidb_plugin->musicidb_strip_unicode( $atts['theme'] );
    1515        $theme = ($themeAtt == 'dark') ? 'blackBack' : 'lightBack';
    16         $descrip = ($atts['descrip'] && is_bool($atts['descrip'])) ? $musicidb_plugin->musicidb_strip_unicode( $atts['descrip'] ) : 0;
     16        $descrip = ($atts['descrip'] && $atts['descrip'] == 'true' ) ? 1 : 0;
    1717        $view = ( $atts['view'] && $atts['view'] == 'cal' && $supportsCalView ) ? 'cal' : 'list';
    1818        $display = ($atts['display'] && $atts['display'] == 'img') ? 'img' : 'text';
     
    2020        $entity_id = !empty( $atts['id'] ) ? $musicidb_plugin->musicidb_strip_unicode( $atts['id'] ) : $musicidb_plugin->musicidb_strip_unicode( $default_id );
    2121        $entity_type = !empty( $atts['type'] ) ? $musicidb_plugin->musicidb_strip_unicode( $atts['type'] ) : '';
    22         $list_style = !empty( $atts['style'] ) ? $musicidb_plugin->musicidb_strip_unicode( $atts['style'] ) : $default_style;
    23         $large_pics = !empty( $atts['largepics'] ) && $atts['largepics'] === 'true' ? true : false;
     22        $list_style = !empty( $atts['style'] ) ? musicidb_map_list_style( $musicidb_plugin->musicidb_strip_unicode( $atts['style'] ) ) : $default_style;
     23        $large_pics = ((!empty( $atts['largepics'] ) && $atts['largepics'] === 'true') || $list_style == 'largepics') ? true : false;
    2424
    2525        $show_venue = $atts['showvenue'];
     
    4141        switch( $list_style ) {
    4242            case 'full':
     43            case 'largepics':
    4344                $style_class = 'viewListPics';
    4445                break;
     
    138139            <?php if( !empty( $entities['venue'] ) && count( $entities['venue'] ) == 1 ): ?>
    139140                <div id="calView" class="current musicidb-tab">
    140                     <iframe style="width: 100%; border: none;" src="//www.musicindustrydatabase.com/venue/getVenueDetailFrame.htm?venueId=<?php esc_attr_e( $entities['venue'][0] ); ?>&showHead=false&showEvents=true&showGigs=false&view=cal&display=<?php echo esc_attr($display); ?>&theme=<?php echo esc_attr($themeAtt); ?>&descrip=<?php echo esc_attr($descrip); ?>" height="950"></iframe>
     141                    <iframe style="width: 100%; border: none;" src="//musicidb.com/venue/getVenueDetailFrame.htm?venueId=<?php esc_attr_e( $entities['venue'][0] ); ?>&showHead=false&showEvents=true&showGigs=false&view=cal&display=<?php echo esc_attr($display); ?>&theme=<?php echo esc_attr($themeAtt); ?>&descrip=<?php echo esc_attr($descrip); ?>" height="950"></iframe>
    141142                </div><!-- /#calView -->
    142143            <?php endif; ?>
     
    149150        <div class="musicidb-integration-mask"></div><!-- /.musicidb-integration-mask -->
    150151
    151         <a href="https://www.musicindustrydatabase.com" target="_blank" class="widgetsLink"><img id="musicidb-logo"
    152             src="//www.musicindustrydatabase.com/resources/images/MusicIDB-Logo.png" alt="MusicIDB - The Music Industry Database" title="MusicIDB - The Music Industry Database"></a>
     152        <a href="https://musicidb.com" target="_blank" class="widgetsLink">
     153            <img id="musicidb-logo"
     154            src="<?php echo esc_url(plugin_dir_url(__FILE__) . 'images/MusicIDB-Logo.png'); ?>" alt="MusicIDB - The Music Industry Database"
     155            title="MusicIDB - The Music Industry Database">
     156        </a>
    153157
    154158    </div><!-- /#venue.inside -->
  • musicidb-calendar/trunk/musicidb-view-compact.php

    r3080024 r3158876  
    9393                                    ?>
    9494                                    <h3 class="simpleTitle">
    95                                         <a href="https://www.musicindustrydatabase.com/venue/getVenueDetail.htm?venueId=<?php esc_attr_e( $venue->get_id() ); ?>" title="<?php esc_attr_e( $venue_formatted_address ); ?>" target="_blank">
     95                                        <a href="https://musicidb.com/venue/getVenueDetail.htm?venueId=<?php esc_attr_e( $venue->get_id() ); ?>" title="<?php esc_attr_e( $venue_formatted_address ); ?>" target="_blank">
    9696                                            <?php esc_html_e( $venue->get_name() ); ?>
    9797                                        </a>
     
    172172        <?php endif; ?>
    173173
    174         <li><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
     174        <li class="listEvent totalPagesLi"><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
    175175       
    176176        <?php
     
    185185        <?php endif; ?>
    186186
    187         <li><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
     187        <li class="listEvent totalPagesLi"><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
    188188   
    189189        <?php
  • musicidb-calendar/trunk/musicidb-view-full.php

    r3080024 r3158876  
    125125                                <?php else: ?>
    126126                                    <div>
    127                                         <img src="<?php echo esc_url( plugins_url('/images/defaultEvent.jpg', MUSICIDB_PLUGIN ), array( 'http', 'https' ) ); ?>" class="artistReplace alignleft defaultPic" />
     127                                        <img src="<?php echo esc_url( plugins_url('/images/defaultEvent.png', MUSICIDB_PLUGIN ), array( 'http', 'https' ) ); ?>" class="artistReplace alignleft defaultPic" />
    128128                                    </div>
    129129                                <?php endif; ?>
     
    156156                                        <span class="atText">at</span>
    157157
    158                                         <a href="https://www.musicindustrydatabase.com/venue/getVenueDetail.htm?venueId=<?php esc_attr_e( $venue->get_id() ); ?>" title="<?php esc_attr_e( $venue_formatted_address ); ?>" target="_blank" class="venueTitle">
     158                                        <a href="https://musicidb.com/venue/getVenueDetail.htm?venueId=<?php esc_attr_e( $venue->get_id() ); ?>" title="<?php esc_attr_e( $venue_formatted_address ); ?>" target="_blank" class="venueTitle">
    159159                                            <?php esc_html_e( $venue->get_name() ); ?>
    160160                                        </a>
     
    218218
    219219                                        <?php if( !empty( $event->get_more_info() ) ): ?>
     220                                            <?php var_dump( $descrip ); ?>
    220221                                            <div class="fullInfo" <?php if($descrip == false): ?>style="display: none;"<?php endif; ?>>
    221222                                                <div class="eventDescription">
     
    273274        <?php endif; ?>
    274275
    275         <li><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
     276        <li class="listEvent totalPagesLi"><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
    276277       
    277278        <?php
     
    286287        <?php endif; ?>
    287288
    288         <li><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
     289        <li class="listEvent totalPagesLi"><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
    289290   
    290291        <?php
  • musicidb-calendar/trunk/musicidb-view-posterboard.php

    r3080024 r3158876  
    118118                                <?php else: ?>
    119119                                    <div>
    120                                         <img src="<?php echo esc_url( plugins_url('/images/defaultEvent.jpg', MUSICIDB_PLUGIN ), array( 'http', 'https' ) ); ?>" class="artistReplace defaultPic" />
     120                                        <img src="<?php echo esc_url( plugins_url('/images/defaultEvent.png', MUSICIDB_PLUGIN ), array( 'http', 'https' ) ); ?>" class="artistReplace defaultPic" />
    121121                                    </div><!-- /.bandPicBox -->
    122122                                <?php endif; ?>
     
    155155                                        <span class="atText">at</span>
    156156
    157                                         <a href="https://www.musicindustrydatabase.com/venue/getVenueDetail.htm?venueId=<?php esc_attr_e( $venue->get_id() ); ?>" title="<?php esc_attr_e( $venue_formatted_address ); ?>" target="_blank" class="venueTitle">
     157                                        <a href="https://musicidb.com/venue/getVenueDetail.htm?venueId=<?php esc_attr_e( $venue->get_id() ); ?>" title="<?php esc_attr_e( $venue_formatted_address ); ?>" target="_blank" class="venueTitle">
    158158                                            <?php esc_html_e( $venue->get_name() ); ?>
    159159                                        </a>
     
    272272        <?php endif; ?>
    273273
    274         <li><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
     274        <li class="listEvent totalPagesLi"><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
    275275       
    276276        <?php
     
    285285        <?php endif; ?>
    286286
    287         <li><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
     287        <li class="listEvent totalPagesLi"><input type="hidden" value="<?php echo $pages; ?>" class="totalPages" /></li>
    288288   
    289289        <?php
  • musicidb-calendar/trunk/readme.txt

    r3080024 r3158876  
    44Tags: musicidb, music, industry, database, calendar, venue, concert, live, entertainment, events, bands, youtube, bandcamp
    55Requires at least: 4.0
    6 Tested up to: 6.5.2
     6Tested up to: 6.6.2
    77Requires PHP: 7.3
    8 Stable tag: 2.5.11
     8Stable tag: 2.5.12
    99License: GPLv3 or later
    1010License URI: https://www.gnu.org/licenses/gpl.html
     
    2828**Venues**
    2929
    30 - List View and calendar view available
    31 - Highly configurable
    32 - Tag or add any artist / band in the world
     30- Supports multiple views including event list with picss, text only list posterboard layout, grid calendar
     31- Tag or add any artist/band/dj
    3332- Tagging bands enables you to build a network of artists to drop on your calendar
    3433- 10,000+ artists in the database
    35 - Website visitors can enjoy instantly watching videos and playing music of artists tagged on your events in an elegant overlay on your website calendar page
    36 - Drop view templates in your local theme to override
     34- Website visitors can quickly watch videos and play embedded music of artists tagged on your events in a  lightbox (pop-up) on your website calendar page
    3735- Artist media can be embedded from YouTube, Bandcamp, SoundCloud, Spotify and any other services that provide embeddable media.
    38 - MusicIDB calendars display event images on each date
    39 - *Pro* - Create recurring events such as weekly Open Mic, Karaoke or Trivia events, or weekly promotional events such as food specials, and much more.
     36- Override views by copying plugin views in your local theme folder
     37- MusicIDB calendar views allows event images on each date
     38- *Pro - Create recurring events such as weekly Open Mic, Karaoke or Trivia events, or weekly promotional events such as food specials, and much more.
    4039
    4140This plugin requires a MusicIDB.com account and API key, which you can generate from your venue page once it has been claimed and approved.
     
    51501. From your WordPress dashboard, visit **Plugins** > Add New
    52512. Search for "**MusicIDB Events Calendar**" and install and activate the plugin
    53 3. **Visit [MusicIDB.com](http://MusicIDB.com)**, and create and **log in to your account**
     523. **Visit [MusicIDB.com](https://MusicIDB.com)**, and create and **log in to your account**
    54534. **Create and claim** your **venue listing** or **artist listing**
    55545. While your claim is being processed, **create a few of your upcoming events** by clicking on your MusicIDB.com dashboard calendar (tag your artist or venue listing and make it the default venue with the checkbox)
     
    6463= Do I need a MusicIDB.com Account? =
    6564
    66 Yes, you will need an account on MusicIDB before you will be able to use this plugin. Registration is easy, [click here](http://www.musicindustrydatabase.com/user/registration.htm) to create an account.
     65Yes, you will need an account on MusicIDB before you will be able to use this plugin. Registration is easy, [click here](https://musicidb.com/user/registration.htm) to create an account.
    6766
    6867You won't need to log in to your website to update your events, you'll be able to manage your website events directly from your MusicIDB.com dashboard.  The ability to create and manage events from within your website is intended to be available in a future version of the plugin. 
     
    184183== Screenshots ==
    185184
    186 1. Event list with pictures example (popular for venues - dark theme)
    187 2. Calendar view example (dark theme)
    188 3. Simple list example (popular for artists)
    189 4. View Event pop-up with artist media
    190 5. Featured events slider examples
    191 6. Connecting API Key and adding additional Artists or Venues
    192 7. Shortcode generator and options
    193 8. A light theme calendar view example
    194 9. Creating an Event
    195 10. Generate API Key from Venue page on MusicIDB
     1851. Event list with pics layout (popular for venues - dark theme)
     1862. *NEW - Posterboard layout
     1873. Calendar view layout
     1884. *NEW - Event list with BIG pics layout
     1895. Simple list layout (popular for artists)
     1906. Event detail pop-up (tagged artist with music video)
     1917. Featured events slider examples
     1928. Shortcode generator and options
     1939. Plugin settings with option to add additional artists or venues
     19410. Creating an event
     19511. Generate API Key (from your Venue page on MusicIDB)
    196196
    197197== Changelog ==
     198= 2.5.12 =
     199* Changed shortcode slugs for list styles - old slugs are still supported
     200* Updated log, plugin repository images, and screenshots
     201* Changed default shortcode output to include images on calendar
     202* Fixed bug with descrip shortcode attribute
     203* Improved shortcode generator UI
     204* Minor CSS updates for admin & frontend
     205
    198206= 2.5.11 =
    199207* Changed filenames for existing views
Note: See TracChangeset for help on using the changeset viewer.