diff --git a/Havana-Web/src/main/java/org/alexdev/http/controllers/groups/GroupDiscussionsController.java b/Havana-Web/src/main/java/org/alexdev/http/controllers/groups/GroupDiscussionsController.java index cee0eb1..07b8d91 100644 --- a/Havana-Web/src/main/java/org/alexdev/http/controllers/groups/GroupDiscussionsController.java +++ b/Havana-Web/src/main/java/org/alexdev/http/controllers/groups/GroupDiscussionsController.java @@ -50,6 +50,24 @@ public static void viewDiscussions(WebConnection webConnection) { return; } + if (group.getAlias() != null) { + if (group.getAlias().equalsIgnoreCase("battleball_rebound")) { + webConnection.session().set("page", "games"); + } + + if (group.getAlias().equalsIgnoreCase("lido")) { + webConnection.session().set("page", "games"); + } + + if (group.getAlias().equalsIgnoreCase("snow_storm")) { + webConnection.session().set("page", "games"); + } + + if (group.getAlias().equalsIgnoreCase("wobble_squabble")) { + webConnection.session().set("page", "games"); + } + } + var template = webConnection.template("groups/view_discussions"); template.set("group", group); render(webConnection, group, template, 1); @@ -97,6 +115,24 @@ public static void viewDiscussionsPage(WebConnection webConnection) { } + if (group.getAlias() != null) { + if (group.getAlias().equalsIgnoreCase("battleball_rebound")) { + webConnection.session().set("page", "games"); + } + + if (group.getAlias().equalsIgnoreCase("lido")) { + webConnection.session().set("page", "games"); + } + + if (group.getAlias().equalsIgnoreCase("snow_storm")) { + webConnection.session().set("page", "games"); + } + + if (group.getAlias().equalsIgnoreCase("wobble_squabble")) { + webConnection.session().set("page", "games"); + } + } + var template = webConnection.template("groups/view_discussions"); template.set("group", group); render(webConnection, group, template, page); diff --git a/tools/groups.sql b/tools/groups.sql index 091a550..bb85412 100644 --- a/tools/groups.sql +++ b/tools/groups.sql @@ -96,7 +96,7 @@ INSERT INTO `cms_stickers` (`id`, `user_id`, `x`, `y`, `z`, `sticker_id`, `skin_ (42, 1, '85', '383', '94', 13, 0, 2, '[b][color=#ffce00]Power Drill: [/color][/b][color=#fe6301]Bounce on any tile in \rthe field to clear it. [/color]', 1, ''), (43, 1, '369', '317', '20', 13, 4, 2, '[b]Free Battleball[/b]\r\rYes until further notice we\'re letting you play both SnowStorm and Battleball for free - no tickets required.\r\r[b]Please note:[/b]\r* skill levels don\'t apply for the free games - everyone can play everyone', 1, ''), (44, 1, '86', '318', '100', 13, 0, 2, '[b][color=#ffce00]Battle Bomb: [/color][/b][color=#fe6301]Clears all tiles \raround it- even yours![/color]', 1, ''), - (45, 1, '30', '30', '16', 13, 2, 2, '[b]Want to know how to play?\r\rRead the instructions in our [url=https://classichabbo.com/groups/1/id/discussions]discussion forum[/url][/b]', 1, ''), + (45, 1, '30', '30', '16', 13, 2, 2, '[b]Want to know how to play?\r\rRead the instructions in our [url=/groups/2/id/discussions]discussion forum[/url][/b]', 1, ''), (46, 1, '84', '452', '83', 13, 0, 2, '[b][color=#ffce00]Light Bulb: [/color][/b][color=#fe6301]Turns all the tiles in a \rsmall area your colour.[/color]', 1, ''), (47, 1, '84', '584', '96', 13, 0, 2, '[b][color=#ffce00]Flashlight: [/color][/b][color=#fe6301]Colours all the tiles in a\r straight line in front of you[/color]', 1, ''), (48, 1, '85', '255', '89', 13, 0, 2, '[b][color=#ffce00]Box of pins: [/color][/b][color=#fe6301]Bouncing on these\rwill burst your ball![/color]', 1, ''), @@ -157,7 +157,7 @@ INSERT INTO `cms_stickers` (`id`, `user_id`, `x`, `y`, `z`, `sticker_id`, `skin_ (103, 0, '644', '11', '19', 11000, 5, 5, '', 1, ''), (104, 0, '0', '0', '0', 11200, 1, 5, '', 0, ''), (105, 0, '0', '0', '0', 11300, 1, 5, '', 0, ''), - (106, 1, '69', '194', '6', 13, 2, 5, '[b]Hey dude! Don\'t you know the rules? Check out the How to Play thread in the [url=https://classichabbo.com/groups/snowstorm/discussions]discussion forum[/url][/b]', 1, ''), + (106, 1, '69', '194', '6', 13, 2, 5, '[b]Hey dude! Don\'t you know the rules? Check out the How to Play thread in the [url=/groups/5/id/discussions]discussion forum[/url][/b]', 1, ''), (107, 1, '516', '1083', '1', 13, 2, 5, '[b]Not again...[/b]', 1, ''), (108, 1, '556', '317', '4', 183, 0, 5, '', 1, ''); /*!40000 ALTER TABLE `cms_stickers` ENABLE KEYS */; diff --git a/tools/www-tpl/default-en/groups/discussion.tpl b/tools/www-tpl/default-en/groups/discussion.tpl index 491bcba..3465e37 100644 --- a/tools/www-tpl/default-en/groups/discussion.tpl +++ b/tools/www-tpl/default-en/groups/discussion.tpl @@ -97,18 +97,50 @@ body { behavior: url({{ site.staticContentPath }}/web-gallery/js/csshover.htc);
- + {% endif %} + + {% if session.currentPage == "community" %} + + {% endif %}
@@ -381,4 +413,4 @@ HabboView.run(); - \ No newline at end of file + diff --git a/tools/www-tpl/default-en/groups/view_discussions.tpl b/tools/www-tpl/default-en/groups/view_discussions.tpl index 7d2cf3e..ee50ed4 100644 --- a/tools/www-tpl/default-en/groups/view_discussions.tpl +++ b/tools/www-tpl/default-en/groups/view_discussions.tpl @@ -97,18 +97,50 @@ body { behavior: url({{ site.staticContentPath }}/web-gallery/js/csshover.htc);
- + {% endif %} + + {% if session.currentPage == "community" %} + + {% endif %}
diff --git a/tools/www/web-gallery/styles/myhabbo/assets.css b/tools/www/web-gallery/styles/myhabbo/assets.css new file mode 100644 index 0000000..5ecfffd --- /dev/null +++ b/tools/www/web-gallery/styles/myhabbo/assets.css @@ -0,0 +1,14853 @@ +div.s_sticker_arrow_down { + width: 32px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/sticker_arrow_down.gif); +} +div.s_sticker_arrow_down_pre { + background: url(/c_images/myhabbo/stickers/sticker_arrow_down.gif) no-repeat 50% 50%; +} +div.s_sticker_arrow_left { + width: 45px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/sticker_arrow_left.gif); +} +div.s_sticker_arrow_left_pre { + background: url(/c_images/myhabbo/stickers/sticker_arrow_left.gif) no-repeat 50% 50%; +} +div.s_xmas2009_snowshake { + width: 101px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/xmas2009_snowshake.gif); +} +div.s_xmas2009_snowshake_pre { + background: url(/c_images/myhabbo/stickers/xmas2009_snowshake.gif) no-repeat 50% 50%; +} +div.s_sticker_arrow_up { + width: 36px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/sticker_arrow_up.gif); +} +div.s_sticker_arrow_up_pre { + background: url(/c_images/myhabbo/stickers/sticker_arrow_up.gif) no-repeat 50% 50%; +} +div.s_sticker_arrow_right { + width: 45px; height: 34px; + background-image: url(/c_images/myhabbo/stickers/sticker_arrow_right.gif); +} +div.s_sticker_arrow_right_pre { + background: url(/c_images/myhabbo/stickers/sticker_arrow_right.gif) no-repeat 50% 50%; +} +div.s_finger_push { + width: 73px; height: 43px; + background-image: url(/c_images/myhabbo/stickers/finger_push.gif); +} +div.s_finger_push_pre { + background: url(/c_images/myhabbo/stickers/finger_push.gif) no-repeat 50% 50%; +} +div.s_sticker_pointing_hand_1 { + width: 150px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_pointing_hand_1.gif); +} +div.s_sticker_pointing_hand_1_pre { + background: url(/c_images/myhabbo/stickers/sticker_pointing_hand_1.gif) no-repeat 50% 50%; +} +div.s_sticker_pirateHat_2 { + width: 43px; height: 45px; + background-image: url(/c_images/myhabbo/stickers/sticker_pirateHat_2.gif); +} +div.s_sticker_pirateHat_2_pre { + background: url(/c_images/myhabbo/stickers/sticker_pirateHat_2.gif) no-repeat 50% 50%; +} +div.s_sticker_pirateHat_1 { + width: 59px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/sticker_pirateHat_1.gif); +} +div.s_sticker_pirateHat_1_pre { + background: url(/c_images/myhabbo/stickers/sticker_pirateHat_1.gif) no-repeat 50% 50%; +} +div.s_sticker_argHook { + width: 20px; height: 25px; + background-image: url(/c_images/myhabbo/stickers/sticker_argHook.gif); +} +div.s_sticker_argHook_pre { + background: url(/c_images/myhabbo/stickers/sticker_argHook.gif) no-repeat 50% 50%; +} +div.s_superheroes_sticker_laser_eye { + width: 43px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/superheroes_sticker_laser_eye.gif); +} +div.s_superheroes_sticker_laser_eye_pre { + background: url(/c_images/myhabbo/stickers/superheroes_sticker_laser_eye.gif) no-repeat 50% 50%; +} +div.s_superheroes_sticker_capa_me { + width: 65px; height: 86px; + background-image: url(/c_images/myhabbo/stickers/superheroes_sticker_capa_me.gif); +} +div.s_superheroes_sticker_capa_me_pre { + background: url(/c_images/myhabbo/stickers/superheroes_sticker_capa_me.gif) no-repeat 50% 50%; +} +div.s_traxRecord_sticker { + width: 175px; height: 188px; + background-image: url(/c_images/myhabbo/stickers/traxRecord_sticker.gif); +} +div.s_traxRecord_sticker_pre { + background: url(/c_images/myhabbo/stickers/traxRecord_sticker.gif) no-repeat 50% 50%; +} +div.s_earthhour_wwf_sticker { + width: 145px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/earthhour_wwf_sticker.png); +} +div.s_earthhour_wwf_sticker_pre { + background: url(/c_images/myhabbo/stickers/earthhour_wwf_sticker.png) no-repeat 50% 50%; +} +div.s_habbolympics_teamsticker { + width: 148px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/habbolympics_teamsticker.gif); +} +div.s_habbolympics_teamsticker_pre { + background: url(/c_images/myhabbo/stickers/habbolympics_teamsticker.gif) no-repeat 50% 50%; +} +div.s_stick_twil_ww { + width: 157px; height: 142px; + background-image: url(/c_images/myhabbo/stickers/stick_twil_ww.gif); +} +div.s_stick_twil_ww_pre { + background: url(/c_images/myhabbo/stickers/stick_twil_ww.gif) no-repeat 50% 50%; +} +div.s_stick_grefusa_remarca { + width: 144px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/stick_grefusa_remarca.png); +} +div.s_stick_grefusa_remarca_pre { + background: url(/c_images/myhabbo/stickers/stick_grefusa_remarca.png) no-repeat 50% 50%; +} +div.s_suosikki_sticker_dragon { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/suosikki_sticker_dragon.png); +} +div.s_suosikki_sticker_dragon_pre { + background: url(/c_images/myhabbo/stickers/suosikki_sticker_dragon.png) no-repeat 50% 50%; +} +div.s_sticker_trophy_award { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/sticker_trophy_award.gif); +} +div.s_sticker_trophy_award_pre { + background: url(/c_images/myhabbo/stickers/sticker_trophy_award.gif) no-repeat 50% 50%; +} +div.s_stick_country_sheep1 { + width: 45px; height: 45px; + background-image: url(/c_images/myhabbo/stickers/SaferInternet2008.gif); +} +div.s_stick_country_sheep1_pre { + background: url(/c_images/myhabbo/stickers/stick_country_sheep1.gif) no-repeat 50% 50%; +} +div.s_SaferInternet2008 { + width: 139px; height: 130px; + background-image: url(/c_images/myhabbo/stickers/SaferInternet2008.gif); +} +div.s_SaferInternet2008_pre { + background: url(/c_images/myhabbo/stickers/SaferInternet2008.gif) no-repeat 50% 50%; +} +div.s_st_day5 { + width: 94px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/st_day5.png); +} +div.s_st_day5_pre { + background: url(/c_images/myhabbo/stickers/st_day5.png) no-repeat 50% 50%; +} +div.s_st_day4 { + width: 94px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/st_day4.png); +} +div.s_st_day4_pre { + background: url(/c_images/myhabbo/stickers/st_day4.png) no-repeat 50% 50%; +} +div.s_st_day3 { + width: 94px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/st_day3.png); +} +div.s_st_day3_pre { + background: url(/c_images/myhabbo/stickers/st_day3.png) no-repeat 50% 50%; +} +div.s_st_day2 { + width: 94px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/st_day2.png); +} +div.s_st_day2_pre { + background: url(/c_images/myhabbo/stickers/st_day2.png) no-repeat 50% 50%; +} +div.s_st_day1 { + width: 94px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/st_day1.png); +} +div.s_st_day1_pre { + background: url(/c_images/myhabbo/stickers/st_day1.png) no-repeat 50% 50%; +} +div.s_1goal_sticker { + width: 247px; height: 122px; + background-image: url(/c_images/myhabbo/stickers/1goal_sticker.gif); +} +div.s_1goal_sticker_pre { + background: url(/c_images/myhabbo/stickers/1goal_sticker.gif) no-repeat 50% 50%; +} +div.s_Chossy { + width: 120px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/Chossy.gif); +} +div.s_Chossy_pre { + background: url(/c_images/myhabbo/stickers/Chossy.gif) no-repeat 50% 50%; +} +div.s_chossy_maal { + width: 193px; height: 184px; + background-image: url(/c_images/myhabbo/stickers/chossy_maal.gif); +} +div.s_chossy_maal_pre { + background: url(/c_images/myhabbo/stickers/chossy_maal.gif) no-repeat 50% 50%; +} +div.s_HW_sticker_football_win_2010_2 { + width: 195px; height: 197px; + background-image: url(/c_images/myhabbo/stickers/HW_sticker_football_win_2010_2.gif); +} +div.s_HW_sticker_football_win_2010_2_pre { + background: url(/c_images/myhabbo/stickers/HW_sticker_football_win_2010_2.gif) no-repeat 50% 50%; +} +div.s_ss_snowflake1 { + width: 33px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/ss_snowflake1.gif); +} +div.s_ss_snowflake1_pre { + background: url(/c_images/myhabbo/stickers/ss_snowflake1.gif) no-repeat 50% 50%; +} +div.s_sticker_plateBorder_v1 { + width: 53px; height: 223px; + background-image: url(/c_images/myhabbo/stickers/sticker_plateBorder_v1.gif); +} +div.s_sticker_plateBorder_v1_pre { + background: url(/c_images/myhabbo/stickers/sticker_plateBorder_v1.gif) no-repeat 50% 50%; +} +div.s_sticker_littleCandle { + width: 17px; height: 23px; + background-image: url(/c_images/myhabbo/stickers/sticker_littleCandle.gif); +} +div.s_sticker_littleCandle_pre { + background: url(/c_images/myhabbo/stickers/sticker_littleCandle.gif) no-repeat 50% 50%; +} +div.s_sticker_hween09_videocam2 { + width: 117px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/stick_hween09_videocam2.gif); +} +div.s_stick_hween09_videocam2_pre { + background: url(/c_images/myhabbo/stickers/stick_hween09_videocam2.gif) no-repeat 50% 50%; +} +div.s_H4D_Sticker_04 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/H4D_Sticker_04.gif); +} +div.s_H4D_Sticker_04_pre { + background: url(/c_images/myhabbo/stickers/H4D_Sticker_04.gif) no-repeat 50% 50%; +} +div.s_H4D_Sticker_02 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/H4D_Sticker_02.gif); +} +div.s_H4D_Sticker_02_pre { + background: url(/c_images/myhabbo/stickers/H4D_Sticker_02.gif) no-repeat 50% 50%; +} +div.s_H4D_Sticker_01 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/H4D_Sticker_01.gif); +} +div.s_H4D_Sticker_01_pre { + background: url(/c_images/myhabbo/stickers/H4D_Sticker_01.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_vertical_001 { + width: 50px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif); +} +div.s_easter_eggs_vertical_001_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_horizontal { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif); +} +div.s_easter_eggs_horizontal_pre { + background: url(/c_images/myhabbo/stickers/sticker_es_grefusa_2.gif) no-repeat 50% 50%; +} +div.s_sticker_es_grefusa_2 { + width: 144px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/sticker_es_grefusa_2.gif); +} +div.s_sticker_es_grefusa_2_pre { + background: url(/c_images/myhabbo/stickers/sticker_es_grefusa_2.gif) no-repeat 50% 50%; +} +div.s_sticker_es_grefusa_1 { + width: 146px; height: 101px; + background-image: url(/c_images/myhabbo/stickers/sticker_es_grefusa_1.gif); +} +div.s_sticker_es_grefusa_1_pre { + background: url(/c_images/myhabbo/stickers/sticker_es_grefusa_1.gif) no-repeat 50% 50%; +} +div.s_stick_telepizza_scooter { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/stick_telepizza_scooter.png); +} +div.s_stick_telepizza_scooter_pre { + background: url(/c_images/myhabbo/stickers/stick_telepizza_scooter.png) no-repeat 50% 50%; +} +div.s_warchild { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/warchild.gif); +} +div.s_warchild_pre { + background: url(/c_images/myhabbo/stickers/warchild.gif) no-repeat 50% 50%; +} +div.s_zombieBoy2 { + width: 47px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/zombieBoy2.gif); +} +div.s_zombieBoy2_pre { + background: url(/c_images/myhabbo/stickers/zombieBoy2.gif) no-repeat 50% 50%; +} +div.s_zombie_violet { + width: 51px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/zombie_violet.gif); +} +div.s_zombie_violet_pre { + background: url(/c_images/myhabbo/stickers/zombie_violet.gif) no-repeat 50% 50%; +} +div.s_zombie { + width: 48px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/zombie.gif); +} +div.s_zombie_pre { + background: url(/c_images/myhabbo/stickers/zombie.gif) no-repeat 50% 50%; +} +div.s_sticker_chauves_souris { + width: 121px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/sticker_chauves_souris.gif); +} +div.s_sticker_chauves_souris_pre { + background: url(/c_images/myhabbo/stickers/sticker_chauves_souris.gif) no-repeat 50% 50%; +} +div.s_xmas_snowlantern_anim { + width: 137px; height: 112px; + background-image: url(/c_images/myhabbo/stickers/xmas_snowlantern_anim.gif); +} +div.s_xmas_snowlantern_anim_pre { + background: url(/c_images/myhabbo/stickers/xmas_snowlantern_anim.gif) no-repeat 50% 50%; +} +div.s_hween10card6 { + width: 132px; height: 212px; + background-image: url(/c_images/myhabbo/stickers/hween10card6.png); +} +div.s_hween10card6_pre { + background: url(/c_images/myhabbo/stickers/hween10card6.png) no-repeat 50% 50%; +} +div.s_hween10card5 { + width: 132px; height: 212px; + background-image: url(/c_images/myhabbo/stickers/hween10card5.png); +} +div.s_hween10card5_pre { + background: url(/c_images/myhabbo/stickers/hween10card5.png) no-repeat 50% 50%; +} +div.s_hween10card4 { + width: 132px; height: 212px; + background-image: url(/c_images/myhabbo/stickers/hween10card4.png); +} +div.s_hween10card4_pre { + background: url(/c_images/myhabbo/stickers/hween10card4.png) no-repeat 50% 50%; +} +div.s_hween10card3 { + width: 132px; height: 212px; + background-image: url(/c_images/myhabbo/stickers/hween10card3.png); +} +div.s_hween10card3_pre { + background: url(/c_images/myhabbo/stickers/hween10card3.png) no-repeat 50% 50%; +} +div.s_hween10card2 { + width: 132px; height: 212px; + background-image: url(/c_images/myhabbo/stickers/hween10card2.png); +} +div.s_hween10card2_pre { + background: url(/c_images/myhabbo/stickers/hween10card2.png) no-repeat 50% 50%; +} +div.s_hween10card1 { + width: 132px; height: 212px; + background-image: url(/c_images/myhabbo/stickers/hween10card1.png); +} +div.s_hween10card1_pre { + background: url(/c_images/myhabbo/stickers/hween10card1.png) no-repeat 50% 50%; +} +div.s_hween10_card_back { + width: 132px; height: 212px; + background-image: url(/c_images/myhabbo/stickers/hween10_card_back.png); +} +div.s_hween10_card_back_pre { + background: url(/c_images/myhabbo/stickers/hween10_card_back.png) no-repeat 50% 50%; +} +div.s_stick_crepusculo_v03 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/stick_crepusculo_v03.png); +} +div.s_stick_crepusculo_v03_pre { + background: url(/c_images/myhabbo/stickers/stick_crepusculo_v03.png) no-repeat 50% 50%; +} +div.s_pins_rockinrio { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/pins_rockinrio.gif); +} +div.s_pins_rockinrio_pre { + background: url(/c_images/myhabbo/stickers/pins_rockinrio.gif) no-repeat 50% 50%; +} +div.s_sticker_bw_sharkOver { + width: 145px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/sticker_bw_sharkOver.gif); +} +div.s_sticker_bw_sharkOver_pre { + background: url(/c_images/myhabbo/stickers/sticker_bw_sharkOver.gif) no-repeat 50% 50%; +} +div.s_sticker_bw_fins { + width: 400px; height: 400px; + background-image: url(/c_images/myhabbo/stickers/sticker_bw_fins.gif); +} +div.s_sticker_bw_fins_pre { + background: url(/c_images/myhabbo/stickers/sticker_bw_fins.gif) no-repeat 50% 50%; +} +div.s_sticker_despMe_5 { + width: 146px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/sticker_despMe_5.gif); +} +div.s_sticker_despMe_5_pre { + background: url(/c_images/myhabbo/stickers/sticker_despMe_5.gif) no-repeat 50% 50%; +} +div.s_sticker_despMe_4 { + width: 140px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/sticker_despMe_4.gif); +} +div.s_sticker_despMe_4_pre { + background: url(/c_images/myhabbo/stickers/sticker_despMe_4.gif) no-repeat 50% 50%; +} +div.s_sticker_despMe_3 { + width: 93px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/sticker_despMe_3.gif); +} +div.s_sticker_despMe_3_pre { + background: url(/c_images/myhabbo/stickers/sticker_despMe_3.gif) no-repeat 50% 50%; +} +div.s_sticker_despme_2 { + width: 137px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/sticker_despme_2.gif); +} +div.s_sticker_despme_2_pre { + background: url(/c_images/myhabbo/stickers/sticker_despme_2.gif) no-repeat 50% 50%; +} +div.s_sticker_despme_1 { + width: 72px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/sticker_despme_1.gif); +} +div.s_sticker_despme_1_pre { + background: url(/c_images/myhabbo/stickers/sticker_despme_1.gif) no-repeat 50% 50%; +} +div.s_stickers_venezuela { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_venezuela.gif); +} +div.s_stickers_venezuela_pre { + background: url(/c_images/myhabbo/stickers/stickers_venezuela.gif) no-repeat 50% 50%; +} +div.s_stickers_uruguay { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_uruguay.gif); +} +div.s_stickers_uruguay_pre { + background: url(/c_images/myhabbo/stickers/stickers_uruguay.gif) no-repeat 50% 50%; +} +div.s_stickers_peru { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_peru.gif); +} +div.s_stickers_peru_pre { + background: url(/c_images/myhabbo/stickers/stickers_peru.gif) no-repeat 50% 50%; +} +div.s_stickers_paraguay { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_paraguay.gif); +} +div.s_stickers_paraguay_pre { + background: url(/c_images/myhabbo/stickers/stickers_paraguay.gif) no-repeat 50% 50%; +} +div.s_stickers_panama { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_panama.gif); +} +div.s_stickers_panama_pre { + background: url(/c_images/myhabbo/stickers/stickers_panama.gif) no-repeat 50% 50%; +} +div.s_stickers_nicaragua { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_nicaragua.gif); +} +div.s_stickers_nicaragua_pre { + background: url(/c_images/myhabbo/stickers/stickers_nicaragua.gif) no-repeat 50% 50%; +} +div.s_stickers_mexico { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_mexico.gif); +} +div.s_stickers_mexico_pre { + background: url(/c_images/myhabbo/stickers/stickers_mexico.gif) no-repeat 50% 50%; +} +div.s_stickers_honduras { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_honduras.gif); +} +div.s_stickers_honduras_pre { + background: url(/c_images/myhabbo/stickers/stickers_honduras.gif) no-repeat 50% 50%; +} +div.s_stickers_espain { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_espain.gif); +} +div.s_stickers_espain_pre { + background: url(/c_images/myhabbo/stickers/stickers_espain.gif) no-repeat 50% 50%; +} +div.s_stickers_elsalvador { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_elsalvador.gif); +} +div.s_stickers_elsalvador_pre { + background: url(/c_images/myhabbo/stickers/stickers_elsalvador.gif) no-repeat 50% 50%; +} +div.s_stickers_ecuador { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_ecuador.gif); +} +div.s_stickers_ecuador_pre { + background: url(/c_images/myhabbo/stickers/stickers_ecuador.gif) no-repeat 50% 50%; +} +div.s_stickers_costarica { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_costarica.gif); +} +div.s_stickers_costarica_pre { + background: url(/c_images/myhabbo/stickers/stickers_costarica.gif) no-repeat 50% 50%; +} +div.s_stickers_colombia { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_colombia.gif); +} +div.s_stickers_colombia_pre { + background: url(/c_images/myhabbo/stickers/stickers_colombia.gif) no-repeat 50% 50%; +} +div.s_stickers_chile { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_chile.gif); +} +div.s_stickers_chile_pre { + background: url(/c_images/myhabbo/stickers/stickers_chile.gif) no-repeat 50% 50%; +} +div.s_stickers_bolivia { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_bolivia.gif); +} +div.s_stickers_bolivia_pre { + background: url(/c_images/myhabbo/stickers/stickers_bolivia.gif) no-repeat 50% 50%; +} +div.s_stickers_argentina { + width: 99px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/stickers_argentina.gif); +} +div.s_stickers_argentina_pre { + background: url(/c_images/myhabbo/stickers/stickers_argentina.gif) no-repeat 50% 50%; +} +div.s_xmas2009_elfbadge { + width: 94px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/xmas2009_elfbadge.gif); +} +div.s_xmas2009_elfbadge_pre { + background: url(/c_images/myhabbo/stickers/xmas2009_elfbadge.gif) no-repeat 50% 50%; +} +div.s_xmas2009_reindeerpin { + width: 200px; height: 200px; + background-image: url(/c_images/myhabbo/stickers/xmas2009_reindeerpin.gif); +} +div.s_xmas2009_reindeerpin_pre { + background: url(/c_images/myhabbo/stickers/xmas2009_reindeerpin.gif) no-repeat 50% 50%; +} +div.s_xmas2009_cakes { + width: 140px; height: 110px; + background-image: url(/c_images/myhabbo/stickers/xmas2009_cakes.gif); +} +div.s_xmas2009_cakes_pre { + background: url(/c_images/myhabbo/stickers/xmas2009_cakes.gif) no-repeat 50% 50%; +} +div.s_xmas2009_bauble { + width: 63px; height: 137px; + background-image: url(/c_images/myhabbo/stickers/xmas2009_bauble.gif); +} +div.s_xmas2009_bauble_pre { + background: url(/c_images/myhabbo/stickers/xmas2009_bauble.gif) no-repeat 50% 50%; +} +div.s_xmas2009_bubbledrink { + width: 86px; height: 144px; + background-image: url(/c_images/myhabbo/stickers/xmas2009_bubbledrink.gif); +} +div.s_xmas2009_bubbledrink_pre { + background: url(/c_images/myhabbo/stickers/xmas2009_bubbledrink.gif) no-repeat 50% 50%; +} +div.s_sticker_xmas2009_snowshake { + width: 101px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/xmas2009_snowshake.gif); +} +div.s_sticker_xmas2009_snowshake_pre { + background: url(/c_images/myhabbo/stickers/xmas2009_snowshake.gif) no-repeat 50% 50%; +} +div.s_sticker_pointing_hand_2 { + width: 90px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/sticker_pointing_hand_2.gif); +} +div.s_sticker_pointing_hand_2_pre { + background: url(/c_images/myhabbo/stickers/sticker_pointing_hand_2.gif) no-repeat 50% 50%; +} +div.s_sticker_pointing_hand_3 { + width: 90px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/sticker_pointing_hand_3.gif); +} +div.s_sticker_pointing_hand_3_pre { + background: url(/c_images/myhabbo/stickers/sticker_pointing_hand_3.gif) no-repeat 50% 50%; +} +div.s_sticker_pointing_hand_4 { + width: 150px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_pointing_hand_4.gif); +} +div.s_sticker_pointing_hand_4_pre { + background: url(/c_images/myhabbo/stickers/sticker_pointing_hand_4.gif) no-repeat 50% 50%; +} +div.s_gorillahand1 { + width: 146px; height: 110px; + background-image: url(/c_images/myhabbo/stickers/gorillahand1.gif); +} +div.s_gorillahand1_pre { + background: url(/c_images/myhabbo/stickers/gorillahand1.gif) no-repeat 50% 50%; +} +div.s_gorillahand2 { + width: 146px; height: 104px; + background-image: url(/c_images/myhabbo/stickers/gorillahand2.gif); +} +div.s_gorillahand2_pre { + background: url(/c_images/myhabbo/stickers/gorillahand2.gif) no-repeat 50% 50%; +} +div.s_lightbulb { + width: 32px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/lightbulb.gif); +} +div.s_lightbulb_pre { + background: url(/c_images/myhabbo/stickers/lightbulb.gif) no-repeat 50% 50%; +} +div.s_redlamp { + width: 86px; height: 140px; + background-image: url(/c_images/myhabbo/stickers/redlamp.gif); +} +div.s_redlamp_pre { + background: url(/c_images/myhabbo/stickers/redlamp.gif) no-repeat 50% 50%; +} +div.s_blingblingstars { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/blingblingstars.gif); +} +div.s_blingblingstars_pre { + background: url(/c_images/myhabbo/stickers/blingblingstars.gif) no-repeat 50% 50%; +} +div.s_blinghearts { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/blinghearts.gif); +} +div.s_blinghearts_pre { + background: url(/c_images/myhabbo/stickers/blinghearts.gif) no-repeat 50% 50%; +} +div.s_sticker_heartbeat { + width: 70px; height: 74px; + background-image: url(/c_images/myhabbo/stickers/sticker_heartbeat.gif); +} +div.s_sticker_heartbeat_pre { + background: url(/c_images/myhabbo/stickers/sticker_heartbeat.gif) no-repeat 50% 50%; +} +div.s_sticker_bobbaskull { + width: 90px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_bobbaskull.gif); +} +div.s_sticker_bobbaskull_pre { + background: url(/c_images/myhabbo/stickers/sticker_bobbaskull.gif) no-repeat 50% 50%; +} +div.s_chain_vertical { + width: 28px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/chain_vertical.gif); +} +div.s_chain_vertical_pre { + background: url(/c_images/myhabbo/stickers/chain_vertical.gif) no-repeat 50% 50%; +} +div.s_chain_horizontal { + width: 146px; height: 28px; + background-image: url(/c_images/myhabbo/stickers/chain_horizontal.gif); +} +div.s_chain_horizontal_pre { + background: url(/c_images/myhabbo/stickers/chain_horizontal.gif) no-repeat 50% 50%; +} +div.s_nail2 { + width: 61px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/nail2.gif); +} +div.s_nail2_pre { + background: url(/c_images/myhabbo/stickers/nail2.gif) no-repeat 50% 50%; +} +div.s_nail3 { + width: 61px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/nail3.gif); +} +div.s_nail3_pre { + background: url(/c_images/myhabbo/stickers/nail3.gif) no-repeat 50% 50%; +} +div.s_i_love_bobba { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/i_love_bobba2.gif); +} +div.s_i_love_bobba_pre { + background: url(/c_images/myhabbo/stickers/i_love_bobba2.gif) no-repeat 50% 50%; +} +div.s_chewed_bubblegum { + width: 71px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/chewed_bubblegum.gif); +} +div.s_chewed_bubblegum_pre { + background: url(/c_images/myhabbo/stickers/chewed_bubblegum.gif) no-repeat 50% 50%; +} +div.s_bullet1 { + width: 25px; height: 26px; + background-image: url(/c_images/myhabbo/stickers/bullet1.gif); +} +div.s_bullet1_pre { + background: url(/c_images/myhabbo/stickers/bullet1.gif) no-repeat 50% 50%; +} +div.s_spill1 { + width: 118px; height: 113px; + background-image: url(/c_images/myhabbo/stickers/spill1.gif); +} +div.s_spill1_pre { + background: url(/c_images/myhabbo/stickers/spill1.gif) no-repeat 50% 50%; +} +div.s_spill2 { + width: 119px; height: 108px; + background-image: url(/c_images/myhabbo/stickers/spill2.gif); +} +div.s_spill2_pre { + background: url(/c_images/myhabbo/stickers/spill2.gif) no-repeat 50% 50%; +} +div.s_spill3 { + width: 81px; height: 112px; + background-image: url(/c_images/myhabbo/stickers/spill3.gif); +} +div.s_spill3_pre { + background: url(/c_images/myhabbo/stickers/spill3.gif) no-repeat 50% 50%; +} +div.s_sticker_coffee_stain { + width: 135px; height: 122px; + background-image: url(/c_images/myhabbo/stickers/sticker_coffee_stain.gif); +} +div.s_sticker_coffee_stain_pre { + background: url(/c_images/myhabbo/stickers/sticker_coffee_stain.gif) no-repeat 50% 50%; +} +div.s_sticker_hole { + width: 107px; height: 105px; + background-image: url(/c_images/myhabbo/stickers/sticker_hole.gif); +} +div.s_sticker_hole_pre { + background: url(/c_images/myhabbo/stickers/sticker_hole.gif) no-repeat 50% 50%; +} +div.s_sticker_flames { + width: 26px; height: 42px; + background-image: url(/c_images/myhabbo/stickers/sticker_flames.gif); +} +div.s_sticker_flames_pre { + background: url(/c_images/myhabbo/stickers/sticker_flames.gif) no-repeat 50% 50%; +} +div.s_paper_clip_1 { + width: 20px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/paper_clip_1.gif); +} +div.s_paper_clip_1_pre { + background: url(/c_images/myhabbo/stickers/paper_clip_1.gif) no-repeat 50% 50%; +} +div.s_paper_clip_2 { + width: 48px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/paper_clip_2.gif); +} +div.s_paper_clip_2_pre { + background: url(/c_images/myhabbo/stickers/paper_clip_2.gif) no-repeat 50% 50%; +} +div.s_paper_clip_3 { + width: 48px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/paper_clip_3.gif); +} +div.s_paper_clip_3_pre { + background: url(/c_images/myhabbo/stickers/paper_clip_3.gif) no-repeat 50% 50%; +} +div.s_needle_1 { + width: 44px; height: 44px; + background-image: url(/c_images/myhabbo/stickers/needle_1.gif); +} +div.s_needle_1_pre { + background: url(/c_images/myhabbo/stickers/needle_1.gif) no-repeat 50% 50%; +} +div.s_needle_2 { + width: 38px; height: 37px; + background-image: url(/c_images/myhabbo/stickers/needle_2.gif); +} +div.s_needle_2_pre { + background: url(/c_images/myhabbo/stickers/needle_2.gif) no-repeat 50% 50%; +} +div.s_needle_3 { + width: 32px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/needle_3.gif); +} +div.s_needle_3_pre { + background: url(/c_images/myhabbo/stickers/needle_3.gif) no-repeat 50% 50%; +} +div.s_needle_4 { + width: 54px; height: 18px; + background-image: url(/c_images/myhabbo/stickers/needle_4.gif); +} +div.s_needle_4_pre { + background: url(/c_images/myhabbo/stickers/needle_4.gif) no-repeat 50% 50%; +} +div.s_needle_5 { + width: 33px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/needle_5.gif); +} +div.s_needle_5_pre { + background: url(/c_images/myhabbo/stickers/needle_5.gif) no-repeat 50% 50%; +} +div.s_highlighter_1 { + width: 137px; height: 79px; + background-image: url(/c_images/myhabbo/stickers/highlighter_1.gif); +} +div.s_highlighter_1_pre { + background: url(/c_images/myhabbo/stickers/highlighter_1.gif) no-repeat 50% 50%; +} +div.s_highlighter_mark5 { + width: 139px; height: 117px; + background-image: url(/c_images/myhabbo/stickers/highlighter_mark5.gif); +} +div.s_highlighter_mark5_pre { + background: url(/c_images/myhabbo/stickers/highlighter_mark5.gif) no-repeat 50% 50%; +} +div.s_highlighter_mark6 { + width: 141px; height: 139px; + background-image: url(/c_images/myhabbo/stickers/highlighter_mark6.gif); +} +div.s_highlighter_mark6_pre { + background: url(/c_images/myhabbo/stickers/highlighter_mark6.gif) no-repeat 50% 50%; +} +div.s_highlighter_mark4b { + width: 86px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/highlighter_mark4b.gif); +} +div.s_highlighter_mark4b_pre { + background: url(/c_images/myhabbo/stickers/highlighter_mark4b.gif) no-repeat 50% 50%; +} +div.s_highlighter_2 { + width: 137px; height: 79px; + background-image: url(/c_images/myhabbo/stickers/highlighter_2.gif); +} +div.s_highlighter_2_pre { + background: url(/c_images/myhabbo/stickers/highlighter_2.gif) no-repeat 50% 50%; +} +div.s_highlighter_mark1 { + width: 83px; height: 107px; + background-image: url(/c_images/myhabbo/stickers/highlighter_mark1.gif); +} +div.s_highlighter_mark1_pre { + background: url(/c_images/myhabbo/stickers/highlighter_mark1.gif) no-repeat 50% 50%; +} +div.s_highlighter_mark2 { + width: 130px; height: 117px; + background-image: url(/c_images/myhabbo/stickers/highlighter_mark2.gif); +} +div.s_highlighter_mark2_pre { + background: url(/c_images/myhabbo/stickers/highlighter_mark2.gif) no-repeat 50% 50%; +} +div.s_highlighter_mark3 { + width: 81px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/highlighter_mark3.gif); +} +div.s_highlighter_mark3_pre { + background: url(/c_images/myhabbo/stickers/highlighter_mark3.gif) no-repeat 50% 50%; +} +div.s_ruler_horizontal { + width: 122px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/ruler_horizontal.gif); +} +div.s_ruler_horizontal_pre { + background: url(/c_images/myhabbo/stickers/ruler_horizontal.gif) no-repeat 50% 50%; +} +div.s_ruler_vertical { + width: 32px; height: 122px; + background-image: url(/c_images/myhabbo/stickers/ruler_vertical.gif); +} +div.s_ruler_vertical_pre { + background: url(/c_images/myhabbo/stickers/ruler_vertical.gif) no-repeat 50% 50%; +} +div.s_Cheetos_purple_v1 { + width: 145px; height: 138px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_purple_v1.gif); +} +div.s_Cheetos_purple_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_purple_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_orange_v1 { + width: 143px; height: 135px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_orange_v1.gif); +} +div.s_Cheetos_orange_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_orange_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_Chester4_sticker_v1 { + width: 107px; height: 251px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_Chester4_sticker_v1.gif); +} +div.s_Cheetos_Chester4_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_Chester4_sticker_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_Chester3_sticker_v1 { + width: 198px; height: 247px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_Chester3_sticker_v1.gif); +} +div.s_Cheetos_Chester3_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_Chester3_sticker_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_Chester2_sticker_v1 { + width: 112px; height: 254px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_Chester2_sticker_v1.gif); +} +div.s_Cheetos_Chester2_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_Chester2_sticker_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_Chester1_sticker_v1 { + width: 144px; height: 229px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_Chester1_sticker_v1.gif); +} +div.s_Cheetos_Chester1_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_Chester1_sticker_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_Hat_sticker_v1 { + width: 31px; height: 23px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_Hat_sticker_v1.gif); +} +div.s_Cheetos_Hat_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_Hat_sticker_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_Tshirt_sticker_v1 { + width: 59px; height: 37px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_Tshirt_sticker_v1.gif); +} +div.s_Cheetos_Tshirt_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_Tshirt_sticker_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_AfroDJ_sticker_v1 { + width: 44px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_AfroDJ_sticker_v1.gif); +} +div.s_Cheetos_AfroDJ_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_AfroDJ_sticker_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_HotDog_sticker_v2 { + width: 64px; height: 105px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_HotDog_sticker_v2.gif); +} +div.s_Cheetos_HotDog_sticker_v2_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_HotDog_sticker_v2.gif) no-repeat 50% 50%; +} +div.s_Cheetos_Rizo_sticker_v1 { + width: 78px; height: 117px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_Rizo_sticker_v1.gif); +} +div.s_Cheetos_Rizo_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_Rizo_sticker_v1.gif) no-repeat 50% 50%; +} +div.s_Cheetos_Pandilla_sticker_v1_002 { + width: 108px; height: 95px; + background-image: url(/c_images/myhabbo/stickers/Cheetos_Pandilla_sticker_v1_002.gif); +} +div.s_Cheetos_Pandilla_sticker_v1_002_pre { + background: url(/c_images/myhabbo/stickers/Cheetos_Pandilla_sticker_v1_002.gif) no-repeat 50% 50%; +} +div.s_HW_STICKER1_50000 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/HW_STICKER1_50000.gif); +} +div.s_HW_STICKER1_50000_pre { + background: url(/c_images/myhabbo/stickers/HW_STICKER1_50000.gif) no-repeat 50% 50%; +} +div.s_plaster { + width: 85px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/plaster.gif); +} +div.s_plaster_pre { + background: url(/c_images/myhabbo/stickers/plaster.gif) no-repeat 50% 50%; +} +div.s_plaster2 { + width: 85px; height: 79px; + background-image: url(/c_images/myhabbo/stickers/plaster2.gif); +} +div.s_plaster2_pre { + background: url(/c_images/myhabbo/stickers/plaster2.gif) no-repeat 50% 50%; +} +div.s_sticker_cactus_anim { + width: 86px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/sticker_cactus_anim.gif); +} +div.s_sticker_cactus_anim_pre { + background: url(/c_images/myhabbo/stickers/sticker_cactus_anim.gif) no-repeat 50% 50%; +} +div.s_sticker_spaceduck { + width: 25px; height: 37px; + background-image: url(/c_images/myhabbo/stickers/sticker_spaceduck.gif); +} +div.s_sticker_spaceduck_pre { + background: url(/c_images/myhabbo/stickers/sticker_spaceduck.gif) no-repeat 50% 50%; +} +div.s_sticker_moonpig { + width: 146px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/sticker_moonpig.gif); +} +div.s_sticker_moonpig_pre { + background: url(/c_images/myhabbo/stickers/sticker_moonpig.gif) no-repeat 50% 50%; +} +div.s_sticker_catinabox { + width: 46px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/sticker_catinabox.gif); +} +div.s_sticker_catinabox_pre { + background: url(/c_images/myhabbo/stickers/sticker_catinabox.gif) no-repeat 50% 50%; +} +div.s_sticker_croco { + width: 87px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/sticker_croco.gif); +} +div.s_sticker_croco_pre { + background: url(/c_images/myhabbo/stickers/sticker_croco.gif) no-repeat 50% 50%; +} +div.s_bear { + width: 53px; height: 77px; + background-image: url(/c_images/myhabbo/stickers/bear.gif); +} +div.s_bear_pre { + background: url(/c_images/myhabbo/stickers/bear.gif) no-repeat 50% 50%; +} +div.s_swimming_fish { + width: 30px; height: 28px; + background-image: url(/c_images/myhabbo/stickers/swimming_fish.gif); +} +div.s_swimming_fish_pre { + background: url(/c_images/myhabbo/stickers/swimming_fish.gif) no-repeat 50% 50%; +} +div.s_fish { + width: 53px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/fish.gif); +} +div.s_fish_pre { + background: url(/c_images/myhabbo/stickers/fish.gif) no-repeat 50% 50%; +} +div.s_parrot { + width: 28px; height: 42px; + background-image: url(/c_images/myhabbo/stickers/parrot.gif); +} +div.s_parrot_pre { + background: url(/c_images/myhabbo/stickers/parrot.gif) no-repeat 50% 50%; +} +div.s_battle1 { + width: 36px; height: 40px; + background-image: url(/c_images/myhabbo/stickers/battle1.gif); +} +div.s_battle1_pre { + background: url(/c_images/myhabbo/stickers/battle1.gif) no-repeat 50% 50%; +} +div.s_battle3 { + width: 36px; height: 40px; + background-image: url(/c_images/myhabbo/stickers/battle3.gif); +} +div.s_battle3_pre { + background: url(/c_images/myhabbo/stickers/battle3.gif) no-repeat 50% 50%; +} +div.s_sticker_sleeping_habbo { + width: 72px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/sticker_sleeping_habbo.gif); +} +div.s_sticker_sleeping_habbo_pre { + background: url(/c_images/myhabbo/stickers/sticker_sleeping_habbo.gif) no-repeat 50% 50%; +} +div.s_sticker_clown_anim { + width: 54px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/sticker_clown_anim.gif); +} +div.s_sticker_clown_anim_pre { + background: url(/c_images/myhabbo/stickers/sticker_clown_anim.gif) no-repeat 50% 50%; +} +div.s_sticker_boxer { + width: 60px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_boxer.gif); +} +div.s_sticker_boxer_pre { + background: url(/c_images/myhabbo/stickers/sticker_boxer.gif) no-repeat 50% 50%; +} +div.s_scubacapsule_anim { + width: 40px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/scubacapsule_anim.gif); +} +div.s_scubacapsule_anim_pre { + background: url(/c_images/myhabbo/stickers/scubacapsule_anim.gif) no-repeat 50% 50%; +} +div.s_sticker_gurubeard_gray { + width: 64px; height: 69px; + background-image: url(/c_images/myhabbo/stickers/sticker_gurubeard_grey.gif); +} +div.s_sticker_gurubeard_gray_pre { + background: url(/c_images/myhabbo/stickers/sticker_gurubeard_grey.gif) no-repeat 50% 50%; +} +div.s_sticker_gurubeard_brown { + width: 64px; height: 69px; + background-image: url(/c_images/myhabbo/stickers/sticker_gurubeard_brown.gif); +} +div.s_sticker_gurubeard_brown_pre { + background: url(/c_images/myhabbo/stickers/sticker_gurubeard_brown.gif) no-repeat 50% 50%; +} +div.s_sticker_glasses_supernerd { + width: 26px; height: 15px; + background-image: url(/c_images/myhabbo/stickers/sticker_glasses_supernerd.gif); +} +div.s_sticker_glasses_supernerd_pre { + background: url(/c_images/myhabbo/stickers/sticker_glasses_supernerd.gif) no-repeat 50% 50%; +} +div.s_sticker_glasses_elton { + width: 25px; height: 18px; + background-image: url(/c_images/myhabbo/stickers/sticker_glasses_elton.gif); +} +div.s_sticker_glasses_elton_pre { + background: url(/c_images/myhabbo/stickers/sticker_glasses_elton.gif) no-repeat 50% 50%; +} +div.s_sticker_eyes_blue { + width: 16px; height: 18px; + background-image: url(/c_images/myhabbo/stickers/sticker_eyes_blue.gif); +} +div.s_sticker_eyes_blue_pre { + background: url(/c_images/myhabbo/stickers/sticker_eyes_blue.gif) no-repeat 50% 50%; +} +div.s_sticker_eye_anim { + width: 13px; height: 19px; + background-image: url(/c_images/myhabbo/stickers/sticker_eye_anim.gif); +} +div.s_sticker_eye_anim_pre { + background: url(/c_images/myhabbo/stickers/sticker_eye_anim.gif) no-repeat 50% 50%; +} +div.s_sticker_eye_evil_anim { + width: 15px; height: 19px; + background-image: url(/c_images/myhabbo/stickers/sticker_eye_evil_anim.gif); +} +div.s_sticker_eye_evil_anim_pre { + background: url(/c_images/myhabbo/stickers/sticker_eye_evil_anim.gif) no-repeat 50% 50%; +} +div.s_burger { + width: 63px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/burger.gif); +} +div.s_burger_pre { + background: url(/c_images/myhabbo/stickers/burger.gif) no-repeat 50% 50%; +} +div.s_juice { + width: 66px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/juice.gif); +} +div.s_juice_pre { + background: url(/c_images/myhabbo/stickers/juice.gif) no-repeat 50% 50%; +} +div.s_i_love_coffee { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/i_love_coffee.gif); +} +div.s_i_love_coffee_pre { + background: url(/c_images/myhabbo/stickers/i_love_coffee.gif) no-repeat 50% 50%; +} +div.s_sticker_coffee_steam_blue { + width: 45px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/sticker_coffee_steam_blue.gif); +} +div.s_sticker_coffee_steam_blue_pre { + background: url(/c_images/myhabbo/stickers/sticker_coffee_steam_blue.gif) no-repeat 50% 50%; +} +div.s_sticker_coffee_steam_grey { + width: 45px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/sticker_coffee_steam_grey.gif); +} +div.s_sticker_coffee_steam_grey_pre { + background: url(/c_images/myhabbo/stickers/sticker_coffee_steam_grey.gif) no-repeat 50% 50%; +} +div.s_cassette1 { + width: 142px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/cassette1.gif); +} +div.s_cassette1_pre { + background: url(/c_images/myhabbo/stickers/cassette1.gif) no-repeat 50% 50%; +} +div.s_cassette2 { + width: 142px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/cassette2.gif); +} +div.s_cassette2_pre { + background: url(/c_images/myhabbo/stickers/cassette2.gif) no-repeat 50% 50%; +} +div.s_cassette3 { + width: 142px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/cassette3.gif); +} +div.s_cassette3_pre { + background: url(/c_images/myhabbo/stickers/cassette3.gif) no-repeat 50% 50%; +} +div.s_cassette4 { + width: 142px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/cassette4.gif); +} +div.s_cassette4_pre { + background: url(/c_images/myhabbo/stickers/cassette4.gif) no-repeat 50% 50%; +} +div.s_sticker_effect_bam { + width: 146px; height: 118px; + background-image: url(/c_images/myhabbo/stickers/sticker_effect_bam.gif); +} +div.s_sticker_effect_bam_pre { + background: url(/c_images/myhabbo/stickers/sticker_effect_bam.gif) no-repeat 50% 50%; +} +div.s_sticker_effect_burp { + width: 105px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_effect_burp.gif); +} +div.s_sticker_effect_burp_pre { + background: url(/c_images/myhabbo/stickers/sticker_effect_burp.gif) no-repeat 50% 50%; +} +div.s_sticker_effect_woosh { + width: 144px; height: 24px; + background-image: url(/c_images/myhabbo/stickers/sticker_effect_woosh.gif); +} +div.s_sticker_effect_woosh_pre { + background: url(/c_images/myhabbo/stickers/sticker_effect_woosh.gif) no-repeat 50% 50%; +} +div.s_sticker_effect_zap { + width: 85px; height: 140px; + background-image: url(/c_images/myhabbo/stickers/sticker_effect_zap.gif); +} +div.s_sticker_effect_zap_pre { + background: url(/c_images/myhabbo/stickers/sticker_effect_zap.gif) no-repeat 50% 50%; +} +div.s_sticker_effect_whoosh2 { + width: 144px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/sticker_effect_whoosh2.gif); +} +div.s_sticker_effect_whoosh2_pre { + background: url(/c_images/myhabbo/stickers/sticker_effect_whoosh2.gif) no-repeat 50% 50%; +} +div.s_sticker_flower1 { + width: 42px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/sticker_flower1.gif); +} +div.s_sticker_flower1_pre { + background: url(/c_images/myhabbo/stickers/sticker_flower1.gif) no-repeat 50% 50%; +} +div.s_sticker_flower_big_yellow { + width: 131px; height: 133px; + background-image: url(/c_images/myhabbo/stickers/sticker_flower_big_yellow.gif); +} +div.s_sticker_flower_big_yellow_pre { + background: url(/c_images/myhabbo/stickers/sticker_flower_big_yellow.gif) no-repeat 50% 50%; +} +div.s_sticker_flower_pink { + width: 55px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/sticker_flower_pink.gif); +} +div.s_sticker_flower_pink_pre { + background: url(/c_images/myhabbo/stickers/sticker_flower_pink.gif) no-repeat 50% 50%; +} +div.s_vine { + width: 41px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/vine1.gif); +} +div.s_vine_pre { + background: url(/c_images/myhabbo/stickers/vine1.gif) no-repeat 50% 50%; +} +div.s_vine2 { + width: 150px; height: 41px; + background-image: url(/c_images/myhabbo/stickers/vine2.gif); +} +div.s_vine2_pre { + background: url(/c_images/myhabbo/stickers/vine2.gif) no-repeat 50% 50%; +} +div.s_leafs1 { + width: 80px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/leafs1.gif); +} +div.s_leafs1_pre { + background: url(/c_images/myhabbo/stickers/leafs1.gif) no-repeat 50% 50%; +} +div.s_leafs2 { + width: 146px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/leafs2.gif); +} +div.s_leafs2_pre { + background: url(/c_images/myhabbo/stickers/leafs2.gif) no-repeat 50% 50%; +} +div.s_wunderfrank { + width: 63px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/wunderfrank.gif); +} +div.s_wunderfrank_pre { + background: url(/c_images/myhabbo/stickers/wunderfrank.gif) no-repeat 50% 50%; +} +div.s_sticker_submarine { + width: 116px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/sticker_submarine.gif); +} +div.s_sticker_submarine_pre { + background: url(/c_images/myhabbo/stickers/sticker_submarine.gif) no-repeat 50% 50%; +} +div.s_football { + width: 20px; height: 37px; + background-image: url(/c_images/myhabbo/stickers/football.gif); +} +div.s_football_pre { + background: url(/c_images/myhabbo/stickers/football.gif) no-repeat 50% 50%; +} +div.s_sticker_zipper_h_bobba_lock { + width: 89px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/sticker_zipper_h_bobba_lock.gif); +} +div.s_sticker_zipper_h_bobba_lock_pre { + background: url(/c_images/myhabbo/stickers/sticker_zipper_h_bobba_lock.gif) no-repeat 50% 50%; +} +div.s_sticker_zipper_h_end { + width: 24px; height: 19px; + background-image: url/c_images/myhabbo/stickers/sticker_zipper_h_end.gif); +} +div.s_sticker_zipper_h_end_pre { + background: url(/c_images/myhabbo/stickers/sticker_zipper_h_end.gif) no-repeat 50% 50%; +} +div.s_sticker_zipper_h_normal_lock { + width: 91px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/sticker_zipper_h_normal_lock.gif); +} +div.s_sticker_zipper_h_normal_lock_pre { + background: url(/c_images/myhabbo/stickers/sticker_zipper_h_normal_lock.gif) no-repeat 50% 50%; +} +div.s_sticker_zipper_h_tile { + width: 144px; height: 17px; + background-image: url(/c_images/myhabbo/stickers/sticker_zipper_h_tile.gif); +} +div.s_sticker_zipper_h_tile_pre { + background: url(/c_images/myhabbo/stickers/sticker_zipper_h_tile.gif) no-repeat 50% 50%; +} +div.s_sticker_zipper_v_tile { + width: 17px; height: 144px; + background-image: url(/c_images/myhabbo/stickers/sticker_zipper_v_tile.gif); +} +div.s_sticker_zipper_v_tile_pre { + background: url(/c_images/myhabbo/stickers/sticker_zipper_v_tile.gif) no-repeat 50% 50%; +} +div.s_sticker_zipper_v_bobba_lock { + width: 59px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/sticker_zipper_v_bobba_lock.gif); +} +div.s_sticker_zipper_v_bobba_lock_pre { + background: url(/c_images/myhabbo/stickers/sticker_zipper_v_bobba_lock.gif) no-repeat 50% 50%; +} +div.s_sticker_zipper_v_end { + width: 19px; height: 24px; + background-image: url(/c_images/myhabbo/stickers/sticker_zipper_v_end.gif); +} +div.s_sticker_zipper_v_end_pre { + background: url(/c_images/myhabbo/stickers/sticker_zipper_v_end.gif) no-repeat 50% 50%; +} +div.s_sticker_zipper_v_normal_lock { + width: 59px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/sticker_zipper_v_normal_lock.gif); +} +div.s_sticker_zipper_v_normal_lock_pre { + background: url(/c_images/myhabbo/stickers/sticker_zipper_v_normal_lock.gif) no-repeat 50% 50%; +} +div.s_bling_a { + width: 38px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_a.gif); +} +div.s_bling_a_pre { + background: url(/c_images/myhabbo/stickers/bling_a.gif) no-repeat 50% 50%; +} +div.s_bling_b { + width: 34px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_b.gif); +} +div.s_bling_b_pre { + background: url(/c_images/myhabbo/stickers/bling_b.gif) no-repeat 50% 50%; +} +div.s_bling_c { + width: 32px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_c.gif); +} +div.s_bling_c_pre { + background: url(/c_images/myhabbo/stickers/bling_c.gif) no-repeat 50% 50%; +} +div.s_bling_d { + width: 35px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_d.gif); +} +div.s_bling_d_pre { + background: url(/c_images/myhabbo/stickers/bling_d.gif) no-repeat 50% 50%; +} +div.s_bling_e { + width: 35px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/bling_e.gif); +} +div.s_bling_e_pre { + background: url(/c_images/myhabbo/stickers/bling_e.gif) no-repeat 50% 50%; +} +div.s_bling_f { + width: 35px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/bling_f.gif); +} +div.s_bling_f_pre { + background: url(/c_images/myhabbo/stickers/bling_f.gif) no-repeat 50% 50%; +} +div.s_bling_g { + width: 32px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/bling_g.gif); +} +div.s_bling_g_pre { + background: url(/c_images/myhabbo/stickers/bling_g.gif) no-repeat 50% 50%; +} +div.s_bling_h { + width: 38px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/bling_h.gif); +} +div.s_bling_h_pre { + background: url(/c_images/myhabbo/stickers/bling_h.gif) no-repeat 50% 50%; +} +div.s_bling_i { + width: 22px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/bling_i.gif); +} +div.s_bling_i_pre { + background: url(/c_images/myhabbo/stickers/bling_i.gif) no-repeat 50% 50%; +} +div.s_bling_j { + width: 34px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_j.gif); +} +div.s_bling_j_pre { + background: url(/c_images/myhabbo/stickers/bling_j.gif) no-repeat 50% 50%; +} +div.s_bling_k { + width: 37px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_k.gif); +} +div.s_bling_k_pre { + background: url(/c_images/myhabbo/stickers/bling_k.gif) no-repeat 50% 50%; +} +div.s_bling_l { + width: 34px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_l.gif); +} +div.s_bling_l_pre { + background: url(/c_images/myhabbo/stickers/bling_l.gif) no-repeat 50% 50%; +} +div.s_bling_m { + width: 51px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_m.gif); +} +div.s_bling_m_pre { + background: url(/c_images/myhabbo/stickers/bling_m.gif) no-repeat 50% 50%; +} +div.s_bling_n { + width: 40px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_n.gif); +} +div.s_bling_n_pre { + background: url(/c_images/myhabbo/stickers/bling_n.gif) no-repeat 50% 50%; +} +div.s_bling_o { + width: 32px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_o.gif); +} +div.s_bling_o_pre { + background: url(/c_images/myhabbo/stickers/bling_o.gif) no-repeat 50% 50%; +} +div.s_bling_p { + width: 34px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_p.gif); +} +div.s_bling_p_pre { + background: url(/c_images/myhabbo/stickers/bling_p.gif) no-repeat 50% 50%; +} +div.s_bling_q { + width: 32px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/bling_q.gif); +} +div.s_bling_q_pre { + background: url(/c_images/myhabbo/stickers/bling_q.gif) no-repeat 50% 50%; +} +div.s_bling_r { + width: 35px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_r.gif); +} +div.s_bling_r_pre { + background: url(/c_images/myhabbo/stickers/bling_r.gif) no-repeat 50% 50%; +} +div.s_bling_s { + width: 31px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_s.gif); +} +div.s_bling_s_pre { + background: url(/c_images/myhabbo/stickers/bling_s.gif) no-repeat 50% 50%; +} +div.s_bling_t { + width: 35px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_t.gif); +} +div.s_bling_t_pre { + background: url(/c_images/myhabbo/stickers/bling_t.gif) no-repeat 50% 50%; +} +div.s_bling_u { + width: 37px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_u.gif); +} +div.s_bling_u_pre { + background: url(/c_images/myhabbo/stickers/bling_u.gif) no-repeat 50% 50%; +} +div.s_bling_v { + width: 38px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_v.gif); +} +div.s_bling_v_pre { + background: url(/c_images/myhabbo/stickers/bling_v.gif) no-repeat 50% 50%; +} +div.s_bling_w { + width: 55px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_w.gif); +} +div.s_bling_w_pre { + background: url(/c_images/myhabbo/stickers/bling_w.gif) no-repeat 50% 50%; +} +div.s_bling_x { + width: 38px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_x.gif); +} +div.s_bling_x_pre { + background: url(/c_images/myhabbo/stickers/bling_x.gif) no-repeat 50% 50%; +} +div.s_bling_y { + width: 37px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_y.gif); +} +div.s_bling_y_pre { + background: url(/c_images/myhabbo/stickers/bling_y.gif) no-repeat 50% 50%; +} +div.s_bling_z { + width: 32px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_z.gif); +} +div.s_bling_z_pre { + background: url(/c_images/myhabbo/stickers/bling_z.gif) no-repeat 50% 50%; +} +div.s_bling_underscore { + width: 32px; height: 16px; + background-image: url(/c_images/myhabbo/stickers/bling_underscore.gif); +} +div.s_bling_underscore_pre { + background: url(/c_images/myhabbo/stickers/bling_underscore.gif) no-repeat 50% 50%; +} +div.s_bling_line { + width: 17px; height: 63px; + background-image: url(/c_images/myhabbo/stickers/bling_line.gif); +} +div.s_bling_line_pre { + background: url(/c_images/myhabbo/stickers/bling_line.gif) no-repeat 50% 50%; +} +div.s_bling_exclamation { + width: 16px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_exclamation.gif); +} +div.s_bling_exclamation_pre { + background: url(/c_images/myhabbo/stickers/bling_exclamation.gif) no-repeat 50% 50%; +} +div.s_bling_question { + width: 32px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_question.gif); +} +div.s_bling_question_pre { + background: url(/c_images/myhabbo/stickers/bling_question.gif) no-repeat 50% 50%; +} +div.s_bling_star { + width: 46px; height: 44px; + background-image: url(/c_images/myhabbo/stickers/bling_star.gif); +} +div.s_bling_star_pre { + background: url(/c_images/myhabbo/stickers/bling_star.gif) no-repeat 50% 50%; +} +div.s_bling_dot { + width: 17px; height: 16px; + background-image: url(/c_images/myhabbo/stickers/bling_dot.gif); +} +div.s_bling_dot_pre { + background: url(/c_images/myhabbo/stickers/bling_dot.gif) no-repeat 50% 50%; +} +div.s_bling_comma { + width: 17px; height: 25px; + background-image: url(/c_images/myhabbo/stickers/bling_comma.gif); +} +div.s_bling_comma_pre { + background: url(/c_images/myhabbo/stickers/bling_comma.gif) no-repeat 50% 50%; +} +div.s_cny_dragon_body_l { + width: 79px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/cny_dragon_body_l.gif); +} +div.s_cny_dragon_body_l_pre { + background: url(/c_images/myhabbo/stickers/cny_dragon_body_l.gif) no-repeat 50% 50%; +} +div.s_cny_dragon_body_r { + width: 79px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/cny_dragon_body_r.gif); +} +div.s_cny_dragon_body_r_pre { + background: url(/c_images/myhabbo/stickers/cny_dragon_body_r.gif) no-repeat 50% 50%; +} +div.s_cny_dragon_head_l { + width: 90px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/cny_dragon_head_l.gif); +} +div.s_cny_dragon_head_l_pre { + background: url(/c_images/myhabbo/stickers/cny_dragon_head_l.gif) no-repeat 50% 50%; +} +div.s_cny_dragon_head_r { + width: 90px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/cny_dragon_head_r.gif); +} +div.s_cny_dragon_head_r_pre { + background: url(/c_images/myhabbo/stickers/cny_dragon_head_r.gif) no-repeat 50% 50%; +} +div.s_cny_hypnodragon_anim { + width: 101px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/cny_hypnodragon_anim.gif); +} +div.s_cny_hypnodragon_anim_pre { + background: url(/c_images/myhabbo/stickers/cny_hypnodragon_anim.gif) no-repeat 50% 50%; +} +div.s_cny_kungfu_dude { + width: 54px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/cny_kungfu_dude.gif); +} +div.s_cny_kungfu_dude_pre { + background: url(/c_images/myhabbo/stickers/cny_kungfu_dude.gif) no-repeat 50% 50%; +} +div.s_cny_kungfu_girl { + width: 54px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/cny_kungfu_girl.gif); +} +div.s_cny_kungfu_girl_pre { + background: url(/c_images/myhabbo/stickers/cny_kungfu_girl.gif) no-repeat 50% 50%; +} +div.s_sticker_dreamer { + width: 132px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/sticker_dreamer.gif); +} +div.s_sticker_dreamer_pre { + background: url(/c_images/myhabbo/stickers/sticker_dreamer.gif) no-repeat 50% 50%; +} +div.s_sticker_lonewolf { + width: 132px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/sticker_lonewolf.gif); +} +div.s_sticker_lonewolf_pre { + background: url(/c_images/myhabbo/stickers/sticker_lonewolf.gif) no-repeat 50% 50%; +} +div.s_sticker_mamasboy { + width: 132px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/sticker_mamasboy.gif); +} +div.s_sticker_mamasboy_pre { + background: url(/c_images/myhabbo/stickers/sticker_mamasboy.gif) no-repeat 50% 50%; +} +div.s_sticker_prankster { + width: 132px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/sticker_prankster.gif); +} +div.s_sticker_prankster_pre { + background: url(/c_images/myhabbo/stickers/sticker_prankster.gif) no-repeat 50% 50%; +} +div.s_sticker_romantic { + width: 132px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/sticker_romantic.gif); +} +div.s_sticker_romantic_pre { + background: url(/c_images/myhabbo/stickers/sticker_romantic.gif) no-repeat 50% 50%; +} +div.s_val_cupido_anim { + width: 55px; height: 99px; + background-image: url(/c_images/myhabbo/stickers/val_cupido_anim.gif); +} +div.s_val_cupido_anim_pre { + background: url(/c_images/myhabbo/stickers/val_cupido_anim.gif) no-repeat 50% 50%; +} +div.s_val_lovedice { + width: 62px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/val_lovedice.gif); +} +div.s_val_lovedice_pre { + background: url(/c_images/myhabbo/stickers/val_lovedice.gif) no-repeat 50% 50%; +} +div.s_val_sticker_barbwire_horis { + width: 146px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_barbwire_horis.gif); +} +div.s_val_sticker_barbwire_horis_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_barbwire_horis.gif) no-repeat 50% 50%; +} +div.s_val_sticker_barbwire_vert { + width: 46px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_barbwire_vert.gif); +} +div.s_val_sticker_barbwire_vert_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_barbwire_vert.gif) no-repeat 50% 50%; +} +div.s_val_sticker_croco { + width: 89px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_croco.gif); +} +div.s_val_sticker_croco_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_croco.gif) no-repeat 50% 50%; +} +div.s_val_sticker_cupid_arrow { + width: 116px; height: 106px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_cupid_arrow.gif); +} +div.s_val_sticker_cupid_arrow_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_cupid_arrow.gif) no-repeat 50% 50%; +} +div.s_val_sticker_love_costume { + width: 89px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_love_costume.gif); +} +div.s_val_sticker_love_costume_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_love_costume.gif) no-repeat 50% 50%; +} +div.s_val_sticker_rosewire_corner { + width: 80px; height: 57px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_rosewire_corner.gif); +} +div.s_val_sticker_rosewire_corner_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_rosewire_corner.gif) no-repeat 50% 50%; +} +div.s_val_sticker_rosewire_horis { + width: 146px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_rosewire_horis.gif); +} +div.s_val_sticker_rosewire_horis_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_rosewire_horis.gif) no-repeat 50% 50%; +} +div.s_val_sticker_rosewire_vert { + width: 60px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_rosewire_vert.gif); +} +div.s_val_sticker_rosewire_vert_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_rosewire_vert.gif) no-repeat 50% 50%; +} +div.s_val_sticker_skull360 { + width: 24px; height: 24px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_skull360.gif); +} +div.s_val_sticker_skull360_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_skull360.gif) no-repeat 50% 50%; +} +div.s_val_sticker_skull360_circle { + width: 104px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_skull360_circle.gif); +} +div.s_val_sticker_skull360_circle_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_skull360_circle.gif) no-repeat 50% 50%; +} +div.s_val_sticker_storm_costume { + width: 50px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_storm_costume.gif); +} +div.s_val_sticker_storm_costume_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_storm_costume.gif) no-repeat 50% 50%; +} +div.s_val_sticker_voodoo_suit { + width: 36px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_voodoo_suit.gif); +} +div.s_val_sticker_voodoo_suit_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_voodoo_suit.gif) no-repeat 50% 50%; +} +div.s_val_lovecostume3 { + width: 89px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/val_lovecostume3.gif); +} +div.s_val_lovecostume3_pre { + background: url(/c_images/myhabbo/stickers/val_lovecostume3.gif) no-repeat 50% 50%; +} +div.s_bowser_sticker_v1 { + width: 125px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/bowser_sticker_v1.gif); +} +div.s_bowser_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/bowser_sticker_v1.gif) no-repeat 50% 50%; +} +div.s_goth_border_horizontal { + width: 146px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/goth_border_horizontal.gif); +} +div.s_goth_border_horizontal_pre { + background: url(/c_images/myhabbo/stickers/goth_border_horizontal.gif) no-repeat 50% 50%; +} +div.s_goth_border_vertical { + width: 100px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/goth_border_vertical.gif); +} +div.s_goth_border_vertical_pre { + background: url(/c_images/myhabbo/stickers/goth_border_vertical.gif) no-repeat 50% 50%; +} +div.s_gothic_draculacape { + width: 62px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/gothic_draculacape.gif); +} +div.s_gothic_draculacape_pre { + background: url(/c_images/myhabbo/stickers/gothic_draculacape.gif) no-repeat 50% 50%; +} +div.s_gothic_scienceplatform { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/gothic_scienceplatform.gif); +} +div.s_gothic_scienceplatform_pre { + background: url(/c_images/myhabbo/stickers/gothic_scienceplatform.gif) no-repeat 50% 50%; +} +div.s_easter_bird { + width: 102px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/easter_bird.gif); +} +div.s_easter_bird_pre { + background: url(/c_images/myhabbo/stickers/easter_bird.gif) no-repeat 50% 50%; +} +div.s_easter_birdsuit { + width: 51px; height: 73px; + background-image: url(/c_images/myhabbo/stickers/easter_birdsuit.gif); +} +div.s_easter_birdsuit_pre { + background: url(/c_images/myhabbo/stickers/easter_birdsuit.gif) no-repeat 50% 50%; +} +div.s_easter_broomstick_001 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_broomstick_001.gif); +} +div.s_easter_broomstick_001_pre { + background: url(/c_images/myhabbo/stickers/easter_broomstick_001.gif) no-repeat 50% 50%; +} +div.s_easter_bunnymoped { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_bunnymoped.gif); +} +div.s_easter_bunnymoped_pre { + background: url(/c_images/myhabbo/stickers/easter_bunnymoped.gif) no-repeat 50% 50%; +} +div.s_easter_carrot_rocket { + width: 91px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/easter_carrot_rocket.gif); +} +div.s_easter_carrot_rocket_pre { + background: url(/c_images/myhabbo/stickers/easter_carrot_rocket.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_horizontal { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif); +} +div.s_easter_eggs_horizontal_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_vertical_001 { + width: 50px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif); +} +div.s_easter_eggs_vertical_001_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif) no-repeat 50% 50%; +} +div.s_easter_pointyhat { + width: 58px; height: 45px; + background-image: url(/c_images/myhabbo/stickers/easter_pointyhat.gif); +} +div.s_easter_pointyhat_pre { + background: url(/c_images/myhabbo/stickers/easter_pointyhat.gif) no-repeat 50% 50%; +} +div.s_easter_rabbit_in_hole { + width: 94px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/easter_rabbit_in_hole.gif); +} +div.s_easter_rabbit_in_hole_pre { + background: url(/c_images/myhabbo/stickers/easter_rabbit_in_hole.gif) no-repeat 50% 50%; +} +div.s_easteregg_costume { + width: 79px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/easteregg_costume.gif); +} +div.s_easteregg_costume_pre { + background: url(/c_images/myhabbo/stickers/easteregg_costume.gif) no-repeat 50% 50%; +} +div.s_grass { + width: 143px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/grass.gif); +} +div.s_grass_pre { + background: url(/c_images/myhabbo/stickers/grass.gif) no-repeat 50% 50%; +} +div.s_sticker_mario { + width: 109px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/mario_sticker_v2.gif); +} +div.s_sticker_mario_pre { + background: url(/c_images/myhabbo/stickers/mario_sticker_v2.gif) no-repeat 50% 50%; +} +div.s_sticker_bowser { + width: 128px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/bowser_sticker_v2.gif); +} +div.s_sticker_bowser_pre { + background: url(/c_images/myhabbo/stickers/bowser_sticker_v2.gif) no-repeat 50% 50%; +} +div.s_sticker_luigi { + width: 97px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/luigi_sticker_v2.gif); +} +div.s_sticker_luigi_pre { + background: url(/c_images/myhabbo/stickers/luigi_sticker_v2.gif) no-repeat 50% 50%; +} +div.s_sticker_koopa { + width: 111px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/koopa_sticker_v2.gif); +} +div.s_sticker_koopa_pre { + background: url(/c_images/myhabbo/stickers/koopa_sticker_v2.gif) no-repeat 50% 50%; +} +div.s_sticker_peach { + width: 84px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/peach_sticker_v2.gif); +} +div.s_sticker_peach_pre { + background: url(/c_images/myhabbo/stickers/peach_sticker_v2.gif) no-repeat 50% 50%; +} +div.s_trax_8_bit { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_8_bit.gif); +} +div.s_trax_8_bit_pre { + background: url(/c_images/myhabbo/stickers/trax_8_bit.gif) no-repeat 50% 50%; +} +div.s_trax_ambient { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_ambient.gif); +} +div.s_trax_ambient_pre { + background: url(/c_images/myhabbo/stickers/trax_ambient.gif) no-repeat 50% 50%; +} +div.s_trax_bling { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_bling.gif); +} +div.s_trax_bling_pre { + background: url(/c_images/myhabbo/stickers/trax_bling.gif) no-repeat 50% 50%; +} +div.s_trax_disco { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_disco.gif); +} +div.s_trax_disco_pre { + background: url(/c_images/myhabbo/stickers/trax_disco.gif) no-repeat 50% 50%; +} +div.s_trax_electro { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_electro.gif); +} +div.s_trax_electro_pre { + background: url(/c_images/myhabbo/stickers/trax_electro.gif) no-repeat 50% 50%; +} +div.s_trax_heavy { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_heavy.gif); +} +div.s_trax_heavy_pre { + background: url(/c_images/myhabbo/stickers/trax_heavy.gif) no-repeat 50% 50%; +} +div.s_trax_latin { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_latin.gif); +} +div.s_trax_latin_pre { + background: url(/c_images/myhabbo/stickers/trax_latin.gif) no-repeat 50% 50%; +} +div.s_trax_reggae { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_reggae.gif); +} +div.s_trax_reggae_pre { + background: url(/c_images/myhabbo/stickers/trax_reggae.gif) no-repeat 50% 50%; +} +div.s_trax_rock { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_rock.gif); +} +div.s_trax_rock_pre { + background: url(/c_images/myhabbo/stickers/trax_rock.gif) no-repeat 50% 50%; +} +div.s_trax_sfx { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_sfx.gif); +} +div.s_trax_sfx_pre { + background: url(/c_images/myhabbo/stickers/trax_sfx.gif) no-repeat 50% 50%; +} +div.s_bratz_featuredclique { + width: 200px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/bratz_featuredclique.gif); +} +div.s_bratz_featuredclique_pre { + background: url(/c_images/myhabbo/stickers/bratz_featuredclique.gif) no-repeat 50% 50%; +} +div.s_evil_easterbunny { + width: 44px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/Evil_easterbunny.gif); +} +div.s_evil_easterbunny_pre { + background: url(/c_images/myhabbo/stickers/Evil_easterbunny.gif) no-repeat 50% 50%; +} +div.s_evil_giant_bunny { + width: 111px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/Evil_giant_bunny.gif); +} +div.s_evil_giant_bunny_pre { + background: url(/c_images/myhabbo/stickers/Evil_giant_bunny.gif) no-repeat 50% 50%; +} +div.s_hw cny_dragon_body_l { + width: 79px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/cny_dragon_body_l.gif); +} +div.s_hw cny_dragon_body_l_pre { + background: url(/c_images/myhabbo/stickers/cny_dragon_body_l.gif) no-repeat 50% 50%; +} +div.s_hw cny_dragon_body_r { + width: 79px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/cny_dragon_body_r.gif); +} +div.s_hw cny_dragon_body_r_pre { + background: url(/c_images/myhabbo/stickers/cny_dragon_body_r.gif) no-repeat 50% 50%; +} +div.s_hw cny_dragon_head_l { + width: 90px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/cny_dragon_head_l.gif); +} +div.s_hw cny_dragon_head_l_pre { + background: url(/c_images/myhabbo/stickers/cny_dragon_head_l.gif) no-repeat 50% 50%; +} +div.s_hw cny_dragon_head_r { + width: 90px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/cny_dragon_head_r.gif); +} +div.s_hw cny_dragon_head_r_pre { + background: url(/c_images/myhabbo/stickers/cny_dragon_head_r.gif) no-repeat 50% 50%; +} +div.s_hw cny_hypnodragon_anim { + width: 101px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/cny_hypnodragon_anim.gif); +} +div.s_hw cny_hypnodragon_anim_pre { + background: url(/c_images/myhabbo/stickers/cny_hypnodragon_anim.gif) no-repeat 50% 50%; +} +div.s_hw cny_kunfu_dude { + width: 54px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/cny_kungfu_dude.gif); +} +div.s_hw cny_kunfu_dude_pre { + background: url(/c_images/myhabbo/stickers/cny_kungfu_dude.gif) no-repeat 50% 50%; +} +div.s_hw cny_kunfu_girl { + width: 57px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/cny_kungfu_girl.gif); +} +div.s_hw cny_kunfu_girl_pre { + background: url(/c_images/myhabbo/stickers/cny_kungfu_girl.gif) no-repeat 50% 50%; +} +div.s_hw val_cupido_anim { + width: 55px; height: 99px; + background-image: url(/c_images/myhabbo/stickers/val_cupido_anim.gif); +} +div.s_hw val_cupido_anim_pre { + background: url(/c_images/myhabbo/stickers/val_cupido_anim.gif) no-repeat 50% 50%; +} +div.s_ukonly_disarno_homes { + width: 85px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/UKONLY_disarno_homes.gif); +} +div.s_ukonly_disarno_homes_pre { + background: url(/c_images/myhabbo/stickers/UKONLY_disarno_homes.gif) no-repeat 50% 50%; +} +div.s_xmas_snowcone_costume { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/Xmas_Snowcone_costume.gif); +} +div.s_xmas_snowcone_costume_pre { + background: url(/c_images/myhabbo/stickers/Xmas_Snowcone_costume.gif) no-repeat 50% 50%; +} +div.s_a { + width: 43px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/a.gif); +} +div.s_a_pre { + background: url(/c_images/myhabbo/stickers/a.gif) no-repeat 50% 50%; +} +div.s_a_with_circle { + width: 45px; height: 66px; + background-image: url(/c_images/myhabbo/stickers/a_with_circle.gif); +} +div.s_a_with_circle_pre { + background: url(/c_images/myhabbo/stickers/a_with_circle.gif) no-repeat 50% 50%; +} +div.s_a_with_dots { + width: 44px; height: 66px; + background-image: url(/c_images/myhabbo/stickers/a_with_dots.gif); +} +div.s_a_with_dots_pre { + background: url(/c_images/myhabbo/stickers/a_with_dots.gif) no-repeat 50% 50%; +} +div.s_acsent1 { + width: 16px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/acsent1.gif); +} +div.s_acsent1_pre { + background: url(/c_images/myhabbo/stickers/acsent1.gif) no-repeat 50% 50%; +} +div.s_acsent2 { + width: 16px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/acsent2.gif); +} +div.s_acsent2_pre { + background: url(/c_images/myhabbo/stickers/acsent2.gif) no-repeat 50% 50%; +} +div.s_angelwings_anim { + width: 50px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/angelwings_anim.gif); +} +div.s_angelwings_anim_pre { + background: url(/c_images/myhabbo/stickers/angelwings_anim.gif) no-repeat 50% 50%; +} +div.s_angelwings_anim.gif { + width: 50px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/angelwings_anim); +} +div.s_angelwings_anim.gif_pre { + background: url(/c_images/myhabbo/stickers/angelwings_anim.gif) no-repeat 50% 50%; +} +div.s_anti_eco { + width: 129px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/anti_eco.gif); +} +div.s_anti_eco_pre { + background: url(/c_images/myhabbo/stickers/anti_eco) no-repeat 50% 50%; +} +div.s_b { + width: 41px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/b.gif); +} +div.s_b_pre { + background: url(/c_images/myhabbo/stickers/b.gif) no-repeat 50% 50%; +} +div.s_b.gif { + width: 41px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/b.gif); +} +div.s_b.gif_pre { + background: url(/c_images/myhabbo/stickers/b.gif) no-repeat 50% 50%; +} +div.s_b_2 { + width: 41px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/b.gif); +} +div.s_bootsitjalapaset_red { + width: 32px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/bootsitjalapaset_red.gif); +} +div.s_bootsitjalapaset_red_pre { + background: url(/c_images/myhabbo/stickers/bootsitjalapaset_red.gif) no-repeat 50% 50%; +} +div.s_c { + width: 43px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/c.gif); +} +div.s_c_pre { + background: url(/c_images/myhabbo/stickers/c.gif) no-repeat 50% 50%; +} +div.s_d { + width: 41px; height: 47px; + background-image: url(/c_images/myhabbo/stickers/d.gif); +} +div.s_d_pre { + background: url(/c_images/myhabbo/stickers/d.gif) no-repeat 50% 50%; +} +div.s_diamond_reward { + width: 56px; height: 42px; + background-image: url(/c_images/myhabbo/stickers/diamond_reward.gif); +} +div.s_diamond_reward_pre { + background: url(/c_images/myhabbo/stickers/diamond_reward.gif) no-repeat 50% 50%; +} +div.s_dot { + width: 13px; height: 13px; + background-image: url(/c_images/myhabbo/stickers/dot.gif); +} +div.s_dot_pre { + background: url(/c_images/myhabbo/stickers/dot.gif) no-repeat 50% 50%; +} +div.s_e { + width: 40px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/e.gif); +} +div.s_e_pre { + background: url(/c_images/myhabbo/stickers/e.gif) no-repeat 50% 50%; +} +div.s_easter_birdie { + width: 102px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/easter_birdie.gif); +} +div.s_easter_birdie_pre { + background: url(/c_images/myhabbo/stickers/easter_birdie.gif) no-repeat 50% 50%; +} +div.s_extra_ss_duck_left { + width: 23px; height: 29px; + background-image: url(/c_images/myhabbo/stickers/extra_ss_duck_left.gif); +} +div.s_extra_ss_duck_left_pre { + background: url(/c_images/myhabbo/stickers/extra_ss_duck_left.gif) no-repeat 50% 50%; +} +div.s_extra_ss_duck_right { + width: 23px; height: 29px; + background-image: url(/c_images/myhabbo/stickers/extra_ss_duck_right.gif); +} +div.s_extra_ss_duck_right_pre { + background: url(/c_images/myhabbo/stickers/extra_ss_duck_right.gif) no-repeat 50% 50%; +} +div.s_extra_ss_snowball { + width: 20px; height: 20px; + background-image: url(/c_images/myhabbo/stickers/extra_ss_snowball.gif); +} +div.s_extra_ss_snowball_pre { + background: url(/c_images/myhabbo/stickers/extra_ss_snowball.gif) no-repeat 50% 50%; +} +div.s_eyeleft { + width: 51px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/eyeleft.gif); +} +div.s_eyeleft_pre { + background: url(/c_images/myhabbo/stickers/eyeleft.gif) no-repeat 50% 50%; +} +div.s_eyeright { + width: 51px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/eyeright.gif); +} +div.s_eyeright_pre { + background: url(/c_images/myhabbo/stickers/eyeright.gif) no-repeat 50% 50%; +} +div.s_f { + width: 40px; height: 47px; + background-image: url(/c_images/myhabbo/stickers/f.gif); +} +div.s_f_pre { + background: url(/c_images/myhabbo/stickers/f.gif) no-repeat 50% 50%; +} +div.s_fi koirakisu { + width: 145px; height: 131px; + background-image: url(/c_images/myhabbo/stickers/fi_koirakisu.gif); +} +div.s_fi koirakisu_pre { + background: url(/c_images/myhabbo/stickers/fi_koirakisu.gif) no-repeat 50% 50%; +} +div.s_fi_golden_snake { + width: 107px; height: 91px; + background-image: url(/c_images/myhabbo/stickers/fi_golden_snake.gif); +} +div.s_fi_golden_snake_pre { + background: url(/c_images/myhabbo/stickers/fi_golden_snake.gif) no-repeat 50% 50%; +} +div.s_fi_mino { + width: 111px; height: 111px; + background-image: url(/c_images/myhabbo/stickers/fi_mino.gif); +} +div.s_fi_mino_pre { + background: url(/c_images/myhabbo/stickers/fi_mino.gif) no-repeat 50% 50%; +} +div.s_g { + width: 45px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/g.gif); +} +div.s_g_pre { + background: url(/c_images/myhabbo/stickers/g.gif) no-repeat 50% 50%; +} +div.s_h { + width: 40px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/h.gif); +} +div.s_h_pre { + background: url(/c_images/myhabbo/stickers/h.gif) no-repeat 50% 50%; +} +div.s_hc_hat { + width: 37px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/hc_hat.gif); +} +div.s_hc_hat_pre { + background: url(/c_images/myhabbo/stickers/hc_hat.gif) no-repeat 50% 50%; +} +div.s_i { + width: 16px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/i.gif); +} +div.s_i_pre { + background: url(/c_images/myhabbo/stickers/i.gif) no-repeat 50% 50%; +} +div.s_icecube_big { + width: 58px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/icecube_big.gif); +} +div.s_icecube_big_pre { + background: url(/c_images/myhabbo/stickers/icecube_big.gif) no-repeat 50% 50%; +} +div.s_icecube_small { + width: 30px; height: 28px; + background-image: url(/c_images/myhabbo/stickers/icecube_small.gif); +} +div.s_icecube_small_pre { + background: url(/c_images/myhabbo/stickers/icecube_small.gif) no-repeat 50% 50%; +} +div.s_j { + width: 32px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/j.gif); +} +div.s_j_pre { + background: url(/c_images/myhabbo/stickers/j.gif) no-repeat 50% 50%; +} +div.s_k { + width: 41px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/k.gif); +} +div.s_k_pre { + background: url(/c_images/myhabbo/stickers/k.gif) no-repeat 50% 50%; +} +div.s_l { + width: 34px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/l.gif); +} +div.s_l_pre { + background: url(/c_images/myhabbo/stickers/l.gif) no-repeat 50% 50%; +} +div.s_lapanen purple { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_purple.gif); +} +div.s_lapanen purple_pre { + background: url(/c_images/myhabbo/stickers/lapanen_purple.gif) no-repeat 50% 50%; +} +div.s_lapanen_blue { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_blue.gif); +} +div.s_lapanen_blue_pre { + background: url(/c_images/myhabbo/stickers/lapanen_blue.gif) no-repeat 50% 50%; +} +div.s_lapanen_blue. { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_blue.gif); +} +div.s_lapanen_blue._pre { + background: url(/c_images/myhabbo/stickers/lapanen_blue.gif) no-repeat 50% 50%; +} +div.s_lapanen_purple { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_purple.gif); +} +div.s_lapanen_purple_pre { + background: url(/c_images/myhabbo/stickers/lapanen_purple.gif) no-repeat 50% 50%; +} +div.s_lapanen_red { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_red.gif); +} +div.s_lapanen_red_pre { + background: url(/c_images/myhabbo/stickers/lapanen_red.gif) no-repeat 50% 50%; +} +div.s_lapanen_red.gif { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_red); +} +div.s_lapanen_red.gif_pre { + background: url(/c_images/myhabbo/stickers/lapanen_red) no-repeat 50% 50%; +} +div.s_lapanen_yellow { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_yellow.gif); +} +div.s_lapanen_yellow_pre { + background: url(/c_images/myhabbo/stickers/lapanen_yellow.gif) no-repeat 50% 50%; +} +div.s_m { + width: 49px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/m.gif); +} +div.s_m_pre { + background: url(/c_images/myhabbo/stickers/m.gif) no-repeat 50% 50%; +} +div.s_n { + width: 43px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/n.gif); +} +div.s_n_pre { + background: url(/c_images/myhabbo/stickers/n.gif) no-repeat 50% 50%; +} +div.s_newyear_2007_anim { + width: 146px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/newyear_2007_anim.gif); +} +div.s_newyear_2007_anim_pre { + background: url(/c_images/myhabbo/stickers/newyear_2007_anim.gif) no-repeat 50% 50%; +} +div.s_nl_coinguy_animated { + width: 39px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/nl_coinguy_animated.gif); +} +div.s_nl_coinguy_animated_pre { + background: url(/c_images/myhabbo/stickers/nl_coinguy_animated.gif) no-repeat 50% 50%; +} +div.s_nl_cupido { + width: 38px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/nl_cupido.gif); +} +div.s_nl_cupido_pre { + background: url(/c_images/myhabbo/stickers/nl_cupido.gif) no-repeat 50% 50%; +} +div.s_nl_downtown_costume { + width: 52px; height: 86px; + background-image: url(/c_images/myhabbo/stickers/nl_downtown_costume.gif); +} +div.s_nl_downtown_costume_pre { + background: url(/c_images/myhabbo/stickers/nl_downtown_costume.gif) no-repeat 50% 50%; +} +div.s_nl_firecracker { + width: 34px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/nl_firecracker.gif); +} +div.s_nl_firecracker_pre { + background: url(/c_images/myhabbo/stickers/nl_firecracker.gif) no-repeat 50% 50%; +} +div.s_nl_football_guest { + width: 47px; height: 104px; + background-image: url(/c_images/myhabbo/stickers/nl_football_guest.gif); +} +div.s_nl_football_guest_pre { + background: url(/c_images/myhabbo/stickers/nl_football_guest.gif) no-repeat 50% 50%; +} +div.s_nl_limo { + width: 146px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/nl_limo.gif); +} +div.s_nl_limo_pre { + background: url(/c_images/myhabbo/stickers/nl_limo.gif) no-repeat 50% 50%; +} +div.s_nl_wanted_costume { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/nl_wanted_costume.gif); +} +div.s_nl_wanted_costume_pre { + background: url(/c_images/myhabbo/stickers/nl_wanted_costume.gif) no-repeat 50% 50%; +} +div.s_o { + width: 46px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/o.gif); +} +div.s_o_pre { + background: url(/c_images/myhabbo/stickers/o.gif) no-repeat 50% 50%; +} +div.s_o_with_dots { + width: 46px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/o_with_dots.gif); +} +div.s_o_with_dots_pre { + background: url(/c_images/myhabbo/stickers/o_with_dots.gif) no-repeat 50% 50%; +} +div.s_p { + width: 37px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/p.gif); +} +div.s_p_pre { + background: url(/c_images/myhabbo/stickers/p.gif) no-repeat 50% 50%; +} +div.s_pro_eco { + width: 129px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/pro_eco.gif); +} +div.s_pro_eco_pre { + background: url(/c_images/myhabbo/stickers/pro_eco) no-repeat 50% 50%; +} +div.s_q { + width: 46px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/q.gif); +} +div.s_q_pre { + background: url(/c_images/myhabbo/stickers/q.gif) no-repeat 50% 50%; +} +div.s_r { + width: 43px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/r.gif); +} +div.s_r_pre { + background: url(/c_images/myhabbo/stickers/r.gif) no-repeat 50% 50%; +} +div.s_s { + width: 39px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/s.gif); +} +div.s_s_pre { + background: url(/c_images/myhabbo/stickers/s.gif) no-repeat 50% 50%; +} +div.s_skeletor_001 { + width: 32px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/skeletor_001.gif); +} +div.s_skeletor_001_pre { + background: url(/c_images/myhabbo/stickers/skeletor_001.gif) no-repeat 50% 50%; +} +div.s_skull { + width: 27px; height: 29px; + background-image: url(/c_images/myhabbo/stickers/skull.gif); +} +div.s_skull_pre { + background: url(/c_images/myhabbo/stickers/skull.gif) no-repeat 50% 50%; +} +div.s_skull2 { + width: 23px; height: 25px; + background-image: url(/c_images/myhabbo/stickers/skull2.gif); +} +div.s_skull2_pre { + background: url(/c_images/myhabbo/stickers/skull2.gif) no-repeat 50% 50%; +} +div.s_snowball_bumpy { + width: 60px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/snowball_bumpy.gif); +} +div.s_snowball_bumpy_pre { + background: url(/c_images/myhabbo/stickers/snowball_bumpy.gif) no-repeat 50% 50%; +} +div.s_snowball_smooth { + width: 60px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/snowball_smooth.gif); +} +div.s_snowball_smooth_pre { + background: url(/c_images/myhabbo/stickers/snowball_smooth.gif) no-repeat 50% 50%; +} +div.s_ss_bootsitjalapaset_blue { + width: 32px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/ss_bootsitjalapaset_blue.gif); +} +div.s_ss_bootsitjalapaset_blue_pre { + background: url(/c_images/myhabbo/stickers/ss_bootsitjalapaset_blue.gif) no-repeat 50% 50%; +} +div.s_ss_bootsitjalapaset_red { + width: 32px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/ss_bootsitjalapaset_red.gif); +} +div.s_ss_bootsitjalapaset_red_pre { + background: url(/c_images/myhabbo/stickers/ss_bootsitjalapaset_red.gif) no-repeat 50% 50%; +} +div.s_ss_costume_blue { + width: 36px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/ss_costume_blue.gif); +} +div.s_ss_costume_blue_pre { + background: url(/c_images/myhabbo/stickers/ss_costume_blue.gif) no-repeat 50% 50%; +} +div.s_ss_costume_red { + width: 36px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/ss_costume_red.gif); +} +div.s_ss_costume_red_pre { + background: url(/c_images/myhabbo/stickers/ss_costume_red.gif) no-repeat 50% 50%; +} +div.s_ss_hits_by_snowball { + width: 35px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/ss_hits_by_snowball.gif); +} +div.s_ss_hits_by_snowball_pre { + background: url(/c_images/myhabbo/stickers/ss_hits_by_snowball.gif) no-repeat 50% 50%; +} +div.s_ss_snowballmachine { + width: 56px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/ss_snowballmachine.gif); +} +div.s_ss_snowballmachine_pre { + background: url(/c_images/myhabbo/stickers/ss_snowballmachine.gif) no-repeat 50% 50%; +} +div.s_ss_snowflake1_001 { + width: 33px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/ss_snowflake1_001.gif); +} +div.s_ss_snowflake1_001_pre { + background: url(/c_images/myhabbo/stickers/ss_snowflake1_001.gif) no-repeat 50% 50%; +} +div.s_ss_snowflake1_001.gif { + width: 33px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/ss_snowflake1_001); +} +div.s_ss_snowflake1_001.gif_pre { + background: url(/c_images/myhabbo/stickers/ss_snowflake1_001) no-repeat 50% 50%; +} +div.s_ss_snowflake2 { + width: 33px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/ss_snowflake2.gif); +} +div.s_ss_snowflake2_pre { + background: url(/c_images/myhabbo/stickers/ss_snowflake2.gif) no-repeat 50% 50%; +} +div.s_ss_snowman { + width: 55px; height: 107px; + background-image: url(/c_images/myhabbo/stickers/ss_snowman.gif); +} +div.s_ss_snowman_pre { + background: url(/c_images/myhabbo/stickers/ss_snowman.gif) no-repeat 50% 50%; +} +div.s_ss_snowqueen { + width: 38px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/ss_snowqueen.gif); +} +div.s_ss_snowqueen_pre { + background: url(/c_images/myhabbo/stickers/ss_snowqueen.gif) no-repeat 50% 50%; +} +div.s_ss_snowtree { + width: 56px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/ss_snowtree.gif); +} +div.s_ss_snowtree_pre { + background: url(/c_images/myhabbo/stickers/ss_snowtree.gif) no-repeat 50% 50%; +} +div.s_star { + width: 29px; height: 27px; + background-image: url(/c_images/myhabbo/stickers/star.gif); +} +div.s_star_pre { + background: url(/c_images/myhabbo/stickers/star.gif) no-repeat 50% 50%; +} +div.s_sticker_eraser { + width: 130px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/eraser.gif); +} +div.s_sticker_eraser_pre { + background: url(/c_images/myhabbo/stickers/eraser.gif) no-repeat 50% 50%; +} +div.s_sticker_gentleman { + width: 50px; height: 102px; + background-image: url(/c_images/myhabbo/stickers/sticker_gentleman.gif); +} +div.s_sticker_gentleman_pre { + background: url(/c_images/myhabbo/stickers/sticker_gentleman.gif) no-repeat 50% 50%; +} +div.s_sticker_mineur { + width: 59px; height: 103px; + background-image: url(/c_images/myhabbo/stickers/sticker_mineur.gif); +} +div.s_sticker_mineur_pre { + background: url(/c_images/myhabbo/stickers/sticker_mineur.gif) no-repeat 50% 50%; +} +div.s_sticker_pencil { + width: 131px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/pencil.gif); +} +div.s_sticker_pencil_pre { + background: url(/c_images/myhabbo/stickers/pencil.gif) no-repeat 50% 50%; +} +div.s_sticker_pencil_2 { + width: 125px; height: 69px; + background-image: url(/c_images/myhabbo/stickers/pencil_2.gif); +} +div.s_sticker_pencil_2_pre { + background: url(/c_images/myhabbo/stickers/pencil_2.gif) no-repeat 50% 50%; +} +div.s_t { + width: 40px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/t.gif); +} +div.s_t_pre { + background: url(/c_images/myhabbo/stickers/t.gif) no-repeat 50% 50%; +} +div.s_u { + width: 42px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/u.gif); +} +div.s_u_pre { + background: url(/c_images/myhabbo/stickers/u.gif) no-repeat 50% 50%; +} +div.s_uk_childline_sticker { + width: 85px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/uk_childline_sticker.gif); +} +div.s_uk_childline_sticker_pre { + background: url(/c_images/myhabbo/stickers/uk_childline_sticker.gif) no-repeat 50% 50%; +} +div.s_uk_pixel_maze_sticker { + width: 85px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/uk_pixel_maze_sticker.gif); +} +div.s_uk_pixel_maze_sticker_pre { + background: url(/c_images/myhabbo/stickers/uk_pixel_maze_sticker.gif) no-repeat 50% 50%; +} +div.s_underscore { + width: 22px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/underscore.gif); +} +div.s_underscore_pre { + background: url(/c_images/myhabbo/stickers/underscore.gif) no-repeat 50% 50%; +} +div.s_v { + width: 42px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/v.gif); +} +div.s_v_pre { + background: url(/c_images/myhabbo/stickers/v.gif) no-repeat 50% 50%; +} +div.s_val_cupido_anim2 { + width: 55px; height: 99px; + background-image: url(/c_images/myhabbo/stickers/val_cupido_anim2.gif); +} +div.s_val_cupido_anim2_pre { + background: url(/c_images/myhabbo/stickers/val_cupido_anim2.gif) no-repeat 50% 50%; +} +div.s_w { + width: 58px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/w.gif); +} +div.s_w_pre { + background: url(/c_images/myhabbo/stickers/w.gif) no-repeat 50% 50%; +} +div.s_wormhand { + width: 146px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/wormhand.gif); +} +div.s_wormhand_pre { + background: url(/c_images/myhabbo/stickers/wormhand.gif) no-repeat 50% 50%; +} +div.s_x { + width: 40px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/x.gif); +} +div.s_x_pre { + background: url(/c_images/myhabbo/stickers/x.gif) no-repeat 50% 50%; +} +div.s_xmas_box_darkred4 { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_darkred4.gif); +} +div.s_xmas_box_darkred4_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_darkred4.gif) no-repeat 50% 50%; +} +div.s_xmas_box_green { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_green.gif); +} +div.s_xmas_box_green_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_green.gif) no-repeat 50% 50%; +} +div.s_xmas_box_lime { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_lime.gif); +} +div.s_xmas_box_lime_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_lime.gif) no-repeat 50% 50%; +} +div.s_xmas_box_orange { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_orange.gif); +} +div.s_xmas_box_orange_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_orange.gif) no-repeat 50% 50%; +} +div.s_xmas_box_red { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_red.gif); +} +div.s_xmas_box_red_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_red.gif) no-repeat 50% 50%; +} +div.s_xmas_box_suit_blue { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_suit_blue.gif); +} +div.s_xmas_box_suit_blue_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_suit_blue.gif) no-repeat 50% 50%; +} +div.s_xmas_box_suit_mint { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_suit_mint.gif); +} +div.s_xmas_box_suit_mint_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_suit_mint.gif) no-repeat 50% 50%; +} +div.s_xmas_box_suit_mint3 { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_suit_mint3.gif); +} +div.s_xmas_box_suit_mint3_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_suit_mint3.gif) no-repeat 50% 50%; +} +div.s_xmas_box_suit_orange { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_suit_orange.gif); +} +div.s_xmas_box_suit_orange_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_suit_orange.gif) no-repeat 50% 50%; +} +div.s_xmas_box_suit_pink { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_suit_pink.gif); +} +div.s_xmas_box_suit_pink_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_suit_pink.gif) no-repeat 50% 50%; +} +div.s_xmas_box_violet { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_violet.gif); +} +div.s_xmas_box_violet_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_violet.gif) no-repeat 50% 50%; +} +div.s_xmas_boxs { + width: 141px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/xmas_boxs.gif); +} +div.s_xmas_boxs_pre { + background: url(/c_images/myhabbo/stickers/xmas_boxs.gif) no-repeat 50% 50%; +} +div.s_xmas_cat_animated { + width: 30px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/xmas_cat_animated.gif); +} +div.s_xmas_cat_animated_pre { + background: url(/c_images/myhabbo/stickers/xmas_cat_animated.gif) no-repeat 50% 50%; +} +div.s_xmas_dogi_animated { + width: 40px; height: 70px; + background-image: url(/c_images/myhabbo/stickers/xmas_dogi_animated.gif); +} +div.s_xmas_dogi_animated_pre { + background: url(/c_images/myhabbo/stickers/xmas_dogi_animated.gif) no-repeat 50% 50%; +} +div.s_xmas_dograindeer_sticker { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/xmas_dograindeer_sticker.gif); +} +div.s_xmas_dograindeer_sticker_pre { + background: url(/c_images/myhabbo/stickers/xmas_dograindeer_sticker.gif) no-repeat 50% 50%; +} +div.s_xmas_gift-afro { + width: 46px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift-afro.gif); +} +div.s_xmas_gift-afro_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift-afro.gif) no-repeat 50% 50%; +} +div.s_xmas_gift_afro { + width: 46px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_afro.gif); +} +div.s_xmas_gift_afro_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_afro.gif) no-repeat 50% 50%; +} +div.s_xmas_gift_strap_corner_l { + width: 102px; height: 134px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_l.gif); +} +div.s_xmas_gift_strap_corner_l_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_l.gif) no-repeat 50% 50%; +} +div.s_xmas_gift_strap_corner_l_bundle { + width: 102px; height: 134px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_l.gif); +} +div.s_xmas_gift_strap_corner_l_bundle_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_l.gif) no-repeat 50% 50%; +} +div.s_xmas_gift_strap_corner_r { + width: 102px; height: 134px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_r.gif); +} +div.s_xmas_gift_strap_corner_r_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_r.gif) no-repeat 50% 50%; +} +div.s_xmas_gift_strap_h { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_strap_h.gif); +} +div.s_xmas_gift_strap_h_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_strap_h.gif) no-repeat 50% 50%; +} +div.s_xmas_gift_strap_v { + width: 51px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_strap_v.gif); +} +div.s_xmas_gift_strap_v_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_strap_v.gif) no-repeat 50% 50%; +} +div.s_xmas_hc_ribbon { + width: 36px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/xmas_hc_ribbon.gif); +} +div.s_xmas_hc_ribbon_pre { + background: url(/c_images/myhabbo/stickers/xmas_hc_ribbon.gif) no-repeat 50% 50%; +} +div.s_xmas_icicles { + width: 146px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/xmas_icicles.gif); +} +div.s_xmas_icicles_pre { + background: url(/c_images/myhabbo/stickers/xmas_icicles.gif) no-repeat 50% 50%; +} +div.s_xmas_rastasanta { + width: 66px; height: 98px; + background-image: url(/c_images/myhabbo/stickers/xmas_rastasanta.gif); +} +div.s_xmas_rastasanta_pre { + background: url(/c_images/myhabbo/stickers/xmas_rastasanta.gif) no-repeat 50% 50%; +} +div.s_xmas_skater_costume { + width: 147px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/Xmas_skater_costume.gif); +} +div.s_xmas_skater_costume_pre { + background: url(/c_images/myhabbo/stickers/Xmas_skater_costume.gif) no-repeat 50% 50%; +} +div.s_xmas_snowlantern_anim { + width: 137px; height: 112px; + background-image: url(/c_images/myhabbo/stickers/xmas_snowlantern_anim.gif); +} +div.s_xmas_snowlantern_anim_pre { + background: url(/c_images/myhabbo/stickers/xmas_snowlantern_anim.gif) no-repeat 50% 50%; +} +div.s_xmas_strap_horiz_gold { + width: 139px; height: 37px; + background-image: url(/c_images/myhabbo/stickers/xmas_strap_horiz_gold.gif); +} +div.s_xmas_strap_horiz_gold_pre { + background: url(/c_images/myhabbo/stickers/xmas_strap_horiz_gold.gif) no-repeat 50% 50%; +} +div.s_xmas_strap_horiz_silve { + width: 139px; height: 37px; + background-image: url(/c_images/myhabbo/stickers/xmas_strap_horiz_silve.gif); +} +div.s_xmas_strap_horiz_silve_pre { + background: url(/c_images/myhabbo/stickers/xmas_strap_horiz_silve.gif) no-repeat 50% 50%; +} +div.s_xmas_strap_vertical_gold { + width: 43px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/xmas_strap_vertical_gold.gif); +} +div.s_xmas_strap_vertical_gold_pre { + background: url(/c_images/myhabbo/stickers/xmas_strap_vertical_gold.gif) no-repeat 50% 50%; +} +div.s_xmas_strap_vertical_silver { + width: 43px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/xmas_strap_vertical_silver.gif); +} +div.s_xmas_strap_vertical_silver_pre { + background: url(/c_images/myhabbo/stickers/xmas_strap_vertical_silver.gif) no-repeat 50% 50%; +} +div.s_xmas_tree01_animated { + width: 60px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/xmas_tree01_animated.gif); +} +div.s_xmas_tree01_animated_pre { + background: url(/c_images/myhabbo/stickers/xmas_tree01_animated.gif) no-repeat 50% 50%; +} +div.s_xmas_tree_costume { + width: 46px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/xmas_tree_costume.gif); +} +div.s_xmas_tree_costume_pre { + background: url(/c_images/myhabbo/stickers/xmas_tree_costume.gif) no-repeat 50% 50%; +} +div.s_xmas_xtree_sticker { + width: 147px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/xmas_xtree_sticker.gif); +} +div.s_xmas_xtree_sticker_pre { + background: url(/c_images/myhabbo/stickers/xmas_xtree_sticker.gif) no-repeat 50% 50%; +} +div.s_xmaslights_anim { + width: 158px; height: 37px; + background-image: url(/c_images/myhabbo/stickers/xmaslights_anim.gif); +} +div.s_xmaslights_anim_pre { + background: url(/c_images/myhabbo/stickers/xmaslights_anim.gif) no-repeat 50% 50%; +} +div.s_y { + width: 39px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/y.gif); +} +div.s_y_pre { + background: url(/c_images/myhabbo/stickers/y.gif) no-repeat 50% 50%; +} +div.s_z { + width: 42px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/z.gif); +} +div.s_z_pre { + background: url(/c_images/myhabbo/stickers/z.gif) no-repeat 50% 50%; +} +div.s_zombiehand { + width: 146px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/zombiehand.gif); +} +div.s_zombiehand_pre { + background: url(/c_images/myhabbo/stickers/zombiehand.gif) no-repeat 50% 50%; +} +div.s_zombiepupu { + width: 44px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/zombiepupu.gif); +} +div.s_zombiepupu_pre { + background: url(/c_images/myhabbo/stickers/zombiepupu.gif) no-repeat 50% 50%; +} +div.s_barbequeset { + width: 131px; height: 110px; + background-image: url(/c_images/myhabbo/stickers/barbequeset.gif); +} +div.s_barbequeset_pre { + background: url(/c_images/myhabbo/stickers/barbequeset.gif) no-repeat 50% 50%; +} +div.s_clothesline { + width: 146px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/clothesline.gif); +} +div.s_clothesline_pre { + background: url(/c_images/myhabbo/stickers/clothesline.gif) no-repeat 50% 50%; +} +div.s_claws_lostc_twitchyanim { + width: 75px; height: 68px; + background-image: url(/c_images/myhabbo/stickers/claws_lostc_twitchyanim.gif); +} +div.s_claws_lostc_twitchyanim_pre { + background: url(/c_images/myhabbo/stickers/claws_lostc_twitchyanim.gif) no-repeat 50% 50%; +} +div.s_summer_beachballafro { + width: 44px; height: 43px; + background-image: url(/c_images/myhabbo/stickers/summer_beachballafro.gif); +} +div.s_summer_beachballafro_pre { + background: url(/c_images/myhabbo/stickers/summer_beachballafro.gif) no-repeat 50% 50%; +} +div.s_summer_blueberry_left { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif); +} +div.s_summer_blueberry_left_pre { + background: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif) no-repeat 50% 50%; +} +div.s_summer_blueberry_right { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summer_blueberry_right.gif); +} +div.s_summer_blueberry_right_pre { + background: url(/c_images/myhabbo/stickers/summer_blueberry_right.gif) no-repeat 50% 50%; +} +div.s_summer_cloud1 { + width: 146px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/summer_cloud1.gif); +} +div.s_summer_cloud1_pre { + background: url(/c_images/myhabbo/stickers/summer_cloud1.gif) no-repeat 50% 50%; +} +div.s_summer_cloud2 { + width: 92px; height: 71px; + background-image: url(/c_images/myhabbo/stickers/summer_cloud2.gif); +} +div.s_summer_cloud2_pre { + background: url(/c_images/myhabbo/stickers/summer_cloud2.gif) no-repeat 50% 50%; +} +div.s_summer_cloud3 { + width: 88px; height: 73px; + background-image: url(/c_images/myhabbo/stickers/summer_cloud3.gif); +} +div.s_summer_cloud3_pre { + background: url(/c_images/myhabbo/stickers/summer_cloud3.gif) no-repeat 50% 50%; +} +div.s_summer_kite { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summer_kite.gif); +} +div.s_summer_kite_pre { + background: url(/c_images/myhabbo/stickers/summer_kite.gif) no-repeat 50% 50%; +} +div.s_summer_rollerblades { + width: 23px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/summer_rollerblades.gif); +} +div.s_summer_rollerblades_pre { + background: url(/c_images/myhabbo/stickers/summer_rollerblades.gif) no-repeat 50% 50%; +} +div.s_summer_rowingboat { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summer_rowingboat.gif); +} +div.s_summer_rowingboat_pre { + background: url(/c_images/myhabbo/stickers/summer_rowingboat.gif) no-repeat 50% 50%; +} +div.s_summer_skateboard { + width: 74px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/summer_skateboard.gif); +} +div.s_summer_skateboard_pre { + background: url(/c_images/myhabbo/stickers/summer_skateboard.gif) no-repeat 50% 50%; +} +div.s_summer_swim_trunk { + width: 84px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/summer_swim_trunk.gif); +} +div.s_summer_swim_trunk_pre { + background: url(/c_images/myhabbo/stickers/summer_swim_trunk.gif) no-repeat 50% 50%; +} +div.s_summersticker_strawberry { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summersticker_strawberry.gif); +} +div.s_summersticker_strawberry_pre { + background: url(/c_images/myhabbo/stickers/summersticker_strawberry.gif) no-repeat 50% 50%; +} +div.s_sunflower { + width: 35px; height: 103px; + background-image: url(/c_images/myhabbo/stickers/sunflower.gif); +} +div.s_sunflower_pre { + background: url(/c_images/myhabbo/stickers/sunflower.gif) no-repeat 50% 50%; +} +div.s_sticker_mathoffman { + width: 160px; height: 200px; + background-image: url(/c_images/myhabbo/stickers/mat_hoffman_sticker.gif); +} +div.s_sticker_mathoffman_pre { + background: url(/c_images/myhabbo/stickers/mat_hoffman_sticker.gif) no-repeat 50% 50%; +} +div.s_sticker_3years { + width: 103px; height: 69px; + background-image: url(/c_images/myhabbo/stickers/3_years_usa.gif); +} +div.s_sticker_3years_pre { + background: url(/c_images/myhabbo/stickers/3_years_usa.gif) no-repeat 50% 50%; +} +div.s_anim_king { + width: 73px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/anim_king.gif); +} +div.s_anim_king_pre { + background: url(/c_images/myhabbo/stickers/anim_king.gif) no-repeat 50% 50%; +} +div.s_filmstrip_corner_botleft { + width: 36px; height: 36px; + background-image: url(/c_images/myhabbo/stickers/filmstrip_corner_botleft.gif); +} +div.s_filmstrip_corner_botleft_pre { + background: url(/c_images/myhabbo/stickers/filmstrip_corner_botleft.gif) no-repeat 50% 50%; +} +div.s_filmstrip_corner_botright { + width: 36px; height: 36px; + background-image: url(/c_images/myhabbo/stickers/filmstrip_corner_botright.gif); +} +div.s_filmstrip_corner_botright_pre { + background: url(/c_images/myhabbo/stickers/filmstrip_corner_botright.gif) no-repeat 50% 50%; +} +div.s_filmstrip_corner_topleft { + width: 36px; height: 36px; + background-image: url(/c_images/myhabbo/stickers/filmstrip_corner_topleft.gif); +} +div.s_filmstrip_corner_topleft_pre { + background: url(/c_images/myhabbo/stickers/filmstrip_corner_topleft.gif) no-repeat 50% 50%; +} +div.s_filmstrip_corner_topright { + width: 36px; height: 36px; + background-image: url(/c_images/myhabbo/stickers/filmstrip_corner_topright.gif); +} +div.s_filmstrip_corner_topright_pre { + background: url(/c_images/myhabbo/stickers/filmstrip_corner_topright.gif) no-repeat 50% 50%; +} +div.s_filmstrip_horiz { + width: 144px; height: 16px; + background-image: url(/c_images/myhabbo/stickers/filmstrip_horiz.gif); +} +div.s_filmstrip_horiz_pre { + background: url(/c_images/myhabbo/stickers/filmstrip_horiz.gif) no-repeat 50% 50%; +} +div.s_filmstrip_vert { + width: 16px; height: 144px; + background-image: url(/c_images/myhabbo/stickers/filmstrip_vert.gif); +} +div.s_filmstrip_vert_pre { + background: url(/c_images/myhabbo/stickers/filmstrip_vert.gif) no-repeat 50% 50%; +} +div.s_hw_3d_glasses { + width: 26px; height: 15px; + background-image: url(/c_images/myhabbo/stickers/hw_3d_glasses.gif); +} +div.s_hw_3d_glasses_pre { + background: url(/c_images/myhabbo/stickers/hw_3d_glasses.gif) no-repeat 50% 50%; +} +div.s_hw_actionstar { + width: 56px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/hw_actionstar.gif); +} +div.s_hw_actionstar_pre { + background: url(/c_images/myhabbo/stickers/hw_actionstar.gif) no-repeat 50% 50%; +} +div.s_hw_bigcamera { + width: 149px; height: 121px; + background-image: url(/c_images/myhabbo/stickers/hw_bigcamera.gif); +} +div.s_hw_bigcamera_pre { + background: url(/c_images/myhabbo/stickers/hw_bigcamera.gif) no-repeat 50% 50%; +} +div.s_hw_bouncers { + width: 58px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/hw_bouncers.gif); +} +div.s_hw_bouncers_pre { + background: url(/c_images/myhabbo/stickers/hw_bouncers.gif) no-repeat 50% 50%; +} +div.s_hw_camera_l { + width: 68px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/hw_camera_l.gif); +} +div.s_hw_camera_l_pre { + background: url(/c_images/myhabbo/stickers/hw_camera_l.gif) no-repeat 50% 50%; +} +div.s_hw_camera_r { + width: 68px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/hw_camera_r.gif); +} +div.s_hw_camera_r_pre { + background: url(/c_images/myhabbo/stickers/hw_camera_r.gif) no-repeat 50% 50%; +} +div.s_hw_carpet_corner_down { + width: 230px; height: 111px; + background-image: url(/c_images/myhabbo/stickers/hw_carpet_corner_down.gif); +} +div.s_hw_carpet_corner_down_pre { + background: url(/c_images/myhabbo/stickers/hw_carpet_corner_down.gif) no-repeat 50% 50%; +} +div.s_hw_carpet_corner_up { + width: 230px; height: 111px; + background-image: url(/c_images/myhabbo/stickers/hw_carpet_corner_up.gif); +} +div.s_hw_carpet_corner_up_pre { + background: url(/c_images/myhabbo/stickers/hw_carpet_corner_up.gif) no-repeat 50% 50%; +} +div.s_hw_carpet_end_ldown { + width: 230px; height: 111px; + background-image: url(/c_images/myhabbo/stickers/hw_carpet_end_ldown.gif); +} +div.s_hw_carpet_end_ldown_pre { + background: url(/c_images/myhabbo/stickers/hw_carpet_end_ldown.gif) no-repeat 50% 50%; +} +div.s_hw_carpet_end_lup { + width: 230px; height: 111px; + background-image: url(/c_images/myhabbo/stickers/hw_carpet_end_lup.gif); +} +div.s_hw_carpet_end_lup_pre { + background: url(/c_images/myhabbo/stickers/hw_carpet_end_lup.gif) no-repeat 50% 50%; +} +div.s_hw_carpet_end_rdown { + width: 230px; height: 111px; + background-image: url(/c_images/myhabbo/stickers/hw_carpet_end_rdown.gif); +} +div.s_hw_carpet_end_rdown_pre { + background: url(/c_images/myhabbo/stickers/hw_carpet_end_rdown.gif) no-repeat 50% 50%; +} +div.s_hw_carpet_end_rup { + width: 206px; height: 107px; + background-image: url(/c_images/myhabbo/stickers/hw_carpet_end_rup.gif); +} +div.s_hw_carpet_end_rup_pre { + background: url(/c_images/myhabbo/stickers/hw_carpet_end_rup.gif) no-repeat 50% 50%; +} +div.s_hw_carpet_l { + width: 211px; height: 107px; + background-image: url(/c_images/myhabbo/stickers/hw_carpet_l.gif); +} +div.s_hw_carpet_l_pre { + background: url(/c_images/myhabbo/stickers/hw_carpet_l.gif) no-repeat 50% 50%; +} +div.s_hw_carpet_r { + width: 211px; height: 107px; + background-image: url(/c_images/myhabbo/stickers/hw_carpet_r.gif); +} +div.s_hw_carpet_r_pre { + background: url(/c_images/myhabbo/stickers/hw_carpet_r.gif) no-repeat 50% 50%; +} +div.s_hw_hairspray { + width: 83px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/hw_hairspray.gif); +} +div.s_hw_hairspray_pre { + background: url(/c_images/myhabbo/stickers/hw_hairspray.gif) no-repeat 50% 50%; +} +div.s_hw_hippie { + width: 85px; height: 99px; + background-image: url(/c_images/myhabbo/stickers/hw_hippie_2.gif); +} +div.s_hw_hippie_pre { + background: url(/c_images/myhabbo/stickers/hw_hippie_2.gif) no-repeat 50% 50%; +} +div.s_hw_hitcher { + width: 80px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/hw_hitcher.gif); +} +div.s_hw_hitcher_pre { + background: url(/c_images/myhabbo/stickers/hw_hitcher.gif) no-repeat 50% 50%; +} +div.s_hw_inmate { + width: 104px; height: 107px; + background-image: url(/c_images/myhabbo/stickers/hw_inmate.gif); +} +div.s_hw_inmate_pre { + background: url(/c_images/myhabbo/stickers/hw_inmate.gif) no-repeat 50% 50%; +} +div.s_hw_kenny_burger { + width: 93px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/hw_kenny_burger.gif); +} +div.s_hw_kenny_burger_pre { + background: url(/c_images/myhabbo/stickers/hw_kenny_burger.gif) no-repeat 50% 50%; +} +div.s_hw_kenny_fight { + width: 84px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/hw_kenny_fight.gif); +} +div.s_hw_kenny_fight_pre { + background: url(/c_images/myhabbo/stickers/hw_kenny_fight.gif) no-repeat 50% 50%; +} +div.s_hw_kenny_shock { + width: 61px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/hw_kenny_shock.gif); +} +div.s_hw_kenny_shock_pre { + background: url(/c_images/myhabbo/stickers/hw_kenny_shock.gif) no-repeat 50% 50%; +} +div.s_hw_logoanim { + width: 157px; height: 103px; + background-image: url(/c_images/myhabbo/stickers/hw_logoanim.gif); +} +div.s_hw_logoanim_pre { + background: url(/c_images/myhabbo/stickers/hw_logoanim.gif) no-repeat 50% 50%; +} +div.s_hw_mega_afro { + width: 58px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/hw_mega_afro.gif); +} +div.s_hw_mega_afro_pre { + background: url(/c_images/myhabbo/stickers/hw_mega_afro.gif) no-repeat 50% 50%; +} +div.s_hw_shades { + width: 26px; height: 15px; + background-image: url(/c_images/myhabbo/stickers/hw_shades.gif); +} +div.s_hw_shades_pre { + background: url(/c_images/myhabbo/stickers/hw_shades.gif) no-repeat 50% 50%; +} +div.s_hw_speedobunny { + width: 87px; height: 123px; + background-image: url(/c_images/myhabbo/stickers/hw_speedobunny.gif); +} +div.s_hw_speedobunny_pre { + background: url(/c_images/myhabbo/stickers/hw_speedobunny.gif) no-repeat 50% 50%; +} +div.s_limo_back { + width: 131px; height: 104px; + background-image: url(/c_images/myhabbo/stickers/limo_back.gif); +} +div.s_limo_back_pre { + background: url(/c_images/myhabbo/stickers/limo_back.gif) no-repeat 50% 50%; +} +div.s_limo_doorpiece { + width: 97px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/limo_doorpiece.gif); +} +div.s_limo_doorpiece_pre { + background: url(/c_images/myhabbo/stickers/limo_doorpiece.gif) no-repeat 50% 50%; +} +div.s_limo_front { + width: 116px; height: 107px; + background-image: url(/c_images/myhabbo/stickers/limo_front.gif); +} +div.s_limo_front_pre { + background: url(/c_images/myhabbo/stickers/limo_front.gif) no-repeat 50% 50%; +} +div.s_limo_windowpiece { + width: 97px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/limo_windowpiece.gif); +} +div.s_limo_windowpiece_pre { + background: url(/c_images/myhabbo/stickers/limo_windowpiece.gif) no-repeat 50% 50%; +} +div.s_money_o { + width: 146px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/money_o.gif); +} +div.s_money_o_pre { + background: url(/c_images/myhabbo/stickers/money_o.gif) no-repeat 50% 50%; +} +div.s_money_stash { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/money_stash.gif); +} +div.s_money_stash_pre { + background: url(/c_images/myhabbo/stickers/money_stash.gif) no-repeat 50% 50%; +} +div.s_money_v { + width: 58px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/money_v.gif); +} +div.s_money_v_pre { + background: url(/c_images/myhabbo/stickers/money_v.gif) no-repeat 50% 50%; +} +div.s_spotlight_sticker2_001 { + width: 226px; height: 138px; + background-image: url(/c_images/myhabbo/stickers/spotlight_sticker2_001.gif); +} +div.s_spotlight_sticker2_001_pre { + background: url(/c_images/myhabbo/stickers/spotlight_sticker2_001.gif) no-repeat 50% 50%; +} +div.s_spotlight_sticker_002 { + width: 200px; height: 138px; + background-image: url(/c_images/myhabbo/stickers/spotlight_sticker_002.gif); +} +div.s_spotlight_sticker_002_pre { + background: url(/c_images/myhabbo/stickers/spotlight_sticker_002.gif) no-repeat 50% 50%; +} +div.s_hwood07_klaffi2 { + width: 240px; height: 250px; + background-image: url(/c_images/myhabbo/stickers/hwood07_klaffi2.gif); +} +div.s_hwood07_klaffi2_pre { + background: url(/c_images/myhabbo/stickers/hwood07_klaffi2.gif) no-repeat 50% 50%; +} +div.s_sticker_gala { + width: 282px; height: 251px; + background-image: url(/c_images/myhabbo/stickers/gala_sticker.gif); +} +div.s_sticker_gala_pre { + background: url(/c_images/myhabbo/stickers/gala_sticker.gif) no-repeat 50% 50%; +} +div.s_gala sticker { + width: 282px; height: 251px; + background-image: url(/c_images/myhabbo/stickers/galasticker.gif); +} +div.s_gala sticker_pre { + background: url(/c_images/myhabbo/stickers/galasticker.gif) no-repeat 50% 50%; +} +div.s_hw sticker_galafinal { + width: 282px; height: 251px; + background-image: url(/c_images/myhabbo/stickers/galasticker.gif); +} +div.s_hw sticker_galafinal_pre { + background: url(/c_images/myhabbo/stickers/galasticker.gif) no-repeat 50% 50%; +} +div.s_kir_stamp1 { + width: 156px; height: 156px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp1.gif); +} +div.s_kir_stamp1_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp1.gif) no-repeat 50% 50%; +} +div.s_kir_stamp2 { + width: 156px; height: 156px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp2.gif); +} +div.s_kir_stamp2_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp2.gif) no-repeat 50% 50%; +} +div.s_kir_stamp5 { + width: 156px; height: 156px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp5.gif); +} +div.s_kir_stamp5_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp5.gif) no-repeat 50% 50%; +} +div.s_kir_sticker { + width: 179px; height: 118px; + background-image: url(/c_images/myhabbo/stickers/kir_sticker.gif); +} +div.s_kir_sticker_pre { + background: url(/c_images/myhabbo/stickers/kir_sticker.gif) no-repeat 50% 50%; +} +div.s_kir_stamp4a { + width: 156px; height: 156px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp4a.gif); +} +div.s_kir_stamp4a_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp4a.gif) no-repeat 50% 50%; +} +div.s_kir_stamp3b { + width: 156px; height: 156px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp3b.gif); +} +div.s_kir_stamp3b_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp3b.gif) no-repeat 50% 50%; +} +div.s_hw_moh_logo { + width: 157px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/hw_moh_logo.gif); +} +div.s_hw_moh_logo_pre { + background: url(/c_images/myhabbo/stickers/hw_moh_logo.gif) no-repeat 50% 50%; +} +div.s_hw_bassplayer_boy { + width: 71px; height: 105px; + background-image: url(/c_images/myhabbo/stickers/hw_bassplayer_boy.gif); +} +div.s_hw_bassplayer_boy_pre { + background: url(/c_images/myhabbo/stickers/hw_bassplayer_boy.gif) no-repeat 50% 50%; +} +div.s_hw_guitarplayer_black { + width: 93px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/hw_guitarplayer_black.gif); +} +div.s_hw_guitarplayer_black_pre { + background: url(/c_images/myhabbo/stickers/hw_guitarplayer_black.gif) no-repeat 50% 50%; +} +div.s_hw_guitarplayer_white { + width: 93px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/hw_guitarplayer_white.gif); +} +div.s_hw_guitarplayer_white_pre { + background: url(/c_images/myhabbo/stickers/hw_guitarplayer_white.gif) no-repeat 50% 50%; +} +div.s_hw_drummer_boy { + width: 137px; height: 141px; + background-image: url(/c_images/myhabbo/stickers/hw_drummer_boy.gif); +} +div.s_hw_drummer_boy_pre { + background: url(/c_images/myhabbo/stickers/hw_drummer_boy.gif) no-repeat 50% 50%; +} +div.s_hw_drummer_girl { + width: 137px; height: 141px; + background-image: url(/c_images/myhabbo/stickers/hw_drummer_girl.gif); +} +div.s_hw_drummer_girl_pre { + background: url(/c_images/myhabbo/stickers/hw_drummer_girl.gif) no-repeat 50% 50%; +} +div.s_hw_microphone { + width: 37px; height: 69px; + background-image: url(/c_images/myhabbo/stickers/hw_microphone.gif); +} +div.s_hw_microphone_pre { + background: url(/c_images/myhabbo/stickers/hw_microphone.gif) no-repeat 50% 50%; +} +div.s_hw_camopants_l { + width: 24px; height: 26px; + background-image: url(/c_images/myhabbo/stickers/hw_camopants_l.gif); +} +div.s_hw_camopants_l_pre { + background: url(/c_images/myhabbo/stickers/hw_camopants_l.gif) no-repeat 50% 50%; +} +div.s_hw_amp_big { + width: 61px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/hw_amp_big.gif); +} +div.s_hw_amp_big_pre { + background: url(/c_images/myhabbo/stickers/hw_amp_big.gif) no-repeat 50% 50%; +} +div.s_hw_amp_small { + width: 66px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/hw_amp_small.gif); +} +div.s_hw_amp_small_pre { + background: url(/c_images/myhabbo/stickers/hw_amp_small.gif) no-repeat 50% 50%; +} +div.s_hw_bassplayer_girl2 { + width: 70px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/hw_bassplayer_girl2.gif); +} +div.s_hw_bassplayer_girl2_pre { + background: url(/c_images/myhabbo/stickers/hw_bassplayer_girl2.gif) no-repeat 50% 50%; +} +div.s_hw_camopants_r1 { + width: 24px; height: 26px; + background-image: url(/c_images/myhabbo/stickers/hw_camopants_r1.gif); +} +div.s_hw_camopants_r1_pre { + background: url(/c_images/myhabbo/stickers/hw_camopants_r1.gif) no-repeat 50% 50%; +} +div.s_hw_keyboards1 { + width: 68px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/hw_keyboards1.gif); +} +div.s_hw_keyboards1_pre { + background: url(/c_images/myhabbo/stickers/hw_keyboards1.gif) no-repeat 50% 50%; +} +div.s_hw_keyboards2 { + width: 68px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/hw_keyboards2.gif); +} +div.s_hw_keyboards2_pre { + background: url(/c_images/myhabbo/stickers/hw_keyboards2.gif) no-repeat 50% 50%; +} +div.s_poptarts_cv1b2 { + width: 152px; height: 189px; + background-image: url(/c_images/myhabbo/stickers/poptarts_cv1ba.gif); +} +div.s_poptarts_cv1b2_pre { + background: url(/c_images/myhabbo/stickers/poptarts_cv1ba.gif) no-repeat 50% 50%; +} +div.s_poptarts_cv2ba { + width: 109px; height: 154px; + background-image: url(/c_images/myhabbo/stickers/poptarts_cv2ba.gif); +} +div.s_poptarts_cv2ba_pre { + background: url(/c_images/myhabbo/stickers/poptarts_cv2ba.gif) no-repeat 50% 50%; +} +div.s_poptarts_cv1ba.gif { + width: 152px; height: 189px; + background-image: url(/c_images/myhabbo/stickers/poptarts_cv1ba); +} +div.s_poptarts_cv1ba.gif_pre { + background: url(/c_images/myhabbo/stickers/poptarts_cv1ba.gif) no-repeat 50% 50%; +} +div.s_poptarts_cv2b2 { + width: 109px; height: 154px; + background-image: url(/c_images/myhabbo/stickers/poptarts_cv2ba.gif); +} +div.s_poptarts_cv2b2_pre { + background: url(/c_images/myhabbo/stickers/poptarts_cv2ba.gif) no-repeat 50% 50%; +} +div.s_poptarts_sb1b { + width: 153px; height: 189px; + background-image: url(/c_images/myhabbo/stickers/poptarts_sb1b.gif); +} +div.s_poptarts_sb1b_pre { + background: url(/c_images/myhabbo/stickers/poptarts_sb1b.gif) no-repeat 50% 50%; +} +div.s_poptarts_sb2b { + width: 110px; height: 152px; + background-image: url(/c_images/myhabbo/stickers/poptarts_sb2b.gif); +} +div.s_poptarts_sb2b_pre { + background: url(/c_images/myhabbo/stickers/poptarts_sb2b.gif) no-repeat 50% 50%; +} +div.s_candycorn { + width: 153px; height: 144px; + background-image: url(/c_images/myhabbo/stickers/candycorn.gif); +} +div.s_candycorn_pre { + background: url(/c_images/myhabbo/stickers/candycorn.gif) no-repeat 50% 50%; +} +div.s_eggs { + width: 164px; height: 212px; + background-image: url(/c_images/myhabbo/stickers/eggs.gif); +} +div.s_eggs_pre { + background: url(/c_images/myhabbo/stickers/eggs.gif) no-repeat 50% 50%; +} +div.s_tproll { + width: 487px; height: 221px; + background-image: url(/c_images/myhabbo/stickers/tproll.gif); +} +div.s_tproll_pre { + background: url(/c_images/myhabbo/stickers/tproll.gif) no-repeat 50% 50%; +} +div.s_homer { + width: 82px; height: 166px; + background-image: url(/c_images/myhabbo/stickers/homer.gif); +} +div.s_homer_pre { + background: url(/c_images/myhabbo/stickers/homer.gif) no-repeat 50% 50%; +} +div.s_loderse { + width: 104px; height: 186px; + background-image: url(/c_images/myhabbo/stickers/loderse.gif); +} +div.s_loderse_pre { + background: url(/c_images/myhabbo/stickers/loderse.gif) no-repeat 50% 50%; +} +div.s_squib { + width: 90px; height: 190px; + background-image: url(/c_images/myhabbo/stickers/Squib.gif); +} +div.s_squib_pre { + background: url(/c_images/myhabbo/stickers/Squib.gif) no-repeat 50% 50%; +} +div.s_superjatt { + width: 95px; height: 181px; + background-image: url(/c_images/myhabbo/stickers/superjatt.gif); +} +div.s_superjatt_pre { + background: url(/c_images/myhabbo/stickers/superjatt.gif) no-repeat 50% 50%; +} +div.s_whimsy { + width: 90px; height: 202px; + background-image: url(/c_images/myhabbo/stickers/Whimsy.gif); +} +div.s_whimsy_pre { + background: url(/c_images/myhabbo/stickers/Whimsy.gif) no-repeat 50% 50%; +} +div.s_tepetepe2 { + width: 180px; height: 200px; + background-image: url(/c_images/myhabbo/stickers/tepetepe2.gif); +} +div.s_tepetepe2_pre { + background: url(/c_images/myhabbo/stickers/tepetepe2.gif) no-repeat 50% 50%; +} +div.s_pirate { + width: 80px; height: 166px; + background-image: url(/c_images/myhabbo/stickers/Pirate.gif); +} +div.s_pirate_pre { + background: url(/c_images/myhabbo/stickers/Pirate.gif) no-repeat 50% 50%; +} +div.s_globalw_sticker_001 { + width: 295px; height: 183px; + background-image: url(/c_images/myhabbo/stickers/GlobalW_sticker_001.gif); +} +div.s_globalw_sticker_001_pre { + background: url(/c_images/myhabbo/stickers/) no-repeat 50% 50%; +} +div.s_teensbear { + width: 143px; height: 148px; + background-image: url(/c_images/myhabbo/stickers/teensbear.gif); +} +div.s_teensbear_pre { + background: url(/c_images/myhabbo/stickers/) no-repeat 50% 50%; +} +div.s_greenpeacewhite { + width: 137px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/greenpeacewhite.png); +} +div.s_greenpeacewhite_pre { + background: url(/c_images/myhabbo/stickers/) no-repeat 50% 50%; +} +div.s_xmas_smilla_snowboard { + width: 106px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/xmas_smilla_snowboard.gif); +} +div.s_xmas_smilla_snowboard_pre { + background: url(/c_images/myhabbo/stickers/xmas_smilla_snowboard.gif) no-repeat 50% 50%; +} +div.s_xmassticker_anim_3000 { + width: 219px; height: 226px; + background-image: url(/c_images/myhabbo/stickers/XmasSticker_anim_3000.gif); +} +div.s_xmassticker_anim_3000_pre { + background: url(/c_images/myhabbo/stickers/XmasSticker_anim_3000.gif) no-repeat 50% 50%; +} +div.s_sticker_nautical_present { + width: 148px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/Sticker_nautical_present.gif); +} +div.s_sticker_nautical_present_pre { + background: url(/c_images/myhabbo/stickers/Sticker_nautical_present.gif) no-repeat 50% 50%; +} +div.s_xmas_jeff_donkey_reindeer_sticker { + width: 85px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/Xmas_Jeff_Donkey_Reindeer_Sticker.gif); +} +div.s_xmas_jeff_donkey_reindeer_sticker_pre { + background: url(/c_images/myhabbo/stickers/Xmas_Jeff_Donkey_Reindeer_Sticker.gif) no-repeat 50% 50%; +} +div.s_adidas_bounce_sticker { + width: 152px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/Adidas_Bounce_Sticker.gif); +} +div.s_adidas_bounce_sticker_pre { + background: url(/c_images/myhabbo/stickers/Adidas_Bounce_Sticker.gif) no-repeat 50% 50%; +} +div.s_bigdaddyv { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/bigDaddyV_001.gif); +} +div.s_bigdaddyv_pre { + background: url(/c_images/myhabbo/stickers/bigDaddyV_001.gif) no-repeat 50% 50%; +} +div.s_smichaels { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/michaels.gif); +} +div.s_smichaels_pre { + background: url(/c_images/myhabbo/stickers/michaels.gif) no-repeat 50% 50%; +} +div.s_exe_sticker_cheappen { + width: 169px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/exe_sticker_CheapPen.gif); +} +div.s_exe_sticker_cheappen_pre { + background: url(/c_images/myhabbo/stickers/exe_sticker_CheapPen.gif) no-repeat 50% 50%; +} +div.s_exe_sticker_luxurypen { + width: 169px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/exe_sticker_LuxuryPen.gif); +} +div.s_exe_sticker_luxurypen_pre { + background: url(/c_images/myhabbo/stickers/exe_sticker_LuxuryPen.gif) no-repeat 50% 50%; +} +div.s_mikeknoxx { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/mikeKnoxx.gif); +} +div.s_mikeknoxx_pre { + background: url(/c_images/myhabbo/stickers/mikeKnoxx.gif) no-repeat 50% 50%; +} +div.s_mrkennedy { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/mrKennedy.gif); +} +div.s_mrkennedy_pre { + background: url(/c_images/myhabbo/stickers/mrKennedy.gif) no-repeat 50% 50%; +} +div.s_wwemvp { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/mvp.gif); +} +div.s_wwemvp_pre { + background: url(/c_images/myhabbo/stickers/mvp.gif) no-repeat 50% 50%; +} +div.s_nunzio { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/nunzio.gif); +} +div.s_nunzio_pre { + background: url(/c_images/myhabbo/stickers/nunzio.gif) no-repeat 50% 50%; +} +div.s_paullondon { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/paulLondon.gif); +} +div.s_paullondon_pre { + background: url(/c_images/myhabbo/stickers/paulLondon.gif) no-repeat 50% 50%; +} +div.s_paulorndorff { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/paulOrndorff.gif); +} +div.s_paulorndorff_pre { + background: url(/c_images/myhabbo/stickers/paulOrndorff.gif) no-repeat 50% 50%; +} +div.s_randyorton { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/randyOrton.gif); +} +div.s_randyorton_pre { + background: url(/c_images/myhabbo/stickers/randyOrton.gif) no-repeat 50% 50%; +} +div.s_reymysterio { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/reyMysterio.gif); +} +div.s_reymysterio_pre { + background: url(/c_images/myhabbo/stickers/reyMysterio.gif) no-repeat 50% 50%; +} +div.s_ricflair { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/ricFlair.gif); +} +div.s_ricflair_pre { + background: url(/c_images/myhabbo/stickers/ricFlair.gif) no-repeat 50% 50%; +} +div.s_roddypiper { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/roddyPiper.gif); +} +div.s_roddypiper_pre { + background: url(/c_images/myhabbo/stickers/roddyPiper.gif) no-repeat 50% 50%; +} +div.s_ronsimmons { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/ronSimmons.gif); +} +div.s_ronsimmons_pre { + background: url(/c_images/myhabbo/stickers/ronSimmons.gif) no-repeat 50% 50%; +} +div.s_santinomarella { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/santinoMarella.gif); +} +div.s_santinomarella_pre { + background: url(/c_images/myhabbo/stickers/santinoMarella.gif) no-repeat 50% 50%; +} +div.s_sergeantslaughter { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/sergeantSlaughter.gif); +} +div.s_sergeantslaughter_pre { + background: url(/c_images/myhabbo/stickers/sergeantSlaughter.gif) no-repeat 50% 50%; +} +div.s_snitsky { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/snitsky.gif); +} +div.s_snitsky_pre { + background: url(/c_images/myhabbo/stickers/snitsky.gif) no-repeat 50% 50%; +} +div.s_stevierichards { + width: 119px; height: 129px; + background-image: url(/c_images/myhabbo/stickers/stevieRichards.gif); +} +div.s_stevierichards_pre { + background: url(/c_images/myhabbo/stickers/stevieRichards.gif) no-repeat 50% 50%; +} +div.s_stonecold { + width: 119px; height: 129px; + background-image: url(/c_images/myhabbo/stickers/stoneCold.gif); +} +div.s_stonecold_pre { + background: url(/c_images/myhabbo/stickers/stoneCold.gif) no-repeat 50% 50%; +} +div.s_supercrazy { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/superCrazy.gif); +} +div.s_supercrazy_pre { + background: url(/c_images/myhabbo/stickers/superCrazy.gif) no-repeat 50% 50%; +} +div.s_thegreatkhali { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/theGreatKhali.gif); +} +div.s_thegreatkhali_pre { + background: url(/c_images/myhabbo/stickers/theGreatKhali.gif) no-repeat 50% 50%; +} +div.s_themiz { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/theMiz.gif); +} +div.s_themiz_pre { + background: url(/c_images/myhabbo/stickers/theMiz.gif) no-repeat 50% 50%; +} +div.s_tommydreamer { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/tommyDreamer.gif); +} +div.s_tommydreamer_pre { + background: url(/c_images/myhabbo/stickers/tommyDreamer.gif) no-repeat 50% 50%; +} +div.s_torriewilson { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/torrieWilson.gif); +} +div.s_torriewilson_pre { + background: url(/c_images/myhabbo/stickers/torrieWilson.gif) no-repeat 50% 50%; +} +div.s_tripleh { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/tripleH.gif); +} +div.s_tripleh_pre { + background: url(/c_images/myhabbo/stickers/tripleH.gif) no-repeat 50% 50%; +} +div.s_umaga { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/umaga.gif); +} +div.s_umaga_pre { + background: url(/c_images/myhabbo/stickers/umaga.gif) no-repeat 50% 50%; +} +div.s_undertaker { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/undertaker.gif); +} +div.s_undertaker_pre { + background: url(/c_images/myhabbo/stickers/undertaker.gif) no-repeat 50% 50%; +} +div.s_valvenis { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/valVenis.gif); +} +div.s_valvenis_pre { + background: url(/c_images/myhabbo/stickers/valVenis.gif) no-repeat 50% 50%; +} +div.s_victoria { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/victoria.gif); +} +div.s_victoria_pre { + background: url(/c_images/myhabbo/stickers/victoria.gif) no-repeat 50% 50%; +} +div.s_zackryder { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/zackRyder.gif); +} +div.s_zackryder_pre { + background: url(/c_images/myhabbo/stickers/zackRyder.gif) no-repeat 50% 50%; +} +div.s_ballsmahoney { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/ballsMahoney_001.gif); +} +div.s_ballsmahoney_pre { + background: url(/c_images/myhabbo/stickers/ballsMahoney_001.gif) no-repeat 50% 50%; +} +div.s_batista { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/batista.gif); +} +div.s_batista_pre { + background: url(/c_images/myhabbo/stickers/batista.gif) no-repeat 50% 50%; +} +div.s_bethphoenix { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/bethPhoenix.gif); +} +div.s_bethphoenix_pre { + background: url(/c_images/myhabbo/stickers/bethPhoenix.gif) no-repeat 50% 50%; +} +div.s_billygraham { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/billyGraham.gif); +} +div.s_billygraham_pre { + background: url(/c_images/myhabbo/stickers/billyGraham.gif) no-repeat 50% 50%; +} +div.s_boborton { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/bobOrton.gif); +} +div.s_boborton_pre { + background: url(/c_images/myhabbo/stickers/bobOrton.gif) no-repeat 50% 50%; +} +div.s_boogeyman { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/boogeyman.gif); +} +div.s_boogeyman_pre { + background: url(/c_images/myhabbo/stickers/boogeyman.gif) no-repeat 50% 50%; +} +div.s_briankendrick { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/brianKendrick.gif); +} +div.s_briankendrick_pre { + background: url(/c_images/myhabbo/stickers/brianKendrick.gif) no-repeat 50% 50%; +} +div.s_carlito { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/carlito.gif); +} +div.s_carlito_pre { + background: url(/c_images/myhabbo/stickers/carlito.gif) no-repeat 50% 50%; +} +div.s_cena { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/cena.gif); +} +div.s_cena_pre { + background: url(/c_images/myhabbo/stickers/cena.gif) no-repeat 50% 50%; +} +div.s_chuckpalumbo { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/chuckPalumbo.gif); +} +div.s_chuckpalumbo_pre { + background: url(/c_images/myhabbo/stickers/chuckPalumbo.gif) no-repeat 50% 50%; +} +div.s_cmpunk { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/cmPunk.gif); +} +div.s_cmpunk_pre { + background: url(/c_images/myhabbo/stickers/cmPunk.gif) no-repeat 50% 50%; +} +div.s_curthawkins { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/curtHawkins.gif); +} +div.s_curthawkins_pre { + background: url(/c_images/myhabbo/stickers/curtHawkins.gif) no-repeat 50% 50%; +} +div.s_dhsmith { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/dhSmith.gif); +} +div.s_dhsmith_pre { + background: url(/c_images/myhabbo/stickers/dhSmith.gif) no-repeat 50% 50%; +} +div.s_edge { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/edge.gif); +} +div.s_edge_pre { + background: url(/c_images/myhabbo/stickers/edge.gif) no-repeat 50% 50%; +} +div.s_elijahburke { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/elijahBurke.gif); +} +div.s_elijahburke_pre { + background: url(/c_images/myhabbo/stickers/elijahBurke.gif) no-repeat 50% 50%; +} +div.s_festus { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/festus.gif); +} +div.s_festus_pre { + background: url(/c_images/myhabbo/stickers/festus.gif) no-repeat 50% 50%; +} +div.s_funaki { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/funaki.gif); +} +div.s_funaki_pre { + background: url(/c_images/myhabbo/stickers/funaki.gif) no-repeat 50% 50%; +} +div.s_hacksaw { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/hacksaw.gif); +} +div.s_hacksaw_pre { + background: url(/c_images/myhabbo/stickers/hacksaw.gif) no-repeat 50% 50%; +} +div.s_hornswoggle { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/hornswoggle.gif); +} +div.s_hornswoggle_pre { + background: url(/c_images/myhabbo/stickers/hornswoggle.gif) no-repeat 50% 50%; +} +div.s_jamescurtis { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/jamesCurtis.gif); +} +div.s_jamescurtis_pre { + background: url(/c_images/myhabbo/stickers/jamesCurtis.gif) no-repeat 50% 50%; +} +div.s_jeffhardy { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/jeffHardy.gif); +} +div.s_jeffhardy_pre { + background: url(/c_images/myhabbo/stickers/jeffHardy.gif) no-repeat 50% 50%; +} +div.s_jesse { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/jesse.gif); +} +div.s_jesse_pre { + background: url(/c_images/myhabbo/stickers/jesse.gif) no-repeat 50% 50%; +} +div.s_jimmyhart { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/jimmyHart.gif); +} +div.s_jimmyhart_pre { + background: url(/c_images/myhabbo/stickers/jimmyHart.gif) no-repeat 50% 50%; +} +div.s_jimmysnuka { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/jimmySnuka.gif); +} +div.s_jimmysnuka_pre { + background: url(/c_images/myhabbo/stickers/jimmySnuka.gif) no-repeat 50% 50%; +} +div.s_johnmorrison { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/johnMorrison.gif); +} +div.s_johnmorrison_pre { + background: url(/c_images/myhabbo/stickers/johnMorrison.gif) no-repeat 50% 50%; +} +div.s_kennydykstra { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/kennyDykstra.gif); +} +div.s_kennydykstra_pre { + background: url(/c_images/myhabbo/stickers/kennyDykstra.gif) no-repeat 50% 50%; +} +div.s_kevinthorn { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/kevinThorn.gif); +} +div.s_kevinthorn_pre { + background: url(/c_images/myhabbo/stickers/kevinThorn.gif) no-repeat 50% 50%; +} +div.s_lashey { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/lashey.gif); +} +div.s_lashey_pre { + background: url(/c_images/myhabbo/stickers/lashey.gif) no-repeat 50% 50%; +} +div.s_markhenry { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/markHenry.gif); +} +div.s_markhenry_pre { + background: url(/c_images/myhabbo/stickers/markHenry.gif) no-repeat 50% 50%; +} +div.s_mattstriker { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/mattStriker.gif); +} +div.s_mattstriker_pre { + background: url(/c_images/myhabbo/stickers/mattStriker.gif) no-repeat 50% 50%; +} +div.s_nowayout_slanted { + width: 200px; height: 292px; + background-image: url(/c_images/myhabbo/stickers/noWayOut_slanted.gif); +} +div.s_nowayout_slanted_pre { + background: url(/c_images/myhabbo/stickers/noWayOut_slanted.gif) no-repeat 50% 50%; +} +div.s_val_sticker_malecaptain { + width: 32px; height: 75px; + background-image: url(/c_images/myhabbo/stickers/malecaptain_costume.gif); +} +div.s_val_sticker_malecaptain_pre { + background: url(/c_images/myhabbo/stickers/malecaptain_costume.gif) no-repeat 50% 50%; +} +div.s_val_sticker_femalecaptain { + width: 33px; height: 75px; + background-image: url(/c_images/myhabbo/stickers/femalecaptain_costume.gif); +} +div.s_val_sticker_femalecaptain_pre { + background: url(/c_images/myhabbo/stickers/femalecaptain_costume.gif) no-repeat 50% 50%; +} +div.s_val_sticker_bartender { + width: 30px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/bartender_costume.gif); +} +div.s_val_sticker_bartender_pre { + background: url(/c_images/myhabbo/stickers/bartender_costume.gif) no-repeat 50% 50%; +} +div.s_val_sticker_stewardess { + width: 30px; height: 41px; + background-image: url(/c_images/myhabbo/stickers/stewardess_costume.gif); +} +div.s_val_sticker_stewardess_pre { + background: url(/c_images/myhabbo/stickers/stewardess_costume.gif) no-repeat 50% 50%; +} +div.s_val_sticker_malecrew { + width: 31px; height: 42px; + background-image: url(/c_images/myhabbo/stickers/crew_male_costume.gif); +} +div.s_val_sticker_malecrew_pre { + background: url(/c_images/myhabbo/stickers/crew_male_costume.gif) no-repeat 50% 50%; +} +div.s_valentine_welcome_sticker { + width: 113px; height: 141px; + background-image: url(/c_images/myhabbo/stickers/valentine_welcome_sticker.gif); +} +div.s_valentine_welcome_sticker_pre { + background: url(/c_images/myhabbo/stickers/valentine_welcome_sticker.gif) no-repeat 50% 50%; +} +div.s_habborella_logo { + width: 200px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/habborella_logo.gif); +} +div.s_habborella_logo_pre { + background: url(/c_images/myhabbo/stickers/habborella_logo.gif) no-repeat 50% 50%; +} +div.s_tall_ship { + width: 66px; height: 77px; + background-image: url(/c_images/myhabbo/stickers/tall_ship.gif); +} +div.s_tall_ship_pre { + background: url(/c_images/myhabbo/stickers/tall_ship.gif) no-repeat 50% 50%; +} +div.s_val_sticker_bartender2 { + width: 43px; height: 99px; + background-image: url(/c_images/myhabbo/stickers/valentertainer.gif); +} +div.s_val_sticker_bartender2_pre { + background: url(/c_images/myhabbo/stickers/valentertainer.gif) no-repeat 50% 50%; +} +div.s_val_sticker_stewardess2 { + width: 71px; height: 118px; + background-image: url(/c_images/myhabbo/stickers/valstewardess.gif); +} +div.s_val_sticker_stewardess2_pre { + background: url(/c_images/myhabbo/stickers/valstewardess.gif) no-repeat 50% 50%; +} +div.s_val_sticker_crew { + width: 32px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/valsteward.gif); +} +div.s_val_sticker_crew_pre { + background: url(/c_images/myhabbo/stickers/valsteward.gif) no-repeat 50% 50%; +} +div.s_free_hugs { + width: 96px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/freeHugs.gif); +} +div.s_free_hugs_pre { + background: url(/c_images/myhabbo/stickers/freeHugs.gif) no-repeat 50% 50%; +} +div.s_freehugs { + width: 96px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/freeHugs.gif); +} +div.s_freehugs_pre { + background: url(/c_images/myhabbo/stickers/freeHugs.gif) no-repeat 50% 50%; +} +div.s_spiderwick_goblin1_l { + width: 167px; height: 157px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin1_L.gif); +} +div.s_spiderwick_goblin1_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin1_L.gif) no-repeat 50% 50%; +} +div.s_spiderwick_goblin1_r { + width: 167px; height: 157px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin1_R.gif); +} +div.s_spiderwick_goblin1_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin1_R.gif) no-repeat 50% 50%; +} +div.s_spiderwick_goblin2_l { + width: 166px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin2_L.gif); +} +div.s_spiderwick_goblin2_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin2_L.gif) no-repeat 50% 50%; +} +div.s_spiderwick_goblin2_r { + width: 166px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin2_R.gif); +} +div.s_spiderwick_goblin2_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin2_R.gif) no-repeat 50% 50%; +} +div.s_spiderwick_goblin_anim_l { + width: 176px; height: 162px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin_anim_L.gif); +} +div.s_spiderwick_goblin_anim_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin_anim_L.gif) no-repeat 50% 50%; +} +div.s_spiderwick_goblin_anim_r { + width: 176px; height: 162px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin_anim_R.gif); +} +div.s_spiderwick_goblin_anim_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin_anim_R.gif) no-repeat 50% 50%; +} +div.s_spiderwick_griffin_l { + width: 528px; height: 216px; + background-image: url(/c_images/myhabbo/stickers/sticker_Griffin_L.gif); +} +div.s_spiderwick_griffin_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Griffin_L.gif) no-repeat 50% 50%; +} +div.s_spiderwick_griffin_r { + width: 528px; height: 216px; + background-image: url(/c_images/myhabbo/stickers/sticker_Griffin_R.gif); +} +div.s_spiderwick_griffin_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Griffin_R.gif) no-repeat 50% 50%; +} +div.s_spiderwick_sprite1_l { + width: 236px; height: 184px; + background-image: url(/c_images/myhabbo/stickers/sticker_Sprite1_L.gif); +} +div.s_spiderwick_sprite1_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Sprite1_L.gif) no-repeat 50% 50%; +} +div.s_spiderwick_sprite1_r { + width: 236px; height: 184px; + background-image: url(/c_images/myhabbo/stickers/sticker_Sprite1_R.gif); +} +div.s_spiderwick_sprite1_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Sprite1_R.gif) no-repeat 50% 50%; +} +div.s_spiderwick_sprite2_l { + width: 256px; height: 195px; + background-image: url(/c_images/myhabbo/stickers/sticker_Sprite2_L.gif); +} +div.s_spiderwick_sprite2_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Sprite2_L.gif) no-repeat 50% 50%; +} +div.s_spiderwick_sprite2_r { + width: 256px; height: 195px; + background-image: url(/c_images/myhabbo/stickers/sticker_Sprite2_R.gif); +} +div.s_spiderwick_sprite2_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Sprite2_R.gif) no-repeat 50% 50%; +} +div.s_spiderwick_toadstools_l { + width: 97px; height: 66px; + background-image: url(/c_images/myhabbo/stickers/sticker_toadStools_L.gif); +} +div.s_spiderwick_toadstools_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_toadStools_L.gif) no-repeat 50% 50%; +} +div.s_spiderwick_toadstools_r { + width: 97px; height: 66px; + background-image: url(/c_images/myhabbo/stickers/sticker_toadStools_R.gif); +} +div.s_spiderwick_toadstools_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_toadStools_R.gif) no-repeat 50% 50%; +} +div.s_trax_log_not_for_sale { + width: 0px; height: 0px; + background-image: url(/c_images/myhabbo/stickers/Trax_logo.gif); +} +div.s_trax_log_not_for_sale_pre { + background: url(/c_images/myhabbo/stickers/Trax_logo.gif) no-repeat 50% 50%; +} +div.s_traxgoldrecord { + width: 175px; height: 188px; + background-image: url(/c_images/myhabbo/stickers/traxRecord_sticker.gif); +} +div.s_traxgoldrecord_pre { + background: url(/c_images/myhabbo/stickers/traxRecord_sticker.gif) no-repeat 50% 50%; +} +div.s_leapday_2008 { + width: 106px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/leapDay.gif); +} +div.s_leapday_2008_pre { + background: url(/c_images/myhabbo/stickers/leapDay.gif) no-repeat 50% 50%; +} +div.s_straypixelswinner { + width: 167px; height: 115px; + background-image: url(/c_images/myhabbo/stickers/PixelWinner.gif); +} +div.s_straypixelswinner_pre { + background: url(/c_images/myhabbo/stickers/PixelWinner.gif) no-repeat 50% 50%; +} +div.s_holycarp { + width: 104px; height: 71px; + background-image: url(/c_images/myhabbo/stickers/HolyCarp.gif); +} +div.s_holycarp_pre { + background: url(/c_images/myhabbo/stickers/HolyCarp.gif) no-repeat 50% 50%; +} +div.s_bullybusters { + width: 112px; height: 178px; + background-image: url(/c_images/myhabbo/stickers/bullybuster.gif); +} +div.s_bullybusters_pre { + background: url(/c_images/myhabbo/stickers/bullybuster.gif) no-repeat 50% 50%; +} +div.s_patsday_claddagh { + width: 142px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/patsDay_claddagh.gif); +} +div.s_patsday_claddagh_pre { + background: url(/c_images/myhabbo/stickers/patsDay_claddagh.gif) no-repeat 50% 50%; +} +div.s_patsday_kissme { + width: 137px; height: 111px; + background-image: url(/c_images/myhabbo/stickers/patsDay_kissMe.gif); +} +div.s_patsday_kissme_pre { + background: url(/c_images/myhabbo/stickers/patsDay_kissMe.gif) no-repeat 50% 50%; +} +div.s_patsday_potogold { + width: 100px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/patsDay_potOGold.gif); +} +div.s_patsday_potogold_pre { + background: url(/c_images/myhabbo/stickers/patsDay_potOGold.gif) no-repeat 50% 50%; +} +div.s_patsday_shamrock { + width: 49px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/patsDay_shamrock.gif); +} +div.s_patsday_shamrock_pre { + background: url(/c_images/myhabbo/stickers/patsDay_shamrock.gif) no-repeat 50% 50%; +} +div.s_patsday_shamborderh { + width: 145px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/patsDay_shamBorderH.gif); +} +div.s_patsday_shamborderh_pre { + background: url(/c_images/myhabbo/stickers/patsDay_shamBorderH.gif) no-repeat 50% 50%; +} +div.s_bigshow { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/BigShow.gif); +} +div.s_bigshow_pre { + background: url(/c_images/myhabbo/stickers/BigShow.gif) no-repeat 50% 50%; +} +div.s_candicemichelle { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/v2candiceMichelle.gif); +} +div.s_candicemichelle_pre { + background: url(/c_images/myhabbo/stickers/v2candiceMichelle.gif) no-repeat 50% 50%; +} +div.s_maria { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/v2Maria.gif); +} +div.s_maria_pre { + background: url(/c_images/myhabbo/stickers/v2Maria.gif) no-repeat 50% 50%; +} +div.s_mayweather { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/Mayweather.gif); +} +div.s_mayweather_pre { + background: url(/c_images/myhabbo/stickers/Mayweather.gif) no-repeat 50% 50%; +} +div.s_melina { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/v2Melina.gif); +} +div.s_melina_pre { + background: url(/c_images/myhabbo/stickers/v2Melina.gif) no-repeat 50% 50%; +} +div.s_sheltonbenjamin { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/SheltonBenjamin.gif); +} +div.s_sheltonbenjamin_pre { + background: url(/c_images/myhabbo/stickers/SheltonBenjamin.gif) no-repeat 50% 50%; +} +div.s_jbl { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/JBL.gif); +} +div.s_jbl_pre { + background: url(/c_images/myhabbo/stickers/JBL.gif) no-repeat 50% 50%; +} +div.s_patsday_shamborderv { + width: 33px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/patsDay_shamBorderV.gif); +} +div.s_patsday_shamborderv_pre { + background: url(/c_images/myhabbo/stickers/patsDay_shamBorderV.gif) no-repeat 50% 50%; +} +div.s_chrisjericho { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/chrisJericho.gif); +} +div.s_chrisjericho_pre { + background: url(/c_images/myhabbo/stickers/chrisJericho.gif) no-repeat 50% 50%; +} +div.s_matthardy { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/MattHardy.gif); +} +div.s_matthardy_pre { + background: url(/c_images/myhabbo/stickers/MattHardy.gif) no-repeat 50% 50%; +} +div.s_bethphoenixskinny { + width: 119px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/v2bethPhoenix.gif); +} +div.s_bethphoenixskinny_pre { + background: url(/c_images/myhabbo/stickers/v2bethPhoenix.gif) no-repeat 50% 50%; +} +div.s_beachbunny_beachball { + width: 73px; height: 73px; + background-image: url(/c_images/myhabbo/stickers/sticker_beachBall.gif); +} +div.s_beachbunny_beachball_pre { + background: url(/c_images/myhabbo/stickers/sticker_beachBall.gif) no-repeat 50% 50%; +} +div.s_beachbunny_beachball_bouncing { + width: 86px; height: 220px; + background-image: url(/c_images/myhabbo/stickers/sticker_beachBallBouncing.gif); +} +div.s_beachbunny_beachball_bouncing_pre { + background: url(/c_images/myhabbo/stickers/sticker_beachBallBouncing.gif) no-repeat 50% 50%; +} +div.s_beachbunny_bmovieposter { + width: 279px; height: 349px; + background-image: url(/c_images/myhabbo/stickers/sticker_bbbPoster.gif); +} +div.s_beachbunny_bmovieposter_pre { + background: url(/c_images/myhabbo/stickers/sticker_bbbPoster.gif) no-repeat 50% 50%; +} +div.s_beachbunny_bunny_suit { + width: 63px; height: 111px; + background-image: url(/c_images/myhabbo/stickers/sticker_bunnySuit.gif); +} +div.s_beachbunny_bunny_suit_pre { + background: url(/c_images/myhabbo/stickers/sticker_bunnySuit.gif) no-repeat 50% 50%; +} +div.s_beachbunny_peep { + width: 41px; height: 23px; + background-image: url(/c_images/myhabbo/stickers/sticker_peep.gif); +} +div.s_beachbunny_peep_pre { + background: url(/c_images/myhabbo/stickers/sticker_peep.gif) no-repeat 50% 50%; +} +div.s_beachbunny_roaster_bunny { + width: 199px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/sticker_roasterBunny.gif); +} +div.s_beachbunny_roaster_bunny_pre { + background: url(/c_images/myhabbo/stickers/sticker_roasterBunny.gif) no-repeat 50% 50%; +} +div.s_thanksgiving07 { + width: 159px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/cornucopia.gif); +} +div.s_thanksgiving07_pre { + background: url(/c_images/myhabbo/stickers/cornucopia.gif) no-repeat 50% 50%; +} +div.s_aprilfools_08 { + width: 107px; height: 184px; + background-image: url(/c_images/myhabbo/stickers/sticker_suckerFools.gif); +} +div.s_aprilfools_08_pre { + background: url(/c_images/myhabbo/stickers/sticker_suckerFools.gif) no-repeat 50% 50%; +} +div.s_aprilfools_08_2 { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_IHeartFools.gif); +} +div.s_aprilfools_08_2_pre { + background: url(/c_images/myhabbo/stickers/sticker_IHeartFools.gif) no-repeat 50% 50%; +} +div.s_genie_fire_head { + width: 42px; height: 55px; + background-image: url(/c_images/myhabbo/stickers/sticker_geniefirehead.gif); +} +div.s_genie_fire_head_pre { + background: url(/c_images/myhabbo/stickers/sticker_geniefirehead.gif) no-repeat 50% 50%; +} +div.s_alhambra_logo { + width: 260px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/sticker_alhambralogo.gif); +} +div.s_alhambra_logo_pre { + background: url(/c_images/myhabbo/stickers/sticker_alhambralogo.gif) no-repeat 50% 50%; +} +div.s_littledogs_littledog { + width: 118px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/sticker_wagDogv3.gif); +} +div.s_littledogs_littledog_pre { + background: url(/c_images/myhabbo/stickers/sticker_wagDogv3.gif) no-repeat 50% 50%; +} +div.s_littledogs_mechahead { + width: 44px; height: 36px; + background-image: url(/c_images/myhabbo/stickers/sticker_mechaDogHead.gif); +} +div.s_littledogs_mechahead_pre { + background: url(/c_images/myhabbo/stickers/sticker_mechaDogHead.gif) no-repeat 50% 50%; +} +div.s_littledogs_walkingmecha { + width: 42px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/sticker_walkingMechaDog.gif); +} +div.s_littledogs_walkingmecha_pre { + background: url(/c_images/myhabbo/stickers/sticker_walkingMechaDog.gif) no-repeat 50% 50%; +} +div.s_sticker_chips { + width: 140px; height: 77px; + background-image: url(/c_images/myhabbo/stickers/sticker_chips.gif); +} +div.s_sticker_chips_pre { + background: url(/c_images/myhabbo/stickers/sticker_chips.gif) no-repeat 50% 50%; +} +div.s_pro_eco2 { + width: 129px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/pro_eco2.gif); +} +div.s_pro_eco2_pre { + background: url(/c_images/myhabbo/stickers/pro_eco2.gif) no-repeat 50% 50%; +} +div.s_yearbook_ribbon_sticker { + width: 100px; height: 193px; + background-image: url(/c_images/myhabbo/stickers/sticker_bestRibbon.gif); +} +div.s_yearbook_ribbon_sticker_pre { + background: url(/c_images/myhabbo/stickers/sticker_bestRibbon.gif) no-repeat 50% 50%; +} +div.s_promofthedead_sticker_dress { + width: 39px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/sticker_podDress.gif); +} +div.s_promofthedead_sticker_dress_pre { + background: url(/c_images/myhabbo/stickers/sticker_podDress.gif) no-repeat 50% 50%; +} +div.s_promofthedead_sticker_duck { + width: 36px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/sticker_podDuck.gif); +} +div.s_promofthedead_sticker_duck_pre { + background: url(/c_images/myhabbo/stickers/sticker_podDuck.gif) no-repeat 50% 50%; +} +div.s_promofthedead_sticker_poster { + width: 271px; height: 312px; + background-image: url(/c_images/myhabbo/stickers/sticker_podPoster.gif); +} +div.s_promofthedead_sticker_poster_pre { + background: url(/c_images/myhabbo/stickers/sticker_podPoster.gif) no-repeat 50% 50%; +} +div.s_promofthedead_sticker_suit { + width: 37px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/sticker_podSuit.gif); +} +div.s_promofthedead_sticker_suit_pre { + background: url(/c_images/myhabbo/stickers/sticker_podSuit.gif) no-repeat 50% 50%; +} +div.s_promofthedead_sticker_zombie { + width: 22px; height: 44px; + background-image: url(/c_images/myhabbo/stickers/sticker_podZombieGnarl.gif); +} +div.s_promofthedead_sticker_zombie_pre { + background: url(/c_images/myhabbo/stickers/sticker_podZombieGnarl.gif) no-repeat 50% 50%; +} +div.s_promofthedead_sticker_brains { + width: 25px; height: 31px; + background-image: url(/c_images/myhabbo/stickers/sticker_podBrains.gif); +} +div.s_promofthedead_sticker_brains_pre { + background: url(/c_images/myhabbo/stickers/sticker_podBrains.gif) no-repeat 50% 50%; +} +div.s_hw habbo_toolbar { + width: 752px; height: 44px; + background-image: url(/c_images/myhabbo/stickers/bar.gif); +} +div.s_hw habbo_toolbar_pre { + background: url(/c_images/myhabbo/stickers/bar.gif) no-repeat 50% 50%; +} +div.s_habbo_toolbar_sticker { + width: 752px; height: 44px; + background-image: url(/c_images/myhabbo/stickers/bar.gif); +} +div.s_habbo_toolbar_sticker_pre { + background: url(/c_images/myhabbo/stickers/bar.gif) no-repeat 50% 50%; +} +div.s_toolbar_sticker { + width: 752px; height: 44px; + background-image: url(/c_images/myhabbo/stickers/bar.gif); +} +div.s_toolbar_sticker_pre { + background: url(/c_images/myhabbo/stickers/bar.gif) no-repeat 50% 50%; +} +div.s_sushi_maguro { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/maguro.png); +} +div.s_sushi_maguro_pre { + background: url(/c_images/myhabbo/stickers/maguro.png) no-repeat 50% 50%; +} +div.s_sushi_ikura_caviar { + width: 66px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/ikura.png); +} +div.s_sushi_ikura_caviar_pre { + background: url(/c_images/myhabbo/stickers/ikura.png) no-repeat 50% 50%; +} +div.s_sushi_uni_sea_urchin { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/uni.png); +} +div.s_sushi_uni_sea_urchin_pre { + background: url(/c_images/myhabbo/stickers/uni.png) no-repeat 50% 50%; +} +div.s_sushi_tamago_egg { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/tamago.png); +} +div.s_sushi_tamago_egg_pre { + background: url(/c_images/myhabbo/stickers/tamago.png) no-repeat 50% 50%; +} +div.s_sushi_kohada_mackerel { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/kohada.png); +} +div.s_sushi_kohada_mackerel_pre { + background: url(/c_images/myhabbo/stickers/kohada.png) no-repeat 50% 50%; +} +div.s_sushi_ika_squid { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/squid.png); +} +div.s_sushi_ika_squid_pre { + background: url(/c_images/myhabbo/stickers/squid.png) no-repeat 50% 50%; +} +div.s_sticker_bonsai_ninjaf { + width: 71px; height: 110px; + background-image: url(/c_images/myhabbo/stickers/sticker_bonsai_ninjaf.gif); +} +div.s_sticker_bonsai_ninjaf_pre { + background: url(/c_images/myhabbo/stickers/sticker_bonsai_ninjaf.gif) no-repeat 50% 50%; +} +div.s_sticker_bonsai_ninjam { + width: 30px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/sticker_bonsai_ninjam.gif); +} +div.s_sticker_bonsai_ninjam_pre { + background: url(/c_images/myhabbo/stickers/sticker_bonsai_ninjam.gif) no-repeat 50% 50%; +} +div.s_sticker_bonsai_ninjama { + width: 100px; height: 142px; + background-image: url(/c_images/myhabbo/stickers/sticker_bonsai_ninjama.gif); +} +div.s_sticker_bonsai_ninjama_pre { + background: url(/c_images/myhabbo/stickers/sticker_bonsai_ninjama.gif) no-repeat 50% 50%; +} +div.s_sticker_bonsai_ninjafa { + width: 100px; height: 142px; + background-image: url(/c_images/myhabbo/stickers/sticker_bonsai_ninjafa.gif); +} +div.s_sticker_bonsai_ninjafa_pre { + background: url(/c_images/myhabbo/stickers/sticker_bonsai_ninjafa.gif) no-repeat 50% 50%; +} +div.s_sticker_bonsai_samuraif { + width: 52px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/sticker_bonsai_samuraif.gif); +} +div.s_sticker_bonsai_samuraif_pre { + background: url(/c_images/myhabbo/stickers/sticker_bonsai_samuraif.gif) no-repeat 50% 50%; +} +div.s_sticker_bonsai_samuraifa { + width: 86px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/sticker_bonsai_samuraifa.gif); +} +div.s_sticker_bonsai_samuraifa_pre { + background: url(/c_images/myhabbo/stickers/sticker_bonsai_samuraifa.gif) no-repeat 50% 50%; +} +div.s_sticker_bonsai_samuraim { + width: 55px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_bonsai_samuraim.gif); +} +div.s_sticker_bonsai_samuraim_pre { + background: url(/c_images/myhabbo/stickers/sticker_bonsai_samuraim.gif) no-repeat 50% 50%; +} +div.s_sticker_bonsai_samuraima { + width: 87px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/sticker_bonsai_samuraima.gif); +} +div.s_sticker_bonsai_samuraima_pre { + background: url(/c_images/myhabbo/stickers/sticker_bonsai_samuraima.gif) no-repeat 50% 50%; +} +div.s_inked_lamp { + width: 44px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_amberLamp.gif); +} +div.s_inked_lamp_pre { + background: url(/c_images/myhabbo/stickers/sticker_amberLamp.gif) no-repeat 50% 50%; +} +div.s_inked_squidpants { + width: 73px; height: 41px; + background-image: url(/c_images/myhabbo/stickers/sticker_inkedPants.gif); +} +div.s_inked_squidpants_pre { + background: url(/c_images/myhabbo/stickers/sticker_inkedPants.gif) no-repeat 50% 50%; +} +div.s_inked_inkedblink { + width: 21px; height: 25px; + background-image: url(/c_images/myhabbo/stickers/sticker_inkedBlink.gif); +} +div.s_inked_inkedblink_pre { + background: url(/c_images/myhabbo/stickers/sticker_inkedBlink.gif) no-repeat 50% 50%; +} +div.s_inked_antisquidf { + width: 31px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/sticker_antiSquidF.gif); +} +div.s_inked_antisquidf_pre { + background: url(/c_images/myhabbo/stickers/sticker_antiSquidF.gif) no-repeat 50% 50%; +} +div.s_inked_antisquidm { + width: 31px; height: 51px; + background-image: url(/c_images/myhabbo/stickers/sticker_antiSquidM.gif); +} +div.s_inked_antisquidm_pre { + background: url(/c_images/myhabbo/stickers/sticker_antiSquidM.gif) no-repeat 50% 50%; +} +div.s_inked_love { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_inkedLove.gif); +} +div.s_inked_love_pre { + background: url(/c_images/myhabbo/stickers/sticker_inkedLove.gif) no-repeat 50% 50%; +} +div.s_inked_poster { + width: 228px; height: 312px; + background-image: url(/c_images/myhabbo/stickers/sticker_inkedPoster.gif); +} +div.s_inked_poster_pre { + background: url(/c_images/myhabbo/stickers/sticker_inkedPoster.gif) no-repeat 50% 50%; +} +div.s_inked_ship { + width: 112px; height: 106px; + background-image: url(/c_images/myhabbo/stickers/sticker_inkedShip.gif); +} +div.s_inked_ship_pre { + background: url(/c_images/myhabbo/stickers/sticker_inkedShip.gif) no-repeat 50% 50%; +} +div.s_inked_spit { + width: 137px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/sticker_inkedSpit.gif); +} +div.s_inked_spit_pre { + background: url(/c_images/myhabbo/stickers/sticker_inkedSpit.gif) no-repeat 50% 50%; +} +div.s_inked_suidpatrol { + width: 80px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/sticker_inkedSquidPatrol.gif); +} +div.s_inked_suidpatrol_pre { + background: url(/c_images/myhabbo/stickers/sticker_inkedSquidPatrol.gif) no-repeat 50% 50%; +} +div.s_inked_antisquidrank { + width: 38px; height: 47px; + background-image: url(/c_images/myhabbo/stickers/sticker_antiSquidRank.gif); +} +div.s_inked_antisquidrank_pre { + background: url(/c_images/myhabbo/stickers/sticker_antiSquidRank.gif) no-repeat 50% 50%; +} +div.s_room_of_the_week { + width: 110px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/sticker_rotw.gif); +} +div.s_room_of_the_week_pre { + background: url(/c_images/myhabbo/stickers/sticker_rotw.gif) no-repeat 50% 50%; +} +div.s_sticker_tiki_flamesboard { + width: 37px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/sticker_sBoard1.gif); +} +div.s_sticker_tiki_flamesboard_pre { + background: url(/c_images/myhabbo/stickers/sticker_sBoard1.gif) no-repeat 50% 50%; +} +div.s_tiki_greenboard { + width: 39px; height: 142px; + background-image: url(/c_images/myhabbo/stickers/sticker_sBoard2.gif); +} +div.s_tiki_greenboard_pre { + background: url(/c_images/myhabbo/stickers/sticker_sBoard2.gif) no-repeat 50% 50%; +} +div.s_tiki_flowersboard { + width: 39px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/sticker_sBoard3.gif); +} +div.s_tiki_flowersboard_pre { + background: url(/c_images/myhabbo/stickers/sticker_sBoard3.gif) no-repeat 50% 50%; +} +div.s_tiki_woodboard { + width: 39px; height: 193px; + background-image: url(/c_images/myhabbo/stickers/sticker_woodBoard.gif); +} +div.s_tiki_woodboard_pre { + background: url(/c_images/myhabbo/stickers/sticker_woodBoard.gif) no-repeat 50% 50%; +} +div.s_tiki_watertiki_l { + width: 76px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/sticker_waterTiki_L.gif); +} +div.s_tiki_watertiki_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_waterTiki_L.gif) no-repeat 50% 50%; +} +div.s_tiki_watertiki_r { + width: 76px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/sticker_waterTiki_R.gif); +} +div.s_tiki_watertiki_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_waterTiki_R.gif) no-repeat 50% 50%; +} +div.s_tiki_planttiki_l { + width: 99px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/sticker_plantTiki_L.gif); +} +div.s_tiki_planttiki_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_plantTiki_L.gif) no-repeat 50% 50%; +} +div.s_tiki_planttiki_r { + width: 99px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/sticker_plantTiki_R.gif); +} +div.s_tiki_planttiki_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_plantTiki_R.gif) no-repeat 50% 50%; +} +div.s_tiki_skulltiki_l { + width: 76px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/sticker_skullTiki_L.gif); +} +div.s_tiki_skulltiki_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_skullTiki_L.gif) no-repeat 50% 50%; +} +div.s_tiki_skulltiki_r { + width: 79px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/sticker_skullTiki_R.gif); +} +div.s_tiki_skulltiki_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_skullTiki_R.gif) no-repeat 50% 50%; +} +div.s_tiki_cloudtiki_l { + width: 93px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/sticker_cloudTiki_L.gif); +} +div.s_tiki_cloudtiki_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_cloudTiki_L.gif) no-repeat 50% 50%; +} +div.s_tiki_cloudtiki_r { + width: 93px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/sticker_cloudTiki_R.gif); +} +div.s_tiki_cloudtiki_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_cloudTiki_R.gif) no-repeat 50% 50%; +} +div.s_tiki_moarider_f { + width: 136px; height: 226px; + background-image: url(/c_images/myhabbo/stickers/summer_moarider_female.gif); +} +div.s_tiki_moarider_f_pre { + background: url(/c_images/myhabbo/stickers/summer_moarider_female.gif) no-repeat 50% 50%; +} +div.s_tiki_moarider_m { + width: 136px; height: 226px; + background-image: url(/c_images/myhabbo/stickers/summer_moarider_male.gif); +} +div.s_tiki_moarider_m_pre { + background: url(/c_images/myhabbo/stickers/summer_moarider_male.gif) no-repeat 50% 50%; +} +div.s_july408_auntsamantha { + width: 37px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_auntSamantha.gif); +} +div.s_july408_auntsamantha_pre { + background: url(/c_images/myhabbo/stickers/sticker_auntSamantha.gif) no-repeat 50% 50%; +} +div.s_july408_unclesam { + width: 37px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_uncleSam.gif); +} +div.s_july408_unclesam_pre { + background: url(/c_images/myhabbo/stickers/sticker_uncleSam.gif) no-repeat 50% 50%; +} +div.s_july0408_boom_1 { + width: 372px; height: 295px; + background-image: url(/c_images/myhabbo/stickers/sticker_fireworkBoom1.gif); +} +div.s_july0408_boom_1_pre { + background: url(/c_images/myhabbo/stickers/sticker_fireworkBoom1.gif) no-repeat 50% 50%; +} +div.s_july408_boom_2 { + width: 200px; height: 103px; + background-image: url(/c_images/myhabbo/stickers/sticker_fireworkBoom2.gif); +} +div.s_july408_boom_2_pre { + background: url(/c_images/myhabbo/stickers/sticker_fireworkBoom2.gif) no-repeat 50% 50%; +} +div.s_july408_boom_3 { + width: 286px; height: 269px; + background-image: url(/c_images/myhabbo/stickers/sticker_fireworkBoom3.gif); +} +div.s_july408_boom_3_pre { + background: url(/c_images/myhabbo/stickers/sticker_fireworkBoom3.gif) no-repeat 50% 50%; +} +div.s_july408_boom_4 { + width: 98px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/sticker_fireworkBoom4.gif); +} +div.s_july408_boom_4_pre { + background: url(/c_images/myhabbo/stickers/sticker_fireworkBoom4.gif) no-repeat 50% 50%; +} +div.s_july408_border { + width: 202px; height: 43px; + background-image: url(/c_images/myhabbo/stickers/sticker_flagBorder.gif); +} +div.s_july408_border_pre { + background: url(/c_images/myhabbo/stickers/sticker_flagBorder.gif) no-repeat 50% 50%; +} +div.s_july408_july4th { + width: 98px; height: 88px; + background-image: url(/c_images/myhabbo/stickers/sticker_4th08.gif); +} +div.s_july408_july4th_pre { + background: url(/c_images/myhabbo/stickers/sticker_4th08.gif) no-repeat 50% 50%; +} +div.s_celebticket_veronicas { + width: 168px; height: 105px; + background-image: url(/c_images/myhabbo/stickers/sticker_celebTicket_veronicas.gif); +} +div.s_celebticket_veronicas_pre { + background: url(/c_images/myhabbo/stickers/sticker_celebTicket_veronicas.gif) no-repeat 50% 50%; +} +div.s_tiki_volcano { + width: 104px; height: 138px; + background-image: url(/c_images/myhabbo/stickers/sticker_volcano.gif); +} +div.s_tiki_volcano_pre { + background: url(/c_images/myhabbo/stickers/sticker_volcano.gif) no-repeat 50% 50%; +} +div.s_streaker { + width: 64px; height: 110px; + background-image: url(/c_images/myhabbo/stickers/Streaker.gif); +} +div.s_streaker_pre { + background: url(/c_images/myhabbo/stickers/Streaker.gif) no-repeat 50% 50%; +} +div.s_darkknight_batman_suit { + width: 45px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_batmanSuit.gif); +} +div.s_darkknight_batman_suit_pre { + background: url(/c_images/myhabbo/stickers/sticker_batmanSuit.gif) no-repeat 50% 50%; +} +div.s_darkknight_clownface { + width: 27px; height: 34px; + background-image: url(/c_images/myhabbo/stickers/sticker_clownFace.gif); +} +div.s_darkknight_clownface_pre { + background: url(/c_images/myhabbo/stickers/sticker_clownFace.gif) no-repeat 50% 50%; +} +div.s_darkknight_dentbutton { + width: 125px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/sticker_dentButton.gif); +} +div.s_darkknight_dentbutton_pre { + background: url(/c_images/myhabbo/stickers/sticker_dentButton.gif) no-repeat 50% 50%; +} +div.s_darkknight_jokercard { + width: 102px; height: 121px; + background-image: url(/c_images/myhabbo/stickers/sticker_jokerCard.gif); +} +div.s_darkknight_jokercard_pre { + background: url(/c_images/myhabbo/stickers/sticker_jokerCard.gif) no-repeat 50% 50%; +} +div.s_darkknight_jokerface { + width: 35px; height: 35px; + background-image: url(/c_images/myhabbo/stickers/sticker_jokerFace.gif); +} +div.s_darkknight_jokerface_pre { + background: url(/c_images/myhabbo/stickers/sticker_jokerFace.gif) no-repeat 50% 50%; +} +div.s_darkknight_logo { + width: 266px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/sticker_batLogo.gif); +} +div.s_darkknight_logo_pre { + background: url(/c_images/myhabbo/stickers/sticker_batLogo.gif) no-repeat 50% 50%; +} +div.s_diner_gaspump_green { + width: 91px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/diner_gaspumpgreen.gif); +} +div.s_diner_gaspump_green_pre { + background: url(/c_images/myhabbo/stickers/diner_gaspumpgreen.gif) no-repeat 50% 50%; +} +div.s_diner_gaspump_blue { + width: 91px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/diner_gaspumpblue.gif); +} +div.s_diner_gaspump_blue_pre { + background: url(/c_images/myhabbo/stickers/diner_gaspumpblue.gif) no-repeat 50% 50%; +} +div.s_diner_gaspump_red { + width: 91px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/diner_gaspump.gif); +} +div.s_diner_gaspump_red_pre { + background: url(/c_images/myhabbo/stickers/diner_gaspump.gif) no-repeat 50% 50%; +} +div.s_diner_geeks_plymouth { + width: 253px; height: 160px; + background-image: url(/c_images/myhabbo/stickers/diner_plymouth.png); +} +div.s_diner_geeks_plymouth_pre { + background: url(/c_images/myhabbo/stickers/diner_plymouth.png) no-repeat 50% 50%; +} +div.s_diner_jocks_belair { + width: 260px; height: 166px; + background-image: url(/c_images/myhabbo/stickers/diner_belair.gif); +} +div.s_diner_jocks_belair_pre { + background: url(/c_images/myhabbo/stickers/diner_belair.gif) no-repeat 50% 50%; +} +div.s_diner_greasers_hotrod { + width: 235px; height: 152px; + background-image: url(/c_images/myhabbo/stickers/diner_hotrod.gif); +} +div.s_diner_greasers_hotrod_pre { + background: url(/c_images/myhabbo/stickers/diner_hotrod.gif) no-repeat 50% 50%; +} +div.s_diner_sign { + width: 261px; height: 77px; + background-image: url(/c_images/myhabbo/stickers/diner_sign.gif); +} +div.s_diner_sign_pre { + background: url(/c_images/myhabbo/stickers/diner_sign.gif) no-repeat 50% 50%; +} +div.s_checker_border_h { + width: 180px; height: 30px; + background-image: url(/c_images/myhabbo/stickers/sticker_checkerHoriz.png); +} +div.s_checker_border_h_pre { + background: url(/c_images/myhabbo/stickers/sticker_checkerHoriz.png) no-repeat 50% 50%; +} +div.s_checker_border_v { + width: 30px; height: 180px; + background-image: url(/c_images/myhabbo/stickers/sticker_checkerVert.png); +} +div.s_checker_border_v_pre { + background: url(/c_images/myhabbo/stickers/sticker_checkerVert.png) no-repeat 50% 50%; +} +div.s_diner_trophy_bronze { + width: 65px; height: 132px; + background-image: url(/c_images/myhabbo/stickers/diner_bronzetrophy.png); +} +div.s_diner_trophy_bronze_pre { + background: url(/c_images/myhabbo/stickers/diner_bronzetrophy.png) no-repeat 50% 50%; +} +div.s_diner_trophy_silver { + width: 65px; height: 132px; + background-image: url(/c_images/myhabbo/stickers/diner_silvertrophy.png); +} +div.s_diner_trophy_silver_pre { + background: url(/c_images/myhabbo/stickers/diner_silvertrophy.png) no-repeat 50% 50%; +} +div.s_diner_trophy_gold { + width: 65px; height: 132px; + background-image: url(/c_images/myhabbo/stickers/diner_goldtrophy.png); +} +div.s_diner_trophy_gold_pre { + background: url(/c_images/myhabbo/stickers/diner_goldtrophy.png) no-repeat 50% 50%; +} +div.s_green_diner_a { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_a.gif); +} +div.s_green_diner_a_pre { + background: url(/c_images/myhabbo/stickers/green_diner_a.gif) no-repeat 50% 50%; +} +div.s_green_diner_a_umlaut { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_a_umlaut.gif); +} +div.s_green_diner_a_umlaut_pre { + background: url(/c_images/myhabbo/stickers/green_diner_a_umlaut.gif) no-repeat 50% 50%; +} +div.s_green_diner_ae { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_ae.gif); +} +div.s_green_diner_ae_pre { + background: url(/c_images/myhabbo/stickers/green_diner_ae.gif) no-repeat 50% 50%; +} +div.s_green_diner_b { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_b.gif); +} +div.s_green_diner_b_pre { + background: url(/c_images/myhabbo/stickers/green_diner_b.gif) no-repeat 50% 50%; +} +div.s_green_diner_c { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_c.gif); +} +div.s_green_diner_c_pre { + background: url(/c_images/myhabbo/stickers/green_diner_c.gif) no-repeat 50% 50%; +} +div.s_green_diner_c_cedilla { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_c_cedilla.gif); +} +div.s_green_diner_c_cedilla_pre { + background: url(/c_images/myhabbo/stickers/green_diner_c_cedilla.gif) no-repeat 50% 50%; +} +div.s_green_diner_d { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_d.gif); +} +div.s_green_diner_d_pre { + background: url(/c_images/myhabbo/stickers/green_diner_d.gif) no-repeat 50% 50%; +} +div.s_green_diner_e { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_e.gif); +} +div.s_green_diner_e_pre { + background: url(/c_images/myhabbo/stickers/green_diner_e.gif) no-repeat 50% 50%; +} +div.s_green_diner_e_acc { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_e_acc.gif); +} +div.s_green_diner_e_acc_pre { + background: url(/c_images/myhabbo/stickers/green_diner_e_acc.gif) no-repeat 50% 50%; +} +div.s_green_diner_e_cc_grave { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_e_cc_grave.gif); +} +div.s_green_diner_e_cc_grave_pre { + background: url(/c_images/myhabbo/stickers/green_diner_e_cc_grave.gif) no-repeat 50% 50%; +} +div.s_green_diner_eight { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_eight.gif); +} +div.s_green_diner_eight_pre { + background: url(/c_images/myhabbo/stickers/green_diner_eight.gif) no-repeat 50% 50%; +} +div.s_green_diner_exclamation { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_exclamation.gif); +} +div.s_green_diner_exclamation_pre { + background: url(/c_images/myhabbo/stickers/green_diner_exclamation.gif) no-repeat 50% 50%; +} +div.s_green_diner_f { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_f.gif); +} +div.s_green_diner_f_pre { + background: url(/c_images/myhabbo/stickers/green_diner_f.gif) no-repeat 50% 50%; +} +div.s_green_diner_five { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_five.gif); +} +div.s_green_diner_five_pre { + background: url(/c_images/myhabbo/stickers/green_diner_five.gif) no-repeat 50% 50%; +} +div.s_green_diner_four { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_four.gif); +} +div.s_green_diner_four_pre { + background: url(/c_images/myhabbo/stickers/green_diner_four.gif) no-repeat 50% 50%; +} +div.s_green_diner_g { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_g.gif); +} +div.s_green_diner_g_pre { + background: url(/c_images/myhabbo/stickers/green_diner_g.gif) no-repeat 50% 50%; +} +div.s_green_diner_h { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_h.gif); +} +div.s_green_diner_h_pre { + background: url(/c_images/myhabbo/stickers/green_diner_h.gif) no-repeat 50% 50%; +} +div.s_green_diner_i { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_i.gif); +} +div.s_green_diner_i_pre { + background: url(/c_images/myhabbo/stickers/green_diner_i.gif) no-repeat 50% 50%; +} +div.s_green_diner_j { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_j.gif); +} +div.s_green_diner_j_pre { + background: url(/c_images/myhabbo/stickers/green_diner_j.gif) no-repeat 50% 50%; +} +div.s_green_diner_k { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_k.gif); +} +div.s_green_diner_k_pre { + background: url(/c_images/myhabbo/stickers/green_diner_k.gif) no-repeat 50% 50%; +} +div.s_green_diner_l { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_l.gif); +} +div.s_green_diner_l_pre { + background: url(/c_images/myhabbo/stickers/green_diner_l.gif) no-repeat 50% 50%; +} +div.s_green_diner_m { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_m.gif); +} +div.s_green_diner_m_pre { + background: url(/c_images/myhabbo/stickers/green_diner_m.gif) no-repeat 50% 50%; +} +div.s_green_diner_n { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_n.gif); +} +div.s_green_diner_n_pre { + background: url(/c_images/myhabbo/stickers/green_diner_n.gif) no-repeat 50% 50%; +} +div.s_green_diner_nine { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_nine.gif); +} +div.s_green_diner_nine_pre { + background: url(/c_images/myhabbo/stickers/green_diner_nine.gif) no-repeat 50% 50%; +} +div.s_green_diner_o { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_o.gif); +} +div.s_green_diner_o_pre { + background: url(/c_images/myhabbo/stickers/green_diner_o.gif) no-repeat 50% 50%; +} +div.s_green_diner_o_accute { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_o_accute.gif); +} +div.s_green_diner_o_accute_pre { + background: url(/c_images/myhabbo/stickers/green_diner_o_accute.gif) no-repeat 50% 50%; +} +div.s_green_diner_o_cc_grave { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_o_cc_grave.gif); +} +div.s_green_diner_o_cc_grave_pre { + background: url(/c_images/myhabbo/stickers/green_diner_o_cc_grave.gif) no-repeat 50% 50%; +} +div.s_green_diner_o_umlaut { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_o_umlaut.gif); +} +div.s_green_diner_o_umlaut_pre { + background: url(/c_images/myhabbo/stickers/green_diner_o_umlaut.gif) no-repeat 50% 50%; +} +div.s_green_diner_one { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_one.gif); +} +div.s_green_diner_one_pre { + background: url(/c_images/myhabbo/stickers/green_diner_one.gif) no-repeat 50% 50%; +} +div.s_green_diner_p { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_p.gif); +} +div.s_green_diner_p_pre { + background: url(/c_images/myhabbo/stickers/green_diner_p.gif) no-repeat 50% 50%; +} +div.s_green_diner_q { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_q.gif); +} +div.s_green_diner_q_pre { + background: url(/c_images/myhabbo/stickers/green_diner_q.gif) no-repeat 50% 50%; +} +div.s_green_diner_question { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_question.gif); +} +div.s_green_diner_question_pre { + background: url(/c_images/myhabbo/stickers/green_diner_question.gif) no-repeat 50% 50%; +} +div.s_green_diner_r { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_r.gif); +} +div.s_green_diner_r_pre { + background: url(/c_images/myhabbo/stickers/green_diner_r.gif) no-repeat 50% 50%; +} +div.s_green_diner_s { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_s.gif); +} +div.s_green_diner_s_pre { + background: url(/c_images/myhabbo/stickers/green_diner_s.gif) no-repeat 50% 50%; +} +div.s_green_diner_seven { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_seven.gif); +} +div.s_green_diner_seven_pre { + background: url(/c_images/myhabbo/stickers/green_diner_seven.gif) no-repeat 50% 50%; +} +div.s_green_diner_six { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_six.gif); +} +div.s_green_diner_six_pre { + background: url(/c_images/myhabbo/stickers/green_diner_six.gif) no-repeat 50% 50%; +} +div.s_green_diner_t { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_t.gif); +} +div.s_green_diner_t_pre { + background: url(/c_images/myhabbo/stickers/green_diner_t.gif) no-repeat 50% 50%; +} +div.s_green_diner_three { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_three.gif); +} +div.s_green_diner_three_pre { + background: url(/c_images/myhabbo/stickers/green_diner_three.gif) no-repeat 50% 50%; +} +div.s_green_diner_two { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_two.gif); +} +div.s_green_diner_two_pre { + background: url(/c_images/myhabbo/stickers/green_diner_two.gif) no-repeat 50% 50%; +} +div.s_green_diner_u { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_u.gif); +} +div.s_green_diner_u_pre { + background: url(/c_images/myhabbo/stickers/green_diner_u.gif) no-repeat 50% 50%; +} +div.s_green_diner_u_acc { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_u_acc.gif); +} +div.s_green_diner_u_acc_pre { + background: url(/c_images/myhabbo/stickers/green_diner_u_acc.gif) no-repeat 50% 50%; +} +div.s_green_diner_u_acc_grave { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_u_acc_grave.gif); +} +div.s_green_diner_u_acc_grave_pre { + background: url(/c_images/myhabbo/stickers/green_diner_u_acc_grave.gif) no-repeat 50% 50%; +} +div.s_green_diner_u_umlaut { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_u_umlaut.gif); +} +div.s_green_diner_u_umlaut_pre { + background: url(/c_images/myhabbo/stickers/green_diner_u_umlaut.gif) no-repeat 50% 50%; +} +div.s_green_diner_upsidedown { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_undermark.gif); +} +div.s_green_diner_upsidedown_pre { + background: url(/c_images/myhabbo/stickers/green_diner_upsidedown.gif) no-repeat 50% 50%; +} +div.s_green_diner_v { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_v.gif); +} +div.s_green_diner_v_pre { + background: url(/c_images/myhabbo/stickers/green_diner_v.gif) no-repeat 50% 50%; +} +div.s_green_diner_w { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_w.gif); +} +div.s_green_diner_w_pre { + background: url(/c_images/myhabbo/stickers/green_diner_w.gif) no-repeat 50% 50%; +} +div.s_green_diner_x { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_x.gif); +} +div.s_green_diner_x_pre { + background: url(/c_images/myhabbo/stickers/green_diner_x.gif) no-repeat 50% 50%; +} +div.s_green_diner_y { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_y.gif); +} +div.s_green_diner_y_pre { + background: url(/c_images/myhabbo/stickers/green_diner_y.gif) no-repeat 50% 50%; +} +div.s_green_diner_z { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_z.gif); +} +div.s_green_diner_z_pre { + background: url(/c_images/myhabbo/stickers/green_diner_z.gif) no-repeat 50% 50%; +} +div.s_green_diner_zero { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/green_diner_zero.gif); +} +div.s_green_diner_zero_pre { + background: url(/c_images/myhabbo/stickers/green_diner_zero.gif) no-repeat 50% 50%; +} +div.s_blue_diner_a { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_a.gif); +} +div.s_blue_diner_a_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_a.gif) no-repeat 50% 50%; +} +div.s_blue_diner_a_umlaut { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_a_umlaut.gif); +} +div.s_blue_diner_a_umlaut_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_a_umlaut.gif) no-repeat 50% 50%; +} +div.s_blue_diner_ae { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_ae.gif); +} +div.s_blue_diner_ae_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_ae.gif) no-repeat 50% 50%; +} +div.s_blue_diner_b { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_b.gif); +} +div.s_blue_diner_b_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_b.gif) no-repeat 50% 50%; +} +div.s_blue_diner_c { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_c.gif); +} +div.s_blue_diner_c_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_c.gif) no-repeat 50% 50%; +} +div.s_blue_diner_c_cedilla { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_c_cedilla.gif); +} +div.s_blue_diner_c_cedilla_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_c_cedilla.gif) no-repeat 50% 50%; +} +div.s_blue_diner_d { + width: 72px; height: 62px; + background-image: url/c_images/myhabbo/stickers/blue_diner_d.gif); +} +div.s_blue_diner_d_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_d.gif) no-repeat 50% 50%; +} +div.s_blue_diner_e { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_e.gif); +} +div.s_blue_diner_e_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_e.gif) no-repeat 50% 50%; +} +div.s_blue_diner_e_acc { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_e_acc.gif); +} +div.s_blue_diner_e_acc_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_e_acc.gif) no-repeat 50% 50%; +} +div.s_blue_diner_e_acc_grave { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_e_acc_grave.gif); +} +div.s_blue_diner_e_acc_grave_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_e_acc_grave.gif) no-repeat 50% 50%; +} +div.s_blue_diner_eight { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_eight.gif); +} +div.s_blue_diner_eight_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_eight.gif) no-repeat 50% 50%; +} +div.s_blue_diner_exclamation { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_exclamation.gif); +} +div.s_blue_diner_exclamation_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_exclamation.gif) no-repeat 50% 50%; +} +div.s_blue_diner_f { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_f.gif); +} +div.s_blue_diner_f_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_f.gif) no-repeat 50% 50%; +} +div.s_blue_diner_five { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_five.gif); +} +div.s_blue_diner_five_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_five.gif) no-repeat 50% 50%; +} +div.s_blue_diner_four { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_four.gif); +} +div.s_blue_diner_four_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_four.gif) no-repeat 50% 50%; +} +div.s_blue_diner_g { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_g.gif); +} +div.s_blue_diner_g_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_g.gif) no-repeat 50% 50%; +} +div.s_blue_diner_h { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_h.gif); +} +div.s_blue_diner_h_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_h.gif) no-repeat 50% 50%; +} +div.s_blue_diner_i { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_i.gif); +} +div.s_blue_diner_i_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_i.gif) no-repeat 50% 50%; +} +div.s_blue_diner_j { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_j.gif); +} +div.s_blue_diner_j_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_j.gif) no-repeat 50% 50%; +} +div.s_blue_diner_k { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_k.gif); +} +div.s_blue_diner_k_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_k.gif) no-repeat 50% 50%; +} +div.s_blue_diner_l { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_l.gif); +} +div.s_blue_diner_l_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_l.gif) no-repeat 50% 50%; +} +div.s_blue_diner_m { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_m.gif); +} +div.s_blue_diner_m_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_m.gif) no-repeat 50% 50%; +} +div.s_blue_diner_n { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_n.gif); +} +div.s_blue_diner_n_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_n.gif) no-repeat 50% 50%; +} +div.s_blue_diner_nine { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_nine.gif); +} +div.s_blue_diner_nine_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_nine.gif) no-repeat 50% 50%; +} +div.s_blue_diner_o { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_o.gif); +} +div.s_blue_diner_o_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_o.gif) no-repeat 50% 50%; +} +div.s_blue_diner_o_accute { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_o_accute.gif); +} +div.s_blue_diner_o_accute_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_o_accute.gif) no-repeat 50% 50%; +} +div.s_blue_diner_o_cc_grave { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_o_cc_grave.gif); +} +div.s_blue_diner_o_cc_grave_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_o_cc_grave.gif) no-repeat 50% 50%; +} +div.s_blue_diner_o_umlaut { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_o_umlaut.gif); +} +div.s_blue_diner_o_umlaut_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_o_umlaut.gif) no-repeat 50% 50%; +} +div.s_blue_diner_one { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_one.gif); +} +div.s_blue_diner_one_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_one.gif) no-repeat 50% 50%; +} +div.s_blue_diner_p { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_p.gif); +} +div.s_blue_diner_p_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_p.gif) no-repeat 50% 50%; +} +div.s_blue_diner_q { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_q.gif); +} +div.s_blue_diner_q_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_q.gif) no-repeat 50% 50%; +} +div.s_blue_diner_question { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_question.gif); +} +div.s_blue_diner_question_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_question.gif) no-repeat 50% 50%; +} +div.s_blue_diner_r { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_r.gif); +} +div.s_blue_diner_r_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_r.gif) no-repeat 50% 50%; +} +div.s_blue_diner_s { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_s.gif); +} +div.s_blue_diner_s_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_s.gif) no-repeat 50% 50%; +} +div.s_blue_diner_seven { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_seven.gif); +} +div.s_blue_diner_seven_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_seven.gif) no-repeat 50% 50%; +} +div.s_blue_diner_six { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_six.gif); +} +div.s_blue_diner_six_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_six.gif) no-repeat 50% 50%; +} +div.s_blue_diner_t { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_t.gif); +} +div.s_blue_diner_t_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_t.gif) no-repeat 50% 50%; +} +div.s_blue_diner_three { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_three.gif); +} +div.s_blue_diner_three_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_three.gif) no-repeat 50% 50%; +} +div.s_blue_diner_two { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_two.gif); +} +div.s_blue_diner_two_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_two.gif) no-repeat 50% 50%; +} +div.s_blue_diner_u { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_u.gif); +} +div.s_blue_diner_u_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_u.gif) no-repeat 50% 50%; +} +div.s_blue_diner_u_acc { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_u_acc.gif); +} +div.s_blue_diner_u_acc_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_u_acc.gif) no-repeat 50% 50%; +} +div.s_blue_diner_u_acc_grave { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_u_acc_grave.gif); +} +div.s_blue_diner_u_acc_grave_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_u_acc_grave.gif) no-repeat 50% 50%; +} +div.s_blue_diner_u_umlaut { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_u_umlaut.gif); +} +div.s_blue_diner_u_umlaut_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_u_umlaut.gif) no-repeat 50% 50%; +} +div.s_blue_diner_upsidedown { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_upsidedown.gif); +} +div.s_blue_diner_upsidedown_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_upsidedown.gif) no-repeat 50% 50%; +} +div.s_blue_diner_v { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_v.gif); +} +div.s_blue_diner_v_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_v.gif) no-repeat 50% 50%; +} +div.s_blue_diner_w { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_w.gif); +} +div.s_blue_diner_w_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_w.gif) no-repeat 50% 50%; +} +div.s_blue_diner_x { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_x.gif); +} +div.s_blue_diner_x_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_x.gif) no-repeat 50% 50%; +} +div.s_blue_diner_y { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_y.gif); +} +div.s_blue_diner_y_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_y.gif) no-repeat 50% 50%; +} +div.s_blue_diner_z { + width: 72px; height: 62px; + background-image: url (/c_images/myhabbo/stickers/blue_diner_z.gif); +} +div.s_blue_diner_z_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_z.gif) no-repeat 50% 50%; +} +div.s_blue_diner_zero { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/blue_diner_zero.gif); +} +div.s_blue_diner_zero_pre { + background: url(/c_images/myhabbo/stickers/blue_diner_zero.gif) no-repeat 50% 50%; +} +div.s_red_diner_a { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_a.gif); +} +div.s_red_diner_a_pre { + background: url(/c_images/myhabbo/stickers/red_diner_a.gif) no-repeat 50% 50%; +} +div.s_red_diner_a_umlaut { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_a_umlaut.gif); +} +div.s_red_diner_a_umlaut_pre { + background: url(/c_images/myhabbo/stickers/red_diner_a_umlaut.gif) no-repeat 50% 50%; +} +div.s_red_diner_ae { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_ae.gif); +} +div.s_red_diner_ae_pre { + background: url(/c_images/myhabbo/stickers/red_diner_ae.gif) no-repeat 50% 50%; +} +div.s_red_diner_b { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_b.gif); +} +div.s_red_diner_b_pre { + background: url(/c_images/myhabbo/stickers/red_diner_b.gif) no-repeat 50% 50%; +} +div.s_red_diner_c { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_c.gif); +} +div.s_red_diner_c_pre { + background: url(/c_images/myhabbo/stickers/red_diner_c.gif) no-repeat 50% 50%; +} +div.s_red_diner_c_cedilla { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_c_cedilla.gif); +} +div.s_red_diner_c_cedilla_pre { + background: url(/c_images/myhabbo/stickers/red_diner_c_cedilla.gif) no-repeat 50% 50%; +} +div.s_red_diner_d { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_d.gif); +} +div.s_red_diner_d_pre { + background: url(/c_images/myhabbo/stickers/red_diner_d.gif) no-repeat 50% 50%; +} +div.s_red_diner_e { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_e.gif); +} +div.s_red_diner_e_pre { + background: url(/c_images/myhabbo/stickers/red_diner_e.gif) no-repeat 50% 50%; +} +div.s_red_diner_e_acc { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_e_acc.gif); +} +div.s_red_diner_e_acc_pre { + background: url(/c_images/myhabbo/stickers/red_diner_e_acc.gif) no-repeat 50% 50%; +} +div.s_red_diner_e_cc_grave { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_e_cc_grave.gif); +} +div.s_red_diner_e_cc_grave_pre { + background: url(/c_images/myhabbo/stickers/red_diner_e_cc_grave.gif) no-repeat 50% 50%; +} +div.s_red_diner_eight { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_eight.gif); +} +div.s_red_diner_eight_pre { + background: url(/c_images/myhabbo/stickers/red_diner_eight.gif) no-repeat 50% 50%; +} +div.s_red_diner_exclamation { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_exclamation.gif); +} +div.s_red_diner_exclamation_pre { + background: url(/c_images/myhabbo/stickers/red_diner_exclamation.gif) no-repeat 50% 50%; +} +div.s_red_diner_f { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_f.gif); +} +div.s_red_diner_f_pre { + background: url(/c_images/myhabbo/stickers/red_diner_f.gif) no-repeat 50% 50%; +} +div.s_red_diner_five { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_five.gif); +} +div.s_red_diner_five_pre { + background: url(/c_images/myhabbo/stickers/red_diner_five.gif) no-repeat 50% 50%; +} +div.s_red_diner_four { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_four.gif); +} +div.s_red_diner_four_pre { + background: url(/c_images/myhabbo/stickers/red_diner_four.gif) no-repeat 50% 50%; +} +div.s_red_diner_g { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_g.gif); +} +div.s_red_diner_g_pre { + background: url(/c_images/myhabbo/stickers/red_diner_g.gif) no-repeat 50% 50%; +} +div.s_red_diner_h { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_h.gif); +} +div.s_red_diner_h_pre { + background: url(/c_images/myhabbo/stickers/red_diner_h.gif) no-repeat 50% 50%; +} +div.s_red_diner_i { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_i.gif); +} +div.s_red_diner_i_pre { + background: url(/c_images/myhabbo/stickers/red_diner_i.gif) no-repeat 50% 50%; +} +div.s_red_diner_j { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_j.gif); +} +div.s_red_diner_j_pre { + background: url(/c_images/myhabbo/stickers/red_diner_j.gif) no-repeat 50% 50%; +} +div.s_red_diner_k { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_k.gif); +} +div.s_red_diner_k_pre { + background: url(/c_images/myhabbo/stickers/red_diner_k.gif) no-repeat 50% 50%; +} +div.s_red_diner_l { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_l.gif); +} +div.s_red_diner_l_pre { + background: url(/c_images/myhabbo/stickers/red_diner_l.gif) no-repeat 50% 50%; +} +div.s_red_diner_m { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_m.gif); +} +div.s_red_diner_m_pre { + background: url(/c_images/myhabbo/stickers/red_diner_m.gif) no-repeat 50% 50%; +} +div.s_red_diner_n { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_n.gif); +} +div.s_red_diner_n_pre { + background: url(/c_images/myhabbo/stickers/red_diner_n.gif) no-repeat 50% 50%; +} +div.s_red_diner_nine { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_nine.gif); +} +div.s_red_diner_nine_pre { + background: url(/c_images/myhabbo/stickers/red_diner_nine.gif) no-repeat 50% 50%; +} +div.s_red_diner_o { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_o.gif); +} +div.s_red_diner_o_pre { + background: url(/c_images/myhabbo/stickers/red_diner_o.gif) no-repeat 50% 50%; +} +div.s_red_diner_o_accute { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_o_accute.gif); +} +div.s_red_diner_o_accute_pre { + background: url(/c_images/myhabbo/stickers/red_diner_o_accute.gif) no-repeat 50% 50%; +} +div.s_red_diner_o_cc_grave { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_o_cc_grave.gif); +} +div.s_red_diner_o_cc_grave_pre { + background: url(/c_images/myhabbo/stickers/red_diner_o_cc_grave.gif) no-repeat 50% 50%; +} +div.s_red_diner_o_umlaut { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_o_umlaut.gif); +} +div.s_red_diner_o_umlaut_pre { + background: url(/c_images/myhabbo/stickers/red_diner_o_umlaut.gif) no-repeat 50% 50%; +} +div.s_red_diner_one { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_one.gif); +} +div.s_red_diner_one_pre { + background: url(/c_images/myhabbo/stickers/red_diner_one.gif) no-repeat 50% 50%; +} +div.s_red_diner_p { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_p.gif); +} +div.s_red_diner_p_pre { + background: url(/c_images/myhabbo/stickers/red_diner_p.gif) no-repeat 50% 50%; +} +div.s_red_diner_q { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_q.gif); +} +div.s_red_diner_q_pre { + background: url(/c_images/myhabbo/stickers/red_diner_q.gif) no-repeat 50% 50%; +} +div.s_red_diner_question { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_question.gif); +} +div.s_red_diner_question_pre { + background: url(/c_images/myhabbo/stickers/red_diner_question.gif) no-repeat 50% 50%; +} +div.s_red_diner_r { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_r.gif); +} +div.s_red_diner_r_pre { + background: url(/c_images/myhabbo/stickers/red_diner_r.gif) no-repeat 50% 50%; +} +div.s_red_diner_s { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_s.gif); +} +div.s_red_diner_s_pre { + background: url(/c_images/myhabbo/stickers/red_diner_s.gif) no-repeat 50% 50%; +} +div.s_red_diner_seven { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_seven.gif); +} +div.s_red_diner_seven_pre { + background: url(/c_images/myhabbo/stickers/red_diner_seven.gif) no-repeat 50% 50%; +} +div.s_red_diner_six { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_six.gif); +} +div.s_red_diner_six_pre { + background: url(/c_images/myhabbo/stickers/red_diner_six.gif) no-repeat 50% 50%; +} +div.s_red_diner_t { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_t.gif); +} +div.s_red_diner_t_pre { + background: url(/c_images/myhabbo/stickers/red_diner_t.gif) no-repeat 50% 50%; +} +div.s_red_diner_three { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_three.gif); +} +div.s_red_diner_three_pre { + background: url(/c_images/myhabbo/stickers/red_diner_three.gif) no-repeat 50% 50%; +} +div.s_red_diner_two { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_two.gif); +} +div.s_red_diner_two_pre { + background: url(/c_images/myhabbo/stickers/red_diner_two.gif) no-repeat 50% 50%; +} +div.s_red_diner_u { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_u.gif); +} +div.s_red_diner_u_pre { + background: url(/c_images/myhabbo/stickers/red_diner_u.gif) no-repeat 50% 50%; +} +div.s_red_diner_u_acc { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_u_acc.gif); +} +div.s_red_diner_u_acc_pre { + background: url(/c_images/myhabbo/stickers/red_diner_u_acc.gif) no-repeat 50% 50%; +} +div.s_red_diner_u_acc_grave { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_u_acc_grave.gif); +} +div.s_red_diner_u_acc_grave_pre { + background: url(/c_images/myhabbo/stickers/red_diner_u_acc_grave.gif) no-repeat 50% 50%; +} +div.s_red_diner_u_umlaut { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_u_umlaut.gif); +} +div.s_red_diner_u_umlaut_pre { + background: url(/c_images/myhabbo/stickers/red_diner_u_umlaut.gif) no-repeat 50% 50%; +} +div.s_red_diner_upsidedown { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_undermark.gif); +} +div.s_red_diner_upsidedown_pre { + background: url(/c_images/myhabbo/stickers/red_diner_upsidedown.gif) no-repeat 50% 50%; +} +div.s_red_diner_v { + width: 72px; height: 62px; + background-image: url (/c_images/myhabbo/stickers/red_diner_v.gif); +} +div.s_red_diner_v_pre { + background: url(/c_images/myhabbo/stickers/red_diner_v.gif) no-repeat 50% 50%; +} +div.s_red_diner_w { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_w.gif); +} +div.s_red_diner_w_pre { + background: url(/c_images/myhabbo/stickers/red_diner_w.gif) no-repeat 50% 50%; +} +div.s_red_diner_x { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_x.gif); +} +div.s_red_diner_x_pre { + background: url(/c_images/myhabbo/stickers/red_diner_x.gif) no-repeat 50% 50%; +} +div.s_red_diner_y { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_y.gif); +} +div.s_red_diner_y_pre { + background: url(/c_images/myhabbo/stickers/red_diner_y.gif) no-repeat 50% 50%; +} +div.s_red_diner_z { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_z.gif); +} +div.s_red_diner_z_pre { + background: url(/c_images/myhabbo/stickers/red_diner_z.gif) no-repeat 50% 50%; +} +div.s_red_diner_zero { + width: 72px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/red_diner_zero.gif); +} +div.s_red_diner_zero_pre { + background: url(/c_images/myhabbo/stickers/red_diner_zero.gif) no-repeat 50% 50%; +} +div.s_wood_a { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_a.gif); +} +div.s_wood_a_pre { + background: url(/c_images/myhabbo/stickers/wood_a.gif) no-repeat 50% 50%; +} +div.s_wood_acircle { + width: 37px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/wood_acircle.gif); +} +div.s_wood_acircle_pre { + background: url(/c_images/myhabbo/stickers/wood_acircle.gif) no-repeat 50% 50%; +} +div.s_wood_acsent { + width: 19px; height: 19px; + background-image: url(/c_images/myhabbo/stickers/wood_acsent.gif); +} +div.s_wood_acsent_pre { + background: url(/c_images/myhabbo/stickers/wood_acsent.gif) no-repeat 50% 50%; +} +div.s_wood_acsent2 { + width: 19px; height: 19px; + background-image: url(/c_images/myhabbo/stickers/wood_acsent2.gif); +} +div.s_wood_acsent2_pre { + background: url(/c_images/myhabbo/stickers/wood_acsent2.gif) no-repeat 50% 50%; +} +div.s_wood_adots { + width: 37px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/wood_adots.gif); +} +div.s_wood_adots_pre { + background: url(/c_images/myhabbo/stickers/wood_adots.gif) no-repeat 50% 50%; +} +div.s_wood_b { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_b.gif); +} +div.s_wood_b_pre { + background: url(/c_images/myhabbo/stickers/wood_b.gif) no-repeat 50% 50%; +} +div.s_wood_c { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_c.gif); +} +div.s_wood_c_pre { + background: url(/c_images/myhabbo/stickers/wood_c.gif) no-repeat 50% 50%; +} +div.s_wood_comma { + width: 14px; height: 19px; + background-image: url(/c_images/myhabbo/stickers/wood_comma.gif); +} +div.s_wood_comma_pre { + background: url(/c_images/myhabbo/stickers/wood_comma.gif) no-repeat 50% 50%; +} +div.s_wood_d { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_d.gif); +} +div.s_wood_d_pre { + background: url(/c_images/myhabbo/stickers/wood_d.gif) no-repeat 50% 50%; +} +div.s_wood_dot { + width: 14px; height: 15px; + background-image: url(/c_images/myhabbo/stickers/wood_dot.gif); +} +div.s_wood_dot_pre { + background: url(/c_images/myhabbo/stickers/wood_dot.gif) no-repeat 50% 50%; +} +div.s_wood_e { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_e.gif); +} +div.s_wood_e_pre { + background: url(/c_images/myhabbo/stickers/wood_e.gif) no-repeat 50% 50%; +} +div.s_wood_exclamation { + width: 14px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_exclamation.gif); +} +div.s_wood_exclamation_pre { + background: url(/c_images/myhabbo/stickers/wood_exclamation.gif) no-repeat 50% 50%; +} +div.s_wood_f { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_f.gif); +} +div.s_wood_f_pre { + background: url(/c_images/myhabbo/stickers/wood_f.gif) no-repeat 50% 50%; +} +div.s_wood_g { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_g.gif); +} +div.s_wood_g_pre { + background: url(/c_images/myhabbo/stickers/wood_g.gif) no-repeat 50% 50%; +} +div.s_wood_h { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_h.gif); +} +div.s_wood_h_pre { + background: url(/c_images/myhabbo/stickers/wood_h.gif) no-repeat 50% 50%; +} +div.s_wood_i { + width: 14px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_i.gif); +} +div.s_wood_i_pre { + background: url(/c_images/myhabbo/stickers/wood_i.gif) no-repeat 50% 50%; +} +div.s_wood_j { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_j.gif); +} +div.s_wood_j_pre { + background: url(/c_images/myhabbo/stickers/wood_j.gif) no-repeat 50% 50%; +} +div.s_wood_k { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_k.gif); +} +div.s_wood_k_pre { + background: url(/c_images/myhabbo/stickers/wood_k.gif) no-repeat 50% 50%; +} +div.s_wood_l { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_l.gif); +} +div.s_wood_l_pre { + background: url(/c_images/myhabbo/stickers/wood_l.gif) no-repeat 50% 50%; +} +div.s_wood_m { + width: 47px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_m.gif); +} +div.s_wood_m_pre { + background: url(/c_images/myhabbo/stickers/wood_m.gif) no-repeat 50% 50%; +} +div.s_wood_n { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_n.gif); +} +div.s_wood_n_pre { + background: url(/c_images/myhabbo/stickers/wood_n.gif) no-repeat 50% 50%; +} +div.s_wood_o { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_o.gif); +} +div.s_wood_o_pre { + background: url(/c_images/myhabbo/stickers/wood_o.gif) no-repeat 50% 50%; +} +div.s_wood_odots { + width: 37px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/wood_odots.gif); +} +div.s_wood_odots_pre { + background: url(/c_images/myhabbo/stickers/wood_odots.gif) no-repeat 50% 50%; +} +div.s_wood_p { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_p.gif); +} +div.s_wood_p_pre { + background: url(/c_images/myhabbo/stickers/wood_p.gif) no-repeat 50% 50%; +} +div.s_wood_q { + width: 41px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/wood_q.gif); +} +div.s_wood_q_pre { + background: url(/c_images/myhabbo/stickers/wood_q.gif) no-repeat 50% 50%; +} +div.s_wood_question { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_question.gif); +} +div.s_wood_question_pre { + background: url(/c_images/myhabbo/stickers/wood_question.gif) no-repeat 50% 50%; +} +div.s_wood_r { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_r.gif); +} +div.s_wood_r_pre { + background: url(/c_images/myhabbo/stickers/wood_r.gif) no-repeat 50% 50%; +} +div.s_wood_s { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_s.gif); +} +div.s_wood_s_pre { + background: url(/c_images/myhabbo/stickers/wood_s.gif) no-repeat 50% 50%; +} +div.s_wood_t { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_t.gif); +} +div.s_wood_t_pre { + background: url(/c_images/myhabbo/stickers/wood_t.gif) no-repeat 50% 50%; +} +div.s_wood_u { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_u.gif); +} +div.s_wood_u_pre { + background: url(/c_images/myhabbo/stickers/wood_u.gif) no-repeat 50% 50%; +} +div.s_wood_undermark { + width: 27px; height: 14px; + background-image: url(/c_images/myhabbo/stickers/wood_undermark.gif); +} +div.s_wood_undermark_pre { + background: url(/c_images/myhabbo/stickers/wood_undermark.gif) no-repeat 50% 50%; +} +div.s_wood_v { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_v.gif); +} +div.s_wood_v_pre { + background: url(/c_images/myhabbo/stickers/wood_v.gif) no-repeat 50% 50%; +} +div.s_wood_w { + width: 47px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_w.gif); +} +div.s_wood_w_pre { + background: url(/c_images/myhabbo/stickers/wood_w.gif) no-repeat 50% 50%; +} +div.s_wood_x { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_x.gif); +} +div.s_wood_x_pre { + background: url(/c_images/myhabbo/stickers/wood_x.gif) no-repeat 50% 50%; +} +div.s_wood_y { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_y.gif); +} +div.s_wood_y_pre { + background: url(/c_images/myhabbo/stickers/wood_y.gif) no-repeat 50% 50%; +} +div.s_wood_z { + width: 37px; height: 54px; + background-image: url(/c_images/myhabbo/stickers/wood_z.gif); +} +div.s_wood_z_pre { + background: url(/c_images/myhabbo/stickers/wood_z.gif) no-repeat 50% 50%; +} +div.s_diner_poster { + width: 273px; height: 310px; + background-image: url(/c_images/myhabbo/stickers/Sticker_dinerPoster.png); +} +div.s_diner_poster_pre { + background: url(/c_images/myhabbo/stickers/Sticker_dinerPoster.png) no-repeat 50% 50%; +} +div.s_olym_carson { + width: 53px; height: 106px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_carson.gif); +} +div.s_olym_carson_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_carson.gif) no-repeat 50% 50%; +} +div.s_olym_cresthawk { + width: 53px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_cresthawk.gif); +} +div.s_olym_cresthawk_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_cresthawk.gif) no-repeat 50% 50%; +} +div.s_olym_inari { + width: 44px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_inari.gif); +} +div.s_olym_inari_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_inari.gif) no-repeat 50% 50%; +} +div.s_olym_jandelee { + width: 52px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_jandelee.gif); +} +div.s_olym_jandelee_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_jandelee.gif) no-repeat 50% 50%; +} +div.s_olym_lady { + width: 31px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_lady.gif); +} +div.s_olym_lady_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_lady.gif) no-repeat 50% 50%; +} +div.s_olym_loderse { + width: 78px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_loderse.gif); +} +div.s_olym_loderse_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_loderse.gif) no-repeat 50% 50%; +} +div.s_olym_moiraine { + width: 61px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_moiraine.gif); +} +div.s_olym_moiraine_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_moiraine.gif) no-repeat 50% 50%; +} +div.s_olym_nme { + width: 53px; height: 104px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_nme.gif); +} +div.s_olym_nme_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_nme.gif) no-repeat 50% 50%; +} +div.s_olym_smoothcriminal { + width: 47px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_smoothCriminal.gif); +} +div.s_olym_smoothcriminal_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_smoothCriminal.gif) no-repeat 50% 50%; +} +div.s_olym_spartan { + width: 32px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_spartan.gif); +} +div.s_olym_spartan_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_spartan.gif) no-repeat 50% 50%; +} +div.s_olym_squib { + width: 50px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_squib.gif); +} +div.s_olym_squib_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_squib.gif) no-repeat 50% 50%; +} +div.s_olym_thegirls { + width: 141px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/sticker_olym_theGirls.gif); +} +div.s_olym_thegirls_pre { + background: url(/c_images/myhabbo/stickers/sticker_olym_theGirls.gif) no-repeat 50% 50%; +} +div.s_backtoschool_trophy { + width: 146px; height: 101px; + background-image: url(/c_images/myhabbo/stickers/sticker_goldAppleTrophy.gif); +} +div.s_backtoschool_trophy_pre { + background: url(/c_images/myhabbo/stickers/sticker_goldAppleTrophy.gif) no-repeat 50% 50%; +} +div.s_backtoschool_goldapple { + width: 45px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/stickers/sticker_goldApple.gif); +} +div.s_backtoschool_goldapple_pre { + background: url(/c_images/myhabbo/stickers/stickers/sticker_goldApple.gif) no-repeat 50% 50%; +} +div.s_backtoschool_badapple { + width: 54px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/sticker_rottenApple.gif); +} +div.s_backtoschool_badapple_pre { + background: url(/c_images/myhabbo/stickers/sticker_rottenApple.gif) no-repeat 50% 50%; +} + +div.es_dynamic_sticker_avatar { + width: 64px; height: 106px; +} +div.es_dynamic_sticker_avatar_pre { + background-repeat: no-repeat; background-position: 50% 50%; +} +div.es_dynamic_animator_sticker { + width: 180px; height: 144px; +} +div.es_dynamic_animator_sticker_pre { + background-repeat: no-repeat; background-position: 50% 50%; +} + +div.b_bg_pattern_abstract2 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_abstract2.gif); +} +div.b_bg_pattern_abstract2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_abstract2.gif); +} +div.b_bg_colour_01 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_01.gif); +} +div.b_bg_colour_01_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_01.gif); +} +div.b_bg_colour_08 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_08.gif); +} +div.b_bg_colour_08_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_08.gif); +} +div.b_bg_colour_12 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_12.gif); +} +div.b_bg_colour_12_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_12.gif); +} +div.b_bg_colour_16 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_16.gif); +} +div.b_bg_colour_16_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_16.gif); +} +div.b_bg_denim { + background-image: url(/c_images/myhabbo/backgrounds2/denim.gif); +} +div.b_bg_denim_pre { + background-image: url(/c_images/myhabbo/backgrounds2/denim.gif); +} +div.b_bg_lace { + background-image: url(/c_images/myhabbo/backgrounds2/lace.gif); +} +div.b_bg_lace_pre { + background-image: url(/c_images/myhabbo/backgrounds2/lace.gif); +} +div.b_bg_stitched { + background-image: url(/c_images/myhabbo/backgrounds2/stitched.gif); +} +div.b_bg_stitched_pre { + background-image: url(/c_images/myhabbo/backgrounds2/stitched.gif); +} +div.b_bg_wood { + background-image: url(/c_images/myhabbo/backgrounds2/bg_wood.gif); +} +div.b_bg_wood_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_wood.gif); +} +div.b_bg_cork { + background-image: url(/c_images/myhabbo/backgrounds2/cork.png); +} +div.b_bg_cork_pre { + background-image: url(/c_images/myhabbo/backgrounds2/cork.png); +} +div.b_bg_stone { + background-image: url(/c_images/myhabbo/backgrounds2/stone.gif); +} +div.b_bg_stone_pre { + background-image: url(/c_images/myhabbo/backgrounds2/stone.gif); +} +div.b_bg_pattern_bricks { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_bricks.gif); +} +div.b_bg_pattern_bricks_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_bricks.gif); +} +div.b_bg_ruled_paper { + background-image: url(/c_images/myhabbo/backgrounds2/ruled_paper.gif); +} +div.b_bg_ruled_paper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/ruled_paper.gif); +} +div.b_bg_grass { + background-image: url(/c_images/myhabbo/backgrounds2/grass.gif); +} +div.b_bg_grass_pre { + background-image: url(/c_images/myhabbo/backgrounds2/grass.gif); +} +div.b_bg_hotel { + background-image: url(/c_images/myhabbo/backgrounds2/hotel.png); +} +div.b_bg_hotel_pre { + background-image: url(/c_images/myhabbo/backgrounds2/hotel.png); +} +div.b_bg_bubble { + background-image: url(/c_images/myhabbo/backgrounds2/bubble.gif); +} +div.b_bg_bubble_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bubble.gif); +} +div.b_bg_pattern_bobbaskulls1 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_bobbaskulls1.gif); +} +div.b_bg_pattern_bobbaskulls1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_bobbaskulls1.gif); +} +div.b_bg_pattern_space { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_space.gif); +} +div.b_bg_pattern_space_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_space.gif); +} +div.b_bg_image_submarine { + background-image: url(/c_images/myhabbo/backgrounds2/bg_image_submarine.gif); +} +div.b_bg_image_submarine_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_image_submarine.gif); +} +div.b_bg_metal2 { + background-image: url(/c_images/myhabbo/backgrounds2/metal2.gif); +} +div.b_bg_metal2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/metal2.gif); +} +div.b_bg_broken_glass { + background-image: url(/c_images/myhabbo/backgrounds2/bg_broken_glass.png); +} +div.b_bg_broken_glass_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_broken_glass.png); +} +div.b_bg_pattern_clouds { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_clouds.gif); +} +div.b_bg_pattern_clouds_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_clouds.gif); +} +div.b_bg_comic2 { + background-image: url(/c_images/myhabbo/backgrounds2/comic2.png); +} +div.b_bg_comic2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/comic2.png); +} +div.b_bg_pattern_floral_01 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_floral_01.gif); +} +div.b_bg_pattern_floral_01_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_floral_01.gif); +} +div.b_bg_pattern_floral_02 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_floral_02.gif); +} +div.b_bg_pattern_floral_02_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_floral_02.gif); +} +div.b_bg_pattern_floral_03 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_floral_03.gif); +} +div.b_bg_pattern_floral_03_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_floral_03.gif); +} +div.b_bg_pattern_bulb { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_bulb.gif); +} +div.b_bg_pattern_bulb_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_bulb.gif); +} +div.b_bg_pattern_cars { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_cars.gif); +} +div.b_bg_pattern_cars_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_cars.gif); +} +div.b_bg_pattern_carpants { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_carpants.gif); +} +div.b_bg_pattern_carpants_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_carpants.gif); +} +div.b_bg_pattern_plasto { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_plasto.gif); +} +div.b_bg_pattern_plasto_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_plasto.gif); +} +div.b_bg_pattern_tinyroom { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_tinyroom.gif); +} +div.b_bg_pattern_tinyroom_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_tinyroom.gif); +} +div.b_bg_pattern_hearts { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_hearts.gif); +} +div.b_bg_pattern_hearts_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_hearts.gif); +} +div.b_bg_pattern_abstract1 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_abstract1.gif); +} +div.b_bg_pattern_abstract1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_abstract1.gif); +} +div.b_bg_bathroom_tile { + background-image: url(/c_images/myhabbo/backgrounds2/bg_bathroom_tile.gif); +} +div.b_bg_bathroom_tile_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_bathroom_tile.gif); +} +div.b_bg_pattern_fish { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_fish.gif); +} +div.b_bg_pattern_fish_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_fish.gif); +} +div.b_bg_pattern_deepred { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_deepred.gif); +} +div.b_bg_pattern_deepred_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_deepred.gif); +} +div.b_bg_colour_02 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_02.gif); +} +div.b_bg_colour_02_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_02.gif); +} +div.b_bg_colour_03 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_03.gif); +} +div.b_bg_colour_03_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_03.gif); +} +div.b_bg_colour_04 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_04.gif); +} +div.b_bg_colour_04_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_04.gif); +} +div.b_bg_colour_05 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_05.gif); +} +div.b_bg_colour_05_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_05.gif); +} +div.b_bg_colour_06 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_06.gif); +} +div.b_bg_colour_06_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_06.gif); +} +div.b_bg_colour_07 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_07.gif); +} +div.b_bg_colour_07_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_07.gif); +} +div.b_bg_colour_09 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_09.gif); +} +div.b_bg_colour_09_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_09.gif); +} +div.b_bg_colour_10 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_10.gif); +} +div.b_bg_colour_10_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_10.gif); +} +div.b_bg_colour_11 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_11.gif); +} +div.b_bg_colour_11_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_11.gif); +} +div.b_bg_colour_13 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_13.gif); +} +div.b_bg_colour_13_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_13.gif); +} +div.b_bg_colour_14 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_14.gif); +} +div.b_bg_colour_14_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_14.gif); +} +div.b_bg_colour_15 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_15.gif); +} +div.b_bg_colour_15_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_15.gif); +} +div.b_bg_colour_17 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_17.gif); +} +div.b_bg_colour_17_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_17.gif); +} +div.b_bg_tonga { + background-image: url(/c_images/myhabbo/backgrounds2/tonga.gif); +} +div.b_bg_tonga_pre { + background-image: url(/c_images/myhabbo/backgrounds2/tonga.gif); +} +div.b_vale_rose_bg { + background-image: url(/c_images/myhabbo/backgrounds2/vale_rose_bg.gif); +} +div.b_vale_rose_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/vale_rose_bg.gif); +} +div.b_vale_skull_bg { + background-image: url(/c_images/myhabbo/backgrounds2/vale_skull_bg.gif); +} +div.b_vale_skull_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/vale_skull_bg.gif); +} +div.b_goth_pattern { + background-image: url(/c_images/myhabbo/backgrounds2/goth_pattern.gif); +} +div.b_goth_pattern_pre { + background-image: url(/c_images/myhabbo/backgrounds2/goth_pattern.gif); +} +div.b_easter_eggs_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper.gif); +} +div.b_easter_eggs_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper.gif); +} +div.b_spm_background { + background-image: url(/c_images/myhabbo/backgrounds2/spm_bg_version_041207.gif); +} +div.b_spm_background_pre { + background-image: url(/c_images/myhabbo/backgrounds2/spmbgthumb.gif); +} +div.b_spm_bg_version_041207.gif { + background-image: url(/c_images/myhabbo/backgrounds2/bg_spmX); +} +div.b_spm_bg_version_041207.gif_pre { + background-image: url(/c_images/myhabbo/backgrounds2/spm_bg_version_041207.gif); +} +div.b_hc_bg_machine { + background-image: url(/c_images/myhabbo/backgrounds2/HC_machine.png); +} +div.b_hc_bg_machine_pre { + background-image: url(/c_images/myhabbo/backgrounds2/HC_machine.png); +} +div.b_hc_bg_pillow { + background-image: url(/c_images/myhabbo/backgrounds2/HC_pillow.gif); +} +div.b_hc_bg_pillow_pre { + background-image: url(/c_images/myhabbo/backgrounds2/HC_pillow.gif); +} +div.b_hc_bg_royal { + background-image: url(/c_images/myhabbo/backgrounds2/HC_royal.gif); +} +div.b_hc_bg_royal_pre { + background-image: url(/c_images/myhabbo/backgrounds2/HC_royal.gif); +} +div.b_bg_xmas_gift { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg); +} +div.b_bg_xmas_gift_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg); +} +div.b_newyear_bg_fireworks { + background-image: url(/c_images/myhabbo/backgrounds2/newyear_bg_fireworks.gif); +} +div.b_newyear_bg_fireworks_pre { + background-image: url(/c_images/myhabbo/backgrounds2/newyear_bg_fireworks.gif); +} +div.b_newyear_bg_fireworks2 { + background-image: url(/c_images/myhabbo/backgrounds2/newyear_bg_fireworks2.gif); +} +div.b_newyear_bg_fireworks2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/newyear_bg_fireworks2.gif); +} +div.b_nl_green_bg { + background-image: url(/c_images/myhabbo/backgrounds2/nl_green_bg.gif); +} +div.b_nl_green_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/nl_green_bg.gif); +} +div.b_val_bgpattern_love { + background-image: url(/c_images/myhabbo/backgrounds2/vale_rose_bg.gif); +} +div.b_val_bgpattern_love_pre { + background-image: url(/c_images/myhabbo/backgrounds2/vale_rose_bg.gif); +} +div.b_val_bgpattern_skull { + background-image: url(/c_images/myhabbo/backgrounds2/val_bgpattern_skull.gif); +} +div.b_val_bgpattern_skull_pre { + background-image: url(/c_images/myhabbo/backgrounds2/val_bgpattern_skull.gif); +} +div.b_xmas_bgpattern_starsky { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_bgpattern_starsky.gif); +} +div.b_xmas_bgpattern_starsky_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_bgpattern_starsky.gif); +} +div.b_xmas_box_darkred2 { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_box_darkred2.gif); +} +div.b_xmas_box_darkred2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_box_darkred2.gif); +} +div.b_xmas_gifts_bg { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg.gif); +} +div.b_xmas_gifts_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg.gif); +} +div.b_xmas_gifts_bg.gif { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg.gif); +} +div.b_xmas_gifts_bg.gif_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg.gif); +} +div.b_tutorial_bg { + background-image: url(/c_images/myhabbo/backgrounds2/tutorial_bg.png); +} +div.b_tutorial_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/tutorial_bg.png); +} +div.b_habbo_group_tutorial_bg { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_group_tutorial_bg.png); +} +div.b_habbo_group_tutorial_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_group_tutorial_bg.png); +} +div.b_bg_bobbaheart { + background-image: url(/c_images/myhabbo/backgrounds2/bg_bobbaheart.gif); +} +div.b_bg_bobbaheart_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_bobbaheart.gif); +} +div.b_bg_rain { + background-image: url(/c_images/myhabbo/backgrounds2/bg_rain.gif); +} +div.b_bg_rain_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_rain.gif); +} +div.b_bg_serpentine_1 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpentine_1.gif); +} +div.b_bg_serpentine_1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpentine_1.gif); +} +div.b_bg_serpentine_2 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpentine_2.gif); +} +div.b_bg_serpentine_2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpentine_2.gif); +} +div.b_bg_serpentine_darkblue { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpentine_darkblue.gif); +} +div.b_bg_serpentine_darkblue_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpentine_darkblue.gif); +} +div.b_bg_serpentine_darkred { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpntine_darkred.gif); +} +div.b_bg_serpentine_darkred_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpntine_darkred.gif); +} +div.b_kir_stamp4 { + background-image: url(/c_images/myhabbo/backgrounds2/kir_stamp4.gif); +} +div.b_kir_stamp4_pre { + background-image: url(/c_images/myhabbo/backgrounds2/kir_stamp4.gif); +} +div.b_poptarts_cv_002.jpg { + background-image: url(/c_images/myhabbo/backgrounds2/poptarts_cv.jpg); +} +div.b_poptarts_cv_002.jpg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/poptarts_cv.jpg); +} +div.b_poptarts_cv { + background-image: url(/c_images/myhabbo/backgrounds2/poptarts_cv.jpg); +} +div.b_poptarts_cv_pre { + background-image: url(/c_images/myhabbo/backgrounds2/poptarts_cv.jpg); +} +div.b_bg_poptarts_cv { + background-image: url(/c_images/myhabbo/backgrounds2/bg_poptarts_cv.gif); +} +div.b_bg_poptarts_cv_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_poptarts_cv.gif); +} +div.b_bg_poptarts_sb { + background-image: url(/c_images/myhabbo/backgrounds2/bg_poptarts_sb.gif); +} +div.b_bg_poptarts_sb_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_poptarts_sb.gif); +} +div.b_globalw_background { + background-image: url(/c_images/myhabbo/backgrounds2/GlobalW_Background.gif); +} +div.b_globalw_background_pre { + background-image: url(/c_images/myhabbo/backgrounds2/); +} +div.b_voiceofteens { + background-image: url(/c_images/myhabbo/backgrounds2/voiceofteens.gif); +} +div.b_voiceofteens_pre { + background-image: url(/c_images/myhabbo/backgrounds2/); +} +div.b_makeover { + background-image: url(/c_images/myhabbo/backgrounds2/makeover.gif); +} +div.b_makeover_pre { + background-image: url(/c_images/myhabbo/backgrounds2/makeover.gif); +} +div.b_christmas2007bg_001 { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg_001.gif); +} +div.b_christmas2007bg_001_pre { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg_001.gif); +} +div.b_bg_battle_ball2 { + background-image: url(/c_images/myhabbo/backgrounds2/BB_Group2.png); +} +div.b_bg_battle_ball2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/BB_Group2.png); +} +div.b_bg_infobus_blue { + background-image: url(/c_images/myhabbo/backgrounds2/bg_infobus_blue.png); +} +div.b_bg_infobus_blue_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_infobus_blue.png); +} +div.b_bg_infobus_white { + background-image: url(/c_images/myhabbo/backgrounds2/bg_infobus_white.png); +} +div.b_bg_infobus_white_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_infobus_white.png); +} +div.b_bg_infobus_yellow { + background-image: url(/c_images/myhabbo/backgrounds2/bg_infobus_yellow.png); +} +div.b_bg_infobus_yellow_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_infobus_yellow.png); +} +div.b_bg_lido_flat { + background-image: url(/c_images/myhabbo/backgrounds2/lido_flatt_bg.png); +} +div.b_bg_lido_flat_pre { + background-image: url(/c_images/myhabbo/backgrounds2/lido_flatt_bg.png); +} +div.b_bg_lidoo { + background-image: url(/c_images/myhabbo/backgrounds2/lidoo_bg.png); +} +div.b_bg_lidoo_pre { + background-image: url(/c_images/myhabbo/backgrounds2/lidoo_bg.png); +} +div.b_bg_vip { + background-image: url(/c_images/myhabbo/backgrounds2/Vip_Group.png); +} +div.b_bg_vip_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Vip_Group.png); +} +div.b_bg_wobble_squabble { + background-image: url(/c_images/myhabbo/backgrounds2/WS_Group2.png); +} +div.b_bg_wobble_squabble_pre { + background-image: url(/c_images/myhabbo/backgrounds2/WS_Group2.png); +} +div.b_habbogroup { + background-image: url(/c_images/myhabbo/backgrounds2/habbos_group.png); +} +div.b_habbogroup_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbos_group.png); +} +div.b_snowstorm_bg { + background-image: url(/c_images/myhabbo/backgrounds2/snowstorm_bg.png); +} +div.b_snowstorm_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/snowstorm_bg.png); +} +div.b_jordinparks { + background-image: url(/c_images/myhabbo/backgrounds2/jordinparks.jpg); +} +div.b_jordinparks_pre { + background-image: url(/c_images/myhabbo/backgrounds2/jordinparks.jpg); +} +div.b_exe_background { + background-image: url(/c_images/myhabbo/backgrounds2/kingcorp_928x1360.gif); +} +div.b_exe_background_pre { + background-image: url(/c_images/myhabbo/backgrounds2/kingcorp_928x1360.gif); +} +div.b_animax_keroro { + background-image: url(/c_images/myhabbo/backgrounds2/animax_keroro.gif); +} +div.b_animax_keroro_pre { + background-image: url(/c_images/myhabbo/backgrounds2/animax_keroro.gif); +} +div.b_wwe_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wwe_wallpaper.jpg); +} +div.b_wwe_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wwe_wallpaper.jpg); +} +div.b_exe_wood_background { + background-image: url(/c_images/myhabbo/backgrounds2/Exec_bg_viilu.gif); +} +div.b_exe_wood_background_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Exec_bg_viilu.gif); +} +div.b_habboclassifieds { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper2.gif); +} +div.b_habboclassifieds_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper2.gif); +} +div.b_donnas wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/donnasWallpaper.jpg); +} +div.b_donnas wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/donnasWallpaper.jpg); +} +div.b_donnas_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/donnasWallpaper.jpg); +} +div.b_donnas_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/donnasWallpaper.jpg); +} +div.b_habborella_sea_bg { + background-image: url(/c_images/myhabbo/backgrounds2/habborella_sea_bg.gif); +} +div.b_habborella_sea_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habborella_sea_bg.gif); +} +div.b_wwe_nowayout_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/NWO_wallpaper1.jpg); +} +div.b_wwe_nowayout_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/NWO_wallpaper1.jpg); +} +div.b_expert_backround { + background-image: url(/c_images/myhabbo/backgrounds2/habbox.gif); +} +div.b_expert_backround_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbox.gif); +} +div.b_mmoorewallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/MMoorewallpaper.jpg); +} +div.b_mmoorewallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/MMoorewallpaper.jpg); +} +div.b_spiderwick_main { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper4.jpg); +} +div.b_spiderwick_main_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper4.jpg); +} +div.b_spiderwick_beware { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper1.jpg); +} +div.b_spiderwick_beware_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper1.jpg); +} +div.b_spiderwick_fairy { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper2_001.jpg); +} +div.b_spiderwick_fairy_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper2_001.jpg); +} +div.b_spiderwick_goblin { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper3.jpg); +} +div.b_spiderwick_goblin_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper3.jpg); +} +div.b_welcoming_party { + background-image: url(/c_images/myhabbo/backgrounds2/welcoming_party.gif); +} +div.b_welcoming_party_pre { + background-image: url(/c_images/myhabbo/backgrounds2/welcoming_party.gif); +} +div.b_straypixelsbg { + background-image: url(/c_images/myhabbo/backgrounds2/StrayPixelsBG.gif); +} +div.b_straypixelsbg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/StrayPixelsBG.gif); +} +div.b_hw bgus-staff { + background-image: url(/c_images/myhabbo/backgrounds2/US_StaffBG.gif); +} +div.b_hw bgus-staff_pre { + background-image: url(/c_images/myhabbo/backgrounds2/US_StaffBG.gif); +} +div.b_usastaff-wall { + background-image: url(/c_images/myhabbo/backgrounds2/US_staffers.png); +} +div.b_usastaff-wall_pre { + background-image: url(/c_images/myhabbo/backgrounds2/US_staffers.png); +} +div.b_wwe_wrestlemania_main { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG1.jpg); +} +div.b_wwe_wrestlemania_main_pre { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG1.jpg); +} +div.b_wwe_wrestlemania_triple_champ { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG2.jpg); +} +div.b_wwe_wrestlemania_triple_champ_pre { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG2.jpg); +} +div.b_wwe_wrestlemania_world_champ { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG3.jpg); +} +div.b_wwe_wrestlemania_world_champ_pre { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG3.jpg); +} +div.b_wwe_wrestlemania_big_battle { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG4.jpg); +} +div.b_wwe_wrestlemania_big_battle_pre { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG4.jpg); +} +div.b_wwe_wrestlemania_bunnymania { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG6.jpg); +} +div.b_wwe_wrestlemania_bunnymania_pre { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG6.jpg); +} +div.b_wwe_wrestlemania_ladder_match { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG5.jpg); +} +div.b_wwe_wrestlemania_ladder_match_pre { + background-image: url(/c_images/myhabbo/backgrounds2/v2wmania_BG5.jpg); +} +div.b_beachbunny_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_BeachBunny.gif); +} +div.b_beachbunny_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_BeachBunny.gif); +} +div.b_robojam_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_robotJam.jpg); +} +div.b_robojam_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_robotJam.jpg); +} +div.b_bg_solid_white { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_white.gif); +} +div.b_bg_solid_white_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_white.gif); +} +div.b_bg_natashabedingfield { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_natashaBedingfield.jpg); +} +div.b_bg_natashabedingfield_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_natashaBedingfield.jpg); +} +div.b_bg_alhambra { + background-image: url(/c_images/myhabbo/backgrounds2/alhambragroup.png); +} +div.b_bg_alhambra_pre { + background-image: url(/c_images/myhabbo/backgrounds2/alhambragroup.png); +} +div.b_earthday_bk { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_EarthDay.gif); +} +div.b_earthday_bk_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_EarthDay.gif); +} +div.b_yearbook_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_yearBook_en3.gif); +} +div.b_yearbook_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_yearBook_en3.gif); +} +div.b_tokiohotel_scream_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_tokioHotel_Scream.jpg); +} +div.b_tokiohotel_scream_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_tokioHotel_Scream.jpg); +} +div.b_promofthedead_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_PromoftheDead.gif); +} +div.b_promofthedead_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_PromoftheDead.gif); +} +div.b_habbo_toolbar { + background-image: url(/c_images/myhabbo/backgrounds2/toolbar_bg2.png); +} +div.b_habbo_toolbar_pre { + background-image: url(/c_images/myhabbo/backgrounds2/toolbar_bg2.png); +} +div.b_bg_bonsai { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_bonsai.png); +} +div.b_bg_bonsai_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_bonsai.png); +} +div.b_inked_bg { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_inked.gif); +} +div.b_inked_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_inked.gif); +} +div.b_bg_solid_black { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_Black.gif); +} +div.b_bg_solid_black_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_Black.gif); +} +div.b_summer_bg { + background-image: url(/c_images/myhabbo/backgrounds2/summer_bg_optimal.png); +} +div.b_summer_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/summer_bg_optimal.png); +} +div.b_tiki_firehead_bg { + background-image: url(/c_images/myhabbo/backgrounds2/tiki_firehead_bg.png); +} +div.b_tiki_firehead_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/tiki_firehead_bg.png); +} +div.b_wallpaper_rotw { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_rotw.png); +} +div.b_wallpaper_rotw_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_rotw.png); +} +div.b_wallpaper_veronicas { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_veronicas.jpg); +} +div.b_wallpaper_veronicas_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_veronicas.jpg); +} +div.b_hundredmillion_bg { + background-image: url(/c_images/myhabbo/backgrounds2/hundredmillion_bg.png); +} +div.b_hundredmillion_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/hundredmillion_bg.png); +} +div.b_wallpaper_mshepard { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_mshepard.png); +} +div.b_wallpaper_mshepard_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_mshepard.png); +} +div.b_july408_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_4th.png); +} +div.b_july408_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_4th.png); +} +div.b_madball_2008_bg_001 { + background-image: url(/c_images/myhabbo/backgrounds2/madball_2008_bg_001.png); +} +div.b_madball_2008_bg_001_pre { + background-image: url(/c_images/myhabbo/backgrounds2/madball_2008_bg_001.png); +} +div.b_darkknight_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_darkKnight.jpg); +} +div.b_darkknight_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_darkKnight.jpg); +} +div.b_wallpaper_sprousebrothers { + background-image: url(/c_images/myhabbo/backgrounds2/sprouse_wallpaper.jpg); +} +div.b_wallpaper_sprousebrothers_pre { + background-image: url(/c_images/myhabbo/backgrounds2/sprouse_wallpaper.jpg); +} +div.b_wallpaper_dinergeeks { + background-image: url(/c_images/myhabbo/backgrounds2/geeks_wallpaper.gif); +} +div.b_wallpaper_dinergeeks_pre { + background-image: url(/c_images/myhabbo/backgrounds2/geeks_wallpaper.gif); +} +div.b_wallpaper_dinergreasers { + background-image: url(/c_images/myhabbo/backgrounds2/greasers_wallpaper.gif); +} +div.b_wallpaper_dinergreasers_pre { + background-image: url(/c_images/myhabbo/backgrounds2/greasers_wallpaper.gif); +} +div.b_wallpaper_dinerjocks { + background-image: url(/c_images/myhabbo/backgrounds2/jocks_wallpaper.gif); +} +div.b_wallpaper_dinerjocks_pre { + background-image: url(/c_images/myhabbo/backgrounds2/jocks_wallpaper.gif); +} +div.b_wallpaper_dinerskull { + background-image: url(/c_images/myhabbo/backgrounds2/skulls_wallpaper.gif); +} +div.b_wallpaper_dinerskull_pre { + background-image: url(/c_images/myhabbo/backgrounds2/skulls_wallpaper.gif); +} +div.b_wallpaper_dinerduck { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_ducksArgyle.gif); +} +div.b_wallpaper_dinerduck_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_ducksArgyle.gif); +} +div.b_top_gamers_bg_64 { + background-image: url(/c_images/myhabbo/backgrounds2/top_gamers_bg_64.png); +} +div.b_top_gamers_bg_64_pre { + background-image: url(/c_images/myhabbo/backgrounds2/top_gamers_bg_64.png); +} +div.b_guidesgroup_bg { + background-image: url(/c_images/myhabbo/backgrounds2/guidesgroup_bg.png); +} +div.b_guidesgroup_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/guidesgroup_bg.png); +} +div.b_grouppage_snowbattle2 { + background-image: url(/c_images/myhabbo/backgrounds2/grouppage_snowbattle2.png); +} +div.b_grouppage_snowbattle2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/grouppage_snowbattle2.png); +} +div.b_bg_musicgroup { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_musicGroup.png); +} +div.b_bg_musicgroup_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_musicGroup.png); +} +div.b_bg_moviesgroup { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_moviesGroup.png); +} +div.b_bg_moviesgroup_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_moviesGroup.png); +} +div.b_bg_animegroup { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_animeGroup.png); +} +div.b_bg_animegroup_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_animeGroup.png); +} +div.b_bg_videogamesgroup { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_videoGamesGroup.png); +} +div.b_bg_videogamesgroup_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_videoGamesGroup.png); +} +div.b_darkknight_wallpaper2 { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_darkKnight2.jpg); +} +div.b_darkknight_wallpaper2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_darkKnight2.jpg); +} +div.b_habbolympics_bg_final { + background-image: url(/c_images/myhabbo/backgrounds2/habbolympics_bg_final.gif); +} +div.b_habbolympics_bg_final_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbolympics_bg_final.gif); +} +div.b_kerli_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_kerli.jpg); +} +div.b_kerli_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_kerli.jpg); +} +div.b_wallpaper_victoriaday { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_victoriaDay.gif); +} +div.b_wallpaper_victoriaday_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_victoriaDay.gif); +} +div.b_habbo_bmx_foot_jam_tailwhip_bg { + background-image: url(/c_images/myhabbo/backgrounds2/Habbo_BMX_foot_jam_tailwhip_BG.jpg); +} +div.b_habbo_bmx_foot_jam_tailwhip_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Habbo_BMX_foot_jam_tailwhip_BG.jpg); +} +div.b_skateb_ollie_bg2 { + background-image: url(/c_images/myhabbo/backgrounds2/skateb_ollie_BG2.jpg); +} +div.b_skateb_ollie_bg2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/skateb_ollie_BG2.jpg); +} +div.b_wallpaper_tmobile { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_tMobile.jpg); +} +div.b_wallpaper_tmobile_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_tMobile.jpg); +} +div.b_wallpaper_lenka { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_lenka.jpg); +} +div.b_wallpaper_lenka_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_lenka.jpg); +} +div.b_wallpaper_katiestill { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_katieStill2.jpg); +} +div.b_wallpaper_katiestill_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_katieStill2.jpg); +} +div.b_wallpaper_submarines { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_theSubmarines.jpg); +} +div.b_wallpaper_submarines_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_theSubmarines.jpg); +} +div.b_wallpaper_monet { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_monet.jpg); +} +div.b_wallpaper_monet_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_monet.jpg); +} +div.b_wallpaper_lauraduncan { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_lauraDuncan.jpg); +} +div.b_wallpaper_lauraduncan_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_lauraDuncan.jpg); +} +div.b_wallpaper_alkalinetrio { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_AlkalineTrio.jpg); +} +div.b_wallpaper_alkalinetrio_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_AlkalineTrio.jpg); +} +div.b_wallpaper_droney { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_droney3.jpg); +} +div.b_wallpaper_droney_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_droney3.jpg); +} +div.b_backtoschool_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_backToSchool.png); +} +div.b_backtoschool_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_backToSchool.png); +} + +div.w_highscoreswidget_pre { + background-image: url(/c_images/myhabbo/widgets/hiscores_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_profilewidget_pre { + background-image: url(/c_images/myhabbo/widgets/profilewidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_friendswidget_pre { + background-image: url(/c_images/myhabbo/widgets/friends_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_roomswidget_pre { + background-image: url(/c_images/myhabbo/widgets/rooms_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_guestbookwidget_pre { + background-image: url(/c_images/myhabbo/widgets/guestbook_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupinfowidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupinfowidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupswidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupswidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_memberwidget_pre { + background-image: url(/c_images/myhabbo/widgets/member_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_ratingwidget_pre { + background-image: url(/c_images/myhabbo/widgets/rating_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_traxplayerwidget_pre { + background-image: url(/c_images/myhabbo/widgets/trax_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_highscorelistwidget_pre { + background-image: url(/c_images/myhabbo/widgets/highscorelistwidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_userexpswidget_pre { + background-image: url(/c_images/myhabbo/widgets/hiscores_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} + +div.commodity_stickienote_pre { + background-image: url(/c_images/myhabbo/stickies/note_thumbnail_store.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +}div.s_sticker_arrow_down { + width: 32px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/sticker_arrow_down.gif); +} +div.s_xmas_gift-afro { + width: 46px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_afro.gif); +} +div.s_xmas_gift-afro_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_afro.gif) no-repeat 50% 50%; +} +div.s_xmaslights_anim { + width: 150px; height: 35px; + background-image: url(/c_images/myhabbo/stickers/xmaslights_anim.gif); +} +div.s_xmas_box_darkred { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_darkred.gif); +} +div.s_xmas_box_darkred_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_darkred.gif) no-repeat 50% 50%; +} +div.s_val_sticker_bobbadice { + width: 62px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_bobbadice.gif); +} +div.s_val_sticker_bobbadice_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_bobbadice.gif) no-repeat 50% 50%; +} +div.s_val_sticker_love-costume { + width: 89px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/val_lovecostume4.gif); +} +div.s_val_sticker_love-costume_pre { + background: url(/c_images/myhabbo/stickers/val_lovecostume4.gif) no-repeat 50% 50%; +} +div.s_val_sticker_storm-costume { + width: 50px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_storm_costume.gif); +} +div.s_val_sticker_storm-costume_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_storm_costume.gif) no-repeat 50% 50%; +} +div.s_cny_kunfu_dude { + width: 54px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/cny_kungfu_dude.gif); +} +div.s_cny_kunfu_dude_pre { + background: url(/c_images/myhabbo/stickers/cny_kungfu_dude.gif) no-repeat 50% 50%; +} +div.s_cny_kungfu_girl { + width: 57px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/cny_kungfu_girl.gif); +} +div.s_val_sticker_barbwire_horis_p { + width: 146px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_barbwire_horis.gif ); +} +div.s_val_sticker_barbwire_horis_p_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_barbwire_horis.gif ) no-repeat 50% 50%; +} +div.s_val_sticker_barbwire_vert_p { + width: 46px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_barbwire_vert.gif); +} +div.s_val_sticker_barbwire_vert_p_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_barbwire_vert.gif) no-repeat 50% 50%; +} +div.s_val_sticker_rosewire_horis_p { + width: 146px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_rosewire_horis.gif); +} +div.s_val_sticker_rosewire_horis_p_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_rosewire_horis.gif) no-repeat 50% 50%; +} +div.s_val_sticker_rosewire_vert_p { + width: 60px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_rosewire_vert.gif); +} +div.s_val_sticker_rosewire_vert_p_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_rosewire_vert.gif) no-repeat 50% 50%; +} +div.s_blinghearts_p { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/blinghearts.gif); +} +div.s_blinghearts_p_pre { + background: url(/c_images/myhabbo/stickers/blinghearts.gif) no-repeat 50% 50%; +} +div.s_sticker_heartbeat_3 { + width: 70px; height: 74px; + background-image: url(/c_images/myhabbo/stickers/sticker_heartbeat.gif); +} +div.s_sticker_heartbeat_3_pre { + background: url(/c_images/myhabbo/stickers/sticker_heartbeat.gif) no-repeat 50% 50%; +} +div.s_val_lovecostume4 { + width: 89px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/val_lovecostume4.gif); +} +div.s_val_lovecostume4_pre { + background: url(/c_images/myhabbo/stickers/val_lovecostume4.gif) no-repeat 50% 50%; +} +div.s_val_sticker_love-costume3 { + width: 89px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_love_costume.gif); +} +div.s_val_sticker_love-costume3_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_love_costume.gif) no-repeat 50% 50%; +} +div.s_val_sticker_bobbadice.gif { + width: 0px; height: 0px; + background-image: url(/c_images/myhabbo/stickers/); +} +div.s_val_sticker_bobbadice.gif_pre { + background: url(/c_images/myhabbo/stickers/) no-repeat 50% 50%; +} +div.s_val_sticker_rosewire_horis_package { + width: 146px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_rosewire_horis.gif); +} +div.s_val_sticker_rosewire_horis_package_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_rosewire_horis.gif) no-repeat 50% 50%; +} +div.s_val_sticker_barbwire_vert_package { + width: 46px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_barbwire_vert.gif); +} +div.s_val_sticker_barbwire_vert_package_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_barbwire_vert.gif) no-repeat 50% 50%; +} +div.s_deal_goth_border_ver { + width: 100px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/goth_border_vertical.gif); +} +div.s_deal_goth_border_ver_pre { + background: url(/c_images/myhabbo/stickers/goth_border_vertical.gif) no-repeat 50% 50%; +} +div.s_deal_goth_border_hor { + width: 146px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/goth_border_horizontal.gif); +} +div.s_deal_goth_border_hor_pre { + background: url(/c_images/myhabbo/stickers/goth_border_horizontal.gif) no-repeat 50% 50%; +} +div.s_deal_eas07_6 { + width: 143px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/grass.gif); +} +div.s_deal_eas07_6_pre { + background: url(/c_images/myhabbo/stickers/grass.gif) no-repeat 50% 50%; +} +div.s_easter_birdie { + width: 102px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/easter_bird.gif); +} +div.s_easter_birdie_pre { + background: url(/c_images/myhabbo/stickers/easter_bird.gif) no-repeat 50% 50%; +} +div.s_deal_eas07_4 { + width: 102px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/easter_bird.gif); +} +div.s_deal_eas07_4_pre { + background: url(/c_images/myhabbo/stickers/easter_bird.gif) no-repeat 50% 50%; +} +div.s_deal_eas07_7 { + width: 50px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif); +} +div.s_deal_eas07_7_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif) no-repeat 50% 50%; +} +div.s_deal_eas07_8 { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif); +} +div.s_deal_eas07_8_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif) no-repeat 50% 50%; +} +div.s_habboisland_01 { + width: 146px; height: 191px; + background-image: url(/c_images/myhabbo/stickers/HabboIsland_01.gif); +} +div.s_habboisland_01_pre { + background: url(/c_images/myhabbo/stickers/HabboIsland_01.gif) no-repeat 50% 50%; +} +div.s_sticker_award_gold { + width: 85px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/sticker_award_gold.gif); +} +div.s_sticker_award_gold_pre { + background: url(/c_images/myhabbo/stickers/sticker_award_gold.gif) no-repeat 50% 50%; +} +div.s_sticker_award_silver { + width: 85px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/sticker_award_silver.gif); +} +div.s_sticker_award_silver_pre { + background: url(/c_images/myhabbo/stickers/sticker_award_silver.gif) no-repeat 50% 50%; +} +div.s_sticker_award_bronze { + width: 85px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/sticker_award_bronze.gif); +} +div.s_sticker_award_bronze_pre { + background: url(/c_images/myhabbo/stickers/sticker_award_bronze.gif) no-repeat 50% 50%; +} +div.s_sticker_trophy_award { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/sticker_trophy_award.gif); +} +div.s_sticker_trophy_award_pre { + background: url(/c_images/myhabbo/stickers/sticker_trophy_award.gif) no-repeat 50% 50%; +} +div.s_es_duck_sticker { + width: 112px; height: 102px; + background-image: url(/c_images/myhabbo/stickers/es_duck_sticker.gif); +} +div.s_es_duck_sticker_pre { + background: url(/c_images/myhabbo/stickers/es_duck_sticker.gif) no-repeat 50% 50%; +} +div.s_easter_broomstick_002 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_broomstick_002.gif); +} +div.s_easter_broomstick_002_pre { + background: url(/c_images/myhabbo/stickers/easter_broomstick_002.gif) no-repeat 50% 50%; +} +div.s_easter_pointyhat2 { + width: 58px; height: 45px; + background-image: url(/c_images/myhabbo/stickers/easter_pointyhat2.gif); +} +div.s_easter_pointyhat2_pre { + background: url(/c_images/myhabbo/stickers/easter_pointyhat2.gif) no-repeat 50% 50%; +} +div.s_sticker_chauves_souris { + width: 121px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/sticker_chauves_souris.gif); +} +div.s_sticker_chauves_souris_pre { + background: url(/c_images/myhabbo/stickers/sticker_chauves_souris.gif) no-repeat 50% 50%; +} +div.s_referee_03_guest { + width: 47px; height: 104px; + background-image: url(/c_images/myhabbo/stickers/nl_football_guest.gif); +} +div.s_referee_03_guest_pre { + background: url(/c_images/myhabbo/stickers/nl_football_guest.gif) no-repeat 50% 50%; +} +div.s_venezuela { + width: 52px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/Venezuela.gif); +} +div.s_venezuela_pre { + background: url(/c_images/myhabbo/stickers/Venezuela.gif) no-repeat 50% 50%; +} +div.s_referee_01_guest { + width: 44px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/referee_01_guest.gif); +} +div.s_referee_01_guest_pre { + background: url(/c_images/myhabbo/stickers/referee_01_guest.gif) no-repeat 50% 50%; +} +div.s_bra_football_guest2 { + width: 36px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/bra_football_guest2.gif); +} +div.s_bra_football_guest2_pre { + background: url(/c_images/myhabbo/stickers/bra_football_guest2.gif) no-repeat 50% 50%; +} +div.s_mexico { + width: 51px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/Mexico.gif); +} +div.s_mexico_pre { + background: url(/c_images/myhabbo/stickers/Mexico.gif) no-repeat 50% 50%; +} +div.s_chile { + width: 44px; height: 91px; + background-image: url(/c_images/myhabbo/stickers/Chile.gif); +} +div.s_chile_pre { + background: url(/c_images/myhabbo/stickers/Chile.gif) no-repeat 50% 50%; +} +div.s_argentina { + width: 51px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/Argentina.gif); +} +div.s_argentina_pre { + background: url(/c_images/myhabbo/stickers/Argentina.gif) no-repeat 50% 50%; +} +div.s_colombia { + width: 46px; height: 86px; + background-image: url(/c_images/myhabbo/stickers/Colombia.gif); +} +div.s_colombia_pre { + background: url(/c_images/myhabbo/stickers/Colombia.gif) no-repeat 50% 50%; +} +div.s_us_football_guest { + width: 57px; height: 103px; + background-image: url(/c_images/myhabbo/stickers/us_football_guest.gif); +} +div.s_us_football_guest_pre { + background: url(/c_images/myhabbo/stickers/us_football_guest.gif) no-repeat 50% 50%; +} +div.s_mgm_diamond { + width: 56px; height: 42px; + background-image: url(/c_images/myhabbo/stickers/mgm_diamond.gif); +} +div.s_mgm_diamond_pre { + background: url(/c_images/myhabbo/stickers/mgm_diamond.gif) no-repeat 50% 50%; +} +div.s_barbequeset { + width: 143px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/barbequeset.gif); +} +div.s_lapanen_red.gif { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_red.gif); +} +div.s_lapanen_red.gif_pre { + background: url(/c_images/myhabbo/stickers/lapanen_red.gif) no-repeat 50% 50%; +} +div.s_val_lovecostume_3 { + width: 89px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/val_lovecostume3.gif); +} +div.s_val_lovecostume_3_pre { + background: url(/c_images/myhabbo/stickers/val_lovecostume3.gif) no-repeat 50% 50%; +} +div.s_xmas_box_suit_mint.gif { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/TEST); +} +div.s_xmas_box_suit_mint.gif_pre { + background: url(/c_images/myhabbo/stickers/TEST) no-repeat 50% 50%; +} +div.s_sunflower.gif { + width: 35px; height: 103px; + background-image: url(/c_images/myhabbo/stickers/sunflower.gif); +} +div.s_sunflower.gif_pre { + background: url(/c_images/myhabbo/stickers/sunflower.gif) no-repeat 50% 50%; +} +div.s_clothesline 5 { + width: 146px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/clothesline.gif); +} +div.s_clothesline 5_pre { + background: url(/c_images/myhabbo/stickers/clothesline.gif) no-repeat 50% 50%; +} +div.s_summer_blueberry_left 5 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif); +} +div.s_summer_blueberry_left 5_pre { + background: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif) no-repeat 50% 50%; +} +div.s_summer_blueberry_right 5 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summer_blueberry_right.gif); +} +div.s_summer_blueberry_right 5_pre { + background: url(/c_images/myhabbo/stickers/summer_blueberry_right.gif) no-repeat 50% 50%; +} +div.s_summer_cloud1 3 { + width: 146px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/summer_cloud1.gif); +} +div.s_summer_cloud1 3_pre { + background: url(/c_images/myhabbo/stickers/summer_cloud1.gif) no-repeat 50% 50%; +} +div.s_summer_cloud2 3 { + width: 92px; height: 71px; + background-image: url(/c_images/myhabbo/stickers/summer_cloud2.gif); +} +div.s_summer_cloud2 3_pre { + background: url(/c_images/myhabbo/stickers/summer_cloud2.gif) no-repeat 50% 50%; +} +div.s_summer_cloud3 3 { + width: 88px; height: 73px; + background-image: url(/c_images/myhabbo/stickers/summer_cloud3.gif); +} +div.s_summer_cloud3 3_pre { + background: url(/c_images/myhabbo/stickers/summer_cloud3.gif) no-repeat 50% 50%; +} +div.s_summer_blueberry_left5 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif); +} +div.s_summer_blueberry_left5_pre { + background: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif) no-repeat 50% 50%; +} +div.s_summer_blueberry_left.gif { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif); +} +div.s_summer_blueberry_left.gif_pre { + background: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif) no-repeat 50% 50%; +} +div.s_deal_blueberry_left { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif); +} +div.s_deal_blueberry_left_pre { + background: url(/c_images/myhabbo/stickers/summer_blueberry_left.gif) no-repeat 50% 50%; +} +div.s_summer flowerwreath { + width: 48px; height: 31px; + background-image: url(/c_images/myhabbo/stickers/summer_flowerwreath.gif); +} +div.s_summer flowerwreath_pre { + background: url(/c_images/myhabbo/stickers/summer_flowerwreath.gif) no-repeat 50% 50%; +} +div.s_deal girasoles { + width: 35px; height: 103px; + background-image: url(/c_images/myhabbo/stickers/sunflower.gif); +} +div.s_deal girasoles_pre { + background: url(/c_images/myhabbo/stickers/sunflower.gif) no-repeat 50% 50%; +} +div.s_au_lifesaver { + width: 89px; height: 121px; + background-image: url(/c_images/myhabbo/stickers/au_lifesaver.gif); +} +div.s_au_lifesaver_pre { + background: url(/c_images/myhabbo/stickers/au_lifesaver.gif) no-repeat 50% 50%; +} +div.s_summer_flowerwreath { + width: 48px; height: 31px; + background-image: url(/c_images/myhabbo/stickers/summer_flowerwreath.gif); +} +div.s_summer_flowerwreath_pre { + background: url(/c_images/myhabbo/stickers/summer_flowerwreath.gif) no-repeat 50% 50%; +} +div.s_satay { + width: 138px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/Satay.gif); +} +div.s_satay_pre { + background: url(/c_images/myhabbo/stickers/Satay.gif) no-repeat 50% 50%; +} +div.s_nigirisushi { + width: 112px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/NigiriSushi.gif); +} +div.s_nigirisushi_pre { + background: url(/c_images/myhabbo/stickers/NigiriSushi.gif) no-repeat 50% 50%; +} +div.s_dimsims { + width: 121px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/DimSims.gif); +} +div.s_dimsims_pre { + background: url(/c_images/myhabbo/stickers/DimSims.gif) no-repeat 50% 50%; +} +div.s_es_4_years { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/es_4_years.gif); +} +div.s_es_4_years_pre { + background: url(/c_images/myhabbo/stickers/es_4_years.gif) no-repeat 50% 50%; +} +div.s_lovebed { + width: 126px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/lovebed.gif); +} +div.s_lovebed_pre { + background: url(/c_images/myhabbo/stickers/lovebed.gif) no-repeat 50% 50%; +} +div.s_sticker_squelette { + width: 32px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/sticker_squelette.gif); +} +div.s_sticker_squelette_pre { + background: url(/c_images/myhabbo/stickers/sticker_squelette.gif) no-repeat 50% 50%; +} +div.s_cn_teleskull { + width: 90px; height: 137px; + background-image: url(/c_images/myhabbo/stickers/cn_teleskull.gif); +} +div.s_cn_teleskull_pre { + background: url(/c_images/myhabbo/stickers/cn_teleskull.gif) no-repeat 50% 50%; +} +div.s_flameskull { + width: 37px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/flameSkull.gif); +} +div.s_flameskull_pre { + background: url(/c_images/myhabbo/stickers/flameSkull.gif) no-repeat 50% 50%; +} +div.s_sticker_chauves_souri { + width: 121px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/sticker_chauves_souri.gif); +} +div.s_sticker_chauves_souri_pre { + background: url(/c_images/myhabbo/stickers/sticker_chauves_souri.gif) no-repeat 50% 50%; +} +div.s_hw_bassplayer_girl { + width: 70px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/hw_bassplayer_girl.gif); +} +div.s_hw_bassplayer_girl_pre { + background: url(/c_images/myhabbo/stickers/hw_bassplayer_girl.gif) no-repeat 50% 50%; +} +div.s_hw_camopants_r { + width: 24px; height: 26px; + background-image: url(/c_images/myhabbo/stickers/hw_camopants_r.gif); +} +div.s_hw_camopants_r_pre { + background: url(/c_images/myhabbo/stickers/hw_camopants_r.gif) no-repeat 50% 50%; +} +div.s_hw_keyboards { + width: 68px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/hw_keyboards.gif); +} +div.s_hw_keyboards_pre { + background: url(/c_images/myhabbo/stickers/hw_keyboards.gif) no-repeat 50% 50%; +} +div.s_sticker_cape { + width: 53px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/sticker_cape.gif); +} +div.s_sticker_cape_pre { + background: url(/c_images/myhabbo/stickers/sticker_cape.gif) no-repeat 50% 50%; +} +div.s_sticker_hulkhogan { + width: 36px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/sticker_hulkhogan.gif); +} +div.s_sticker_hulkhogan_pre { + background: url(/c_images/myhabbo/stickers/sticker_hulkhogan.gif) no-repeat 50% 50%; +} +div.s_sticker_maquillage { + width: 17px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/sticker_maquillage.gif); +} +div.s_sticker_maquillage_pre { + background: url(/c_images/myhabbo/stickers/sticker_maquillage.gif) no-repeat 50% 50%; +} +div.s_sticker_masque_01 { + width: 27px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/sticker_masque_01.gif); +} +div.s_sticker_masque_01_pre { + background: url(/c_images/myhabbo/stickers/sticker_masque_01.gif) no-repeat 50% 50%; +} +div.s_sticker_masque_or { + width: 27px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/sticker_masque_or.gif); +} +div.s_sticker_masque_or_pre { + background: url(/c_images/myhabbo/stickers/sticker_masque_or.gif) no-repeat 50% 50%; +} +div.s_sticker_masque_02 { + width: 27px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/sticker_masque_02.gif); +} +div.s_sticker_masque_02_pre { + background: url(/c_images/myhabbo/stickers/sticker_masque_02.gif) no-repeat 50% 50%; +} +div.s_sticker_masque_05 { + width: 27px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/sticker_masque_05.gif); +} +div.s_sticker_masque_05_pre { + background: url(/c_images/myhabbo/stickers/sticker_masque_05.gif) no-repeat 50% 50%; +} +div.s_sticker_masque_04 { + width: 27px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/sticker_masque_04.gif); +} +div.s_sticker_masque_04_pre { + background: url(/c_images/myhabbo/stickers/sticker_masque_04.gif) no-repeat 50% 50%; +} +div.s_sticker_masque_03 { + width: 27px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/sticker_masque_03.gif); +} +div.s_sticker_masque_03_pre { + background: url(/c_images/myhabbo/stickers/sticker_masque_03.gif) no-repeat 50% 50%; +} +div.s_greenpeacewhite { + width: 137px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/greenpeacewhite.png); +} +div.s_greenpeacewhite_pre { + background: url(/c_images/myhabbo/stickers/greenpeacewhite.png) no-repeat 50% 50%; +} +div.s_teensbear_pre { + background: url(/c_images/myhabbo/stickers/teensbear.gif) no-repeat 50% 50%; +} +div.s_globalw_sticker_001_pre { + background: url(/c_images/myhabbo/stickers/GlobalW_sticker_001.gif) no-repeat 50% 50%; +} +div.s_newyear_sparkler { + width: 37px; height: 36px; + background-image: url(/c_images/myhabbo/stickers/newyear_sparkler.gif); +} +div.s_newyear_sparkler_pre { + background: url(/c_images/myhabbo/stickers/newyear_sparkler.gif) no-repeat 50% 50%; +} +div.s_baltasar { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/baltasar.gif); +} +div.s_baltasar_pre { + background: url(/c_images/myhabbo/stickers/baltasar.gif) no-repeat 50% 50%; +} +div.s_gaspar { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/Gaspar.gif); +} +div.s_gaspar_pre { + background: url(/c_images/myhabbo/stickers/Gaspar.gif) no-repeat 50% 50%; +} +div.s_melchor { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/Melchor.gif); +} +div.s_melchor_pre { + background: url(/c_images/myhabbo/stickers/Melchor.gif) no-repeat 50% 50%; +} +div.s_camel { + width: 138px; height: 140px; + background-image: url(/c_images/myhabbo/stickers/camel.gif); +} +div.s_camel_pre { + background: url(/c_images/myhabbo/stickers/camel.gif) no-repeat 50% 50%; +} +div.s_bartender_costume { + width: 30px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/bartender_costume.gif); +} +div.s_bartender_costume_pre { + background: url(/c_images/myhabbo/stickers/bartender_costume.gif) no-repeat 50% 50%; +} +div.s_crew_male_costume { + width: 31px; height: 42px; + background-image: url(/c_images/myhabbo/stickers/crew_male_costume.gif); +} +div.s_crew_male_costume_pre { + background: url(/c_images/myhabbo/stickers/crew_male_costume.gif) no-repeat 50% 50%; +} +div.s_femalecaptain_costume { + width: 33px; height: 75px; + background-image: url(/c_images/myhabbo/stickers/femalecaptain_costume.gif); +} +div.s_femalecaptain_costume_pre { + background: url(/c_images/myhabbo/stickers/femalecaptain_costume.gif) no-repeat 50% 50%; +} +div.s_malecaptain_costume { + width: 32px; height: 75px; + background-image: url(/c_images/myhabbo/stickers/malecaptain_costume.gif); +} +div.s_malecaptain_costume_pre { + background: url(/c_images/myhabbo/stickers/malecaptain_costume.gif) no-repeat 50% 50%; +} +div.s_stewardess_costume { + width: 30px; height: 41px; + background-image: url(/c_images/myhabbo/stickers/stewardess_costume.gif); +} +div.s_stewardess_costume_pre { + background: url(/c_images/myhabbo/stickers/stewardess_costume.gif) no-repeat 50% 50%; +} +div.s_geniefirehead { + width: 42px; height: 55px; + background-image: url(/c_images/myhabbo/stickers/sticker_geniefirehead.gif); +} +div.s_geniefirehead_pre { + background: url(/c_images/myhabbo/stickers/sticker_geniefirehead.gif) no-repeat 50% 50%; +} +div.s_alhambralogo { + width: 260px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/sticker_alhambralogo.gif); +} +div.s_alhambralogo_pre { + background: url(/c_images/myhabbo/stickers/sticker_alhambralogo.gif) no-repeat 50% 50%; +} +div.s_diadeinternetsticker2008_001 { + width: 122px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/Diadeinternetsticker2008_001.gif); +} +div.s_diadeinternetsticker2008_001_pre { + background: url(/c_images/myhabbo/stickers/Diadeinternetsticker2008_001.gif) no-repeat 50% 50%; +} +div.s_bg_groupinfo { + width: 273px; height: 217px; + background-image: url(/c_images/myhabbo/stickers/bg_groupinfo.gif); +} +div.s_bg_groupinfo_pre { + background: url(/c_images/myhabbo/stickers/bg_groupinfo.gif) no-repeat 50% 50%; +} +div.s_bg_stickie { + width: 273px; height: 289px; + background-image: url(/c_images/myhabbo/stickers/bg_stickie.gif); +} +div.s_bg_stickie_pre { + background: url(/c_images/myhabbo/stickers/bg_stickie.gif) no-repeat 50% 50%; +} +div.s_menu_draft { + width: 386px; height: 514px; + background-image: url(/c_images/myhabbo/stickers/menu_draft.gif); +} +div.s_menu_draft_pre { + background: url(/c_images/myhabbo/stickers/menu_draft.gif) no-repeat 50% 50%; +} +div.s_kitsune_wonders { + width: 32px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/kitsune_wonders.png); +} +div.s_kitsune_wonders_pre { + background: url(/c_images/myhabbo/stickers/kitsune_wonders.png) no-repeat 50% 50%; +} +div.s_kitsune_yelling { + width: 37px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/kitsune_yelling.png); +} +div.s_kitsune_yelling_pre { + background: url(/c_images/myhabbo/stickers/kitsune_yelling.png) no-repeat 50% 50%; +} +div.s_kitune_fighting { + width: 43px; height: 88px; + background-image: url(/c_images/myhabbo/stickers/kitune_fighting.png); +} +div.s_kitune_fighting_pre { + background: url(/c_images/myhabbo/stickers/kitune_fighting.png) no-repeat 50% 50%; +} +div.s_sticker_ninjagirlpoof { + width: 100px; height: 142px; + background-image: url(/c_images/myhabbo/stickers/sticker_ninjaGirlPoof.gif); +} +div.s_sticker_ninjagirlpoof_pre { + background: url(/c_images/myhabbo/stickers/sticker_ninjaGirlPoof.gif) no-repeat 50% 50%; +} +div.s_sticker_ninjaguypoof { + width: 100px; height: 142px; + background-image: url(/c_images/myhabbo/stickers/sticker_ninjaGuyPoof.gif); +} +div.s_sticker_ninjaguypoof_pre { + background: url(/c_images/myhabbo/stickers/sticker_ninjaGuyPoof.gif) no-repeat 50% 50%; +} +div.s_sticker_ninjaguy { + width: 30px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/sticker_ninjaGuy.gif); +} +div.s_sticker_ninjaguy_pre { + background: url(/c_images/myhabbo/stickers/sticker_ninjaGuy.gif) no-repeat 50% 50%; +} +div.s_sticker_ninjagirl2 { + width: 48px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/sticker_ninjaGirl2.gif); +} +div.s_sticker_ninjagirl2_pre { + background: url(/c_images/myhabbo/stickers/sticker_ninjaGirl2.gif) no-repeat 50% 50%; +} +div.s_sticker_samuriagirl { + width: 52px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/sticker_samuriaGirl.gif); +} +div.s_sticker_samuriagirl_pre { + background: url(/c_images/myhabbo/stickers/sticker_samuriaGirl.gif) no-repeat 50% 50%; +} +div.s_sticker_samuriagirlswing { + width: 86px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/sticker_samuriaGirlSwing.gif); +} +div.s_sticker_samuriagirlswing_pre { + background: url(/c_images/myhabbo/stickers/sticker_samuriaGirlSwing.gif) no-repeat 50% 50%; +} +div.s_sticker_samuriaguy { + width: 55px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_samuriaGuy.gif); +} +div.s_sticker_samuriaguy_pre { + background: url(/c_images/myhabbo/stickers/sticker_samuriaGuy.gif) no-repeat 50% 50%; +} +div.s_sticker_samuriaguyswing { + width: 87px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/sticker_samuriaGuySwing.gif); +} +div.s_sticker_samuriaguyswing_pre { + background: url(/c_images/myhabbo/stickers/sticker_samuriaGuySwing.gif) no-repeat 50% 50%; +} +div.s_pins_rockinrio { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/pins_rockinrio.png); +} +div.s_pins_rockinrio_pre { + background: url(/c_images/myhabbo/stickers/pins_rockinrio.png) no-repeat 50% 50%; +} +div.s_sticker_chica_tampax1 { + width: 150px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/sticker_chica_tampax1.gif); +} +div.s_sticker_chica_tampax1_pre { + background: url(/c_images/myhabbo/stickers/sticker_chica_tampax1.gif) no-repeat 50% 50%; +} +div.s_sticker_chica_tampax2 { + width: 150px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/sticker_chica_tampax2.gif); +} +div.s_sticker_chica_tampax2_pre { + background: url(/c_images/myhabbo/stickers/sticker_chica_tampax2.gif) no-repeat 50% 50%; +} +div.s_spray2 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/SPRAY2.png); +} +div.s_spray2_pre { + background: url(/c_images/myhabbo/stickers/SPRAY2.png) no-repeat 50% 50%; +} +div.s_flower1png { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/FLOWER1png.png); +} +div.s_flower1png_pre { + background: url(/c_images/myhabbo/stickers/FLOWER1png.png) no-repeat 50% 50%; +} +div.s_Xmas_Snowcone_costume { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/Xmas_Snowcone_costume.gif); +} +div.s_Xmas_Snowcone_costume_pre { + background: url(/c_images/myhabbo/stickers/Xmas_Snowcone_costume.gif) no-repeat 50% 50%; +} +div.s_spray1 { + width: 150px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/SPRAY1.gif); +} +div.s_spray1_pre { + background: url(/c_images/myhabbo/stickers/SPRAY1.gif) no-repeat 50% 50%; +} +div.s_fiesta_minifalda_1 { + width: 132px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/fiesta_minifalda_1.gif); +} +div.s_fiesta_minifalda_1_pre { + background: url(/c_images/myhabbo/stickers/fiesta_minifalda_1.gif) no-repeat 50% 50%; +} +div.s_fiesta_minifalda_2 { + width: 132px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/fiesta_minifalda_2.gif); +} +div.s_fiesta_minifalda_2_pre { + background: url(/c_images/myhabbo/stickers/fiesta_minifalda_2.gif) no-repeat 50% 50%; +} +div.s_fiesta_welcome { + width: 138px; height: 142px; + background-image: url(/c_images/myhabbo/stickers/fiesta_welcome.gif); +} +div.s_fiesta_welcome_pre { + background: url(/c_images/myhabbo/stickers/fiesta_welcome.gif) no-repeat 50% 50%; +} +div.s_fiesta_chica_tampax { + width: 128px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/fiesta_chica_tampax.gif); +} +div.s_fiesta_chica_tampax_pre { + background: url(/c_images/myhabbo/stickers/fiesta_chica_tampax.gif) no-repeat 50% 50%; +} +div.s_sticker_chica_tampax { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/sticker_chica_tampax.gif); +} +div.s_sticker_chica_tampax_pre { + background: url(/c_images/myhabbo/stickers/sticker_chica_tampax.gif) no-repeat 50% 50%; +} +div.s_summer_moarider_female { + width: 136px; height: 226px; + background-image: url(/c_images/myhabbo/stickers/summer_moarider_female.gif); +} +div.s_summer_moarider_female_pre { + background: url(/c_images/myhabbo/stickers/summer_moarider_female.gif) no-repeat 50% 50%; +} +div.s_summer_moarider_male { + width: 136px; height: 226px; + background-image: url(/c_images/myhabbo/stickers/summer_moarider_male.gif); +} +div.s_summer_moarider_male_pre { + background: url(/c_images/myhabbo/stickers/summer_moarider_male.gif) no-repeat 50% 50%; +} +div.s_sticker_sboard1 { + width: 37px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/sticker_sBoard1.gif); +} +div.s_sticker_sboard1_pre { + background: url(/c_images/myhabbo/stickers/sticker_sBoard1.gif) no-repeat 50% 50%; +} +div.s_sticker_sboard2 { + width: 39px; height: 142px; + background-image: url(/c_images/myhabbo/stickers/sticker_sBoard2.gif); +} +div.s_sticker_sboard2_pre { + background: url(/c_images/myhabbo/stickers/sticker_sBoard2.gif) no-repeat 50% 50%; +} +div.s_sticker_sboard3 { + width: 39px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/sticker_sBoard3.gif); +} +div.s_sticker_sboard3_pre { + background: url(/c_images/myhabbo/stickers/sticker_sBoard3.gif) no-repeat 50% 50%; +} +div.s_sticker_woodboard { + width: 39px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/sticker_woodBoard.gif); +} +div.s_sticker_woodboard_pre { + background: url(/c_images/myhabbo/stickers/sticker_woodBoard.gif) no-repeat 50% 50%; +} +div.s_tampax_signboard { + width: 146px; height: 137px; + background-image: url(/c_images/myhabbo/stickers/tampax_signboard.gif); +} +div.s_tampax_signboard_pre { + background: url(/c_images/myhabbo/stickers/tampax_signboard.gif) no-repeat 50% 50%; +} +div.s_habbo_x_home_sticker { + width: 78px; height: 76px; + background-image: url(/c_images/myhabbo/stickers/habbo_x_home_sticker.gif); +} +div.s_habbo_x_home_sticker_pre { + background: url(/c_images/myhabbo/stickers/habbo_x_home_sticker.gif) no-repeat 50% 50%; +} +div.s_habbolympics_teamsticker { + width: 148px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/habbolympics_teamsticker.gif); +} +div.s_habbolympics_teamsticker_pre { + background: url(/c_images/myhabbo/stickers/habbolympics_teamsticker.gif) no-repeat 50% 50%; +} +div.s_diner_belair { + width: 260px; height: 166px; + background-image: url(/c_images/myhabbo/stickers/diner_belair.gif); +} +div.s_diner_belair_pre { + background: url(/c_images/myhabbo/stickers/diner_belair.gif) no-repeat 50% 50%; +} +div.s_diner_bronzetrophy { + width: 65px; height: 132px; + background-image: url(/c_images/myhabbo/stickers/diner_bronzetrophy.png); +} +div.s_diner_bronzetrophy_pre { + background: url(/c_images/myhabbo/stickers/diner_bronzetrophy.png) no-repeat 50% 50%; +} +div.s_diner_gaspump { + width: 81px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/diner_gaspump.gif); +} +div.s_diner_gaspump_pre { + background: url(/c_images/myhabbo/stickers/diner_gaspump.gif) no-repeat 50% 50%; +} +div.s_diner_gaspumpblue { + width: 91px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/diner_gaspumpblue.gif); +} +div.s_diner_gaspumpblue_pre { + background: url(/c_images/myhabbo/stickers/diner_gaspumpblue.gif) no-repeat 50% 50%; +} +div.s_diner_gaspumpgreen { + width: 91px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/diner_gaspumpgreen.gif); +} +div.s_diner_gaspumpgreen_pre { + background: url(/c_images/myhabbo/stickers/diner_gaspumpgreen.gif) no-repeat 50% 50%; +} +div.s_diner_goldtrophy { + width: 65px; height: 132px; + background-image: url(/c_images/myhabbo/stickers/diner_goldtrophy.png); +} +div.s_diner_goldtrophy_pre { + background: url(/c_images/myhabbo/stickers/diner_goldtrophy.png) no-repeat 50% 50%; +} +div.s_diner_hotrod { + width: 235px; height: 152px; + background-image: url(/c_images/myhabbo/stickers/diner_hotrod.png); +} +div.s_diner_hotrod_pre { + background: url(/c_images/myhabbo/stickers/diner_hotrod.png) no-repeat 50% 50%; +} +div.s_diner_plymouth { + width: 253px; height: 160px; + background-image: url(/c_images/myhabbo/stickers/diner_plymouth.png); +} +div.s_diner_plymouth_pre { + background: url(/c_images/myhabbo/stickers/diner_plymouth.png) no-repeat 50% 50%; +} +div.s_diner_silvertrophy { + width: 65px; height: 132px; + background-image: url(/c_images/myhabbo/stickers/diner_silvertrophy.png); +} +div.s_diner_silvertrophy_pre { + background: url(/c_images/myhabbo/stickers/diner_silvertrophy.png) no-repeat 50% 50%; +} +div.s_sticker_checkerhoriz { + width: 180px; height: 30px; + background-image: url(/c_images/myhabbo/stickers/sticker_checkerHoriz.png); +} +div.s_sticker_checkerhoriz_pre { + background: url(/c_images/myhabbo/stickers/sticker_checkerHoriz.png) no-repeat 50% 50%; +} +div.s_sticker_checkervert { + width: 30px; height: 180px; + background-image: url(/c_images/myhabbo/stickers/sticker_checkerVert.png); +} +div.s_sticker_checkervert_pre { + background: url(/c_images/myhabbo/stickers/sticker_checkerVert.png) no-repeat 50% 50%; +} +div.b_xmas 2006 backgrounds { + background-image: url(/c_images/myhabbo/backgrounds2/Xmas 2006 backgrounds.gif); +} +div.b_xmas 2006 backgrounds_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Xmas 2006 backgrounds.gif); +} +div.b_back_happyhnet { + background-image: url(/c_images/myhabbo/backgrounds2/back_happyhnet.png); +} +div.b_back_happyhnet_pre { + background-image: url(/c_images/myhabbo/backgrounds2/back_happyhnet.png); +} +div.b_bg_Fondo_FoQB { + background-image: url(/c_images/myhabbo/backgrounds2/bg_Fondo_FoQB.png); +} +div.b_bg_Fondo_FoQB_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_Fondo_FoQB.png); +} +div.b_Cheetos_ES_bg_v1 { + background-image: url(/c_images/myhabbo/backgrounds2/Cheetos_ES_bg_v1.jpg); +} +div.b_Cheetos_ES_bg_v1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Cheetos_ES_bg_v1.jpg); +} +div.b_habboween_bg { + background-image: url(/c_images/myhabbo/backgrounds2/habboween_bg.gif); +} +div.b_habboween_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habboween_bg.gif); +} +div.b_fondo_habbo_02 { + background-image: url(/c_images/myhabbo/backgrounds2/fondo_habbo_02.gif); +} +div.b_fondo_habbo_02_pre { + background-image: url(/c_images/myhabbo/backgrounds2/fondo_habbo_02.gif); +} +div.b_groupbg_scifi_space2 { + background-image: url(/c_images/myhabbo/backgrounds2/groupbg_scifi_space2.gif); +} +div.b_groupbg_scifi_space2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/groupbg_scifi_space2.gif); +} +div.b_hotel { + background-image: url(/c_images/myhabbo/backgrounds2/hotel.png); +} +div.b_hotel_pre { + background-image: url(/c_images/myhabbo/backgrounds2/hotel.png); +} +div.b_tiki_firehead { + background-image: url(/c_images/myhabbo/backgrounds2/tiki_firehead.png); +} +div.b_tiki_firehead_pre { + background-image: url(/c_images/myhabbo/backgrounds2/tiki_firehead.png); +} +div.b_wallpaper_4th { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_4th.png); +} +div.b_wallpaper_4th_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_4th.png); +} +div.b_wallpaper_inked { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_inked.gif); +} +div.b_wallpaper_inked_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_inked.gif); +} +div.b_WS_Group2 { + background-image: url(/c_images/myhabbo/backgrounds2/WS_Group2.png); +} +div.b_WS_Group2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/WS_Group2.png); +} +div.b_xmas2009_bg_snowing { + background-image: url(/c_images/myhabbo/backgrounds2/xmas2009_bg_snowing.gif); +} +div.b_xmas2009_bg_snowing_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas2009_bg_snowing.gif); +} +div.b_xmas_bgpattern_starsky { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_bgpattern_starsky.gif); +} +div.b_xmas_bgpattern_starsky_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_bgpattern_starsky.gif); +} +div.b_bg_newyear_bg_fireworks { + background-image: url(/c_images/myhabbo/backgrounds2/NewYear_bg_fireworks.gif); +} +div.b_bg_newyear_bg_fireworks_pre { + background-image: url(/c_images/myhabbo/backgrounds2/NewYear_bg_fireworks.gif); +} +div.b_cny_kunfu_girl { + background-image: url(/c_images/myhabbo/backgrounds2/CNY_KUNFU_GIRL.GIF); +} +div.b_cny_kunfu_girl_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CNY_KUNFU_GIRL.GIF); +} +div.b_sticker_heartbeat_2 { + background-image: url(/c_images/myhabbo/backgrounds2/sticker_heartbeat.gif); +} +div.b_sticker_heartbeat_2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/sticker_heartbeat.gif); +} +div.b_val_lovecostume3 { + background-image: url(/c_images/myhabbo/backgrounds2/val_lovecostume3.gif); +} +div.b_val_lovecostume3_pre { + background-image: url(/c_images/myhabbo/backgrounds2/val_lovecostume3.gif); +} +div.b_val_love-costume4 { + background-image: url(/c_images/myhabbo/backgrounds2/val_sticker_love_costume.gif); +} +div.b_val_love-costume4_pre { + background-image: url(/c_images/myhabbo/backgrounds2/val_sticker_love_costume.gif); +} +div.b_xmas_box_darkred2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/TEST5); +} +div.b_xmas_box_darkred3 { + background-image: url(/c_images/myhabbo/backgrounds2/TEST6); +} +div.b_xmas_box_darkred3_pre { + background-image: url(/c_images/myhabbo/backgrounds2/TEST6); +} +div.b_bg_bobbaheart { + background-image: url(/c_images/myhabbo/backgrounds2/bg_bobbaheart.gif); +} +div.b_bg_bobbaheart_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_bobbaheart.gif); +} +div.b_habboween_bg { + background-image: url(/c_images/myhabbo/backgrounds2/habboween_bg.gif); +} +div.b_habboween_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habboween_bg.gif); +} +div.b_bg_habbolido { + background-image: url(/c_images/myhabbo/backgrounds2/bg_habbolido.png); +} +div.b_bg_habbolido_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_habbolido.png); +} +div.b_voiceofteens_pre { + background-image: url(/c_images/myhabbo/backgrounds2/voiceofteens.gif); +} +div.b_amango_bg { + background-image: url(/c_images/myhabbo/backgrounds2/amango_bg.jpg); +} +div.b_amango_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/amango_bg.jpg); +} +div.b_tokiohotel2 { + background-image: url(/c_images/myhabbo/backgrounds2/tokiohotel2.gif); +} +div.b_tokiohotel2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/tokiohotel2.gif); +} +div.b_jopelines { + background-image: url(/c_images/myhabbo/backgrounds2/jopelines2.jpg); +} +div.b_jopelines_pre { + background-image: url(/c_images/myhabbo/backgrounds2/jopelines2.jpg); +} +div.b_eb_928x1360 { + background-image: url(/c_images/myhabbo/backgrounds2/EB_928x1360.jpg); +} +div.b_eb_928x1360_pre { + background-image: url(/c_images/myhabbo/backgrounds2/EB_928x1360.jpg); +} +div.b_exec_bg_viilu { + background-image: url(/c_images/myhabbo/backgrounds2/Exec_bg_viilu.gif); +} +div.b_exec_bg_viilu_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Exec_bg_viilu.gif); +} +div.b_shabboline { + background-image: url(/c_images/myhabbo/backgrounds2/shabboline.png); +} +div.b_shabboline_pre { + background-image: url(/c_images/myhabbo/backgrounds2/shabboline.png); +} +div.b_habbofest2008_bg { + background-image: url(/c_images/myhabbo/backgrounds2/Habbofest2008_bg.gif); +} +div.b_habbofest2008_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Habbofest2008_bg.gif); +} +div.b_fondo_habbo_cibervoluntarios { + background-image: url(/c_images/myhabbo/backgrounds2/fondo_habbo_CIBERVOLUNTARIOS.jpg); +} +div.b_fondo_habbo_cibervoluntarios_pre { + background-image: url(/c_images/myhabbo/backgrounds2/fondo_habbo_CIBERVOLUNTARIOS.jpg); +} +div.b_es_wallpaper_italia { + background-image: url(/c_images/myhabbo/backgrounds2/ES_Wallpaper_italia.jpg); +} +div.b_es_wallpaper_italia_pre { + background-image: url(/c_images/myhabbo/backgrounds2/ES_Wallpaper_italia.jpg); +} +div.b_es_wallpaper_obrero { + background-image: url(/c_images/myhabbo/backgrounds2/ES_Wallpaper_obrero.jpg); +} +div.b_es_wallpaper_obrero_pre { + background-image: url(/c_images/myhabbo/backgrounds2/ES_Wallpaper_obrero.jpg); +} +div.b_es_wallpaper_sralim { + background-image: url(/c_images/myhabbo/backgrounds2/ES_Wallpaper_sralim.jpg); +} +div.b_es_wallpaper_sralim_pre { + background-image: url(/c_images/myhabbo/backgrounds2/ES_Wallpaper_sralim.jpg); +} +div.b_mms { + background-image: url(/c_images/myhabbo/backgrounds2/mms.jpg); +} +div.b_mms_pre { + background-image: url(/c_images/myhabbo/backgrounds2/mms.jpg); +} +div.b_es_calendarbg { + background-image: url(/c_images/myhabbo/backgrounds2/es_calendarbg.png); +} +div.b_es_calendarbg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/es_calendarbg.png); +} +div.b_diadeinternet2008 { + background-image: url(/c_images/myhabbo/backgrounds2/diadeinternet2008.png); +} +div.b_diadeinternet2008_pre { + background-image: url(/c_images/myhabbo/backgrounds2/diadeinternet2008.png); +} +div.b_alhambragroup { + background-image: url(/c_images/myhabbo/backgrounds2/alhambragroup.png); +} +div.b_alhambragroup_pre { + background-image: url(/c_images/myhabbo/backgrounds2/alhambragroup.png); +} +div.b_928x1360_productboard { + background-image: url(/c_images/myhabbo/backgrounds2/928x1360_productboard.jpg); +} +div.b_928x1360_productboard_pre { + background-image: url(/c_images/myhabbo/backgrounds2/928x1360_productboard.jpg); +} +div.b_kingcorp_928x1360 { + background-image: url(/c_images/myhabbo/backgrounds2/kingcorp_928x1360.gif); +} +div.b_kingcorp_928x1360_pre { + background-image: url(/c_images/myhabbo/backgrounds2/kingcorp_928x1360.gif); +} +div.b_jp_prom_bg { + background-image: url(/c_images/myhabbo/backgrounds2/jp_prom_bg.png); +} +div.b_jp_prom_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/jp_prom_bg.png); +} +div.b_madball_2008_bg_001 { + background-image: url(/c_images/myhabbo/backgrounds2/madball_2008_bg_001.png); +} +div.b_madball_2008_bg_001_pre { + background-image: url(/c_images/myhabbo/backgrounds2/madball_2008_bg_001.png); +} +div.b_toolbar_bg2 { + background-image: url(/c_images/myhabbo/backgrounds2/toolbar_bg2.png); +} +div.b_toolbar_bg2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/toolbar_bg2.png); +} +div.b_hmf_928x1360_principale_b { + background-image: url(/c_images/myhabbo/backgrounds2/HMF_928x1360_principale_B.gif); +} +div.b_hmf_928x1360_principale_b_pre { + background-image: url(/c_images/myhabbo/backgrounds2/HMF_928x1360_principale_B.gif); +} +div.b_hmf_928x1360_dediee { + background-image: url(/c_images/myhabbo/backgrounds2/HMF_928x1360_dediee.gif); +} +div.b_hmf_928x1360_dediee_pre { + background-image: url(/c_images/myhabbo/backgrounds2/HMF_928x1360_dediee.gif); +} +div.b_bg games top gamers { + background-image: url(/c_images/myhabbo/backgrounds2/top_gamers_bg_64.png); +} +div.b_bg games top gamers_pre { + background-image: url(/c_images/myhabbo/backgrounds2/top_gamers_bg_64.png); +} +div.b_bg_guidegroup { + background-image: url(/c_images/myhabbo/backgrounds2/guidesgroup_bg.png); +} +div.b_bg_guidegroup_pre { + background-image: url(/c_images/myhabbo/backgrounds2/guidesgroup_bg.png); +} +div.b_snowbattle_bg { + background-image: url(/c_images/myhabbo/backgrounds2/grouppage_snowbattle2.png); +} +div.b_snowbattle_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/grouppage_snowbattle2.png); +} +div.b_top_gamers_bg { + background-image: url(/c_images/myhabbo/backgrounds2/top_gamers_bg_64.png); +} +div.b_top_gamers_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/top_gamers_bg_64.png); +} +div.b_bmx_tailwhip { + background-image: url(/c_images/myhabbo/backgrounds2/Habbo_BMX_foot_jam_tailwhip_BG.jpg); +} +div.b_bmx_tailwhip_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Habbo_BMX_foot_jam_tailwhip_BG.jpg); +} +div.b_skateb_ollie_bg { + background-image: url(/c_images/myhabbo/backgrounds2/skateb_ollie_BG2.jpg); +} +div.b_skateb_ollie_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/skateb_ollie_BG2.jpg); +} +div.b_diner_draft { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_dinerUS.png); +} +div.b_diner_draft_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_dinerUS.png); +} +div.b_diner_global { + background-image: url(/c_images/myhabbo/backgrounds2/diner_global.png); +} +div.b_diner_global_pre { + background-image: url(/c_images/myhabbo/backgrounds2/diner_global.png); +} +div.b_geeks_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/geeks_wallpaper.gif); +} +div.b_geeks_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/geeks_wallpaper.gif); +} +div.b_greasers_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/greasers_wallpaper.gif); +} +div.b_greasers_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/greasers_wallpaper.gif); +} +div.b_jocks_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/jocks_wallpaper.gif); +} +div.b_jocks_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/jocks_wallpaper.gif); +} +div.b_skulls_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/skulls_wallpaper.gif); +} +div.b_skulls_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/skulls_wallpaper.gif); +} + +div.w_highscoreswidget_pre { + background-image: url(/c_images/myhabbo/widgets/hiscores_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_profilewidget_pre { + background-image: url(/c_images/myhabbo/widgets/profilewidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_friendswidget_pre { + background-image: url(/c_images/myhabbo/widgets/friends_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_roomswidget_pre { + background-image: url(/c_images/myhabbo/widgets/rooms_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_guestbookwidget_pre { + background-image: url(/c_images/myhabbo/widgets/guestbook_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupinfowidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupinfowidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupswidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupswidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_memberwidget_pre { + background-image: url(/c_images/myhabbo/widgets/member_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_ratingwidget_pre { + background-image: url(/c_images/myhabbo/widgets/rating_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_traxplayerwidget_pre { + background-image: url(/c_images/myhabbo/widgets/trax_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_habbomovieswidget_pre { + background-image: url(/c_images/myhabbo/widgets/movies_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_highscorelistwidget_pre { + background-image: url(/c_images/myhabbo/widgets/highscorelistwidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_userexpswidget_pre { + background-image: url(/c_images/myhabbo/widgets/hiscores_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} + +div.commodity_stickienote_pre { + background-image: url(/c_images/myhabbo/stickies/note_thumbnail_store.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_ { + width: 0px; height: 0px; + background-image: url(/c_images/myhabbo/stickers/); +} +div.s__pre { + background: url(/c_images/myhabbo/stickers/) no-repeat 50% 50%; +} +div.s_cat_animated { + width: 30px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/cat_animated.gif); +} +div.s_cat_animated_pre { + background: url(/c_images/myhabbo/stickers/cat_animated.gif) no-repeat 50% 50%; +} +div.s_gothic draculacape { + width: 62px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/gothic_draculacape.gif); +} +div.s_gothic draculacape_pre { + background: url(/c_images/myhabbo/stickers/gothic_draculacape.gif) no-repeat 50% 50%; +} +div.s_it_toilet { + width: 64px; height: 108px; + background-image: url(/c_images/myhabbo/stickers/it_toilet.gif); +} +div.s_it_toilet_pre { + background: url(/c_images/myhabbo/stickers/it_toilet.gif) no-repeat 50% 50%; +} +div.s_it_stickerpodio { + width: 130px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/it_stickerpodio.gif); +} +div.s_it_stickerpodio_pre { + background: url(/c_images/myhabbo/stickers/it_stickerpodio.gif) no-repeat 50% 50%; +} +div.s_xmas_hc_ribbon_2 { + width: 36px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/xmas_hc_ribbon.gif); +} +div.s_xmas_hc_ribbon_2_pre { + background: url(/c_images/myhabbo/stickers/xmas_hc_ribbon.gif) no-repeat 50% 50%; +} +div.s_soccer_dude_1 { + width: 66px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/GiocatoreA1.gif); +} +div.s_soccer_dude_1_pre { + background: url(/c_images/myhabbo/stickers/GiocatoreA1.gif) no-repeat 50% 50%; +} +div.s_soccer_dude_2 { + width: 66px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/GiocatoreA.gif); +} +div.s_soccer_dude_2_pre { + background: url(/c_images/myhabbo/stickers/GiocatoreA.gif) no-repeat 50% 50%; +} +div.s_soccer_dude_3 { + width: 66px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/GiocatoreA3.gif); +} +div.s_soccer_dude_3_pre { + background: url(/c_images/myhabbo/stickers/GiocatoreA3.gif) no-repeat 50% 50%; +} +div.s_soccer_dude_4 { + width: 66px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/giocatoreA4.gif); +} +div.s_soccer_dude_4_pre { + background: url(/c_images/myhabbo/stickers/giocatoreA4.gif) no-repeat 50% 50%; +} +div.s_soccer_dude_5 { + width: 66px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/GiocatoreA5.gif); +} +div.s_soccer_dude_5_pre { + background: url(/c_images/myhabbo/stickers/GiocatoreA5.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_1 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra1.gif); +} +div.s_soccer_shirts_1_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra1.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_10 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra10.gif); +} +div.s_soccer_shirts_10_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra10.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_11 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra11.gif); +} +div.s_soccer_shirts_11_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra11.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_12 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra12.gif); +} +div.s_soccer_shirts_12_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra12.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_13 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra13.gif); +} +div.s_soccer_shirts_13_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra13.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_14 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra14.gif); +} +div.s_soccer_shirts_14_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra14.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_15 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra15.gif); +} +div.s_soccer_shirts_15_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra15.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_16 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra16.gif); +} +div.s_soccer_shirts_16_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra16.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_17 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra17.gif); +} +div.s_soccer_shirts_17_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra17.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_18 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra18.gif); +} +div.s_soccer_shirts_18_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra18.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_19 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra19.gif); +} +div.s_soccer_shirts_19_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra19.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_2 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra2.gif); +} +div.s_soccer_shirts_2_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra2.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_20 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra20.gif); +} +div.s_soccer_shirts_20_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra20.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_3 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra3.gif); +} +div.s_soccer_shirts_3_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra3.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_4 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra4.gif); +} +div.s_soccer_shirts_4_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra4.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_5 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra5.gif); +} +div.s_soccer_shirts_5_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra5.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_6 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra6.gif); +} +div.s_soccer_shirts_6_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra6.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_7 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra7.gif); +} +div.s_soccer_shirts_7_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra7.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_8 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra8.gif); +} +div.s_soccer_shirts_8_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra8.gif) no-repeat 50% 50%; +} +div.s_soccer_shirts_9 { + width: 31px; height: 32px; + background-image: url(/c_images/myhabbo/stickers/maglia_squadra9.gif); +} +div.s_soccer_shirts_9_pre { + background: url(/c_images/myhabbo/stickers/maglia_squadra9.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_1 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra1.gif); +} +div.s_soccer_shorts_1_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra1.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_10 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra10.gif); +} +div.s_soccer_shorts_10_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra10.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_11 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra11.gif); +} +div.s_soccer_shorts_11_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra11.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_12 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra12.gif); +} +div.s_soccer_shorts_12_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra12.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_13 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra13.gif); +} +div.s_soccer_shorts_13_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra13.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_14 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra14.gif); +} +div.s_soccer_shorts_14_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra14.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_15 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra15.gif); +} +div.s_soccer_shorts_15_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra15.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_16 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra16.gif); +} +div.s_soccer_shorts_16_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra16.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_17 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra17.gif); +} +div.s_soccer_shorts_17_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra17.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_18 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra18.gif); +} +div.s_soccer_shorts_18_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra18.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_19 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra19.gif); +} +div.s_soccer_shorts_19_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra19.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_2 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra2.gif); +} +div.s_soccer_shorts_2_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra2.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_20 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra20.gif); +} +div.s_soccer_shorts_20_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra20.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_3 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra3.gif); +} +div.s_soccer_shorts_3_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra3.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_4 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra4.gif); +} +div.s_soccer_shorts_4_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra4.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_5 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra5.gif); +} +div.s_soccer_shorts_5_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra5.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_6 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra6.gif); +} +div.s_soccer_shorts_6_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra6.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_7 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra7.gif); +} +div.s_soccer_shorts_7_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra7.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_8 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra8.gif); +} +div.s_soccer_shorts_8_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra8.gif) no-repeat 50% 50%; +} +div.s_soccer_shorts_9 { + width: 24px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/pantaloncini_squadra9.gif); +} +div.s_soccer_shorts_9_pre { + background: url(/c_images/myhabbo/stickers/pantaloncini_squadra9.gif) no-repeat 50% 50%; +} +div.s_vibrabed { + width: 126px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/lovebed.gif); +} +div.s_vibrabed_pre { + background: url(/c_images/myhabbo/stickers/lovebed.gif) no-repeat 50% 50%; +} +div.s_val_skull360around_anim { + width: 104px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/val_Skull360around_anim.gif); +} +div.s_val_skull360around_anim_pre { + background: url(/c_images/myhabbo/stickers/val_Skull360around_anim.gif) no-repeat 50% 50%; +} +div.s_val_barbwire_vert_sticker { + width: 46px; height: 144px; + background-image: url(/c_images/myhabbo/stickers/val_barbwire_vert_sticker.gif); +} +div.s_val_barbwire_vert_sticker_pre { + background: url(/c_images/myhabbo/stickers/val_barbwire_vert_sticker.gif) no-repeat 50% 50%; +} +div.s_val_barbwireire_horis_sticker { + width: 144px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/val_barbwireire_horis_sticker.gif); +} +div.s_val_barbwireire_horis_sticker_pre { + background: url(/c_images/myhabbo/stickers/val_barbwireire_horis_sticker.gif) no-repeat 50% 50%; +} +div.s_edito_logo { + width: 146px; height: 91px; + background-image: url(/c_images/myhabbo/stickers/edito_logo.gif); +} +div.s_edito_logo_pre { + background: url(/c_images/myhabbo/stickers/edito_logo.gif) no-repeat 50% 50%; +} +div.s_greenpeace_sticker { + width: 141px; height: 24px; + background-image: url(/c_images/myhabbo/stickers/Greenpeace_sticker.gif); +} +div.s_greenpeace_sticker_pre { + background: url(/c_images/myhabbo/stickers/Greenpeace_sticker.gif) no-repeat 50% 50%; +} +div.s_jared { + width: 64px; height: 110px; + background-image: url(/c_images/myhabbo/stickers/jared.gif); +} +div.s_jared_pre { + background: url(/c_images/myhabbo/stickers/jared.gif) no-repeat 50% 50%; +} +div.s_tomo { + width: 68px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/tomo.gif); +} +div.s_tomo_pre { + background: url(/c_images/myhabbo/stickers/tomo.gif) no-repeat 50% 50%; +} +div.s_femalecapiatain_costume { + width: 33px; height: 75px; + background-image: url(/c_images/myhabbo/stickers/femalecapiatain_costume.gif); +} +div.s_femalecapiatain_costume_pre { + background: url(/c_images/myhabbo/stickers/femalecapiatain_costume.gif) no-repeat 50% 50%; +} +div.s_malecapitain_costume { + width: 32px; height: 75px; + background-image: url(/c_images/myhabbo/stickers/malecapitain_costume.gif); +} +div.s_malecapitain_costume_pre { + background: url(/c_images/myhabbo/stickers/malecapitain_costume.gif) no-repeat 50% 50%; +} +div.s_valcaptain { + width: 32px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/valcaptain.gif); +} +div.s_valcaptain_pre { + background: url(/c_images/myhabbo/stickers/valcaptain.gif) no-repeat 50% 50%; +} +div.s_valentertainer { + width: 43px; height: 99px; + background-image: url(/c_images/myhabbo/stickers/valentertainer.gif); +} +div.s_valentertainer_pre { + background: url(/c_images/myhabbo/stickers/valentertainer.gif) no-repeat 50% 50%; +} +div.s_valsteward { + width: 32px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/valsteward.gif); +} +div.s_valsteward_pre { + background: url(/c_images/myhabbo/stickers/valsteward.gif) no-repeat 50% 50%; +} +div.s_valstewardess { + width: 71px; height: 118px; + background-image: url(/c_images/myhabbo/stickers/valstewardess.gif); +} +div.s_valstewardess_pre { + background: url(/c_images/myhabbo/stickers/valstewardess.gif) no-repeat 50% 50%; +} +div.s_freehugs.gif { + width: 96px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/freeHugs.gif); +} +div.s_freehugs.gif_pre { + background: url(/c_images/myhabbo/stickers/freeHugs.gif) no-repeat 50% 50%; +} +div.s_patsday_kissme.gif { + width: 137px; height: 111px; + background-image: url(/c_images/myhabbo/stickers/patsDay_kissMe.gif); +} +div.s_patsday_kissme.gif_pre { + background: url(/c_images/myhabbo/stickers/patsDay_kissMe.gif) no-repeat 50% 50%; +} +div.s_sticker_geniefirehead { + width: 42px; height: 55px; + background-image: url(/c_images/myhabbo/stickers/sticker_geniefirehead.gif); +} +div.s_sticker_geniefirehead_pre { + background: url(/c_images/myhabbo/stickers/sticker_geniefirehead.gif) no-repeat 50% 50%; +} +div.s_sticker_sboard1 { + width: 0px; height: 0px; + background-image: url(/c_images/myhabbo/stickers/sticker_sBoard1.gif); +} +div.s_sticker_sboard1_pre { + background: url(/c_images/myhabbo/stickers/sticker_sBoard1) no-repeat 50% 50%; +} +div.b_xmas_hc_ribbon { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_hc_ribbon.gif); +} +div.b_xmas_hc_ribbon_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_hc_ribbon.gif); +} +div.b_xmas_gifts_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg); +} +div.b_bgpattern_starsky { + background-image: url(/c_images/myhabbo/backgrounds2/starsky.gif); +} +div.b_bgpattern_starsky_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_bgpattern_starsky); +} +div.b_xmas bgpattern starsky { + background-image: url(/c_images/myhabbo/backgrounds2/xmas bgpattern starsky.gif); +} +div.b_xmas bgpattern starsky_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas bgpattern starsky.gif); +} +div.b_bg_xmas bgpattern starsky { + background-image: url(/c_images/myhabbo/backgrounds2/xmas bgpattern starsky.gif); +} +div.b_bg_xmas bgpattern starsky_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas bgpattern starsky.gif); +} +div.b_newyear_bg_fireworks { + background-image: url(/c_images/myhabbo/backgrounds2/NewYear_bg_fireworks.gif); +} +div.b_newyear_bg_fireworks_pre { + background-image: url(/c_images/myhabbo/backgrounds2/NewYear_bg_fireworks.gif); +} +div.b_sticker_masque_04 { + background-image: url(/c_images/myhabbo/backgrounds2/sticker_masque_04.gif); +} +div.b_sticker_masque_04_pre { + background-image: url(/c_images/myhabbo/backgrounds2/sticker_masque_04.gif); +} +div.b_solid_bg_white { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_white.gif); +} +div.b_solid_bg_white_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_white.gif); +} +div.b_solid_bg_black { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_Black.gif); +} +div.b_solid_bg_black_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_Black.gif); +} +div.b_christmas2007bg { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg_001.gif); +} +div.b_christmas2007bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg_001.gif); +} +div.b_habbox { + background-image: url(/c_images/myhabbo/backgrounds2/habbox.gif); +} +div.b_habbox_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbox.gif); +} +div.b_misshabbo_scene { + background-image: url(/c_images/myhabbo/backgrounds2/misshabbo_scene.gif); +} +div.b_misshabbo_scene_pre { + background-image: url(/c_images/myhabbo/backgrounds2/misshabbo_scene.gif); +} +div.b_themepark_bg_01 { + background-image: url(/c_images/myhabbo/backgrounds2/themepark_bg_01.gif); +} +div.b_themepark_bg_01_pre { + background-image: url(/c_images/myhabbo/backgrounds2/themepark_bg_01.gif); +} +div.b_themepark_bg_02 { + background-image: url(/c_images/myhabbo/backgrounds2/themepark_bg_0.gif); +} +div.b_themepark_bg_02_pre { + background-image: url(/c_images/myhabbo/backgrounds2/themepark_bg_02.gif); +} +div.b_bubblejuice_bg { + background-image: url(/c_images/myhabbo/backgrounds2/bubblejuice_bg3.jpg); +} +div.b_bubblejuice_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bubblejuice_bg3.jpg); +} +div.b_bg_guidegroup { + background-image: url(/c_images/myhabbo/backgrounds2/bg_guidegroup.png); +} +div.b_bg_guidegroup_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_guidegroup.png); +} +div.b_snowbattle_bg { + background-image: url(/c_images/myhabbo/backgrounds2/grouppage_snowbattle.png); +} +div.b_snowbattle_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/grouppage_snowbattle.png); +} +div.b_diner_draft { + background-image: url(/c_images/myhabbo/backgrounds2/diner_draft.png); +} +div.b_diner_draft_pre { + background-image: url(/c_images/myhabbo/backgrounds2/diner_draft.png); +} +div.s_xmas_dograindeer_sticker { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/Xmas_Dograindeer_sticker.gif); +} +div.s_xmas_dograindeer_sticker_pre { + background: url(/c_images/myhabbo/stickers/Xmas_Dograindeer_sticker.gif) no-repeat 50% 50%; +} +div.s_xmas_sticker_dograindeer { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/xmas_sticker_dograindeer.gif); +} +div.s_xmas_sticker_dograindeer_pre { + background: url(/c_images/myhabbo/stickers/xmas_sticker_dograindeer.gif) no-repeat 50% 50%; +} +div.s_xmas_box_suit_mint { + width: 87px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_suit_mint.gif); +} +div.s_ss_snowflake1 { + width: 33px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/ss_snowflake1.gif); +} +div.s_ss_snowflake1_pre { + background: url(/c_images/myhabbo/stickers/ss_snowflake1.gif) no-repeat 50% 50%; +} +div.s_snowball { + width: 40px; height: 40px; + background-image: url(/c_images/myhabbo/stickers/snowball.gif); +} +div.s_snowball_pre { + background: url(/c_images/myhabbo/stickers/snowball.gif) no-repeat 50% 50%; +} +div.s_lapanen_blue_001 { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_blue_001.gif); +} +div.s_lapanen_blue_001_pre { + background: url(/c_images/myhabbo/stickers/lapanen_blue_001.gif) no-repeat 50% 50%; +} +div.s_exclamation { + width: 16px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/exclamation.gif); +} +div.s_exclamation_pre { + background: url(/c_images/myhabbo/stickers/exclamation.gif) no-repeat 50% 50%; +} +div.s_question { + width: 33px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/question.gif); +} +div.s_question_pre { + background: url(/c_images/myhabbo/stickers/question.gif) no-repeat 50% 50%; +} +div.s_anim_viking_hole { + width: 100px; height: 71px; + background-image: url(/c_images/myhabbo/stickers/anim_viking_hole.gif); +} +div.s_anim_viking_hole_pre { + background: url(/c_images/myhabbo/stickers/anim_viking_hole.gif) no-repeat 50% 50%; +} +div.s_gas_mask { + width: 36px; height: 35px; + background-image: url(/c_images/myhabbo/stickers/gas_mask.gif); +} +div.s_gas_mask_pre { + background: url(/c_images/myhabbo/stickers/gas_mask.gif) no-repeat 50% 50%; +} +div.s_bobbacurse { + width: 90px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_bobbaskull.gif); +} +div.s_bobbacurse_pre { + background: url(/c_images/myhabbo/stickers/sticker_bobbaskull.gif) no-repeat 50% 50%; +} +div.s_bobbacurse_2 { + width: 90px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/sticker_bobbaskull.gif); +} +div.s_bobbacurse_2_pre { + background: url(/c_images/myhabbo/stickers/sticker_bobbaskull.gif) no-repeat 50% 50%; +} +div.s_fwrk_pink { + width: 80px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/fwrk_pink.gif); +} +div.s_fwrk_pink_pre { + background: url(/c_images/myhabbo/stickers/fwrk_pink.gif) no-repeat 50% 50%; +} +div.s_fwrk_yellow { + width: 101px; height: 74px; + background-image: url(/c_images/myhabbo/stickers/fwrk_yellow.gif); +} +div.s_fwrk_yellow_pre { + background: url(/c_images/myhabbo/stickers/fwrk_yellow.gif) no-repeat 50% 50%; +} +div.s_fwrk_blue { + width: 108px; height: 105px; + background-image: url(/c_images/myhabbo/stickers/fwrk_blue.gif); +} +div.s_fwrk_blue_pre { + background: url(/c_images/myhabbo/stickers/fwrk_blue.gif) no-repeat 50% 50%; +} +div.s_horizontalink { + width: 388px; height: 91px; + background-image: url(/c_images/myhabbo/stickers/horizontalink.gif); +} +div.s_horizontalink_pre { + background: url(/c_images/myhabbo/stickers/horizontalink.gif) no-repeat 50% 50%; +} +div.s_verticalink { + width: 66px; height: 397px; + background-image: url(/c_images/myhabbo/stickers/verticalink.gif); +} +div.s_verticalink_pre { + background: url(/c_images/myhabbo/stickers/verticalink.gif) no-repeat 50% 50%; +} +div.s_globalw_sticker { + width: 295px; height: 183px; + background-image: url(/c_images/myhabbo/stickers/GlobalW_sticker.gif); +} +div.s_globalw_sticker_pre { + background: url(/c_images/myhabbo/stickers/GlobalW_sticker.gif) no-repeat 50% 50%; +} +div.s_proeco { + width: 129px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/proeco.gif); +} +div.s_proeco_pre { + background: url(/c_images/myhabbo/stickers/proeco.gif) no-repeat 50% 50%; +} +div.s_donk { + width: 43px; height: 99px; + background-image: url(/c_images/myhabbo/stickers/donk.gif); +} +div.s_donk_pre { + background: url(/c_images/myhabbo/stickers/donk.gif) no-repeat 50% 50%; +} +div.s_guccimama { + width: 34px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/guccimama.gif); +} +div.s_guccimama_pre { + background: url(/c_images/myhabbo/stickers/guccimama.gif) no-repeat 50% 50%; +} +div.s_missj { + width: 37px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/missj.gif); +} +div.s_missj_pre { + background: url(/c_images/myhabbo/stickers/missj.gif) no-repeat 50% 50%; +} +div.s_mummimor { + width: 37px; height: 95px; + background-image: url(/c_images/myhabbo/stickers/mummimor.gif); +} +div.s_mummimor_pre { + background: url(/c_images/myhabbo/stickers/mummimor.gif) no-repeat 50% 50%; +} +div.s_radar { + width: 32px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/radar.gif); +} +div.s_radar_pre { + background: url(/c_images/myhabbo/stickers/radar.gif) no-repeat 50% 50%; +} +div.s_queensibidi { + width: 32px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/queensibidi.gif); +} +div.s_queensibidi_pre { + background: url(/c_images/myhabbo/stickers/queensibidi.gif) no-repeat 50% 50%; +} +div.s_alhambra_sticker { + width: 139px; height: 134px; + background-image: url(/c_images/myhabbo/stickers/alhambra_sticker.gif); +} +div.s_alhambra_sticker_pre { + background: url(/c_images/myhabbo/stickers/alhambra_sticker.gif) no-repeat 50% 50%; +} +div.s_ikura { + width: 66px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/ikura.png); +} +div.s_ikura_pre { + background: url(/c_images/myhabbo/stickers/ikura.png) no-repeat 50% 50%; +} +div.s_kohada { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/kohada.png); +} +div.s_kohada_pre { + background: url(/c_images/myhabbo/stickers/kohada.png) no-repeat 50% 50%; +} +div.s_maguro { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/maguro.png); +} +div.s_maguro_pre { + background: url(/c_images/myhabbo/stickers/maguro.png) no-repeat 50% 50%; +} +div.s_squid { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/squid.png); +} +div.s_squid_pre { + background: url(/c_images/myhabbo/stickers/squid.png) no-repeat 50% 50%; +} +div.s_tamago { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/tamago.png); +} +div.s_tamago_pre { + background: url(/c_images/myhabbo/stickers/tamago.png) no-repeat 50% 50%; +} +div.s_uni { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/uni.png); +} +div.s_uni_pre { + background: url(/c_images/myhabbo/stickers/uni.png) no-repeat 50% 50%; +} +div.s_checker_border_h { + width: 180px; height: 20px; + background-image: url(/c_images/myhabbo/stickers/sticker_checkerHoriz.png); +} +div.s_checker_border_v { + width: 20px; height: 180px; + background-image: url(/c_images/myhabbo/stickers/sticker_checkerVert.png); +} +div.b_xmas_gifts_gb { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg.gif); +} +div.b_xmas_gifts_gb_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg.gif); +} +div.b_xmas_gifts_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_gifts_bg,gif); +} +div.b_bg_goth_pattern { + background-image: url(/c_images/myhabbo/backgrounds2/goth_pattern.gif); +} +div.b_bg_goth_pattern_pre { + background-image: url(/c_images/myhabbo/backgrounds2/goth_pattern.gif); +} +div.b_bg_easter_eggs_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper.gif); +} +div.b_bg_easter_eggs_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper.gif); +} +div.b_easter_broomstick_002 { + background-image: url(/c_images/myhabbo/backgrounds2/easter_broomstick_002.gif); +} +div.b_easter_broomstick_002_pre { + background-image: url(/c_images/myhabbo/backgrounds2/easter_broomstick_002.gif); +} +div.b_bg_kingcorp_928x1360 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_kingcorp_928x1360.gif); +} +div.b_bg_kingcorp_928x1360_pre { + background-image: url(/c_images/myhabbo/backgrounds2/backgrounds2/kingcorp_928x1360.gif); +} +div.b_bg_konkurrence { + background-image: url(/c_images/myhabbo/backgrounds2/konkurrence.gif); +} +div.b_bg_konkurrence_pre { + background-image: url(/c_images/myhabbo/backgrounds2/konkurrence); +} +div.b_bg_bg_infobus_white { + background-image: url(/c_images/myhabbo/backgrounds2/bg_infobus_white.png); +} +div.b_bg_bg_infobus_white_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_infobus_white.png); +} +div.b_safetyweek2008_bg { + background-image: url(/c_images/myhabbo/backgrounds2/SafetyWeek2008_bg.gif); +} +div.b_safetyweek2008_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/SafetyWeek2008_bg.gif); +} +div.b_27835_getitcard_bg { + background-image: url(/c_images/myhabbo/backgrounds2/27835_getitcard_bg.jpg); +} +div.b_27835_getitcard_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/27835_getitcard_bg.jpg); +} +div.b_bg_us_staffers { + background-image: url(/c_images/myhabbo/backgrounds2/US_staffers.gif); +} +div.b_bg_us_staffers_pre { + background-image: url(/c_images/myhabbo/backgrounds2/US_staffers.gif); +} +div.b_bg_solid_bg_white { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_white.gif); +} +div.b_bg_solid_bg_white_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_white.gif); +} +div.b_wallpaper_dinerus { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_dinerUS.png); +} +div.b_wallpaper_dinerus_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_dinerUS.png); +} +div.b_habbo_social_game_002 { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_social_game_002.gif); +} +div.b_habbo_social_game_002_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_social_game_002.gif); +} +div.b_sticker_checkervert { + background-image: url(/c_images/myhabbo/backgrounds2/sticker_checkerVert.png); +} +div.b_sticker_checkervert_pre { + background-image: url(/c_images/myhabbo/backgrounds2/sticker_checkerVert.png); +} +div.b_rexona_bg { + background-image: url(/c_images/myhabbo/backgrounds2/rexona_bg.jpg); +} +div.b_rexona_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/rexona_bg.jpg); +} +div.b_anim_elvis { + background-image: url(/c_images/myhabbo/backgrounds2/anim_elvis.jpg); +} +div.b_anim_elvis_pre { + background-image: url(/c_images/myhabbo/backgrounds2/anim_elvis.jpg); +} +div.b_nicolajrasted_vip { + background-image: url(/c_images/myhabbo/backgrounds2/nicolajrasted_vip.jpg); +} +div.b_nicolajrasted_vip_pre { + background-image: url(/c_images/myhabbo/backgrounds2/nicolajrasted_vip.jpg); +} +div.s_xmas_box_suit_mint.gif { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_suit_mint.gif); +} +div.s_xmas_box_suit_mint.gif_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_suit_mint.gif) no-repeat 50% 50%; +} +div.s_hw xmas_box_suit_mint2 { + width: 87px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/HW xmas_box_suit_mint2.gif); +} +div.s_hw xmas_box_suit_mint2_pre { + background: url(/c_images/myhabbo/stickers/test3) no-repeat 50% 50%; +} +div.s_xmas_box_suit_mint2 { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_suit_mint2.gif); +} +div.s_xmas_box_suit_mint2_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_suit_mint2.gif) no-repeat 50% 50%; +} +div.s_xmas_box_darkred2 { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_darkred2.gif); +} +div.s_xmas_box_darkred2_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_darkred2.gif) no-repeat 50% 50%; +} +div.s_xmas_rastasanta { + width: 55px; height: 98px; + background-image: url(/c_images/myhabbo/stickers/xmas_rastasanta.gif); +} +div.s_xmas_gift_afro { + width: 50px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_afro.gif); +} +div.s_lapanen_blue_dontuse { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_blue.gif); +} +div.s_lapanen_blue_dontuse_pre { + background: url(/c_images/myhabbo/stickers/lapanen_blue.gif) no-repeat 50% 50%; +} +div.s_lapanen_blue_control_m { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_blue.gif); +} +div.s_lapanen_blue_control_m_pre { + background: url(/c_images/myhabbo/stickers/lapanen_blue.gif) no-repeat 50% 50%; +} +div.s_se_sticker_competition { + width: 77px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/se_sticker_competition.gif); +} +div.s_se_sticker_competition_pre { + background: url(/c_images/myhabbo/stickers/se_sticker_competition.gif) no-repeat 50% 50%; +} +div.s_bozzanova { + width: 37px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/bozzanova.gif); +} +div.s_bozzanova_pre { + background: url(/c_images/myhabbo/stickers/bozzanova.gif) no-repeat 50% 50%; +} +div.s_vincentviga { + width: 30px; height: 86px; + background-image: url(/c_images/myhabbo/stickers/vincentviga.gif); +} +div.s_vincentviga_pre { + background: url(/c_images/myhabbo/stickers/vincentviga.gif) no-repeat 50% 50%; +} +div.s_rasta { + width: 32px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/rasta.gif); +} +div.s_rasta_pre { + background: url(/c_images/myhabbo/stickers/rasta.gif) no-repeat 50% 50%; +} +div.s_tokfia { + width: 40px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/tokfia.gif); +} +div.s_tokfia_pre { + background: url(/c_images/myhabbo/stickers/tokfia.gif) no-repeat 50% 50%; +} +div.s_alhambra_wallsticker { + width: 90px; height: 153px; + background-image: url(/c_images/myhabbo/stickers/alhambra_wallsticker.gif); +} +div.s_alhambra_wallsticker_pre { + background: url(/c_images/myhabbo/stickers/alhambra_wallsticker.gif) no-repeat 50% 50%; +} +div.s_referee_01_guest.gif { + width: 44px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/referee_01_guest.gif); +} +div.s_referee_01_guest.gif_pre { + background: url(/c_images/myhabbo/stickers/referee_01_guest.gif) no-repeat 50% 50%; +} +div.s_krans { + width: 30px; height: 15px; + background-image: url(/c_images/myhabbo/stickers/krans.gif); +} +div.s_krans_pre { + background: url(/c_images/myhabbo/stickers/krans.gif) no-repeat 50% 50%; +} +div.s_midsommar_1 { + width: 148px; height: 192px; + background-image: url(/c_images/myhabbo/stickers/midsommar_1.gif); +} +div.s_midsommar_1_pre { + background: url(/c_images/myhabbo/stickers/midsommar_1.gif) no-repeat 50% 50%; +} +div.s_sticker_unclesam { + width: 37px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_uncleSam.gif); +} +div.s_sticker_unclesam_pre { + background: url(/c_images/myhabbo/stickers/sticker_uncleSam.gif) no-repeat 50% 50%; +} +div.s_sticker flagborder { + width: 202px; height: 43px; + background-image: url(/c_images/myhabbo/stickers/sticker_flagBorder.gif); +} +div.s_sticker flagborder_pre { + background: url(/c_images/myhabbo/stickers/sticker_flagBorder.gif) no-repeat 50% 50%; +} +div.s_sticker_fireworkboom3 { + width: 286px; height: 269px; + background-image: url(/c_images/myhabbo/stickers/sticker_fireworkBoom3.gif); +} +div.s_sticker_fireworkboom3_pre { + background: url(/c_images/myhabbo/stickers/sticker_fireworkBoom3.gif) no-repeat 50% 50%; +} +div.s_sticker auntsamantha { + width: 37px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_auntSamantha.gif); +} +div.s_sticker auntsamantha_pre { + background: url(/c_images/myhabbo/stickers/sticker_auntSamantha.gif) no-repeat 50% 50%; +} +div.s_25_146x146_habbo_sticker_fi { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/25_146x146_habbo_sticker_fi.gif); +} +div.s_25_146x146_habbo_sticker_fi_pre { + background: url(/c_images/myhabbo/stickers/25_146x146_habbo_sticker_fi.gif) no-repeat 50% 50%; +} +div.b_hw xmas_gifts_bg { + background-image: url(/c_images/myhabbo/backgrounds2/TEST); +} +div.b_hw xmas_gifts_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/TEST); +} +div.b_bg_rasta_99x99. { + background-image: url(/c_images/myhabbo/backgrounds2/Rasta_99x99.gif); +} +div.b_bg_rasta_99x99._pre { + background-image: url(/c_images/myhabbo/backgrounds2/Rasta_99x99.gif); +} +div.b_xmas2009_bg_xmasfun { + background-image: url(/c_images/myhabbo/backgrounds2/xmas2009_bg_xmasfun.png); +} +div.b_xmas2009_bg_xmasfun_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas2009_bg_xmasfun.png); +} +div.b_xmas_box_darkred { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_box_darkred.gif); +} +div.b_xmas_box_darkred_pre { + background-image: url(/c_images/myhabbo/backgrounds2/TEST4); +} +div.b_bg_christmas2007bg { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg.gif); +} +div.b_bg_christmas2007bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg.gif); +} +div.b_vip_group { + background-image: url(/c_images/myhabbo/backgrounds2/Vip_Group.png); +} +div.b_vip_group_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Vip_Group.png); +} +div.b_bionicle2 { + background-image: url(/c_images/myhabbo/backgrounds2/Bionicle2.jpg); +} +div.b_bionicle2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Bionicle2.jpg); +} +div.b_26_habbo_background_fi { + background-image: url(/c_images/myhabbo/backgrounds2/26_habbo_background_fi.jpg); +} +div.b_26_habbo_background_fi_pre { + background-image: url(/c_images/myhabbo/backgrounds2/26_habbo_background_fi.jpg); +} +div.s_xmas_angelwings_anim.gif { + width: 50px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/angelwings_anim.gif); +} +div.s_xmas_angelwings_anim.gif_pre { + background: url(/c_images/myhabbo/stickers/angelwings_anim.gif) no-repeat 50% 50%; +} +div.s_xmas_angelwings_anim { + width: 50px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/angelwings_anim.gif); +} +div.s_xmas_angelwings_anim_pre { + background: url(/c_images/myhabbo/stickers/angelwings_anim.gif) no-repeat 50% 50%; +} +div.s_newyear 2007 anim2 { + width: 146px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/TEST); +} +div.s_newyear 2007 anim2_pre { + background: url(/c_images/myhabbo/stickers/TEST) no-repeat 50% 50%; +} +div.s_newyear_2007_anim2 { + width: 146px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/newyear_2007_anim2.gif); +} +div.s_newyear_2007_anim2_pre { + background: url(/c_images/myhabbo/stickers/newyear_2007_anim2.gif) no-repeat 50% 50%; +} +div.s_newyear_2007_anim3 { + width: 146px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/newyear_2007_anim3.gif); +} +div.s_newyear_2007_anim3_pre { + background: url(/c_images/myhabbo/stickers/newyear_2007_anim3.gif) no-repeat 50% 50%; +} +div.s_slash { + width: 19px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/slash.gif); +} +div.s_slash_pre { + background: url(/c_images/myhabbo/stickers/slash.gif) no-repeat 50% 50%; +} +div.s_comma { + width: 14px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/comma.gif); +} +div.s_comma_pre { + background: url(/c_images/myhabbo/stickers/comma.gif) no-repeat 50% 50%; +} +div.s_no_space_sticker { + width: 85px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/NO_Space_Sticker.gif); +} +div.s_no_space_sticker_pre { + background: url(/c_images/myhabbo/stickers/NO_Space_Sticker.gif) no-repeat 50% 50%; +} +div.s_xmas_box_green_2 { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_green.gif); +} +div.s_xmas_box_green_2_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_green.gif) no-repeat 50% 50%; +} +div.s_hwood07 klaffi2 { + width: 240px; height: 250px; + background-image: url(/c_images/myhabbo/stickers/hwood07_klaffi2.gif); +} +div.s_hwood07 klaffi2_pre { + background: url(/c_images/myhabbo/stickers/hwood07_klaffi2.gif) no-repeat 50% 50%; +} +div.s_ametrin { + width: 38px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/ametrin.gif); +} +div.s_ametrin_pre { + background: url(/c_images/myhabbo/stickers/ametrin.gif) no-repeat 50% 50%; +} +div.s_bellydancer { + width: 77px; height: 74px; + background-image: url(/c_images/myhabbo/stickers/bellydancer.gif); +} +div.s_bellydancer_pre { + background: url(/c_images/myhabbo/stickers/bellydancer.gif) no-repeat 50% 50%; +} +div.s_anim_brasero { + width: 41px; height: 73px; + background-image: url(/c_images/myhabbo/stickers/anim_brasero.gif); +} +div.s_anim_brasero_pre { + background: url(/c_images/myhabbo/stickers/anim_brasero.gif) no-repeat 50% 50%; +} +div.b_newyear_2007_anim { + background-image: url(/c_images/myhabbo/stickers/newyear_2007_anim.gif); +} +div.b_newyear_2007_anim_pre { + background-image: url(/c_images/myhabbo/stickers/newyear_2007_anim.gif); +} +div.b_xmas_box_green { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_box_green.gif); +} +div.b_xmas_box_green_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_box_green.gif); +} +div.b_bg_serpentine_darkred { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpentine_darkred.gif); +} +div.b_bg_serpentine_darkred_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_serpentine_darkred.gif); +} +div.b_habbo_group_tutorial { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_group_tutorial_bg.png); +} +div.b_habbo_group_tutorial_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_group_tutorial_bg.png); +} +div.b_habbos_group { + background-image: url(/c_images/myhabbo/backgrounds2/habbos_group.png); +} +div.b_habbos_group_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbos_group.png); +} +div.b_bg_christmas2007bg.gif { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg.gif); +} +div.b_bg_christmas2007bg.gif_pre { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg.gif); +} +div.b_christmas2007bg { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg.gif); +} +div.b_christmas2007bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg.gif); +} +div.b_bg_kingcorp_928x1360 { + background-image: url(/c_images/myhabbo/backgrounds2/kingcorp_929x1360.gif); +} +div.b_bg_kingcorp { + background-image: url(/c_images/myhabbo/backgrounds2/bg_kingcorp.gif); +} +div.b_bg_kingcorp_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_kingcorp); +} +div.b_kingcorp 928x1360 { + background-image: url(/c_images/myhabbo/backgrounds2/kingcorp 928x1360.gif); +} +div.b_kingcorp 928x1360_pre { + background-image: url(/c_images/myhabbo/backgrounds2/kingcorp 928x1360.gif); +} +div.b_bg_konkurrenceno { + background-image: url(/c_images/myhabbo/backgrounds2/konkurrenceno.gif); +} +div.b_bg_konkurrenceno_pre { + background-image: url(/c_images/myhabbo/backgrounds2/konkurrenceno); +} +div.b_hannamontanawp { + background-image: url(/c_images/myhabbo/backgrounds2/hannamontanawp.gif); +} +div.b_hannamontanawp_pre { + background-image: url(/c_images/myhabbo/backgrounds2/hannamontanawp.gif); +} +div.b_hundredmillion bg { + background-image: url(/c_images/myhabbo/backgrounds2/hundredmillion_bg.png); +} +div.b_hundredmillion bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/hundredmillion_bg.png); +} +div.b_globalw_background_pre { + background-image: url(/c_images/myhabbo/backgrounds2/GlobalW_Background.gif); +} +div.s_au_surfing { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/AU_Surfing.gif); +} +div.s_au_surfing_pre { + background: url(/c_images/myhabbo/stickers/AU_Surfing.gif) no-repeat 50% 50%; +} +div.s_au_greengold { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/AU_GreenGold.gif); +} +div.s_au_greengold_pre { + background: url(/c_images/myhabbo/stickers/AU_GreenGold.gif) no-repeat 50% 50%; +} +div.s_nz_heart { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/NZ_Heart.gif); +} +div.s_nz_heart_pre { + background: url(/c_images/myhabbo/stickers/NZ_Heart.gif) no-repeat 50% 50%; +} +div.s_nz_tiki { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/NZ_Tiki.gif); +} +div.s_nz_tiki_pre { + background: url(/c_images/myhabbo/stickers/NZ_Tiki.gif) no-repeat 50% 50%; +} +div.s_gf_hotornot_blue { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/GF_HotorNot_Blue.gif); +} +div.s_gf_hotornot_blue_pre { + background: url(/c_images/myhabbo/stickers/GF_HotorNot_Blue.gif) no-repeat 50% 50%; +} +div.s_gf_hotornot_pink { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/GF_HotorNot_Pink.gif); +} +div.s_gf_hotornot_pink_pre { + background: url(/c_images/myhabbo/stickers/GF_HotorNot_Pink.gif) no-repeat 50% 50%; +} +div.s_surf lifesaver { + width: 93px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/au_lifesaver.gif); +} +div.s_surf lifesaver_pre { + background: url(/c_images/myhabbo/stickers/au_lifesaver.gif) no-repeat 50% 50%; +} +div.s_seagull_rf { + width: 23px; height: 29px; + background-image: url(/c_images/myhabbo/stickers/seagull_02.gif); +} +div.s_seagull_rf_pre { + background: url(/c_images/myhabbo/stickers/seagull_02.gif) no-repeat 50% 50%; +} +div.s_seagull_lf { + width: 23px; height: 29px; + background-image: url(/c_images/myhabbo/stickers/seagull_01.gif); +} +div.s_seagull_lf_pre { + background: url(/c_images/myhabbo/stickers/seagull_01.gif) no-repeat 50% 50%; +} +div.s_seashell { + width: 150px; height: 131px; + background-image: url(/c_images/myhabbo/stickers/Shell.gif); +} +div.s_seashell_pre { + background: url(/c_images/myhabbo/stickers/shell.gif) no-repeat 50% 50%; +} +div.s_yellowstarfish { + width: 157px; height: 160px; + background-image: url(/c_images/myhabbo/stickers/yellowstarfish.gif); +} +div.s_yellowstarfish_pre { + background: url(/c_images/myhabbo/stickers/yellowstarfish.gif) no-repeat 50% 50%; +} +div.s_bluestarfish { + width: 157px; height: 160px; + background-image: url(/c_images/myhabbo/stickers/bluestarfish.gif); +} +div.s_bluestarfish_pre { + background: url(/c_images/myhabbo/stickers/bluestarfish.gif) no-repeat 50% 50%; +} +div.s_redstarfish { + width: 157px; height: 160px; + background-image: url(/c_images/myhabbo/stickers/redstarfish.gif); +} +div.s_redstarfish_pre { + background: url(/c_images/myhabbo/stickers/redstarfish.gif) no-repeat 50% 50%; +} +div.s_/it_kaffee7am9ol { + width: 60px; height: 84px; + background-image: url(/c_images/myhabbo/stickers//it_kaffee7am9ol.gif); +} +div.s_/it_kaffee7am9ol_pre { + background: url(/c_images/myhabbo/stickers//it_kaffee7am9ol.gif) no-repeat 50% 50%; +} +div.s_jp_godzilla { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/jp_godzilla.gif); +} +div.s_jp_godzilla_pre { + background: url(h/c_images/myhabbo/stickers/jp_godzilla.gif) no-repeat 50% 50%; +} +div.s_jp_sushi { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/jp_sushi.gif); +} +div.s_jp_sushi_pre { + background: url(/c_images/myhabbo/stickers/jp_sushi.gif) no-repeat 50% 50%; +} +div.s_pro_eco_pre { + background: url(/c_images/myhabbo/stickers/pro_eco.gif) no-repeat 50% 50%; +} +div.s_trax_ambient. { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_ambient.gif); +} +div.s_trax_ambient._pre { + background: url(/c_images/myhabbo/stickers/trax_ambient.gif) no-repeat 50% 50%; +} +div.s_trax_bling2 { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_bling2.gif); +} +div.s_trax_bling2_pre { + background: url(/c_images/myhabbo/stickers/trax_bling2.gif) no-repeat 50% 50%; +} +div.s_trax_bling2. { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_bling2.gif); +} +div.s_trax_bling2._pre { + background: url(/c_images/myhabbo/stickers/trax_bling2.gif) no-repeat 50% 50%; +} +div.s_trax_electro. { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_electro.gif); +} +div.s_trax_electro._pre { + background: url(/c_images/myhabbo/stickers/trax_electro.gif) no-repeat 50% 50%; +} +div.s_trax_heavy. { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_heavy.gif); +} +div.s_trax_heavy._pre { + background: url(/c_images/myhabbo/stickers/trax_heavy.gif) no-repeat 50% 50%; +} +div.s_trax_latin. { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_latin.gif); +} +div.s_trax_latin._pre { + background: url(/c_images/myhabbo/stickers/trax_latin.gif) no-repeat 50% 50%; +} +div.s_trax_rock. { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_rock.gif); +} +div.s_trax_rock._pre { + background: url(/c_images/myhabbo/stickers/trax_rock.gif) no-repeat 50% 50%; +} +div.s_trax_sfx. { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_sfx.gif); +} +div.s_trax_sfx._pre { + background: url(/c_images/myhabbo/stickers/trax_sfx.gif) no-repeat 50% 50%; +} +div.s_cheese_badge { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/Cheese_BadgeSticker.gif); +} +div.s_cheese_badge_pre { + background: url(/c_images/myhabbo/stickers/Cheese_BadgeSticker.gif) no-repeat 50% 50%; +} +div.s_cheese_suit_sticker { + width: 154px; height: 155px; + background-image: url(/c_images/myhabbo/stickers/CheeseSuit.gif); +} +div.s_cheese_suit_sticker_pre { + background: url(/c_images/myhabbo/stickers/CheeseSuit.gif) no-repeat 50% 50%; +} +div.s_dagornot { + width: 158px; height: 95px; + background-image: url(/c_images/myhabbo/stickers/dagornot.gif); +} +div.s_dagornot_pre { + background: url(/c_images/myhabbo/stickers/dagornot.gif) no-repeat 50% 50%; +} +div.s_dagofhabbo_trophy { + width: 30px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/dagofhabbo_trophy.gif); +} +div.s_dagofhabbo_trophy_pre { + background: url(/c_images/myhabbo/stickers/dagofhabbo_trophy.gif) no-repeat 50% 50%; +} +div.s_sackcostume { + width: 57px; height: 57px; + background-image: url(/c_images/myhabbo/stickers/sackcostume_thumb.gif); +} +div.s_sackcostume_pre { + background: url(/c_images/myhabbo/stickers/sackcostume_thumb.gif) no-repeat 50% 50%; +} +div.s_veronicas { + width: 74px; height: 86px; + background-image: url(/c_images/myhabbo/stickers/Veronicas.gif); +} +div.s_veronicas_pre { + background: url(/c_images/myhabbo/stickers/Veronicas.gif) no-repeat 50% 50%; +} +div.s_hw_veronicas { + width: 74px; height: 86px; + background-image: url(/c_images/myhabbo/stickers/hw_Veronicas.gif); +} +div.s_hw_veronicas_pre { + background: url(/c_images/myhabbo/stickers/hw_Veronicas.gif) no-repeat 50% 50%; +} +div.s_sticker_teensberg { + width: 295px; height: 183px; + background-image: url(/c_images/myhabbo/stickers/sticker_teensberg.gif); +} +div.s_sticker_teensberg_pre { + background: url(/c_images/myhabbo/stickers/sticker_teensberg.gif) no-repeat 50% 50%; +} +div.s_teensberg { + width: 295px; height: 183px; + background-image: url(/c_images/myhabbo/stickers/teensberg.gif); +} +div.s_teensberg_pre { + background: url(/c_images/myhabbo/stickers/teensberg.gif) no-repeat 50% 50%; +} +div.s_greenpeace { + width: 141px; height: 24px; + background-image: url(/c_images/myhabbo/stickers/greenpeace.gif); +} +div.s_greenpeace_pre { + background: url(/c_images/myhabbo/stickers/greenpeace.gif) no-repeat 50% 50%; +} +div.s_au_3rdbday_01 { + width: 142px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/AU_3rdBday_01.gif); +} +div.s_au_3rdbday_01_pre { + background: url(/c_images/myhabbo/stickers/AU_3rdBday_01.gif) no-repeat 50% 50%; +} +div.s_au_3rdbday_02 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/AU_3rdBday_02.gif); +} +div.s_au_3rdbday_02_pre { + background: url(/c_images/myhabbo/stickers/AU_3rdBday_02.gif) no-repeat 50% 50%; +} +div.s_au_3rdbday_03 { + width: 144px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/AU_3rdBday_03.gif); +} +div.s_au_3rdbday_03_pre { + background: url(/c_images/myhabbo/stickers/AU_3rdBday_03.gif) no-repeat 50% 50%; +} +div.s_saferinternet2008 { + width: 139px; height: 130px; + background-image: url(/c_images/myhabbo/stickers/SaferInternet2008.gif); +} +div.s_saferinternet2008_pre { + background: url(/c_images/myhabbo/stickers/SaferInternet2008.gif) no-repeat 50% 50%; +} +div.s_summer_rollerblades { + width: 32px; height: 23px; + background-image: url(/c_images/myhabbo/stickers/summer_rollerblades.gif); +} +div.s_edito_fisherman_bait { + width: 58px; height: 42px; + background-image: url(/c_images/myhabbo/stickers/edito_fisherman_bait.gif); +} +div.s_edito_fisherman_bait_pre { + background: url(/c_images/myhabbo/stickers/edito_fisherman_bait.gif) no-repeat 50% 50%; +} +div.s_sofresh { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/SoFresh.gif); +} +div.s_sofresh_pre { + background: url(/c_images/myhabbo/stickers/SoFresh.gif) no-repeat 50% 50%; +} +div.s_sticker_alhambralogo { + width: 260px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/sticker_alhambralogo.gif); +} +div.s_sticker_alhambralogo_pre { + background: url(/c_images/myhabbo/stickers/sticker_alhambralogo.gif) no-repeat 50% 50%; +} +div.s_acma_kidsgroup { + width: 233px; height: 277px; + background-image: url(/c_images/myhabbo/stickers/ACMA_KidsGroup.png); +} +div.s_acma_kidsgroup_pre { + background: url(/c_images/myhabbo/stickers/ACMA_KidsGroup.png) no-repeat 50% 50%; +} +div.s_acma_logo { + width: 322px; height: 95px; + background-image: url(/c_images/myhabbo/stickers/ACMA_Logo.png); +} +div.s_acma_logo_pre { + background: url(/c_images/myhabbo/stickers/ACMA_Logo.png) no-repeat 50% 50%; +} +div.s_acma_purplegirl { + width: 133px; height: 261px; + background-image: url(/c_images/myhabbo/stickers/ACMA_PurpleGirl.png); +} +div.s_acma_purplegirl_pre { + background: url(/c_images/myhabbo/stickers/ACMA_PurpleGirl.png) no-repeat 50% 50%; +} +div.s_acma_notepad_bg_lge { + width: 493px; height: 389px; + background-image: url(/c_images/myhabbo/stickers/ACMA_Notepad_bg_lge.gif); +} +div.s_acma_notepad_bg_lge_pre { + background: url(/c_images/myhabbo/stickers/ACMA_Notepad_bg_lge.gif) no-repeat 50% 50%; +} +div.s_acma_kidsgroup_v2 { + width: 234px; height: 280px; + background-image: url(/c_images/myhabbo/stickers/ACMA_KidsGroup_v2.gif); +} +div.s_acma_kidsgroup_v2_pre { + background: url(/c_images/myhabbo/stickers/ACMA_KidsGroup_v2.gif) no-repeat 50% 50%; +} +div.s_acma_logo_v2 { + width: 325px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/ACMA_Logo_v2.gif); +} +div.s_acma_logo_v2_pre { + background: url(/c_images/myhabbo/stickers/ACMA_Logo_v2.gif) no-repeat 50% 50%; +} +div.s_acma_purplegirl_v2 { + width: 137px; height: 267px; + background-image: url(/c_images/myhabbo/stickers/ACMA_PurpleGirl_v2.gif); +} +div.s_acma_purplegirl_v2_pre { + background: url(/c_images/myhabbo/stickers/ACMA_PurpleGirl_v2.gif) no-repeat 50% 50%; +} +div.s_poppy { + width: 50px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/britishlegion.gif); +} +div.s_poppy_pre { + background: url(/c_images/myhabbo/stickers/britishlegion.gif) no-repeat 50% 50%; +} +div.s_rts stciker { + width: 160px; height: 165px; + background-image: url(/c_images/myhabbo/stickers/RTS_Sticker_v1.gif); +} +div.s_rts stciker_pre { + background: url(/c_images/myhabbo/stickers/RTS_Sticker_v1.gif) no-repeat 50% 50%; +} +div.s_rts sticker { + width: 160px; height: 165px; + background-image: url(/c_images/myhabbo/stickers/RTS_Sticker_v1.gif); +} +div.s_rts sticker_pre { + background: url(/c_images/myhabbo/stickers/RTS_Sticker_v1.gif) no-repeat 50% 50%; +} +div.s_rts_sticker_v1 { + width: 160px; height: 165px; + background-image: url(/c_images/myhabbo/stickers/RTS_Sticker_v1.gif); +} +div.s_rts_sticker_v1_pre { + background: url(/c_images/myhabbo/stickers/RTS_Sticker_v1.gif) no-repeat 50% 50%; +} +div.s_pirates_captain { + width: 86px; height: 112px; + background-image: url(/c_images/myhabbo/stickers/Pirates_Captain.gif); +} +div.s_pirates_captain_pre { + background: url(/c_images/myhabbo/stickers/Pirates_Captain.gif) no-repeat 50% 50%; +} +div.s_pirates_cutlass { + width: 80px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/Pirates_Cutlass.gif); +} +div.s_pirates_cutlass_pre { + background: url(/c_images/myhabbo/stickers/Pirates_Cutlass.gif) no-repeat 50% 50%; +} +div.s_pirates_dude01 { + width: 33px; height: 83px; + background-image: url(/c_images/myhabbo/stickers/Pirates_Dude01.gif); +} +div.s_pirates_dude01_pre { + background: url(/c_images/myhabbo/stickers/Pirates_Dude01.gif) no-repeat 50% 50%; +} +div.s_pirates_dude02 { + width: 66px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/Pirates_Dude02.gif); +} +div.s_pirates_dude02_pre { + background: url(/c_images/myhabbo/stickers/Pirates_Dude02.gif) no-repeat 50% 50%; +} +div.s_pirates_flag { + width: 120px; height: 90px; + background-image: url(/c_images/myhabbo/stickers/Pirates_Flag.gif); +} +div.s_pirates_flag_pre { + background: url(/c_images/myhabbo/stickers/Pirates_Flag.gif) no-repeat 50% 50%; +} +div.s_pirates_treasure01 { + width: 90px; height: 103px; + background-image: url(/c_images/myhabbo/stickers/Pirates_Treasure01.gif); +} +div.s_pirates_treasure01_pre { + background: url(/c_images/myhabbo/stickers/Pirates_Treasure01.gif) no-repeat 50% 50%; +} +div.s_pirates_treasure02 { + width: 92px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/Pirates_Treasure02.gif); +} +div.s_pirates_treasure02_pre { + background: url(/c_images/myhabbo/stickers/Pirates_Treasure02.gif) no-repeat 50% 50%; +} +div.s_pirates_scroll { + width: 72px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/Pirates_scroll.gif); +} +div.s_pirates_scroll_pre { + background: url(/c_images/myhabbo/stickers/Pirates_scroll.gif) no-repeat 50% 50%; +} +div.s_island { + width: 146px; height: 191px; + background-image: url(/c_images/myhabbo/stickers/island.gif); +} +div.s_island_pre { + background: url(/c_images/myhabbo/stickers/island.gif) no-repeat 50% 50%; +} +div.s_kir_bam_sticker { + width: 171px; height: 366px; + background-image: url(/c_images/myhabbo/stickers/KIR_Bam_Sticker.gif); +} +div.s_kir_bam_sticker_pre { + background: url(/c_images/myhabbo/stickers/KIR_Bam_Sticker.gif) no-repeat 50% 50%; +} +div.s_kir_elkah_sticker { + width: 154px; height: 366px; + background-image: url(/c_images/myhabbo/stickers/KIR_Elkah_Sticker.gif); +} +div.s_kir_elkah_sticker_pre { + background: url(/c_images/myhabbo/stickers/KIR_Elkah_Sticker.gif) no-repeat 50% 50%; +} +div.s_kir_foz_sticker { + width: 152px; height: 366px; + background-image: url(/c_images/myhabbo/stickers/KIR_Foz_Sticker.gif); +} +div.s_kir_foz_sticker_pre { + background: url(/c_images/myhabbo/stickers/KIR_Foz_Sticker.gif) no-repeat 50% 50%; +} +div.s_kir_fushi_sticker { + width: 134px; height: 366px; + background-image: url(/c_images/myhabbo/stickers/KIR_Fushi_Sticker.gif); +} +div.s_kir_fushi_sticker_pre { + background: url(/c_images/myhabbo/stickers/KIR_Fushi_Sticker.gif) no-repeat 50% 50%; +} +div.s_kir_yobbo_sticker { + width: 133px; height: 366px; + background-image: url(/c_images/myhabbo/stickers/KIR_Yobbo_Sticker.gif); +} +div.s_kir_yobbo_sticker_pre { + background: url(/c_images/myhabbo/stickers/KIR_Yobbo_Sticker.gif) no-repeat 50% 50%; +} +div.s_kip_partnerbtn { + width: 112px; height: 126px; + background-image: url(/c_images/myhabbo/stickers/KIP_PartnerBtn.gif); +} +div.s_kip_partnerbtn_pre { + background: url(/c_images/myhabbo/stickers/KIP_PartnerBtn.gif) no-repeat 50% 50%; +} +div.s_kfp_sticker_01 { + width: 189px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/KFP_Sticker_01.gif); +} +div.s_kfp_sticker_01_pre { + background: url(/c_images/myhabbo/stickers/KFP_Sticker_01.gif) no-repeat 50% 50%; +} +div.s_kfp_sticker_02 { + width: 189px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/KFP_Sticker_02.gif); +} +div.s_kfp_sticker_02_pre { + background: url(/c_images/myhabbo/stickers/KFP_Sticker_02.gif) no-repeat 50% 50%; +} +div.s_kfp_sticker_03 { + width: 189px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/KFP_Sticker_03.gif); +} +div.s_kfp_sticker_03_pre { + background: url(/c_images/myhabbo/stickers/KFP_Sticker_03.gif) no-repeat 50% 50%; +} +div.s_kfp_sticker_04 { + width: 189px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/KFP_Sticker_04.gif); +} +div.s_kfp_sticker_04_pre { + background: url(/c_images/myhabbo/stickers/KFP_Sticker_04.gif) no-repeat 50% 50%; +} +div.s_kfp_sticker_05 { + width: 189px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/KFP_Sticker_05.gif); +} +div.s_kfp_sticker_05_pre { + background: url(/c_images/myhabbo/stickers/KFP_Sticker_05.gif) no-repeat 50% 50%; +} +div.s_kfp_sticker_06 { + width: 189px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/KFP_Sticker_06.gif); +} +div.s_kfp_sticker_06_pre { + background: url(/c_images/myhabbo/stickers/KFP_Sticker_06.gif) no-repeat 50% 50%; +} +div.s_kfp_sticker_07 { + width: 189px; height: 179px; + background-image: url(/c_images/myhabbo/stickers/KFP_Sticker_07.gif); +} +div.s_kfp_sticker_07_pre { + background: url(/c_images/myhabbo/stickers/KFP_Sticker_07.gif) no-repeat 50% 50%; +} +div.s_kir_winner_01 { + width: 74px; height: 140px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_01.gif); +} +div.s_kir_winner_01_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_01.gif) no-repeat 50% 50%; +} +div.s_kir_winner_02 { + width: 73px; height: 141px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_02.gif); +} +div.s_kir_winner_02_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_02.gif) no-repeat 50% 50%; +} +div.s_kir_winner_03 { + width: 73px; height: 140px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_03.gif); +} +div.s_kir_winner_03_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_03.gif) no-repeat 50% 50%; +} +div.s_kir_winner_04 { + width: 71px; height: 141px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_04.gif); +} +div.s_kir_winner_04_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_04.gif) no-repeat 50% 50%; +} +div.s_kir_winner_05 { + width: 70px; height: 141px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_05.gif); +} +div.s_kir_winner_05_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_05.gif) no-repeat 50% 50%; +} +div.s_kir_winner_06 { + width: 70px; height: 140px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_06.gif); +} +div.s_kir_winner_06_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_06.gif) no-repeat 50% 50%; +} +div.s_kir_winner_07 { + width: 74px; height: 140px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_07.gif); +} +div.s_kir_winner_07_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_07.gif) no-repeat 50% 50%; +} +div.s_kir_winner_08 { + width: 71px; height: 140px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_08.gif); +} +div.s_kir_winner_08_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_08.gif) no-repeat 50% 50%; +} +div.s_kir_winner_11 { + width: 74px; height: 141px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_11.gif); +} +div.s_kir_winner_11_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_11.gif) no-repeat 50% 50%; +} +div.s_kir_winner_09 { + width: 72px; height: 140px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_09.gif); +} +div.s_kir_winner_09_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_09.gif) no-repeat 50% 50%; +} +div.s_kir_winner_10 { + width: 72px; height: 141px; + background-image: url(/c_images/myhabbo/stickers/KIR_Winner_10.gif); +} +div.s_kir_winner_10_pre { + background: url(/c_images/myhabbo/stickers/KIR_Winner_10.gif) no-repeat 50% 50%; +} +div.s_sticker_rotw { + width: 110px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/sticker_rotw.gif); +} +div.s_sticker_rotw_pre { + background: url(/c_images/myhabbo/stickers/sticker_rotw.gif) no-repeat 50% 50%; +} +div.s_bankscan { + width: 58px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/bankscan.gif); +} +div.s_bankscan_pre { + background: url(/c_images/myhabbo/stickers/bankscan.gif) no-repeat 50% 50%; +} +div.s_sticker_cloudtiki_l { + width: 93px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/sticker_cloudTiki_L.gif); +} +div.s_sticker_cloudtiki_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_cloudTiki_L.gif) no-repeat 50% 50%; +} +div.s_sticker_cloudtiki_r { + width: 93px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/sticker_cloudTiki_R.gif); +} +div.s_sticker_cloudtiki_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_cloudTiki_R.gif) no-repeat 50% 50%; +} +div.s_sticker_planttiki_l { + width: 99px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/sticker_plantTiki_L.gif); +} +div.s_sticker_planttiki_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_plantTiki_L.gif) no-repeat 50% 50%; +} +div.s_sticker_planttiki_r { + width: 99px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/sticker_plantTiki_R.gif); +} +div.s_sticker_planttiki_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_plantTiki_R.gif) no-repeat 50% 50%; +} +div.s_sticker_skulltiki_l { + width: 76px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/sticker_skullTiki_L.gif); +} +div.s_sticker_skulltiki_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_skullTiki_L.gif) no-repeat 50% 50%; +} +div.s_sticker_skulltiki_r { + width: 76px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/sticker_skullTiki_R.gif); +} +div.s_sticker_skulltiki_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_skullTiki_R.gif) no-repeat 50% 50%; +} +div.s_sticker_watertiki_l { + width: 76px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/sticker_waterTiki_L.gif); +} +div.s_sticker_watertiki_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_waterTiki_L.gif) no-repeat 50% 50%; +} +div.s_sticker_watertiki_r { + width: 76px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/sticker_waterTiki_R.gif); +} +div.s_sticker_watertiki_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_waterTiki_R.gif) no-repeat 50% 50%; +} +div.s_sticker_woodboard { + width: 39px; height: 193px; + background-image: url(/c_images/myhabbo/stickers/sticker_woodBoard.gif); +} +div.s_veronicas_v2 { + width: 74px; height: 86px; + background-image: url(/c_images/myhabbo/stickers/Veronicas_v2.gif); +} +div.s_veronicas_v2_pre { + background: url(/c_images/myhabbo/stickers/Veronicas_v2.gif) no-repeat 50% 50%; +} +div.s_sticker_goblin1_l { + width: 167px; height: 157px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin1_L.gif); +} +div.s_sticker_goblin1_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin1_L.gif) no-repeat 50% 50%; +} +div.s_sticker_goblin1_r { + width: 167px; height: 157px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin1_R.gif); +} +div.s_sticker_goblin1_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin1_R.gif) no-repeat 50% 50%; +} +div.s_sticker_goblin2_l { + width: 166px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin2_L.gif); +} +div.s_sticker_goblin2_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin2_L.gif) no-repeat 50% 50%; +} +div.s_sticker_goblin2_r { + width: 166px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin2_R.gif); +} +div.s_sticker_goblin2_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin2_R.gif) no-repeat 50% 50%; +} +div.s_sticker_goblin_anim_l { + width: 176px; height: 162px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin_anim_L.gif); +} +div.s_sticker_goblin_anim_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin_anim_L.gif) no-repeat 50% 50%; +} +div.s_sticker_goblin_anim_r { + width: 176px; height: 162px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin_anim_R.gif); +} +div.s_sticker_goblin_anim_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Goblin_anim_R.gif) no-repeat 50% 50%; +} +div.s_sticker_griffin_l { + width: 528px; height: 216px; + background-image: url(/c_images/myhabbo/stickers/sticker_Griffin_L.gif); +} +div.s_sticker_griffin_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Griffin_L.gif) no-repeat 50% 50%; +} +div.s_sticker_griffin_r { + width: 528px; height: 216px; + background-image: url(/c_images/myhabbo/stickers/sticker_Griffin_R.gif); +} +div.s_sticker_griffin_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Griffin_R.gif) no-repeat 50% 50%; +} +div.s_sticker_sprite1_l { + width: 236px; height: 184px; + background-image: url(/c_images/myhabbo/stickers/sticker_Sprite1_L.gif); +} +div.s_sticker_sprite1_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Sprite1_L.gif) no-repeat 50% 50%; +} +div.s_sticker_sprite1_r { + width: 236px; height: 184px; + background-image: url(/c_images/myhabbo/stickers/sticker_Sprite1_R.gif); +} +div.s_sticker_sprite1_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Sprite1_R.gif) no-repeat 50% 50%; +} +div.s_sticker_sprite2_l { + width: 256px; height: 195px; + background-image: url(/c_images/myhabbo/stickers/sticker_Sprite2_L.gif); +} +div.s_sticker_sprite2_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_Sprite2_L.gif) no-repeat 50% 50%; +} +div.s_sticker_sprite2_r { + width: 256px; height: 195px; + background-image: url(/c_images/myhabbo/stickers/sticker_Sprite2_R.gif); +} +div.s_sticker_sprite2_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_Sprite2_R.gif) no-repeat 50% 50%; +} +div.s_sticker_toadstools_l { + width: 97px; height: 66px; + background-image: url(/c_images/myhabbo/stickers/sticker_toadStools_L.gif); +} +div.s_sticker_toadstools_l_pre { + background: url(/c_images/myhabbo/stickers/sticker_toadStools_L.gif) no-repeat 50% 50%; +} +div.s_sticker_toadstools_r { + width: 97px; height: 66px; + background-image: url(/c_images/myhabbo/stickers/sticker_toadStools_R.gif); +} +div.s_sticker_toadstools_r_pre { + background: url(/c_images/myhabbo/stickers/sticker_toadStools_R.gif) no-repeat 50% 50%; +} +div.b_trax_bling. { + background-image: url(/c_images/myhabbo/backgrounds2/trax_bling.gif); +} +div.b_trax_bling._pre { + background-image: url(/c_images/myhabbo/backgrounds2/trax_bling.gif); +} +div.b_xmas_box_darkred { + background-image: url(/c_images/myhabbo/backgrounds2/TEST4); +} +div.b_xmas_box_darkred_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_box_darkred.gif); +} +div.b_cheesewedge_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/CheeseWedge_wallpaper.gif); +} +div.b_cheesewedge_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CheeseWedge_wallpaper.gif); +} +div.b_cheese_suit { + background-image: url(/c_images/myhabbo/backgrounds2/cheeseSuit.gif); +} +div.b_cheese_suit_pre { + background-image: url(/c_images/myhabbo/backgrounds2/cheeseSuit.gif); +} +div.b_camo_cheese_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/CamoCheese_wallpaper.gif); +} +div.b_camo_cheese_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CamoCheese_wallpaper.gif); +} +div.b_bg_habboween { + background-image: url(/c_images/myhabbo/backgrounds2/habboween_bg.gif); +} +div.b_bg_habboween_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habboween_bg.gif); +} +div.b_bg_voiceofteens { + background-image: url(/c_images/myhabbo/backgrounds2/voiceofteens.gif); +} +div.b_bg_voiceofteens_pre { + background-image: url(/c_images/myhabbo/backgrounds2/voiceofteens.gif); +} +div.b_allhabbos_group { + background-image: url(/c_images/myhabbo/backgrounds2/allhabbos_group.png); +} +div.b_allhabbos_group_pre { + background-image: url(/c_images/myhabbo/backgrounds2/allhabbos_group.png); +} +div.b_vip_group.png { + background-image: url(/c_images/myhabbo/backgrounds2/Vip_Group); +} +div.b_vip_group.png_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Vip_Group.png); +} +div.b_grungewall { + background-image: url(/c_images/myhabbo/backgrounds2/grungewall.gif); +} +div.b_grungewall_pre { + background-image: url(/c_images/myhabbo/backgrounds2/grungewall.gif); +} +div.b_habborellabg { + background-image: url(/c_images/myhabbo/backgrounds2/habborellabg.gif); +} +div.b_habborellabg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habborellabg.gif); +} +div.b_safetyweek2008 { + background-image: url(/c_images/myhabbo/backgrounds2/SafetyWeek2008.gif); +} +div.b_safetyweek2008_pre { + background-image: url(/c_images/myhabbo/backgrounds2/SafetyWeek2008.gif); +} +div.b_safetyweek2008_b { + background-image: url(/c_images/myhabbo/backgrounds2/SafetyWeek2008_b.gif); +} +div.b_safetyweek2008_b_pre { + background-image: url(/c_images/myhabbo/backgrounds2/SafetyWeek2008_b.gif); +} +div.b_simpleplan_bg.gif { + background-image: url(/c_images/myhabbo/backgrounds2/SimplePlan_bg); +} +div.b_simpleplan_bg.gif_pre { + background-image: url(/c_images/myhabbo/backgrounds2/SimplePlan_bg.gif); +} +div.b_simpleplan_bg { + background-image: url(/c_images/myhabbo/backgrounds2/SimplePlan_bg.gif); +} +div.b_simpleplan_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/SimplePlan_bg.gif); +} +div.b_sofresh_bg { + background-image: url(/c_images/myhabbo/backgrounds2/SoFresh_bg.jpg); +} +div.b_sofresh_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/SoFresh_bg.jpg); +} +div.b_au_rocktheschools_bg { + background-image: url(/c_images/myhabbo/backgrounds2/AU_RockTheSchools_BG.gif); +} +div.b_au_rocktheschools_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/AU_RockTheSchools_BG.gif); +} +div.b_acma_cork_bg { + background-image: url(/c_images/myhabbo/backgrounds2/ACMA_Cork_bg.gif); +} +div.b_acma_cork_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/ACMA_Cork_bg.gif); +} +div.b_au_rocktheschools_bg_v2 { + background-image: url(/c_images/myhabbo/backgrounds2/AU_RockTheSchools_BG_v2.gif); +} +div.b_au_rocktheschools_bg_v2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/AU_RockTheSchools_BG_v2.gif); +} +div.b_cn_mgpam_bg { + background-image: url(/c_images/myhabbo/backgrounds2/CN_MGPAM_bg.jpg); +} +div.b_cn_mgpam_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CN_MGPAM_bg.jpg); +} +div.b_kir_grouppage_bg { + background-image: url(/c_images/myhabbo/backgrounds2/KIR_GroupPage_bg.gif); +} +div.b_kir_grouppage_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/KIR_GroupPage_bg.gif); +} +div.b_cn_mgpam_bg_v2 { + background-image: url(/c_images/myhabbo/backgrounds2/CN_MGPAM_bg_v2.jpg); +} +div.b_cn_mgpam_bg_v2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CN_MGPAM_bg_v2.jpg); +} +div.b_cn_mgpam_bg_v3 { + background-image: url(/c_images/myhabbo/backgrounds2/CN_MGPAM_bg_v3.jpg); +} +div.b_cn_mgpam_bg_v3_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CN_MGPAM_bg_v3.jpg); +} +div.b_kfp_grouppage_bg { + background-image: url(/c_images/myhabbo/backgrounds2/KFP_GroupPage_bg.jpg); +} +div.b_kfp_grouppage_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/KFP_GroupPage_bg.jpg); +} +div.b_summer_bg_optimal { + background-image: url(/c_images/myhabbo/backgrounds2/summer_bg_optimal.png); +} +div.b_summer_bg_optimal_pre { + background-image: url(/c_images/myhabbo/backgrounds2/summer_bg_optimal.png); +} +div.b_gyroscope_grouppage_bg_v1 { + background-image: url(/c_images/myhabbo/backgrounds2/Gyroscope_GroupPage_bg_v1.gif); +} +div.b_gyroscope_grouppage_bg_v1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Gyroscope_GroupPage_bg_v1.gif); +} +div.b_gyroscope_grouppage_bg_v2 { + background-image: url(/c_images/myhabbo/backgrounds2/Gyroscope_GroupPage_bg_v2.gif); +} +div.b_gyroscope_grouppage_bg_v2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Gyroscope_GroupPage_bg_v2.gif); +} +div.b_au_iflyvampwasp_bg_v1 { + background-image: url(/c_images/myhabbo/backgrounds2/AU_IFlyVampWasp_bg_v1.gif); +} +div.b_au_iflyvampwasp_bg_v1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/AU_IFlyVampWasp_bg_v1.gif); +} +div.b_au_iflyvampwasp_bg_v2 { + background-image: url(/c_images/myhabbo/backgrounds2/AU_IFlyVampWasp_bg_v2.gif); +} +div.b_au_iflyvampwasp_bg_v2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/AU_IFlyVampWasp_bg_v2.gif); +} +div.b_wallpaper4 { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper4.jpg); +} +div.b_wallpaper4_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper4.jpg); +} +div.b_au_spiderwick_bg { + background-image: url(/c_images/myhabbo/backgrounds2/AU_Spiderwick_bg.jpg); +} +div.b_au_spiderwick_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/AU_Spiderwick_bg.jpg); +} +div.s_hw lapanen_blue { + width: 53px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/lapanen_blue.gif); +} +div.s_hw lapanen_blue_pre { + background: url(/c_images/myhabbo/stickers/lapanen_blue.gif) no-repeat 50% 50%; +} +div.s_grosse boule de neige { + width: 60px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/snowball_bumpy.gif); +} +div.s_grosse boule de neige_pre { + background: url(/c_images/myhabbo/stickers/snowball_bumpy.gif) no-repeat 50% 50%; +} +div.s_boule de neige { + width: 40px; height: 40px; + background-image: url(/c_images/myhabbo/stickers/snowball.gif); +} +div.s_boule de neige_pre { + background: url(/c_images/myhabbo/stickers/snowball.gif) no-repeat 50% 50%; +} +div.s_bottes bleu { + width: 32px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/ss_bootsitjalapaset_blue.gif); +} +div.s_bottes bleu_pre { + background: url(/c_images/myhabbo/stickers/ss_bootsitjalapaset_blue.gif) no-repeat 50% 50%; +} +div.s_impacts de neige { + width: 35px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/ss_hits_by_snowball.gif); +} +div.s_impacts de neige_pre { + background: url(/c_images/myhabbo/stickers/ss_hits_by_snowball.gif) no-repeat 50% 50%; +} +div.s_sapin enneigé { + width: 56px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/ss_snowtree.gif); +} +div.s_sapin enneigé_pre { + background: url(/c_images/myhabbo/stickers/ss_snowtree.gif) no-repeat 50% 50%; +} +div.s_petite boule { + width: 20px; height: 20px; + background-image: url(/c_images/myhabbo/stickers/extra_ss_snowball.gif); +} +div.s_petite boule_pre { + background: url(/c_images/myhabbo/stickers/extra_ss_snowball.gif) no-repeat 50% 50%; +} +div.s_canard glacé { + width: 23px; height: 29px; + background-image: url(/c_images/myhabbo/stickers/extra_ss_duck_right.gif); +} +div.s_canard glacé_pre { + background: url(/c_images/myhabbo/stickers/extra_ss_duck_right.gif) no-repeat 50% 50%; +} +div.s_cube de glace { + width: 58px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/icecube_big.gif); +} +div.s_cube de glace_pre { + background: url(/c_images/myhabbo/stickers/icecube_big.gif) no-repeat 50% 50%; +} +div.s_cny_hypnodragon_anim { + width: 101px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/CNY_HypnoDragon_anim.gif); +} +div.s_cny_hypnodragon_anim_pre { + background: url(/c_images/myhabbo/stickers/CNY_HypnoDragon_anim.gif) no-repeat 50% 50%; +} +div.s_cny_dogchinesecharacter { + width: 40px; height: 40px; + background-image: url(/c_images/myhabbo/stickers/cny_dogchinesecharacter.gif); +} +div.s_cny_dogchinesecharacter_pre { + background: url(/c_images/myhabbo/stickers/cny_dogchinesecharacter.gif) no-repeat 50% 50%; +} +div.s_ss_costume_blue { + width: 35px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/ss_costume_blue.gif); +} +div.s_edito_petit_tas_lingots { + width: 63px; height: 61px; + background-image: url(/c_images/myhabbo/stickers/edito_petit_tas_lingots.gif); +} +div.s_edito_petit_tas_lingots_pre { + background: url(/c_images/myhabbo/stickers/edito_petit_tas_lingots.gif) no-repeat 50% 50%; +} +div.s_sticker_monolithe { + width: 106px; height: 180px; + background-image: url(/c_images/myhabbo/stickers/sticker_monolithe.gif); +} +div.s_sticker_monolithe_pre { + background: url(/c_images/myhabbo/stickers/sticker_monolithe.gif) no-repeat 50% 50%; +} +div.s_anti_eco_pre { + background: url(/c_images/myhabbo/stickers/anti_eco.gif) no-repeat 50% 50%; +} +div.s_shell { + width: 150px; height: 131px; + background-image: url(/c_images/myhabbo/stickers/shell.gif); +} +div.s_seagull_01 { + width: 23px; height: 29px; + background-image: url(/c_images/myhabbo/stickers/seagull_01.gif); +} +div.s_seagull_01_pre { + background: url(/c_images/myhabbo/stickers/seagull_01.gif) no-repeat 50% 50%; +} +div.s_seagull_02 { + width: 23px; height: 29px; + background-image: url(/c_images/myhabbo/stickers/seagull_02.gif); +} +div.s_seagull_02_pre { + background: url(/c_images/myhabbo/stickers/seagull_02.gif) no-repeat 50% 50%; +} +div.s_habbo_island { + width: 146px; height: 191px; + background-image: url(/c_images/myhabbo/stickers/habbo_island.gif); +} +div.s_habbo_island_pre { + background: url(/c_images/myhabbo/stickers/habbo_island.gif) no-repeat 50% 50%; +} +div.s_xmas_box_lime_2 { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_lime.gif); +} +div.s_xmas_box_lime_2_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_lime.gif) no-repeat 50% 50%; +} +div.s_dk_bobbacurse_2 { + width: 640px; height: 425px; + background-image: url(/c_images/myhabbo/stickers/dk_bobbacurse_2.gif); +} +div.s_dk_bobbacurse_2_pre { + background: url(/c_images/myhabbo/stickers/dk_bobbacurse_2.gif) no-repeat 50% 50%; +} +div.s_grunge_polaroid_1 { + width: 175px; height: 162px; + background-image: url(/c_images/myhabbo/stickers/grunge_polaroid_1.gif); +} +div.s_grunge_polaroid_1_pre { + background: url(/c_images/myhabbo/stickers/grunge_polaroid_1.gif) no-repeat 50% 50%; +} +div.s_grunge_polaroid_2 { + width: 175px; height: 162px; + background-image: url(/c_images/myhabbo/stickers/grunge_polaroid_2.gif); +} +div.s_grunge_polaroid_2_pre { + background: url(/c_images/myhabbo/stickers/grunge_polaroid_2.gif) no-repeat 50% 50%; +} +div.s_grunge_polaroid_3 { + width: 175px; height: 162px; + background-image: url(/c_images/myhabbo/stickers/grunge_polaroid_3.gif); +} +div.s_grunge_polaroid_3_pre { + background: url(/c_images/myhabbo/stickers/grunge_polaroid_3.gif) no-repeat 50% 50%; +} +div.s_grunge_polaroid_4 { + width: 175px; height: 162px; + background-image: url(/c_images/myhabbo/stickers/grunge_polaroid_4.gif); +} +div.s_grunge_polaroid_4_pre { + background: url(/c_images/myhabbo/stickers/grunge_polaroid_4.gif) no-repeat 50% 50%; +} +div.s_grunge_polaroid_5 { + width: 175px; height: 162px; + background-image: url(/c_images/myhabbo/stickers/grunge_polaroid_5.gif); +} +div.s_grunge_polaroid_5_pre { + background: url(/c_images/myhabbo/stickers/grunge_polaroid_5.gif) no-repeat 50% 50%; +} +div.s_banksbobby { + width: 74px; height: 249px; + background-image: url(/c_images/myhabbo/stickers/banksbobby.gif); +} +div.s_banksbobby_pre { + background: url(/c_images/myhabbo/stickers/banksbobby.gif) no-repeat 50% 50%; +} +div.s_banksdoor { + width: 133px; height: 220px; + background-image: url(/c_images/myhabbo/stickers/banksdoor.gif); +} +div.s_banksdoor_pre { + background: url(/c_images/myhabbo/stickers/banksdoor.gif) no-repeat 50% 50%; +} +div.s_banksheater { + width: 104px; height: 167px; + background-image: url(/c_images/myhabbo/stickers/banksheater.gif); +} +div.s_banksheater_pre { + background: url(/c_images/myhabbo/stickers/banksheater.gif) no-repeat 50% 50%; +} +div.s_logo_hm_ok_png { + width: 146px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/sticker_spaceduck.gif); +} +div.s_logo_hm_ok_png_pre { + background: url(/c_images/myhabbo/stickers/sticker_spaceduck.gif) no-repeat 50% 50%; +} +div.s_gplogo_white { + width: 137px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/gplogo_white.png); +} +div.s_gplogo_white_pre { + background: url(/c_images/myhabbo/stickers/gplogo_white.png) no-repeat 50% 50%; +} +div.s_greenpeacewhite.png { + width: 137px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/greenpeacewhite.png); +} +div.s_greenpeacewhite.png_pre { + background: url(/c_images/myhabbo/stickers/greenpeacewhite.png) no-repeat 50% 50%; +} +div.s_teensbear.gif { + width: 143px; height: 148px; + background-image: url(/c_images/myhabbo/stickers/teensbear.gif); +} +div.s_teensbear.gif_pre { + background: url(/c_images/myhabbo/stickers/teensbear.gif) no-repeat 50% 50%; +} +div.s_vip_pin { + width: 55px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/Vip_pin.png); +} +div.s_vip_pin_pre { + background: url(/c_images/myhabbo/stickers/Vip_pin.png) no-repeat 50% 50%; +} +div.s_thesafetybox { + width: 252px; height: 254px; + background-image: url(/c_images/myhabbo/stickers/thesafetybox.gif); +} +div.s_thesafetybox_pre { + background: url(/c_images/myhabbo/stickers/thesafetybox.gif) no-repeat 50% 50%; +} +div.s_sticker_tour { + width: 146px; height: 122px; + background-image: url(/c_images/myhabbo/stickers/Sticker_tour.png); +} +div.s_sticker_tour_pre { + background: url(/c_images/myhabbo/stickers/Sticker_tour.png) no-repeat 50% 50%; +} +div.s_ns_logo { + width: 136px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/ns_logo.gif); +} +div.s_ns_logo_pre { + background: url(/c_images/myhabbo/stickers/ns_logo.gif) no-repeat 50% 50%; +} +div.s_ns_stage { + width: 121px; height: 128px; + background-image: url(/c_images/myhabbo/stickers/ns_stage.gif); +} +div.s_ns_stage_pre { + background: url(/c_images/myhabbo/stickers/ns_stage.gif) no-repeat 50% 50%; +} +div.s_ns_jury { + width: 181px; height: 133px; + background-image: url(/c_images/myhabbo/stickers/ns_jury.gif); +} +div.s_ns_jury_pre { + background: url(/c_images/myhabbo/stickers/ns_jury.gif) no-repeat 50% 50%; +} +div.s_sticker_toadstools_l_001 { + width: 97px; height: 66px; + background-image: url(/c_images/myhabbo/stickers/sticker_toadStools_L_001.gif); +} +div.s_sticker_toadstools_l_001_pre { + background: url(/c_images/myhabbo/stickers/sticker_toadStools_L_001.gif) no-repeat 50% 50%; +} +div.s_sticker_goblin_anim_r { + width: 176px; height: 152px; + background-image: url(/c_images/myhabbo/stickers/sticker_Goblin_anim_R.gif); +} +div.s_elegant_bling { + width: 80px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/elegant_bling.gif); +} +div.s_elegant_bling_pre { + background: url(/c_images/myhabbo/stickers/elegant_bling.gif) no-repeat 50% 50%; +} +div.s_traxrecord_sticker { + width: 175px; height: 188px; + background-image: url(/c_images/myhabbo/stickers/traxRecord_sticker.gif); +} +div.s_traxrecord_sticker_pre { + background: url(/c_images/myhabbo/stickers/traxRecord_sticker.gif) no-repeat 50% 50%; +} +div.s_anim_appart_732 { + width: 150px; height: 239px; + background-image: url(/c_images/myhabbo/stickers/anim_appart_732.gif); +} +div.s_anim_appart_732_pre { + background: url(/c_images/myhabbo/stickers/anim_appart_732.gif) no-repeat 50% 50%; +} +div.s_anim_boule_cristal { + width: 42px; height: 55px; + background-image: url(/c_images/myhabbo/stickers/anim_boule_cristal.gif); +} +div.s_anim_boule_cristal_pre { + background: url(/c_images/myhabbo/stickers/anim_boule_cristal.gif) no-repeat 50% 50%; +} +div.s_anim_enseigne { + width: 121px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/anim_enseigne.gif); +} +div.s_anim_enseigne_pre { + background: url(/c_images/myhabbo/stickers/anim_enseigne.gif) no-repeat 50% 50%; +} +div.s_anim_oeil { + width: 9px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/anim_oeil.gif); +} +div.s_anim_oeil_pre { + background: url(/c_images/myhabbo/stickers/anim_oeil.gif) no-repeat 50% 50%; +} +div.s_anim_ventilo { + width: 66px; height: 103px; + background-image: url(/c_images/myhabbo/stickers/anim_ventilo.gif); +} +div.s_anim_ventilo_pre { + background: url(/c_images/myhabbo/stickers/anim_ventilo.gif) no-repeat 50% 50%; +} +div.s_kitune_fighting.png { + width: 43px; height: 88px; + background-image: url(/c_images/myhabbo/stickers/kitune_fighting.png); +} +div.s_kitune_fighting.png_pre { + background: url(/c_images/myhabbo/stickers/kitune_fighting.png) no-repeat 50% 50%; +} +div.s_maguro.png { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/maguro.png); +} +div.s_maguro.png_pre { + background: url(/c_images/myhabbo/stickers/maguro.png) no-repeat 50% 50%; +} +div.s_kohada.png { + width: 66px; height: 52px; + background-image: url(/c_images/myhabbo/stickers/kohada.png); +} +div.s_kohada.png_pre { + background: url(/c_images/myhabbo/stickers/kohada.png) no-repeat 50% 50%; +} +div.s_ikura.png { + width: 66px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/ikura.png); +} +div.s_ikura.png_pre { + background: url(/c_images/myhabbo/stickers/ikura.png) no-repeat 50% 50%; +} +div.s_ketupat { + width: 79px; height: 78px; + background-image: url(/c_images/myhabbo/stickers/Ketupat.gif); +} +div.s_ketupat_pre { + background: url(/c_images/myhabbo/stickers/Ketupat.gif) no-repeat 50% 50%; +} +div.s_durian2 { + width: 131px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/Durian2.gif); +} +div.s_durian2_pre { + background: url(/c_images/myhabbo/stickers/Durian2.gif) no-repeat 50% 50%; +} +div.s_chocolates2 { + width: 112px; height: 68px; + background-image: url(/c_images/myhabbo/stickers/Chocolates2.gif); +} +div.s_chocolates2_pre { + background: url(/c_images/myhabbo/stickers/Chocolates2.gif) no-repeat 50% 50%; +} +div.s_sticker_cloudtiki_r.gif { + width: 93px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/sticker_cloudTiki_R); +} +div.s_sticker_cloudtiki_r.gif_pre { + background: url(/c_images/myhabbo/stickers/sticker_cloudTiki_R.gif) no-repeat 50% 50%; +} +div.s_sticker_watertiki_l.gif { + width: 76px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/sticker_waterTiki_R.gif); +} +div.s_sticker_watertiki_l.gif_pre { + background: url(/c_images/myhabbo/stickers/sticker_waterTiki_R.gif) no-repeat 50% 50%; +} +div.b_xmas_box_lime { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_box_lime.gif); +} +div.b_xmas_box_lime_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_box_lime.gif); +} +div.b_27419_appart732_scene { + background-image: url(/c_images/myhabbo/backgrounds2/27419_appart732_scene.gif); +} +div.b_27419_appart732_scene_pre { + background-image: url(/c_images/myhabbo/backgrounds2/27419_appart732_scene.gif); +} +div.b_hannah_montana_background { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_white.gif); +} +div.b_hannah_montana_background_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Solid_BG_white.gif); +} +div.b_bg_kingcorp_928x1360_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_kingcorp_928x1360.gif); +} +div.b_bg_shabbolin { + background-image: url(/c_images/myhabbo/backgrounds2/bg_shabbolin.gif); +} +div.b_bg_shabbolin_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_shabbolin.gif); +} +div.b_background_tour { + background-image: url(/c_images/myhabbo/backgrounds2/Background_tour.jpg); +} +div.b_background_tour_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Background_tour.jpg); +} +div.b_bg_background_ef { + background-image: url(/c_images/myhabbo/backgrounds2/background_EF.jpg); +} +div.b_bg_background_ef_pre { + background-image: url(/c_images/myhabbo/backgrounds2/background_EF.jpg); +} +div.b_nsfrance { + background-image: url(/c_images/myhabbo/backgrounds2/nsfrance.gif); +} +div.b_nsfrance_pre { + background-image: url(/c_images/myhabbo/backgrounds2/nsfrance.gif); +} +div.b_nsfrance2 { + background-image: url(/c_images/myhabbo/backgrounds2/nsfrance2.jpg); +} +div.b_nsfrance2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/nsfrance2.jpg); +} +div.b_fr_spiderwick { + background-image: url(/c_images/myhabbo/backgrounds2/FR_Spiderwick.jpg); +} +div.b_fr_spiderwick_pre { + background-image: url(/c_images/myhabbo/backgrounds2/FR_Spiderwick.jpg); +} +div.b_bg_sexy_dance_2_group_opt2 { + background-image: url(/c_images/myhabbo/backgrounds2/Sexy_Dance_2_Group_opt2.jpg); +} +div.b_bg_sexy_dance_2_group_opt2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Sexy_Dance_2_Group_opt2.jpg); +} +div.b_bg_27372_spi_jap_petit_03 { + background-image: url(/c_images/myhabbo/backgrounds2/27372_SPI_JAP_PETIT_03.jpg); +} +div.b_bg_27372_spi_jap_petit_03_pre { + background-image: url(/c_images/myhabbo/backgrounds2/27372_SPI_JAP_PETIT_03.jpg); +} +div.b_bg_official_fansites2 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_official_fansites2.gif); +} +div.b_bg_official_fansites2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_official_fansites2.gif); +} +div.b_27419_appart732_scene { + background-image: url(/c_images/myhabbo/backgrounds2/27419_appart732_scene.gif); +} +div.b_27419_appart732_scene_pre { + background-image: url(/c_images/myhabbo/backgrounds2/27419_appart732_scene.gif); +} +div.b_bg_comic_sisters { + background-image: url(/c_images/myhabbo/backgrounds2/comic_sisters.gif); +} +div.b_bg_comic_sisters_pre { + background-image: url(/c_images/myhabbo/backgrounds2/comic_sisters.gif); +} +div.b_comic_style { + background-image: url(/c_images/myhabbo/backgrounds2/Comic_style.gif); +} +div.b_comic_style_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Comic_style.gif); +} +div.b_28182_hmf_917x1360_principale { + background-image: url(/c_images/myhabbo/backgrounds2/28182_HMF_917x1360_principale.gif); +} +div.b_28182_hmf_917x1360_principale_pre { + background-image: url(/c_images/myhabbo/backgrounds2/28182_HMF_917x1360_principale.gif); +} +div.b_28184_hmf_917x1360_principale_b { + background-image: url(/c_images/myhabbo/backgrounds2/28184_HMF_917x1360_principale_B.gif); +} +div.b_28184_hmf_917x1360_principale_b_pre { + background-image: url(/c_images/myhabbo/backgrounds2/28184_HMF_917x1360_principale_B.gif); +} +div.b_28183_hmf_917x1360_dediee { + background-image: url(/c_images/myhabbo/backgrounds2/28183_HMF_917x1360_dediee.gif); +} +div.b_28183_hmf_917x1360_dediee_pre { + background-image: url(/c_images/myhabbo/backgrounds2/28183_HMF_917x1360_dediee.gif); +} +div.b_28221_comic_style_orange { + background-image: url(/c_images/myhabbo/backgrounds2/28221_Comic_style_orange.gif); +} +div.b_28221_comic_style_orange_pre { + background-image: url(/c_images/myhabbo/backgrounds2/28221_Comic_style_orange.gif); +} +div.b_hmf_928x1360_principale { + background-image: url(/c_images/myhabbo/backgrounds2/HMF_928x1360_principale.gif); +} +div.b_hmf_928x1360_principale_pre { + background-image: url(/c_images/myhabbo/backgrounds2/HMF_928x1360_principale.gif); +} +div.b_bg_madball_2008_bg_001 { + background-image: url(/c_images/myhabbo/backgrounds2/madball_2008_bg_001.png); +} +div.b_bg_madball_2008_bg_001_pre { + background-image: url(/c_images/myhabbo/backgrounds2/madball_2008_bg_001.png); +} +div.b_bg_28221_comic_style_orange_001 { + background-image: url(/c_images/myhabbo/backgrounds2/28221_Comic_style_orange_001.gif); +} +div.b_bg_28221_comic_style_orange_001_pre { + background-image: url(/c_images/myhabbo/backgrounds2/28221_Comic_style_orange_001.gif); +} +div.b_wallepixar_bg { + background-image: url(/c_images/myhabbo/backgrounds2/wallepixar_bg.jpg); +} +div.b_wallepixar_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallepixar_bg.jpg); +} +div.b_background_momie3_928x1360 { + background-image: url(/c_images/myhabbo/backgrounds2/background_momie3_928x1360.jpg); +} +div.b_background_momie3_928x1360_pre { + background-image: url(/c_images/myhabbo/backgrounds2/background_momie3_928x1360.jpg); +} +div.b_guitarhero { + background-image: url(/c_images/myhabbo/backgrounds2/guitarhero.jpg); +} +div.b_guitarhero_pre { + background-image: url(/c_images/myhabbo/backgrounds2/guitarhero.jpg); +} +div.s_starburst { + width: 163px; height: 188px; + background-image: url(/c_images/myhabbo/stickers/starburst.gif); +} +div.s_starburst_pre { + background: url(/c_images/myhabbo/stickers/starburst.gif) no-repeat 50% 50%; +} +div.s_fieldberries { + width: 177px; height: 184px; + background-image: url(/c_images/myhabbo/stickers/fieldberries.gif); +} +div.s_fieldberries_pre { + background: url(/c_images/myhabbo/stickers/fieldberries.gif) no-repeat 50% 50%; +} +div.s_3years_ca { + width: 119px; height: 133px; + background-image: url(/c_images/myhabbo/stickers/3years_ca.gif); +} +div.s_3years_ca_pre { + background: url(/c_images/myhabbo/stickers/3years_ca.gif) no-repeat 50% 50%; +} +div.s_featured group { + width: 211px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/featuredgroup.gif); +} +div.s_featured group_pre { + background: url(/c_images/myhabbo/stickers/featuredgroup.gif) no-repeat 50% 50%; +} +div.s_featuredgroup { + width: 211px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/featuredgroup.gif); +} +div.s_featuredgroup_pre { + background: url(/c_images/myhabbo/stickers/featuredgroup.gif) no-repeat 50% 50%; +} +div.s_gaur.gif { + width: 149px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/gaur.gif); +} +div.s_gaur.gif_pre { + background: url(/c_images/myhabbo/stickers/gaur.gif) no-repeat 50% 50%; +} +div.s_gaur { + width: 160px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/gaur.gif); +} +div.s_gaur_pre { + background: url(/c_images/myhabbo/stickers/gaur.gif) no-repeat 50% 50%; +} +div.s_gaursticker3 { + width: 149px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/gaursticker3.gif); +} +div.s_gaursticker3_pre { + background: url(/c_images/myhabbo/stickers/gaursticker3.gif) no-repeat 50% 50%; +} +div.s_habbobynightsticker { + width: 216px; height: 74px; + background-image: url(/c_images/myhabbo/stickers/habbobynightsticker.gif); +} +div.s_habbobynightsticker_pre { + background: url(/c_images/myhabbo/stickers/habbobynightsticker.gif) no-repeat 50% 50%; +} +div.s_guard1 { + width: 33px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/guard1.gif); +} +div.s_guard1_pre { + background: url(/c_images/myhabbo/stickers/guard1.gif) no-repeat 50% 50%; +} +div.s_guard2 { + width: 30px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/guard2.gif); +} +div.s_guard2_pre { + background: url(/c_images/myhabbo/stickers/guard2.gif) no-repeat 50% 50%; +} +div.s_ogopogo1 { + width: 200px; height: 108px; + background-image: url(/c_images/myhabbo/stickers/ogopogo1.gif); +} +div.s_ogopogo1_pre { + background: url(/c_images/myhabbo/stickers/ogopogo1.gif) no-repeat 50% 50%; +} +div.s_kir_stamp3 { + width: 156px; height: 156px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp3.gif); +} +div.s_kir_stamp3_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp3.gif) no-repeat 50% 50%; +} +div.s_kir_stamp4 { + width: 156px; height: 156px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp4.gif); +} +div.s_kir_stamp4_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp4.gif) no-repeat 50% 50%; +} +div.s_gravesticker { + width: 242px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/gravesticker.gif); +} +div.s_gravesticker_pre { + background: url(/c_images/myhabbo/stickers/gravesticker.gif) no-repeat 50% 50%; +} +div.s_gravesticker2 { + width: 243px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/gravesticker2.gif); +} +div.s_gravesticker2_pre { + background: url(/c_images/myhabbo/stickers/gravesticker2.gif) no-repeat 50% 50%; +} +div.s_linnsticker { + width: 330px; height: 110px; + background-image: url(/c_images/myhabbo/stickers/linnsticker.gif); +} +div.s_linnsticker_pre { + background: url(/c_images/myhabbo/stickers/linnsticker.gif) no-repeat 50% 50%; +} +div.s_globalw_tstories_oldweb { + width: 425px; height: 178px; + background-image: url(/c_images/myhabbo/stickers/GlobalW_sticker_001.gif); +} +div.s_globalw_tstories_oldweb_pre { + background: url(/c_images/myhabbo/stickers/) no-repeat 50% 50%; +} +div.s_ratv2 { + width: 169px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/Ratv2.gif); +} +div.s_ratv2_pre { + background: url(/c_images/myhabbo/stickers/Ratv2.gif) no-repeat 50% 50%; +} +div.s_leapday { + width: 106px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/leapDay.gif); +} +div.s_leapday_pre { + background: url(/c_images/myhabbo/stickers/leapDay.gif) no-repeat 50% 50%; +} +div.s_sasquatch_hands { + width: 70px; height: 108px; + background-image: url(/c_images/myhabbo/stickers/sasquatch_hands.gif); +} +div.s_sasquatch_hands_pre { + background: url(/c_images/myhabbo/stickers/sasquatch_hands.gif) no-repeat 50% 50%; +} +div.s_oldfence_right { + width: 174px; height: 171px; + background-image: url(/c_images/myhabbo/stickers/oldfence_right.gif); +} +div.s_oldfence_right_pre { + background: url(/c_images/myhabbo/stickers/oldfence_right.gif) no-repeat 50% 50%; +} +div.s_oldfence_left { + width: 174px; height: 171px; + background-image: url(/c_images/myhabbo/stickers/oldfence_left.gif); +} +div.s_oldfence_left_pre { + background: url(/c_images/myhabbo/stickers/oldfence_left.gif) no-repeat 50% 50%; +} +div.s_shrubbery { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/shrubbery.gif); +} +div.s_shrubbery_pre { + background: url(/c_images/myhabbo/stickers/shrubbery.gif) no-repeat 50% 50%; +} +div.s_treestump { + width: 141px; height: 94px; + background-image: url(/c_images/myhabbo/stickers/treestump.gif); +} +div.s_treestump_pre { + background: url(/c_images/myhabbo/stickers/treestump.gif) no-repeat 50% 50%; +} +div.s_tree_owl { + width: 143px; height: 274px; + background-image: url(/c_images/myhabbo/stickers/tree_owl.gif); +} +div.s_tree_owl_pre { + background: url(/c_images/myhabbo/stickers/tree_owl.gif) no-repeat 50% 50%; +} +div.s_sasquatch7 { + width: 140px; height: 175px; + background-image: url(/c_images/myhabbo/stickers/sasquatch7.gif); +} +div.s_sasquatch7_pre { + background: url(/c_images/myhabbo/stickers/sasquatch7.gif) no-repeat 50% 50%; +} +div.s_sticker_iheartfools { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_IHeartFools.gif); +} +div.s_sticker_iheartfools_pre { + background: url(/c_images/myhabbo/stickers/sticker_IHeartFools.gif) no-repeat 50% 50%; +} +div.s_sticker_cais4 { + width: 120px; height: 218px; + background-image: url(/c_images/myhabbo/stickers/sticker_CAis4.gif); +} +div.s_sticker_cais4_pre { + background: url(/c_images/myhabbo/stickers/sticker_CAis4.gif) no-repeat 50% 50%; +} +div.s_ca_hockeygoalie2 { + width: 168px; height: 124px; + background-image: url(/c_images/myhabbo/stickers/CA_hockeygoalie2.gif); +} +div.s_ca_hockeygoalie2_pre { + background: url(/c_images/myhabbo/stickers/CA_hockeygoalie2.gif) no-repeat 50% 50%; +} +div.s_bluehockeystick { + width: 42px; height: 79px; + background-image: url(/c_images/myhabbo/stickers/bluehockeystick.gif); +} +div.s_bluehockeystick_pre { + background: url(/c_images/myhabbo/stickers/bluehockeystick.gif) no-repeat 50% 50%; +} +div.s_stanleycupsticker { + width: 42px; height: 91px; + background-image: url(/c_images/myhabbo/stickers/stanleycupsticker.gif); +} +div.s_stanleycupsticker_pre { + background: url(/c_images/myhabbo/stickers/stanleycupsticker.gif) no-repeat 50% 50%; +} +div.s_redhockeystick { + width: 42px; height: 79px; + background-image: url(/c_images/myhabbo/stickers/redhockeystick.gif); +} +div.s_redhockeystick_pre { + background: url(/c_images/myhabbo/stickers/redhockeystick.gif) no-repeat 50% 50%; +} +div.s_hockeyref { + width: 47px; height: 88px; + background-image: url(/c_images/myhabbo/stickers/hockeyref.gif); +} +div.s_hockeyref_pre { + background: url(/c_images/myhabbo/stickers/hockeyref.gif) no-repeat 50% 50%; +} +div.s_hockey_habbo { + width: 250px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/hockey_habbo.gif); +} +div.s_hockey_habbo_pre { + background: url(/c_images/myhabbo/stickers/hockey_habbo.gif) no-repeat 50% 50%; +} +div.s_greenhockeystick { + width: 42px; height: 79px; + background-image: url(/c_images/myhabbo/stickers/greenhockeystick.gif); +} +div.s_greenhockeystick_pre { + background: url(/c_images/myhabbo/stickers/greenhockeystick.gif) no-repeat 50% 50%; +} +div.s_featuredgroup_sticker { + width: 211px; height: 72px; + background-image: url(/c_images/myhabbo/stickers/featuredgroup_sticker.gif); +} +div.s_featuredgroup_sticker_pre { + background: url(/c_images/myhabbo/stickers/featuredgroup_sticker.gif) no-repeat 50% 50%; +} +div.s_sticker_cabin { + width: 176px; height: 127px; + background-image: url(/c_images/myhabbo/stickers/sticker_cabin.gif); +} +div.s_sticker_cabin_pre { + background: url(/c_images/myhabbo/stickers/sticker_cabin.gif) no-repeat 50% 50%; +} +div.s_bullybuster { + width: 112px; height: 178px; + background-image: url(/c_images/myhabbo/stickers/bullybuster.gif); +} +div.s_bullybuster_pre { + background: url(/c_images/myhabbo/stickers/bullybuster.gif) no-repeat 50% 50%; +} +div.s_sticker_caballoons { + width: 120px; height: 218px; + background-image: url(/c_images/myhabbo/stickers/sticker_caBalloons.gif); +} +div.s_sticker_caballoons_pre { + background: url(/c_images/myhabbo/stickers/sticker_caBalloons.gif) no-repeat 50% 50%; +} +div.b_bg_pattern_floral_test { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_floral_01.gif); +} +div.b_bg_pattern_floral_test_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_pattern_floral_01.gif); +} +div.b_bg_starburst_raspberry { + background-image: url(/c_images/myhabbo/backgrounds2/bg_starburst_raspberry.gif); +} +div.b_bg_starburst_raspberry_pre { + background-image: url(/c_images/myhabbo/backgrounds2/starburst_raspberry.gif); +} +div.b_starburst raspberry { + background-image: url(/c_images/myhabbo/backgrounds2/bg_starburst_raspberry.gif); +} +div.b_starburst raspberry_pre { + background-image: url(/c_images/myhabbo/backgrounds2/starburst_raspberry.gif); +} +div.b_test { + background-image: url(/c_images/myhabbo/backgrounds2/bg_starburst_raspberry.gif); +} +div.b_test_pre { + background-image: url(/c_images/myhabbo/backgrounds2/starburst_raspberry.gif); +} +div.b_hw_bassplayer_girl { + background-image: url(/c_images/myhabbo/backgrounds2/); +} +div.b_hw_bassplayer_girl_pre { + background-image: url(/c_images/myhabbo/backgrounds2/); +} +div.b_christmas2007bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/christmas2007bg); +} +div.b_wallpaper2 { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper2.gif); +} +div.b_wallpaper2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper2.gif); +} +div.b_hw around_the_world_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper2_001.gif); +} +div.b_hw around_the_world_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/); +} +div.b_aroundtheworld_bg { + background-image: url(/c_images/myhabbo/backgrounds2/aroundtheworld_bg.gif); +} +div.b_aroundtheworld_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/aroundtheworld_bg); +} +div.b_wallpaper1 { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper1.jpg); +} +div.b_wallpaper1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper1.jpg); +} +div.b_wallpaper2_001 { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper2_001.jpg); +} +div.b_wallpaper2_001_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper2_001.jpg); +} +div.b_wallpaper3 { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper3.jpg); +} +div.b_wallpaper3_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper3.jpg); +} +div.b_sasquatch_hhbg3 { + background-image: url(/c_images/myhabbo/backgrounds2/sasquatch_hhbg3.gif); +} +div.b_sasquatch_hhbg3_pre { + background-image: url(/c_images/myhabbo/backgrounds2/sasquatch_hhbg3.gif); +} +div.b_wallpaper_earthday { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_EarthDay.gif); +} +div.b_wallpaper_earthday_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_EarthDay.gif); +} +div.b_wallpaper_cais4 { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_CAis4.gif); +} +div.b_wallpaper_cais4_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_CAis4.gif); +} +div.b_wallpaper_bonsai { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_bonsai.png); +} +div.b_wallpaper_bonsai_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_bonsai.png); +} +div.b_wallpaper_newsiesca { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_NewsiesCA.gif); +} +div.b_wallpaper_newsiesca_pre { + background-image: url(/c_images/myhabbo/backgrounds2/wallpaper_NewsiesCA.gif); +} +div.s_xmas_angel_wings { + width: 50px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/xmas_angel_wings.gif); +} +div.s_xmas_angel_wings_pre { + background: url(/c_images/myhabbo/stickers/xmas_angel_wings.gif) no-repeat 50% 50%; +} +div.s_val_sticker_barbwire_horis_p { + width: 146px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_barbwire_horis.gif); +} +div.s_val_sticker_barbwire_horis_p_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_barbwire_horis.gif) no-repeat 50% 50%; +} +div.s_snowball_smooth_pre { + background: url(/c_images/myhabbo/stickers/snowball_smooth,gif) no-repeat 50% 50%; +} +div.s_icecube { + width: 30px; height: 28px; + background-image: url(/c_images/myhabbo/stickers/icecube_small.gif); +} +div.s_icecube_pre { + background: url(/c_images/myhabbo/stickers/icecube_small.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_horizontal1 { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif); +} +div.s_easter_eggs_horizontal1_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif) no-repeat 50% 50%; +} +div.s_durian { + width: 131px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/Durian2.gif); +} +div.s_durian_pre { + background: url(/c_images/myhabbo/stickers/Durian2.gif) no-repeat 50% 50%; +} +div.s_chocolates { + width: 112px; height: 68px; + background-image: url(/c_images/myhabbo/stickers/Chocolates2.gif); +} +div.s_chocolates_pre { + background: url(/c_images/myhabbo/stickers/Chocolates2.gif) no-repeat 50% 50%; +} +div.s_gold medallion { + width: 85px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/sticker_award_gold.gif); +} +div.s_gold medallion_pre { + background: url(/c_images/myhabbo/stickers/sticker_award_gold.gif) no-repeat 50% 50%; +} +div.s_silver medallion { + width: 85px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/sticker_award_silver.gif); +} +div.s_silver medallion_pre { + background: url(/c_images/myhabbo/stickers/sticker_award_silver.gif) no-repeat 50% 50%; +} +div.s_bronze medallion { + width: 85px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/sticker_award_bronze.gif); +} +div.s_bronze medallion_pre { + background: url(/c_images/myhabbo/stickers/sticker_award_bronze.gif) no-repeat 50% 50%; +} +div.s_samsung1 { + width: 71px; height: 126px; + background-image: url(/c_images/myhabbo/stickers/samsung1.gif); +} +div.s_samsung1_pre { + background: url(/c_images/myhabbo/stickers/samsung1.gif) no-repeat 50% 50%; +} +div.s_samsung3 { + width: 71px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/samsung3.gif); +} +div.s_samsung3_pre { + background: url(/c_images/myhabbo/stickers/samsung3.gif) no-repeat 50% 50%; +} +div.s_samsung4 { + width: 71px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/samsung4.gif); +} +div.s_samsung4_pre { + background: url(/c_images/myhabbo/stickers/samsung4.gif) no-repeat 50% 50%; +} +div.s_samsung5 { + width: 71px; height: 119px; + background-image: url(/c_images/myhabbo/stickers/samsung5.gif); +} +div.s_samsung5_pre { + background: url(/c_images/myhabbo/stickers/samsung5.gif) no-repeat 50% 50%; +} +div.s_samsung2 { + width: 71px; height: 122px; + background-image: url(/c_images/myhabbo/stickers/samsung2.gif); +} +div.s_samsung2_pre { + background: url(/c_images/myhabbo/stickers/samsung2.gif) no-repeat 50% 50%; +} +div.s_mooncake_light { + width: 93px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/mooncake_light.gif); +} +div.s_mooncake_light_pre { + background: url(/c_images/myhabbo/stickers/mooncake_light.gif) no-repeat 50% 50%; +} +div.s_mooncake_dark { + width: 93px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/mooncake_dark.gif); +} +div.s_mooncake_dark_pre { + background: url(/c_images/myhabbo/stickers/mooncake_dark.gif) no-repeat 50% 50%; +} +div.s_jigoku_shojo_1 { + width: 125px; height: 148px; + background-image: url(/c_images/myhabbo/stickers/sticker_1.gif); +} +div.s_jigoku_shojo_1_pre { + background: url(/c_images/myhabbo/stickers/sticker_1.gif) no-repeat 50% 50%; +} +div.s_jigoku_shojo_2 { + width: 64px; height: 148px; + background-image: url(/c_images/myhabbo/stickers/sticker_2.gif); +} +div.s_jigoku_shojo_2_pre { + background: url(/c_images/myhabbo/stickers/sticker_2.gif) no-repeat 50% 50%; +} +div.s_lamp_1 { + width: 70px; height: 158px; + background-image: url(/c_images/myhabbo/stickers/lamp_single_1.gif); +} +div.s_lamp_1_pre { + background: url(/c_images/myhabbo/stickers/lamp_single_1.gif) no-repeat 50% 50%; +} +div.s_lamp_2 { + width: 70px; height: 158px; + background-image: url(/c_images/myhabbo/stickers/lamp_single_2.gif); +} +div.s_lamp_2_pre { + background: url(/c_images/myhabbo/stickers/lamp_single_2.gif) no-repeat 50% 50%; +} +div.s_lamp_3 { + width: 70px; height: 158px; + background-image: url(/c_images/myhabbo/stickers/lamp_single_3.gif); +} +div.s_lamp_3_pre { + background: url(/c_images/myhabbo/stickers/lamp_single_3.gif) no-repeat 50% 50%; +} +div.s_lamp_4 { + width: 70px; height: 158px; + background-image: url(/c_images/myhabbo/stickers/lamp_single_4.gif); +} +div.s_lamp_4_pre { + background: url(/c_images/myhabbo/stickers/lamp_single_4.gif) no-repeat 50% 50%; +} +div.s_lamp_group { + width: 146px; height: 171px; + background-image: url(/c_images/myhabbo/stickers/lamp_group.gif); +} +div.s_lamp_group_pre { + background: url(/c_images/myhabbo/stickers/lamp_group.gif) no-repeat 50% 50%; +} +div.s_greenpeace { + width: 141px; height: 24px; + background-image: url(/c_images/myhabbo/stickers/greenpeace.png); +} +div.s_greenpeace_pre { + background: url(/c_images/myhabbo/stickers/greenpeace.png) no-repeat 50% 50%; +} +div.s_habborella_logo { + width: 200px; height: 45px; + background-image: url(/c_images/myhabbo/stickers/habborella_logo.gif); +} +div.s_cheshirecat { + width: 38px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/Cheshirecat.gif); +} +div.s_cheshirecat_pre { + background: url(/c_images/myhabbo/stickers/Cheshirecat.gif) no-repeat 50% 50%; +} +div.s_doelee { + width: 33px; height: 84px; + background-image: url(/c_images/myhabbo/stickers/doelee.gif); +} +div.s_doelee_pre { + background: url(/c_images/myhabbo/stickers/doelee.gif) no-repeat 50% 50%; +} +div.s_pretzel { + width: 39px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/Pretzel.gif); +} +div.s_pretzel_pre { + background: url(/c_images/myhabbo/stickers/Pretzel.gif) no-repeat 50% 50%; +} +div.s_kir-stamp1 { + width: 156px; height: 156px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp1.gif); +} +div.s_kir-stamp1_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp1.gif) no-repeat 50% 50%; +} +div.s_kir_stamp3 { + width: 156px; height: 156px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp3b.gif); +} +div.s_kir_stamp3_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp3b.gif) no-repeat 50% 50%; +} +div.s_kir_stamp6_002 { + width: 176px; height: 117px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp6_002.gif); +} +div.s_kir_stamp6_002_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp6_002.gif) no-repeat 50% 50%; +} +div.s_angel_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Angel_146X146.gif); +} +div.s_angel_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Angel_146X146.gif) no-repeat 50% 50%; +} +div.s_beachgirl_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_BeachGirl_146X146.gif); +} +div.s_beachgirl_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_BeachGirl_146X146.gif) no-repeat 50% 50%; +} +div.s_businesswoman_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Businesswoman_146X146.gif); +} +div.s_businesswoman_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Businesswoman_146X146.gif) no-repeat 50% 50%; +} +div.s_cheerleader_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Cheerleader_146X146.gif); +} +div.s_cheerleader_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Cheerleader_146X146.gif) no-repeat 50% 50%; +} +div.s_ob_clubber_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Clubber_146X146.gif); +} +div.s_ob_clubber_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Clubber_146X146.gif) no-repeat 50% 50%; +} +div.s_ob_devil_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Devil_146X146.gif); +} +div.s_ob_devil_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Devil_146X146.gif) no-repeat 50% 50%; +} +div.s_ob_doctor_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Doctor_146X146.gif); +} +div.s_ob_doctor_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Doctor_146X146.gif) no-repeat 50% 50%; +} +div.s_ob_fairy_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Fairy_146X146.gif); +} +div.s_ob_fairy_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Fairy_146X146.gif) no-repeat 50% 50%; +} +div.s_ob_jetsetter_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Jetsetter_146X146.gif); +} +div.s_ob_jetsetter_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Jetsetter_146X146.gif) no-repeat 50% 50%; +} +div.s_ob_miss_universe_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Miss_Universe_146X146.gif); +} +div.s_ob_miss_universe_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Miss_Universe_146X146.gif) no-repeat 50% 50%; +} +div.s_ob_shopaholic_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Shopaholic_146X146.gif); +} +div.s_ob_shopaholic_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Shopaholic_146X146.gif) no-repeat 50% 50%; +} +div.s_ob_sporty_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/OB_Sporty_146X146.gif); +} +div.s_ob_sporty_146x146_pre { + background: url(/c_images/myhabbo/stickers/OB_Sporty_146X146.gif) no-repeat 50% 50%; +} +div.s_sg_mtv_sticker_01 { + width: 293px; height: 293px; + background-image: url(/c_images/myhabbo/stickers/SG_MTV_Sticker_01.gif); +} +div.s_sg_mtv_sticker_01_pre { + background: url(/c_images/myhabbo/stickers/SG_MTV_Sticker_01.gif) no-repeat 50% 50%; +} +div.s_sg_mtv_sticker_02 { + width: 293px; height: 293px; + background-image: url(/c_images/myhabbo/stickers/SG_MTV_Sticker_02.gif); +} +div.s_sg_mtv_sticker_02_pre { + background: url(/c_images/myhabbo/stickers/SG_MTV_Sticker_02.gif) no-repeat 50% 50%; +} +div.s_sg_mtv_sticker_03 { + width: 293px; height: 293px; + background-image: url(/c_images/myhabbo/stickers/SG_MTV_Sticker_03.gif); +} +div.s_sg_mtv_sticker_03_pre { + background: url(/c_images/myhabbo/stickers/SG_MTV_Sticker_03.gif) no-repeat 50% 50%; +} +div.b_bg_newyear { + background-image: url(/c_images/myhabbo/backgrounds2/bg_newyear.gif); +} +div.b_bg_newyear_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_newyear.gif); +} +div.b_newyear_bg_fireworks.gif { + background-image: url(/c_images/myhabbo/backgrounds2/newyear_bg_fireworks.gif); +} +div.b_newyear_bg_fireworks.gif_pre { + background-image: url(/c_images/myhabbo/backgrounds2/newyear_bg_fireworks.gif); +} +div.b_newyear_bg_fireworks_pre { + background-image: url(/c_images/myhabbo/backgrounds2/NewYear_bg_); +} +div.b_ss_bootsitjalapaset_red { + background-image: url(/c_images/myhabbo/backgrounds2/ss_bootsitjalapaset_red.gif); +} +div.b_ss_bootsitjalapaset_red_pre { + background-image: url(/c_images/myhabbo/backgrounds2/ss_bootsitjalapaset_red.gif); +} +div.b_easter_eggs_horizontal { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_horizontal.gif); +} +div.b_easter_eggs_horizontal_pre { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_horizontal.gif); +} +div.b_easter_egg_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper.gif); +} +div.b_easter_egg_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper.gif); +} +div.b_samsungclouds { + background-image: url(/c_images/myhabbo/backgrounds2/samsungclouds.jpg); +} +div.b_samsungclouds_pre { + background-image: url(/c_images/myhabbo/backgrounds2/samsungclouds.jpg); +} +div.b_samsungnight { + background-image: url(/c_images/myhabbo/backgrounds2/samsungnight.jpg); +} +div.b_samsungnight_pre { + background-image: url(/c_images/myhabbo/backgrounds2/samsungnight.jpg); +} +div.b_scarecrowbg { + background-image: url(/c_images/myhabbo/backgrounds2/scarecrowbg.gif); +} +div.b_scarecrowbg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/scarecrowbg.gif); +} +div.b_slamdunk { + background-image: url(/c_images/myhabbo/backgrounds2/slamdunk.jpg); +} +div.b_slamdunk_pre { + background-image: url(/c_images/myhabbo/backgrounds2/slamdunk.jpg); +} +div.b_27857_gsok_928x1360 { + background-image: url(/c_images/myhabbo/backgrounds2/27857_gsok_928x1360.jpg); +} +div.b_27857_gsok_928x1360_pre { + background-image: url(/c_images/myhabbo/backgrounds2/27857_gsok_928x1360.jpg); +} +div.b_ob2 { + background-image: url(/c_images/myhabbo/backgrounds2/OB2.gif); +} +div.b_ob2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/OB2.gif); +} +div.b_ob1 { + background-image: url(/c_images/myhabbo/backgrounds2/OB1.gif); +} +div.b_ob1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/OB1.gif); +} +div.b_sg_mtv_grouppage_bg_v1 { + background-image: url(/c_images/myhabbo/backgrounds2/SG_MTV_GroupPage_bg_v1.jpg); +} +div.b_sg_mtv_grouppage_bg_v1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/SG_MTV_GroupPage_bg_v1.jpg); +} +div.b_sg_mtv_grouppage_bg_v2 { + background-image: url(/c_images/myhabbo/backgrounds2/SG_MTV_GroupPage_bg_v2.jpg); +} +div.b_sg_mtv_grouppage_bg_v2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/SG_MTV_GroupPage_bg_v2.jpg); +} +div.b_sg_animax_keroro { + background-image: url(/c_images/myhabbo/backgrounds2/animax_keroro.gif); +} +div.b_sg_animax_keroro_pre { + background-image: url(/c_images/myhabbo/backgrounds2/animax_keroro.gif); +} +div.b_tiki_firehead_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/tik_firehead_bg.png); +} +div.b_toolbar_bg { + background-image: url(/c_images/myhabbo/backgrounds2/toolbar_bg2.png); +} +div.b_toolbar_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/toolbar_bg2.png); +} +div.s_spotlight_sticker_2 { + width: 226px; height: 138px; + background-image: url(/c_images/myhabbo/stickers/spotlight_sticker2_001.gif); +} +div.s_spotlight_sticker_2_pre { + background: url(/c_images/myhabbo/stickers/spotlight_sticker2_001.gif) no-repeat 50% 50%; +} +div.s_spotlight_sticker { + width: 200px; height: 138px; + background-image: url(/c_images/myhabbo/stickers/spotlight_sticker_002.gif); +} +div.s_spotlight_sticker_pre { + background: url(/c_images/myhabbo/stickers/spotlight_sticker_002.gif) no-repeat 50% 50%; +} +div.s_fantasticfourlogo { + width: 136px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/fantasticfourlogo.gif); +} +div.s_fantasticfourlogo_pre { + background: url(/c_images/myhabbo/stickers/fantasticfourlogo.gif) no-repeat 50% 50%; +} +div.s_britishlegion { + width: 50px; height: 60px; + background-image: url(/c_images/myhabbo/stickers/britishlegion.gif); +} +div.s_britishlegion_pre { + background: url(/c_images/myhabbo/stickers/britishlegion.gif) no-repeat 50% 50%; +} +div.s_hw_edito_logo { + width: 146px; height: 91px; + background-image: url(/c_images/myhabbo/stickers/hw_edito_logo.gif); +} +div.s_hw_edito_logo_pre { + background: url(/c_images/myhabbo/stickers/hw_edito_logo.gif) no-repeat 50% 50%; +} +div.s_kir_stamp6_003 { + width: 176px; height: 117px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp6_003.gif); +} +div.s_kir_stamp6_003_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp6_003.gif) no-repeat 50% 50%; +} +div.s_orca_ideal_home { + width: 93px; height: 125px; + background-image: url(/c_images/myhabbo/stickers/orca_ideal_home.gif); +} +div.s_orca_ideal_home_pre { + background: url(/c_images/myhabbo/stickers/orca_ideal_home.gif) no-repeat 50% 50%; +} +div.s_sticker_themepark_003 { + width: 172px; height: 134px; + background-image: url(/c_images/myhabbo/stickers/sticker_themepark_003.gif); +} +div.s_sticker_themepark_003_pre { + background: url(/c_images/myhabbo/stickers/sticker_themepark_003.gif) no-repeat 50% 50%; +} +div.s_sticker_themepark_002 { + width: 134px; height: 194px; + background-image: url(/c_images/myhabbo/stickers/sticker_themepark_002.gif); +} +div.s_sticker_themepark_002_pre { + background: url(/c_images/myhabbo/stickers/sticker_themepark_002.gif) no-repeat 50% 50%; +} +div.s_27224_sticker_themepark_001 { + width: 218px; height: 120px; + background-image: url(/c_images/myhabbo/stickers/27224_sticker_themepark_001.gif); +} +div.s_27224_sticker_themepark_001_pre { + background: url(/c_images/myhabbo/stickers/27224_sticker_themepark_001.gif) no-repeat 50% 50%; +} +div.s_cheese_badgesticker { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/Cheese_BadgeSticker.gif); +} +div.s_cheese_badgesticker_pre { + background: url(/c_images/myhabbo/stickers/Cheese_BadgeSticker.gif) no-repeat 50% 50%; +} +div.s_uk_habbo_x_sticker { + width: 355px; height: 308px; + background-image: url(/c_images/myhabbo/stickers/uk_habbo_x_sticker.gif); +} +div.s_uk_habbo_x_sticker_pre { + background: url(/c_images/myhabbo/stickers/uk_habbo_x_sticker.gif) no-repeat 50% 50%; +} +div.b_fantasticfour { + background-image: url(/c_images/myhabbo/backgrounds2/fantasticfour.jpg); +} +div.b_fantasticfour_pre { + background-image: url(/c_images/myhabbo/backgrounds2/fantasticfour.jpg); +} +div.b_silversurfer { + background-image: url(/c_images/myhabbo/backgrounds2/silversurfer.jpg); +} +div.b_silversurfer_pre { + background-image: url(/c_images/myhabbo/backgrounds2/silversurfer.jpg); +} +div.b_fantastic4 { + background-image: url(/c_images/myhabbo/backgrounds2/fantastic4.jpg); +} +div.b_fantastic4_pre { + background-image: url(/c_images/myhabbo/backgrounds2/fantasticfour.jpg); +} +div.b_silversurfer2 { + background-image: url(/c_images/myhabbo/backgrounds2/silversurfer2.jpg); +} +div.b_silversurfer2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/silversurfer2.jpg); +} +div.b_fantastic42 { + background-image: url(/c_images/myhabbo/backgrounds2/fantastic42.jpg); +} +div.b_fantastic42_pre { + background-image: url(/c_images/myhabbo/backgrounds2/fantastic42.jpg); +} +div.b_fan43 { + background-image: url(/c_images/myhabbo/backgrounds2/fan43.jpg); +} +div.b_fan43_pre { + background-image: url(/c_images/myhabbo/backgrounds2/fan43.jpg); +} +div.b_kerrang2 { + background-image: url(/c_images/myhabbo/backgrounds2/kerrang2.png); +} +div.b_kerrang2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/kerrang2.png); +} +div.b_bg_kerrang2 { + background-image: url(/c_images/myhabbo/backgrounds2/kerrang2.png); +} +div.b_bg_kerrang2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/kerrang2.png); +} +div.b_sttriniansblackboard { + background-image: url(/c_images/myhabbo/backgrounds2/sttriniansblackboard.gif); +} +div.b_sttriniansblackboard_pre { + background-image: url(/c_images/myhabbo/backgrounds2/sttriniansblackboard.gif); +} +div.b_sttriniansgroup { + background-image: url(/c_images/myhabbo/backgrounds2/sttriniansgroup.gif); +} +div.b_sttriniansgroup_pre { + background-image: url(/c_images/myhabbo/backgrounds2/sttriniansgroup.gif); +} +div.b_orca { + background-image: url(/c_images/myhabbo/backgrounds2/orca.gif); +} +div.b_orca_pre { + background-image: url(/c_images/myhabbo/backgrounds2/orca.gif); +} +div.b_penelope { + background-image: url(/c_images/myhabbo/backgrounds2/penelope.png); +} +div.b_penelope_pre { + background-image: url(/c_images/myhabbo/backgrounds2/penelope.png); +} +div.b_ametrin { + background-image: url(/c_images/myhabbo/backgrounds2/ametrin.gif); +} +div.b_ametrin_pre { + background-image: url(/c_images/myhabbo/backgrounds2/ametrin.gif); +} +div.b_random_habbos { + background-image: url(/c_images/myhabbo/backgrounds2/random_habbos.gif); +} +div.b_random_habbos_pre { + background-image: url(/c_images/myhabbo/backgrounds2/random_habbos.gif); +} +div.b_bg_unofficial_fansites { + background-image: url(/c_images/myhabbo/backgrounds2/bg_unofficial_fansites.gif); +} +div.b_bg_unofficial_fansites_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_unofficial_fansites.gif); +} +div.b_themepark_bg_02 { + background-image: url(/c_images/myhabbo/backgrounds2/themepark_bg_02.gif); +} +div.b_habbo_social_game_001_opt { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_social_game_001_opt.gif); +} +div.b_habbo_social_game_001_opt_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_social_game_001_opt.gif); +} +div.b_meet_dave_groupbg_02 { + background-image: url(/c_images/myhabbo/backgrounds2/meet_dave_GroupBG_02.gif); +} +div.b_meet_dave_groupbg_02_pre { + background-image: url(/c_images/myhabbo/backgrounds2/meet_dave_GroupBG_02.gif); +} +div.b_meet_dave_groupbg_01 { + background-image: url(/c_images/myhabbo/backgrounds2/meet_dave_groupbg_01.jpg); +} +div.b_meet_dave_groupbg_01_pre { + background-image: url(/c_images/myhabbo/backgrounds2/meet_dave_groupbg_01.jpg); +} +div.b_10kbc_habbo_grouppage_bg_3b { + background-image: url(/c_images/myhabbo/backgrounds2/10KBC_Habbo_grouppage_bg_3b.jpg); +} +div.b_10kbc_habbo_grouppage_bg_3b_pre { + background-image: url(/c_images/myhabbo/backgrounds2/10KBC_Habbo_grouppage_bg_3b.jpg); +} +div.b_10kbc_habbo_grouppage_bg_2b { + background-image: url(/c_images/myhabbo/backgrounds2/10KBC_Habbo_grouppage_bg_2b.jpg); +} +div.b_10kbc_habbo_grouppage_bg_2b_pre { + background-image: url(/c_images/myhabbo/backgrounds2/10KBC_Habbo_grouppage_bg_2b.jpg); +} +div.b_landing_page_comp { + background-image: url(/c_images/myhabbo/backgrounds2/landing_page_COMP.jpg); +} +div.b_landing_page_comp_pre { + background-image: url(/c_images/myhabbo/backgrounds2/landing_page_COMP.jpg); +} +div.b_myspy_group { + background-image: url(/c_images/myhabbo/backgrounds2/myspy_group.gif); +} +div.b_myspy_group_pre { + background-image: url(/c_images/myhabbo/backgrounds2/myspy_group.gif); +} +div.b_cw_group_1.jpg { + background-image: url(/c_images/myhabbo/backgrounds2/CW_group_1.jpg); +} +div.b_cw_group_1.jpg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CW_group_1.jpg); +} +div.b_cw_group_2.jpg { + background-image: url(/c_images/myhabbo/backgrounds2/CW_group_2.jpg); +} +div.b_cw_group_2.jpg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CW_group_2.jpg); +} +div.b_cw_group_1 { + background-image: url(/c_images/myhabbo/backgrounds2/CW_group_1.jpg); +} +div.b_cw_group_1_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CW_group_1.jpg); +} +div.b_cw_group_2 { + background-image: url(/c_images/myhabbo/backgrounds2/CW_group_2.jpg); +} +div.b_cw_group_2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CW_group_2.jpg); +} +div.b_cw_poster { + background-image: url(/c_images/myhabbo/backgrounds2/CW_poster.jpg); +} +div.b_cw_poster_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CW_poster.jpg); +} + +div.w_highscoreswidget_pre { + background-image: url(/c_images/myhabbo/widgets/hiscores_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_profilewidget_pre { + background-image: url(/c_images/myhabbo/widgets/profilewidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_friendswidget_pre { + background-image: url(/c_images/myhabbo/widgets/friends_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_roomswidget_pre { + background-image: url(/c_images/myhabbo/widgets/rooms_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_guestbookwidget_pre { + background-image: url(/c_images/myhabbo/widgets/guestbook_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupinfowidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupinfowidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupswidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupswidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_memberwidget_pre { + background-image: url(/c_images/myhabbo/widgets/member_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_ratingwidget_pre { + background-image: url(/c_images/myhabbo/widgets/rating_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_traxplayerwidget_pre { + background-image: url(/c_images/myhabbo/widgets/trax_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_highscorelistwidget_pre { + background-image: url(/c_images/myhabbo/widgets/highscorelistwidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_userexpswidget_pre { + background-image: url(/c_images/myhabbo/widgets/hiscores_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_badgeswidget_pre { + background-image: url(/c_images/myhabbo/widgets/badges_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} + +div.commodity_stickienote_pre { + background-image: url(/c_images/myhabbo/stickies/note_thumbnail_store.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_hw xmas_cat_animated { + width: 30px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/xmas_cat_animated.gif); +} +div.s_hw xmas_cat_animated_pre { + background: url(/c_images/myhabbo/stickers/xmas_cat_animated.gif) no-repeat 50% 50%; +} +div.s_xmas_angel_wings { + width: 50px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/angelwings_anim.gif); +} +div.s_xmas_angel_wings_pre { + background: url(/c_images/myhabbo/stickers/angelwings_anim.gif) no-repeat 50% 50%; +} +div.s_xmas_boxs.gif { + width: 141px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/xmas_boxs.gif); +} +div.s_xmas_boxs.gif_pre { + background: url(/c_images/myhabbo/stickers/xmas_boxs.gif) no-repeat 50% 50%; +} +div.s_xmas_tree01_animated_thumb2 { + width: 60px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/xmas_tree01_animated_thumb2.gif); +} +div.s_xmas_tree01_animated_thumb2_pre { + background: url(/c_images/myhabbo/stickers/xmas_tree01_animated_thumb2.gif) no-repeat 50% 50%; +} +div.s_hw ss_snowqueen { + width: 38px; height: 82px; + background-image: url(/c_images/myhabbo/stickers/ss_snowqueen.gif); +} +div.s_hw ss_snowqueen_pre { + background: url(/c_images/myhabbo/stickers/ss_snowqueen.gif) no-repeat 50% 50%; +} +div.s_lapanen_purple_pre { + background: url(/c_images/myhabbo/stickers//lapanen_purple.gif) no-repeat 50% 50%; +} +div.s_stickers/goth_border_vertical { + width: 100px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/goth_border_vertical.gif); +} +div.s_stickers/goth_border_vertical_pre { + background: url(/c_images/myhabbo/stickers/goth_border_vertical.gif) no-repeat 50% 50%; +} +div.s_it_habbohome { + width: 38px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/it_habbohome.gif); +} +div.s_it_habbohome_pre { + background: url(/c_images/myhabbo/stickers/it_habbohome.gif) no-repeat 50% 50%; +} +div.s_ukonly_disarno_homes { + width: 0px; height: 0px; + background-image: url(/c_images/myhabbo/stickers/); +} +div.s_ukonly_disarno_homes_pre { + background: url(/c_images/myhabbo/stickers/) no-repeat 50% 50%; +} +div.s_habbohome_of_the_month { + width: 62px; height: 77px; + background-image: url(/c_images/myhabbo/stickers/habbohome_of_the_month.gif); +} +div.s_habbohome_of_the_month_pre { + background: url(/c_images/myhabbo/stickers/habbohome_of_the_month.gif) no-repeat 50% 50%; +} +div.s_sticker_masque_05 { + width: 33px; height: 27px; + background-image: url(/c_images/myhabbo/stickers/sticker_masque_05.gif); +} +div.s_sticker_masque_04 { + width: 33px; height: 27px; + background-image: url(/c_images/myhabbo/stickers/sticker_masque_04.gif); +} +div.s_sticker_masque_03 { + width: 33px; height: 27px; + background-image: url(/c_images/myhabbo/stickers/sticker_masque_03.gif); +} +div.s_valentertainer { + width: 49px; height: 99px; + background-image: url(/c_images/myhabbo/stickers/valentertainer.gif); +} +div.s_de_bday_4 { + width: 137px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/DE_BDay_4.gif); +} +div.s_de_bday_4_pre { + background: url(/c_images/myhabbo/stickers/DE_BDay_4.gif) no-repeat 50% 50%; +} +div.s_kir_stamp6 { + width: 176px; height: 117px; + background-image: url(/c_images/myhabbo/stickers/kir_stamp6.gif); +} +div.s_kir_stamp6_pre { + background: url(/c_images/myhabbo/stickers/kir_stamp6.gif) no-repeat 50% 50%; +} +div.b_xmas_tree01_animated { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_tree01_animated.gif); +} +div.b_xmas_tree01_animated_pre { + background-image: url(/c_images/myhabbo/backgrounds2/xmas_tree01_animated.gif); +} +div.b_ss_costume_blue { + background-image: url(/c_images/myhabbo/backgrounds2/ss_costume_blue.gif); +} +div.b_ss_costume_blue_pre { + background-image: url(/c_images/myhabbo/backgrounds2/ss_costume_blue.gif); +} +div.b_bg_fansites { + background-image: url(/c_images/myhabbo/backgrounds2/bg_fansites.gif); +} +div.b_bg_fansites_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_fansites.gif); +} +div.b_head_guides_germany { + background-image: url(/c_images/myhabbo/backgrounds2/Head_Guides_Germany.png); +} +div.b_head_guides_germany_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Head_Guides_Germany.png); +} +div.s_xmas_box_darkred { + width: 65px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_darkred.gif); +} +div.s_hw gothic_draculacape { + width: 62px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/HW GOTHIC_DRACULACAPE); +} +div.s_hw gothic_draculacape_pre { + background: url(/c_images/myhabbo/stickers/gothic_draculacape.gif) no-repeat 50% 50%; +} +div.s_gothic_scienceplatformm { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/gothic_scienceplatform.gif); +} +div.s_gothic_scienceplatformm_pre { + background: url(/c_images/myhabbo/stickers/gothic_scienceplatform.gif) no-repeat 50% 50%; +} +div.s_goth_border_horizontall { + width: 146px; height: 100px; + background-image: url(/c_images/myhabbo/stickers/goth_border_horizontal.gif); +} +div.s_goth_border_horizontall_pre { + background: url(/c_images/myhabbo/stickers/goth_border_horizontal.gif) no-repeat 50% 50%; +} +div.s_goth_border_verticall { + width: 100px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/goth_border_vertical.gif); +} +div.s_goth_border_verticall_pre { + background: url(/c_images/myhabbo/stickers/goth_border_vertical.gif) no-repeat 50% 50%; +} +div.s_gothic_draculacapee { + width: 62px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/gothic_draculacape.gif); +} +div.s_gothic_draculacapee_pre { + background: url(/c_images/myhabbo/stickers/gothic_draculacape.gif) no-repeat 50% 50%; +} +div.s_bird_suit { + width: 51px; height: 73px; + background-image: url(/c_images/myhabbo/stickers/easter_birdsuit.gif); +} +div.s_bird_suit_pre { + background: url(/c_images/myhabbo/stickers/easter_birdsuit.gif) no-repeat 50% 50%; +} +div.s_hw easter_eggs_vertical_01 { + width: 0px; height: 0px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif); +} +div.s_hw easter_eggs_vertical_01_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_vertical_1 { + width: 50px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif); +} +div.s_easter_eggs_vertical_1_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_vertical_05 { + width: 50px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif); +} +div.s_easter_eggs_vertical_05_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_horizontal_05 { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif); +} +div.s_easter_eggs_horizontal_05_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif) no-repeat 50% 50%; +} +div.s_grass_deal { + width: 143px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/grass.gif); +} +div.s_grass_deal_pre { + background: url(/c_images/myhabbo/stickers/grass.gif) no-repeat 50% 50%; +} +div.s_k { + width: 45px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/k.gif); +} +div.s_tracinho { + width: 22px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/underscore.gif); +} +div.s_tracinho_pre { + background: url(/c_images/myhabbo/stickers/underscore.gif) no-repeat 50% 50%; +} +div.s_vírgula { + width: 14px; height: 22px; + background-image: url(/c_images/myhabbo/stickers/comma.gif); +} +div.s_vírgula_pre { + background: url(/c_images/myhabbo/stickers/comma.gif) no-repeat 50% 50%; +} +div.s_ponto { + width: 13px; height: 13px; + background-image: url(/c_images/myhabbo/stickers/dot.gif); +} +div.s_ponto_pre { + background: url(/c_images/myhabbo/stickers/dot.gif) no-repeat 50% 50%; +} +div.s_barra { + width: 19px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/slash.gif); +} +div.s_barra_pre { + background: url(/c_images/myhabbo/stickers/slash.gif) no-repeat 50% 50%; +} +div.s_linha { + width: 12px; height: 61px; + background-image: url(/c_images/myhabbo/stickers/line.gif); +} +div.s_linha_pre { + background: url(/c_images/myhabbo/stickers/line.gif) no-repeat 50% 50%; +} +div.s_crase { + width: 16px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/acsent1.gif); +} +div.s_crase_pre { + background: url(/c_images/myhabbo/stickers/acsent1.gif) no-repeat 50% 50%; +} +div.s_acento agudo { + width: 16px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/acsent2.gif); +} +div.s_acento agudo_pre { + background: url(/c_images/myhabbo/stickers/acsent2.gif) no-repeat 50% 50%; +} +div.s_asterisco1 { + width: 29px; height: 27px; + background-image: url(/c_images/myhabbo/stickers/star.gif); +} +div.s_asterisco1_pre { + background: url(/c_images/myhabbo/stickers/star.gif) no-repeat 50% 50%; +} +div.s_letrah { + width: 40px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/h.gif); +} +div.s_letrah_pre { + background: url(/c_images/myhabbo/stickers/h.gif) no-repeat 50% 50%; +} +div.s_letrai { + width: 16px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/i.gif); +} +div.s_letrai_pre { + background: url(/c_images/myhabbo/stickers/i.gif) no-repeat 50% 50%; +} +div.s_agudo { + width: 16px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/acsent2.gif); +} +div.s_agudo_pre { + background: url(/c_images/myhabbo/stickers/acsent2.gif) no-repeat 50% 50%; +} +div.s_hw ascent_2 { + width: 16px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/acsent2.gif); +} +div.s_hw ascent_2_pre { + background: url(/c_images/myhabbo/stickers/acsent2.gif) no-repeat 50% 50%; +} +div.s_acento { + width: 16px; height: 12px; + background-image: url(/c_images/myhabbo/stickers/acsent2.gif); +} +div.s_acento_pre { + background: url(/c_images/myhabbo/stickers/acsent2.gif) no-repeat 50% 50%; +} +div.s_hw val_sticker_bobbadice { + width: 62px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/val_sticker_bobbadice.gif); +} +div.s_hw val_sticker_bobbadice_pre { + background: url(/c_images/myhabbo/stickers/val_sticker_bobbadice.gif) no-repeat 50% 50%; +} +div.s_hw_val_sticker_love-costume { + width: 89px; height: 97px; + background-image: url(/c_images/myhabbo/stickers/val_lovecostume3.gif); +} +div.s_hw_val_sticker_love-costume_pre { + background: url(/c_images/myhabbo/stickers/val_lovecostume3.gif) no-repeat 50% 50%; +} +div.s_sticker_award_gold.gif { + width: 85px; height: 116px; + background-image: url(/c_images/myhabbo/stickers/sticker_award_gold.gif); +} +div.s_sticker_award_gold.gif_pre { + background: url(/c_images/myhabbo/stickers/sticker_award_gold.gif) no-repeat 50% 50%; +} +div.s_easter_broomstick_001 { + width: 62px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/easter_broomstick_001.gif); +} +div.s_h_1 { + width: 40px; height: 48px; + background-image: url(/c_images/myhabbo/stickers/h.gif); +} +div.s_h_1_pre { + background: url(/c_images/myhabbo/stickers/h.gif) no-repeat 50% 50%; +} +div.s_i_1 { + width: 16px; height: 49px; + background-image: url(/c_images/myhabbo/stickers/i.gif); +} +div.s_i_1_pre { + background: url(/c_images/myhabbo/stickers/i.gif) no-repeat 50% 50%; +} +div.s_star_1 { + width: 29px; height: 27px; + background-image: url(/c_images/myhabbo/stickers/star.gif); +} +div.s_star_1_pre { + background: url(/c_images/myhabbo/stickers/star.gif) no-repeat 50% 50%; +} +div.s_nl_football_guest2 { + width: 49px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/nl_football_guest2.gif); +} +div.s_nl_football_guest2_pre { + background: url(/c_images/myhabbo/stickers/nl_football_guest2.gif) no-repeat 50% 50%; +} +div.s_anim_hockey { + width: 82px; height: 107px; + background-image: url(/c_images/myhabbo/stickers/anim_hockey.gif); +} +div.s_anim_hockey_pre { + background: url(/c_images/myhabbo/stickers/anim_hockey.gif) no-repeat 50% 50%; +} +div.s_habboween_bg { + width: 917px; height: 1360px; + background-image: url(/c_images/myhabbo/stickers/); +} +div.s_habboween_bg_pre { + background: url(/c_images/myhabbo/stickers/) no-repeat 50% 50%; +} +div.s_gorilla_hand { + width: 0px; height: 0px; + background-image: url(/c_images/myhabbo/stickers/gorilla_hand.gif); +} +div.s_gorilla_hand_pre { + background: url(/c_images/myhabbo/stickers/gorilla_hand.gif) no-repeat 50% 50%; +} +div.s_abrinq_logo { + width: 200px; height: 161px; + background-image: url(/c_images/myhabbo/stickers/abrinq_logo.gif); +} +div.s_abrinq_logo_pre { + background: url(/c_images/myhabbo/stickers/abrinq_logo.gif) no-repeat 50% 50%; +} +div.s_santa3000_character { + width: 59px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/Santa3000_Character.gif); +} +div.s_santa3000_character_pre { + background: url(/c_images/myhabbo/stickers/Santa3000_Character.gif) no-repeat 50% 50%; +} +div.s_xmas_mr_sinister { + width: 51px; height: 98px; + background-image: url(/c_images/myhabbo/stickers/xmas_mr_sinister.gif); +} +div.s_xmas_mr_sinister_pre { + background: url(/c_images/myhabbo/stickers/xmas_mr_sinister.gif) no-repeat 50% 50%; +} +div.s_cpm2201 { + width: 400px; height: 266px; + background-image: url(/c_images/myhabbo/stickers/cpm2201.jpg); +} +div.s_cpm2201_pre { + background: url(/c_images/myhabbo/stickers/HW CPM2201) no-repeat 50% 50%; +} +div.s_cpm2202 { + width: 300px; height: 451px; + background-image: url(/c_images/myhabbo/stickers/cpm2202.jpg); +} +div.s_cpm2202_pre { + background: url(/c_images/myhabbo/stickers/HW CPM2202) no-repeat 50% 50%; +} +div.s_cpm2203 { + width: 400px; height: 266px; + background-image: url(/c_images/myhabbo/stickers/cpm2203.jpg); +} +div.s_cpm2203_pre { + background: url(/c_images/myhabbo/stickers/HW CPM2203) no-repeat 50% 50%; +} +div.s_hw_bartender_costume { + width: 30px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/bartender_costume.gif); +} +div.s_hw_bartender_costume_pre { + background: url(/c_images/myhabbo/stickers/bartender_costume.gif) no-repeat 50% 50%; +} +div.s_habbolympics_teamsticker { + width: 148px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/habbolympics_teamsticker.gif); +} +div.b_bg_colour_17 { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_17.gif); +} +div.b_bg_colour_17_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_colour_17.gif); +} +div.b_goth_patternn { + background-image: url(/c_images/myhabbo/backgrounds2/goth_pattern.gif); +} +div.b_goth_patternn_pre { + background-image: url(/c_images/myhabbo/backgrounds2/goth_pattern.gif); +} +div.b_bg_hw_val_bgpattern_love.gif { + background-image: url(/c_images/myhabbo/backgrounds2/hw_val_bgpattern_love.gif); +} +div.b_bg_hw_val_bgpattern_love.gif_pre { + background-image: url(/c_images/myhabbo/backgrounds2/hw_val_bgpattern_love.gif); +} +div.b_hw_val_bgpattern_love { + background-image: url(/c_images/myhabbo/backgrounds2/vale_rose_bg.gif); +} +div.b_hw_val_bgpattern_love_pre { + background-image: url(/c_images/myhabbo/backgrounds2/vale_rose_bg.gif); +} +div.b_habboween_bg_bg { + background-image: url(/c_images/myhabbo/backgrounds2/habboween_bg.gif); +} +div.b_habboween_bg_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habboween_bg.gif); +} +div.b_habbox_pre { + background-image: url(/c_images/myhabbo/backgrounds2/HW HABBOX); +} +div.b_abrinq_infobus { + background-image: url(/c_images/myhabbo/backgrounds2/abrinq_infobus.png); +} +div.b_abrinq_infobus_pre { + background-image: url(/c_images/myhabbo/backgrounds2/abrinq_infobus.png); +} +div.b_abrinq_infobusg { + background-image: url(/c_images/myhabbo/backgrounds2/abrinq_infobusg.gif); +} +div.b_abrinq_infobusg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/abrinq_infobusg.gif); +} +div.b_infobus_abrinq_sem_logo { + background-image: url(/c_images/myhabbo/backgrounds2/infobus_abrinq_sem_logo.gif); +} +div.b_infobus_abrinq_sem_logo_pre { + background-image: url(/c_images/myhabbo/backgrounds2/infobus_abrinq_sem_logo.gif); +} +div.b_festa de boas vindas { + background-image: url(/c_images/myhabbo/backgrounds2/welcoming_party.gif); +} +div.b_festa de boas vindas_pre { + background-image: url(/c_images/myhabbo/backgrounds2/welcoming_party.gif); +} +div.b_gruposedateens.jpg { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_paginagrupo_bgsedateens.jpg); +} +div.b_gruposedateens.jpg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_paginagrupo_bgsedateens.jpg); +} +div.b_camocheese_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/CamoCheese_wallpaper.gif); +} +div.b_camocheese_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/CamoCheese_wallpaper.gif); +} +div.s_xmas_box_darkred { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_darkred.thumb.gif); +} +div.s_xmas_box_darkred_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_darkred.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_angel_wings { + width: 50px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/angelwings_anim.thumb.gif); +} +div.s_xmas_angel_wings_pre { + background: url(/c_images/myhabbo/stickers/angelwings_anim.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_box_green { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_green.thumb.gif); +} +div.s_xmas_box_green_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_green.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_box_lime { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_lime.thumb.gif); +} +div.s_xmas_box_lime_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_lime.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_box_orange { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/xmas_box_orange.thumb.gif); +} +div.s_xmas_box_orange_pre { + background: url(/c_images/myhabbo/stickers/xmas_box_orange.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_dograindeer_sticker.thumb { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/Xmas_Dograindeer_sticker.thumb.gif); +} +div.s_xmas_dograindeer_sticker.thumb_pre { + background: url(/c_images/myhabbo/stickers/Xmas_Dograindeer_sticker.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_gift_strap_corner_l { + width: 102px; height: 134px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_l.thumb.gif); +} +div.s_xmas_gift_strap_corner_l_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_l.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_gift_strap_corner_r { + width: 102px; height: 134px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_r.thumb.gif); +} +div.s_xmas_gift_strap_corner_r_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_strap_corner_r.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_icicles { + width: 146px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/xmas_icicles.thumb.gif); +} +div.s_xmas_icicles_pre { + background: url(/c_images/myhabbo/stickers/xmas_icicles.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_skater_costume { + width: 147px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/Xmas_skater_costume.thumb.gif); +} +div.s_xmas_skater_costume_pre { + background: url(/c_images/myhabbo/stickers/Xmas_skater_costume.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_xtree_sticker { + width: 147px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/xmas_xtree_sticker.thumb.gif); +} +div.s_xmas_xtree_sticker_pre { + background: url(/c_images/myhabbo/stickers/xmas_xtree_sticker.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_gift_afro { + width: 46px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/xmas_gift_afro.thumb.gif); +} +div.s_xmas_gift_afro_pre { + background: url(/c_images/myhabbo/stickers/xmas_gift_afro.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_cat_animated { + width: 30px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/xmas_cat_animated.thumb.gif); +} +div.s_xmas_cat_animated_pre { + background: url(/c_images/myhabbo/stickers/xmas_cat_animated.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_snowcone_costume { + width: 147px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/Xmas_Snowcone_costume.thumb.gif); +} +div.s_xmas_snowcone_costume_pre { + background: url(/c_images/myhabbo/stickers/Xmas_Snowcone_costume.thumb.gif) no-repeat 50% 50%; +} +div.s_xmas_tree01_animated { + width: 60px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/xmas_tree01_animated.thumb.gif); +} +div.s_xmas_tree01_animated_pre { + background: url(/c_images/myhabbo/stickers/xmas_tree01_animated.thumb.gif) no-repeat 50% 50%; +} +div.s_newyear_2007_anim { + width: 146px; height: 58px; + background-image: url(/c_images/myhabbo/stickers/newyear_2007_anim.gif); +} +div.s_newyear_2007_anim_pre { + background: url(/c_images/myhabbo/stickers/newyear_2007_anim.gif) no-repeat 50% 50%; +} +div.s_xmas_rastasanta { + width: 66px; height: 98px; + background-image: url(/c_images/myhabbo/stickers/xmas_rastasanta.thumb.gif); +} +div.s_xmas_rastasanta_pre { + background: url(/c_images/myhabbo/stickers/xmas_rastasanta.thumb.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_vertical_0012 { + width: 50px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif); +} +div.s_easter_eggs_vertical_0012_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif) no-repeat 50% 50%; +} +div.s_xmas_smilla_snowboard { + width: 160px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/xmas_smilla_snowboard.gif); +} +div.s_bartender_costume { + width: 30px; height: 56px; + background-image: url(/c_images/myhabbo/stickers/bartender_costume); +} +div.b_easter_eggs_vertical_001 { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_vertical_001.gif); +} +div.b_easter_eggs_vertical_001_pre { + background-image: url(/c_images/myhabbo/backgrounds2/EASTER_EGGS_VERTICAL_001.gif); +} +div.b_easteregg_costume { + background-image: url(/c_images/myhabbo/backgrounds2/easteregg_costume.gif); +} +div.b_easteregg_costume_pre { + background-image: url(/c_images/myhabbo/backgrounds2/easteregg_costume.gif); +} +div.b_easter_birdie { + background-image: url(/c_images/myhabbo/backgrounds2/easter_birdie.gif); +} +div.b_easter_birdie_pre { + background-image: url(/c_images/myhabbo/backgrounds2/easter_birdie.gif); +} +div.b_head_guides_switserland { + background-image: url(/c_images/myhabbo/backgrounds2/Head_Guides_Switserland.png); +} +div.b_head_guides_switserland_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Head_Guides_Switserland.png); +} +div.s_anim_elvis { + width: 73px; height: 92px; + background-image: url(/c_images/myhabbo/stickers/anim_elvis.gif); +} +div.s_anim_elvis_pre { + background: url(/c_images/myhabbo/stickers/anim_elvis.gif) no-repeat 50% 50%; +} +div.s_edito_logo_001 { + width: 146px; height: 91px; + background-image: url(/c_images/myhabbo/stickers/edito_logo_001.gif); +} +div.s_edito_logo_001_pre { + background: url(/c_images/myhabbo/stickers/edito_logo_001.gif) no-repeat 50% 50%; +} +div.s_bartender_costume_pre { + background: url(/c_images/myhabbo/stickers/bartender_costume) no-repeat 50% 50%; +} +div.s_crew_male_costume_pre { + background: url(/c_images/myhabbo/stickers/crew_male_costume) no-repeat 50% 50%; +} +div.s_femalecaptain_costume_pre { + background: url(/c_images/myhabbo/stickers/femalecaptain_costume) no-repeat 50% 50%; +} +div.s_summer_moarider_male_pre { + background: url(/c_images/myhabbo/stickers/summer_moarider_female.gif) no-repeat 50% 50%; +} +div.b_sticker_cape { + background-image: url(/c_images/myhabbo/backgrounds2/sticker_cape.gif); +} +div.b_sticker_cape_pre { + background-image: url(/c_images/myhabbo/backgrounds2/sticker_cape.gif); +} +div.s_jp_godzilla { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/jp_godzilla.gif); +} +div.s_jp_godzilla_pre { + background: url(/c_images/myhabbo/stickers/jp_godzilla.gif) no-repeat 50% 50%; +} +div.s_jp_sushi { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/JP_Sushi.gif); +} +div.s_jp_sushi_pre { + background: url(/c_images/myhabbo/stickers/JP_Sushi.gif) no-repeat 50% 50%; +} +div.s_hw grass { + width: 143px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/grass.gif); +} +div.s_hw grass_pre { + background: url(/c_images/myhabbo/stickers/grass.gif) no-repeat 50% 50%; +} +div.s_hw easter_egg_vertical_001 { + width: 50px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif); +} +div.s_hw easter_egg_vertical_001_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001.gif) no-repeat 50% 50%; +} +div.s_hw easter_rabbit_in_hole { + width: 94px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/easter_rabbit_in_hole.gif); +} +div.s_hw easter_rabbit_in_hole_pre { + background: url(/c_images/myhabbo/stickers/easter_rabbit_in_hole.gif) no-repeat 50% 50%; +} +div.s_hw easteregg_costume { + width: 9px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/easteregg_costume.gif); +} +div.s_hw easteregg_costume_pre { + background: url(/c_images/myhabbo/stickers/easteregg_costume.gif) no-repeat 50% 50%; +} +div.s_hw easter_birdie { + width: 102px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/easter_bird.gif); +} +div.s_hw easter_birdie_pre { + background: url(/c_images/myhabbo/stickers/easter_bird.gif) no-repeat 50% 50%; +} +div.s_hw easter_birdsuit { + width: 51px; height: 73px; + background-image: url(/c_images/myhabbo/stickers/easter_birdsuit.gif); +} +div.s_hw easter_birdsuit_pre { + background: url(/c_images/myhabbo/stickers/easter_birdsuit.gif) no-repeat 50% 50%; +} +div.s_hw easter_carrot_rocket { + width: 91px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/easter_carrot_rocket.gif); +} +div.s_hw easter_carrot_rocket_pre { + background: url(/c_images/myhabbo/stickers/easter_carrot_rocket.gif) no-repeat 50% 50%; +} +div.s_hw easter_egg_horizontal { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif); +} +div.s_hw easter_egg_horizontal_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_horizontal.gif) no-repeat 50% 50%; +} +div.s_hw easter_bunnymoped { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_bunnymoped.gif); +} +div.s_hw easter_bunnymoped_pre { + background: url(/c_images/myhabbo/stickers/easter_bunnymoped.gif) no-repeat 50% 50%; +} +div.s_easter_bird2 { + width: 102px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/easter_bird2.gif); +} +div.s_easter_bird2_pre { + background: url(/c_images/myhabbo/stickers/easter_bird2.gif) no-repeat 50% 50%; +} +div.s_easter_birdsuit2 { + width: 51px; height: 73px; + background-image: url(/c_images/myhabbo/stickers/easter_birdsuit2.gif); +} +div.s_easter_birdsuit2_pre { + background: url(/c_images/myhabbo/stickers/easter_birdsuit2.gif) no-repeat 50% 50%; +} +div.s_easter_bunnymoped2 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_bunnymoped2.gif); +} +div.s_easter_bunnymoped2_pre { + background: url(/c_images/myhabbo/stickers/easter_bunnymoped2.gif) no-repeat 50% 50%; +} +div.s_easter_carrot_rocket2 { + width: 91px; height: 59px; + background-image: url(/c_images/myhabbo/stickers/easter_carrot_rocket2.gif); +} +div.s_easter_carrot_rocket2_pre { + background: url(/c_images/myhabbo/stickers/easter_carrot_rocket2.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_horizontal2 { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_horizontal2.gif); +} +div.s_easter_eggs_horizontal2_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_horizontal2.gif) no-repeat 50% 50%; +} +div.s_easter_eggs_vertical_002 { + width: 50px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_002.gif); +} +div.s_easter_eggs_vertical_002_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_002.gif) no-repeat 50% 50%; +} +div.s_easter_rabbit_in_hole2 { + width: 94px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/easter_rabbit_in_hole2.gif); +} +div.s_easter_rabbit_in_hole2_pre { + background: url(/c_images/myhabbo/stickers/easter_rabbit_in_hole2.gif) no-repeat 50% 50%; +} +div.s_easteregg_costume2 { + width: 79px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/easteregg_costume2.gif); +} +div.s_easteregg_costume2_pre { + background: url(/c_images/myhabbo/stickers/easteregg_costume2.gif) no-repeat 50% 50%; +} +div.s_grass2 { + width: 143px; height: 62px; + background-image: url(/c_images/myhabbo/stickers/grass2.gif); +} +div.s_grass2_pre { + background: url(/c_images/myhabbo/stickers/grass2.gif) no-repeat 50% 50%; +} +div.s_sticker_trax_rock { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_trax_rock.gif); +} +div.s_sticker_trax_rock_pre { + background: url(/c_images/myhabbo/stickers/sticker_trax_rock.gif) no-repeat 50% 50%; +} +div.s_sticker_trax_heavy { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_trax_heavy.gif); +} +div.s_sticker_trax_heavy_pre { + background: url(/c_images/myhabbo/stickers/sticker_trax_heavy.gif) no-repeat 50% 50%; +} +div.s_sticker_trax_bling { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/sticker_trax_bling.gif); +} +div.s_sticker_trax_bling_pre { + background: url(/c_images/myhabbo/stickers/sticker_trax_bling) no-repeat 50% 50%; +} +div.s_trax_ambient_1 { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_ambient.gif); +} +div.s_trax_ambient_1_pre { + background: url(/c_images/myhabbo/stickers/trax_ambient.gif) no-repeat 50% 50%; +} +div.s_trax_disco_1 { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_disco.gif); +} +div.s_trax_disco_1_pre { + background: url(/c_images/myhabbo/stickers/trax_disco.gif) no-repeat 50% 50%; +} +div.s_trax_electro_1 { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_electro.gif); +} +div.s_trax_electro_1_pre { + background: url(/c_images/myhabbo/stickers/trax_electro.gif) no-repeat 50% 50%; +} +div.s_flameskull { + width: 37px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/flameskull.gif); +} +div.s_flameskull_pre { + background: url(/c_images/myhabbo/stickers/flameskull.gif) no-repeat 50% 50%; +} +div.s_sticker_flameskull { + width: 37px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/sticker_flameskull.gif); +} +div.s_sticker_flameskull_pre { + background: url(/c_images/myhabbo/stickers/sticker_flameskull.gif) no-repeat 50% 50%; +} +div.s_sticker_skull { + width: 27px; height: 29px; + background-image: url(/c_images/myhabbo/stickers/stickerskull.gif); +} +div.s_sticker_skull_pre { + background: url(/c_images/myhabbo/stickers/stickerskull.gif) no-repeat 50% 50%; +} +div.s_sticker_skull2 { + width: 23px; height: 25px; + background-image: url(/c_images/myhabbo/stickers/stickerskull2.gif); +} +div.s_sticker_skull2_pre { + background: url(/c_images/myhabbo/stickers/stickerskull2.gif) no-repeat 50% 50%; +} +div.s_hw jp_5years { + width: 142px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/JP_5years.gif); +} +div.s_hw jp_5years_pre { + background: url(/c_images/myhabbo/stickers/JP_5years.gif) no-repeat 50% 50%; +} +div.s_jp_5years { + width: 142px; height: 145px; + background-image: url(/c_images/myhabbo/stickers/JP_5years.gif); +} +div.s_jp_5years_pre { + background: url(/c_images/myhabbo/stickers/JP_5years.gif) no-repeat 50% 50%; +} +div.s_hw easter_bird { + width: 102px; height: 38px; + background-image: url(/c_images/myhabbo/stickers/easter_bird.gif); +} +div.s_hw easter_bird_pre { + background: url(/c_images/myhabbo/stickers/easter_bird.gif) no-repeat 50% 50%; +} +div.s_hw easter_broomstick_001 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_broomstick_001); +} +div.s_hw easter_broomstick_001_pre { + background: url(/c_images/myhabbo/stickers/easter_broomstick_001) no-repeat 50% 50%; +} +div.s_hw easter_eggs_horizontal { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_horizontal); +} +div.s_hw easter_eggs_horizontal_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_horizontal) no-repeat 50% 50%; +} +div.s_hw easter_eggs_vertical_001 { + width: 50px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001); +} +div.s_hw easter_eggs_vertical_001_pre { + background: url(/c_images/myhabbo/stickers/easter_eggs_vertical_001) no-repeat 50% 50%; +} +div.s_hw easter_pointyhat { + width: 58px; height: 45px; + background-image: url(/c_images/myhabbo/stickers/easter_pointyhat); +} +div.s_hw easter_pointyhat_pre { + background: url(/c_images/myhabbo/stickers/easter_pointyhat) no-repeat 50% 50%; +} +div.s_hw evil_giant_bunny { + width: 94px; height: 81px; + background-image: url(/c_images/myhabbo/stickers/Evil_giant_bunny); +} +div.s_hw evil_giant_bunny_pre { + background: url(/c_images/myhabbo/stickers/Evil_giant_bunny) no-repeat 50% 50%; +} +div.s_easteregg_costume0 { + width: 79px; height: 109px; + background-image: url(/c_images/myhabbo/stickers/easteregg_costume.gif); +} +div.s_easteregg_costume0_pre { + background: url(/c_images/myhabbo/stickers/easteregg_costume.gif) no-repeat 50% 50%; +} +div.b_hw easter_egg_wallpaper { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper.gif); +} +div.b_hw easter_egg_wallpaper_pre { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper.gif); +} +div.b_easter_eggs_wallpaper2 { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper2.gif); +} +div.b_easter_eggs_wallpaper2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/easter_eggs_wallpaper2.gif); +} +div.b_habboguide { + background-image: url(/c_images/myhabbo/backgrounds2/habboguide.gif); +} +div.b_habboguide_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habboguide.gif); +} +div.b_jp_valentine { + background-image: url(/c_images/myhabbo/backgrounds2/JP_Valentine.gif); +} +div.b_jp_valentine_pre { + background-image: url(/c_images/myhabbo/backgrounds2/JP_Valentine.gif); +} +div.b_jp valentine { + background-image: url(/c_images/myhabbo/backgrounds2/JP Valentine.gif); +} +div.b_jp valentine_pre { + background-image: url(/c_images/myhabbo/backgrounds2/JP Valentine.gif); +} +div.w_habbomovieswidget_pre { + background-image: url(/c_images/myhabbo/widgets/movies_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_hw_bgpattern_skull { + width: 140px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/val_bgpattern_skull.gif); +} +div.s_hw_bgpattern_skull_pre { + background: url(/c_images/myhabbo/stickers/val_bgpattern_skull.gif) no-repeat 50% 50%; +} +div.s_teensbear.gif { + width: 143px; height: 148px; + background-image: url(/c_images/myhabbo/stickers/teensbear); +} +div.s_trax_be { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/trax_be.gif); +} +div.s_trax_be_pre { + background: url(/c_images/myhabbo/stickers/trax_be.gif) no-repeat 50% 50%; +} +div.b_xmas_jeff_donkey_reindeer_sticker { + background-image: url(/c_images/myhabbo/backgrounds2/fout); +} +div.b_xmas_jeff_donkey_reindeer_sticker_pre { + background-image: url(/c_images/myhabbo/backgrounds2/fout); +} +div.b_arminvanbuuren_928x1360 { + background-image: url(/c_images/myhabbo/backgrounds2/ArminvanBuuren_928x1360.gif); +} +div.b_arminvanbuuren_928x1360_pre { + background-image: url(/c_images/myhabbo/backgrounds2/ArminvanBuuren_928x1360.gif); +} +div.b_streaming001 { + background-image: url(/c_images/myhabbo/backgrounds2/streaming001.jpg); +} +div.b_streaming001_pre { + background-image: url(/c_images/myhabbo/backgrounds2/streaming001.jpg); +} +div.b_streaming002 { + background-image: url(/c_images/myhabbo/backgrounds2/streaming002.jpg); +} +div.b_streaming002_pre { + background-image: url(/c_images/myhabbo/backgrounds2/streaming002.jpg); +} +div.b_streaming003 { + background-image: url(/c_images/myhabbo/backgrounds2/streaming003.jpg); +} +div.b_streaming003_pre { + background-image: url(/c_images/myhabbo/backgrounds2/streaming003.jpg); +} +div.b_kungfu_bg { + background-image: url(/c_images/myhabbo/backgrounds2/kungfu_bg.png); +} +div.b_kungfu_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/kungfu_bg.png); +} + +div.w_highscoreswidget_pre { + background-image: url(/c_images/myhabbo/widgets/hiscores_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_profilewidget_pre { + background-image: url(/c_images/myhabbo/widgets/profilewidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_friendswidget_pre { + background-image: url(/c_images/myhabbo/widgets/friends_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_roomswidget_pre { + background-image: url(/c_images/myhabbo/widgets/rooms_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_guestbookwidget_pre { + background-image: url(/c_images/myhabbo/widgets/guestbook_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupinfowidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupinfowidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupswidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupswidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_memberwidget_pre { + background-image: url(/c_images/myhabbo/widgets/member_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_habbomovieswidget_pre { + background-image: url(/c_images/myhabbo/widgets/movies_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_ratingwidget_pre { + background-image: url(/c_images/myhabbo/widgets/rating_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_traxplayerwidget_pre { + background-image: url(/c_images/myhabbo/widgets/trax_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_highscorelistwidget_pre { + background-image: url(/c_images/myhabbo/widgets/highscorelistwidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} + +div.commodity_stickienote_pre { + background-image: url(/c_images/myhabbo/stickies/note_thumbnail_store.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_bling_g { + width: 32px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/bling_g.gif); +} +div.s_val_cupido_anim { + width: 99px; height: 55px; + background-image: url(/c_images/myhabbo/stickers/val_cupido_anim.gif); +} +div.s_easter_birdsuit { + width: 51px; height: 75px; + background-image: url(/c_images/myhabbo/stickers/easter_birdsuit.gif); +} +div.s_fi_koirakisu2 { + width: 145px; height: 131px; + background-image: url(/c_images/myhabbo/stickers/fi_koirakisu2.gif); +} +div.s_fi_koirakisu2_pre { + background: url(/c_images/myhabbo/stickers/fi_koirakisu2.gif) no-repeat 50% 50%; +} +div.s_britney { + width: 55px; height: 47px; + background-image: url(/c_images/myhabbo/stickers/britney.gif); +} +div.s_britney_pre { + background: url(/c_images/myhabbo/stickers/britney.gif) no-repeat 50% 50%; +} +div.s_dudesons { + width: 122px; height: 96px; + background-image: url(/c_images/myhabbo/stickers/dudesons.gif); +} +div.s_dudesons_pre { + background: url(/c_images/myhabbo/stickers/dudesons.gif) no-repeat 50% 50%; +} +div.s_extreme_dudesons { + width: 195px; height: 101px; + background-image: url(/c_images/myhabbo/stickers/extreme_dudesons.gif); +} +div.s_extreme_dudesons_pre { + background: url(/c_images/myhabbo/stickers/extreme_dudesons.gif) no-repeat 50% 50%; +} +div.s_hp_guest { + width: 37px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/hp_guest.gif); +} +div.s_hp_guest_pre { + background: url(/c_images/myhabbo/stickers/hp_guest.gif) no-repeat 50% 50%; +} +div.s_jarno_guest { + width: 60px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/jarno_guest.gif); +} +div.s_jarno_guest_pre { + background: url(/c_images/myhabbo/stickers/jarno_guest.gif) no-repeat 50% 50%; +} +div.s_jarppi_guest { + width: 37px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/jarppi_guest.gif); +} +div.s_jarppi_guest_pre { + background: url(/c_images/myhabbo/stickers/jarppi_guest.gif) no-repeat 50% 50%; +} +div.s_jarppi_guest2 { + width: 37px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/jarppi_guest2.gif); +} +div.s_jarppi_guest2_pre { + background: url(/c_images/myhabbo/stickers/jarppi_guest2.gif) no-repeat 50% 50%; +} +div.s_jukka_guest { + width: 44px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/jukka_guest.gif); +} +div.s_jukka_guest_pre { + background: url(/c_images/myhabbo/stickers/jukka_guest.gif) no-repeat 50% 50%; +} +div.s_jukka_guest2 { + width: 47px; height: 89px; + background-image: url(/c_images/myhabbo/stickers/jukka_guest2.gif); +} +div.s_jukka_guest2_pre { + background: url(/c_images/myhabbo/stickers/jukka_guest2.gif) no-repeat 50% 50%; +} +div.s_anim_cook { + width: 73px; height: 99px; + background-image: url(/c_images/myhabbo/stickers/anim_cook.gif); +} +div.s_anim_cook_pre { + background: url(/c_images/myhabbo/stickers/anim_cook.gif) no-repeat 50% 50%; +} +div.s_butterfly_01 { + width: 119px; height: 71px; + background-image: url(/c_images/myhabbo/stickers/butterfly_01.gif); +} +div.s_butterfly_01_pre { + background: url(/c_images/myhabbo/stickers/butterfly_01.gif) no-repeat 50% 50%; +} +div.s_fi_posti_box { + width: 100px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/FI_posti_box.gif); +} +div.s_fi_posti_box_pre { + background: url(/c_images/myhabbo/stickers/FI_posti_box.gif) no-repeat 50% 50%; +} +div.s_fi_posti_girl { + width: 109px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/FI_posti_girl.gif); +} +div.s_fi_posti_girl_pre { + background: url(/c_images/myhabbo/stickers/FI_posti_girl.gif) no-repeat 50% 50%; +} +div.s_voice_articleimage { + width: 520px; height: 178px; + background-image: url(/c_images/myhabbo/stickers/voice_articleimage.gif); +} +div.s_voice_articleimage_pre { + background: url(/c_images/myhabbo/stickers/voice_articleimage.gif) no-repeat 50% 50%; +} +div.s_venti { + width: 73px; height: 80px; + background-image: url(/c_images/myhabbo/stickers/venti.gif); +} +div.s_venti_pre { + background: url(/c_images/myhabbo/stickers/venti.gif) no-repeat 50% 50%; +} +div.s_sticker_da_blingclock { + width: 29px; height: 33px; + background-image: url(/c_images/myhabbo/stickers/sticker_da_blingclock.gif); +} +div.s_sticker_da_blingclock_pre { + background: url(/c_images/myhabbo/stickers/sticker_da_blingclock.gif) no-repeat 50% 50%; +} +div.s_fi_rasmus_2_194x130 { + width: 194px; height: 130px; + background-image: url(/c_images/myhabbo/stickers/FI_Rasmus_2_194x130.gif); +} +div.s_fi_rasmus_2_194x130_pre { + background: url(/c_images/myhabbo/stickers/FI_Rasmus_2_194x130.gif) no-repeat 50% 50%; +} +div.s_xmas_smilla_snowboard { + width: 106px; height: 46px; + background-image: url(/c_images/myhabbo/stickers/xmas_smilla_snowboard.gif); +} +div.s_felix01 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/felix01.gif); +} +div.s_felix01_pre { + background: url(/c_images/myhabbo/stickers/felix01.gif) no-repeat 50% 50%; +} +div.s_felix02 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/felix02.gif); +} +div.s_felix02_pre { + background: url(/c_images/myhabbo/stickers/felix02.gif) no-repeat 50% 50%; +} +div.s_felix03b { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/felix03.gif); +} +div.s_felix03b_pre { + background: url(/c_images/myhabbo/stickers/felix03.gif) no-repeat 50% 50%; +} +div.s_hat_clown2 { + width: 33px; height: 39px; + background-image: url(/c_images/myhabbo/stickers/hat_clown2.gif); +} +div.s_hat_clown2_pre { + background: url(/c_images/myhabbo/stickers/hat_clown2.gif) no-repeat 50% 50%; +} +div.s_sticker_spiky_wristband { + width: 13px; height: 8px; + background-image: url(/c_images/myhabbo/stickers/sticker_spiky_wristband.gif); +} +div.s_sticker_spiky_wristband_pre { + background: url(/c_images/myhabbo/stickers/sticker_spiky_wristband.gif) no-repeat 50% 50%; +} +div.s_tahti { + width: 20px; height: 18px; + background-image: url(/c_images/myhabbo/stickers/tahti.gif); +} +div.s_tahti_pre { + background: url(/c_images/myhabbo/stickers/tahti.gif) no-repeat 50% 50%; +} +div.s_adcats { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/adcats.gif); +} +div.s_adcats_pre { + background: url(/c_images/myhabbo/stickers/adcats.gif) no-repeat 50% 50%; +} +div.s_addogs { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/addogs.gif); +} +div.s_addogs_pre { + background: url(/c_images/myhabbo/stickers/addogs.gif) no-repeat 50% 50%; +} +div.s_adholiday { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/adholiday.gif); +} +div.s_adholiday_pre { + background: url(/c_images/myhabbo/stickers/adholiday.gif) no-repeat 50% 50%; +} +div.s_bonbon_duck_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/Bonbon_duck_146x146.gif); +} +div.s_bonbon_duck_146x146_pre { + background: url(/c_images/myhabbo/stickers/Bonbon_duck_146x146.gif) no-repeat 50% 50%; +} +div.s_bonbon_mouse_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/Bonbon_mouse_146x146.gif); +} +div.s_bonbon_mouse_146x146_pre { + background: url(/c_images/myhabbo/stickers/Bonbon_mouse_146x146.gif) no-repeat 50% 50%; +} +div.s_bonbon_rat_146x146 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/Bonbon_rat_146x146.gif); +} +div.s_bonbon_rat_146x146_pre { + background: url(/c_images/myhabbo/stickers/Bonbon_rat_146x146.gif) no-repeat 50% 50%; +} +div.s_adparty { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/adparty.gif); +} +div.s_adparty_pre { + background: url(/c_images/myhabbo/stickers/adparty.gif) no-repeat 50% 50%; +} +div.s_adskating { + width: 93px; height: 93px; + background-image: url(/c_images/myhabbo/stickers/adskating.gif); +} +div.s_adskating_pre { + background: url(/c_images/myhabbo/stickers/adskating.gif) no-repeat 50% 50%; +} +div.s_valentine_welcome_sticker { + width: 113px; height: 114px; + background-image: url(/c_images/myhabbo/stickers/valentine_welcome_sticker.gif); +} +div.s_jenkki_monster_sticker { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/jenkki_monster_sticker.gif); +} +div.s_jenkki_monster_sticker_pre { + background: url(/c_images/myhabbo/stickers/jenkki_monster_sticker.gif) no-repeat 50% 50%; +} +div.s_jenkki_monster_sticker2 { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/jenkki_monster_sticker2.gif); +} +div.s_jenkki_monster_sticker2_pre { + background: url(/c_images/myhabbo/stickers/jenkki_monster_sticker2.gif) no-repeat 50% 50%; +} +div.s_toffee_tarra { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/toffee_tarra.gif); +} +div.s_toffee_tarra_pre { + background: url(/c_images/myhabbo/stickers/toffee_tarra.gif) no-repeat 50% 50%; +} +div.s_mansikka_tarra { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/mansikka_tarra.gif); +} +div.s_mansikka_tarra_pre { + background: url(/c_images/myhabbo/stickers/mansikka_tarra.gif) no-repeat 50% 50%; +} +div.s_vanilja_tarra { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/vanilja_tarra.gif); +} +div.s_vanilja_tarra_pre { + background: url(/c_images/myhabbo/stickers/vanilja_tarra.gif) no-repeat 50% 50%; +} +div.s_karigrandi_sticker { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/karigrandi_sticker.gif); +} +div.s_karigrandi_sticker_pre { + background: url(/c_images/myhabbo/stickers/karigrandi_sticker.gif) no-repeat 50% 50%; +} +div.b_bb_group { + background-image: url(/c_images/myhabbo/backgrounds2/BB_Group.png); +} +div.b_bb_group_pre { + background-image: url(/c_images/myhabbo/backgrounds2/BB_Group.png); +} +div.b_felix03 { + background-image: url(/c_images/myhabbo/backgrounds2/felix_ryhmasivutausta.gif); +} +div.b_felix03_pre { + background-image: url(/c_images/myhabbo/backgrounds2/felix_ryhmasivutausta.gif); +} +div.b_bg_dark_floors { + background-image: url(/c_images/myhabbo/backgrounds2/Dark_floors_background2.jpg); +} +div.b_bg_dark_floors_pre { + background-image: url(/c_images/myhabbo/backgrounds2/Dark_floors_background2.jpg); +} +div.b_BB_Group2 { + background-image: url(/c_images/myhabbo/backgrounds2/BB_Group2.png); +} +div.b_BB_Group2_pre { + background-image: url(/c_images/myhabbo/backgrounds2/BB_Group2.png); +} +div.b_felix_ryhmasivutaustakuva { + background-image: url(/c_images/myhabbo/backgrounds2/felix_ryhmasivutaustakuva.gif); +} +div.b_felix_ryhmasivutaustakuva_pre { + background-image: url(/c_images/myhabbo/backgrounds2/felix_ryhmasivutaustakuva.gif); +} +div.b_manteli_bg { + background-image: url(/c_images/myhabbo/backgrounds2/manteli_bg.gif); +} +div.b_manteli_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/manteli_bg.gif); +} +div.b_netaribg { + background-image: url(/c_images/myhabbo/backgrounds2/NetariBg.gif); +} +div.b_netaribg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/NetariBg.gif); +} +div.b_habbo_ryhmatausta { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_ryhmatausta.jpg); +} +div.b_habbo_ryhmatausta_pre { + background-image: url(/c_images/myhabbo/backgrounds2/habbo_ryhmatausta.jpg); +} +div.b_27368_kaatissakki_tausta { + background-image: url(/c_images/myhabbo/backgrounds2/27368_kaatissakki_tausta.gif); +} +div.b_27368_kaatissakki_tausta_pre { + background-image: url(/c_images/myhabbo/backgrounds2/27368_kaatissakki_tausta.gif); +} +div.b_fi_linnanmaki_bg { + background-image: url(/c_images/myhabbo/backgrounds2/fi_linnanmaki_bg.gif); +} +div.b_fi_linnanmaki_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/fi_linnanmaki_bg.gif); +} +div.b_fi_puffet_bg { + background-image: url(/c_images/myhabbo/backgrounds2/fi_puffet_bg.gif); +} +div.b_fi_puffet_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/fi_puffet_bg.gif); +} +div.b_grandi_habbo_ryhma { + background-image: url(/c_images/myhabbo/backgrounds2/grandi_habbo_ryhma.jpg); +} +div.b_grandi_habbo_ryhma_pre { + background-image: url(/c_images/myhabbo/backgrounds2/grandi_habbo_ryhma.jpg); +} + +div.w_highscoreswidget_pre { + background-image: url(/c_images/myhabbo/widgets/hiscores_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_profilewidget_pre { + background-image: url(/c_images/myhabbo/widgets/profilewidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_friendswidget_pre { + background-image: url(/c_images/myhabbo/widgets/friends_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_roomswidget_pre { + background-image: url(/c_images/myhabbo/widgets/rooms_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_guestbookwidget_pre { + background-image: url(/c_images/myhabbo/widgets/guestbook_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupinfowidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupinfowidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_groupswidget_pre { + background-image: url(/c_images/myhabbo/widgets/groupswidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_memberwidget_pre { + background-image: url(/c_images/myhabbo/widgets/member_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_ratingwidget_pre { + background-image: url(/c_images/myhabbo/widgets/rating_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_traxplayerwidget_pre { + background-image: url(/c_images/myhabbo/widgets/trax_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_highscorelistwidget_pre { + background-image: url(/c_images/myhabbo/widgets/highscorelistwidget.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_userexpswidget_pre { + background-image: url(/c_images/myhabbo/widgets/hiscores_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.w_badgeswidget_pre { + background-image: url(/c_images/myhabbo/widgets/badges_preview.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} + +/*** + +ALL ADDITIONAL ONES GO BEYOND HERE + +***/ +div.s_custom_angelwings_anim { + width: 50px; height: 67px; + background-image: url(/c_images/myhabbo/stickers/customs/angelwings_anim.gif); +} +div.s_custom_angelwings_anim_pre { + background-image: url(/c_images/myhabbo/stickers/customs/angelwings_anim.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_jeff_donkey { + width: 85px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/customs/jeff_donkey.gif); +} +div.s_custom_jeff_donkey_pre { + background-image: url(/c_images/myhabbo/stickers/customs/jeff_donkey.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmaslights_anim { + width: 158px; height: 37px; + background-image: url(/c_images/myhabbo/stickers/customs/xmaslights_anim.gif); +} +div.s_custom_xmaslights_anim_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmaslights_anim.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_boxs { + width: 141px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_boxs.gif); +} +div.s_custom_xmas_boxs_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_boxs.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_darkred2 { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_darkred2.gif); +} +div.s_custom_xmas_box_darkred2_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_darkred2.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_green { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_green.gif); +} +div.s_custom_xmas_box_green_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_green.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_lime { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_lime.gif); +} +div.s_custom_xmas_box_lime_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_lime.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_orange { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_orange.gif); +} +div.s_custom_xmas_box_orange_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_orange.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_red { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_red.gif); +} +div.s_custom_xmas_box_red_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_red.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_suit_blue { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_suit_blue.gif); +} +div.s_custom_xmas_box_suit_blue_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_suit_blue.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_suit_mint { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_suit_mint.gif); +} +div.s_custom_xmas_box_suit_mint_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_suit_mint.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_suit_orange { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_suit_orange.gif); +} +div.s_custom_xmas_box_suit_orange_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_suit_orange.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_suit_pink { + width: 114px; height: 87px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_suit_pink.gif); +} +div.s_custom_xmas_box_suit_pink_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_suit_pink.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_box_violet { + width: 64px; height: 65px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_violet.gif); +} +div.s_custom_xmas_box_violet_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_box_violet.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_dogi_animated { + width: 40px; height: 70px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_dogi_animated.gif); +} +div.s_custom_xmas_dogi_animated_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_dogi_animated.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_dograindeer_sticker { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_dograindeer_sticker.gif); +} +div.s_custom_xmas_dograindeer_sticker_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_dograindeer_sticker.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_gift_afro { + width: 46px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_afro.gif); +} +div.s_custom_xmas_gift_afro_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_afro.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_gift_strap_corner_l { + width: 102px; height: 134px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_strap_corner_l.gif); +} +div.s_custom_xmas_gift_strap_corner_l_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_strap_corner_l.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_gift_strap_corner_r { + width: 102px; height: 134px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_strap_corner_r.gif); +} +div.s_custom_xmas_gift_strap_corner_r_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_strap_corner_r.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_gift_strap_h { + width: 146px; height: 50px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_strap_h.gif); +} +div.s_custom_xmas_gift_strap_h_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_strap_h.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_gift_strap_v { + width: 51px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_strap_v.gif); +} +div.s_custom_xmas_gift_strap_v_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_gift_strap_v.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_icicles { + width: 146px; height: 53px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_icicles.gif); +} +div.s_custom_xmas_icicles_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_icicles.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_rastasanta { + width: 66px; height: 98px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_rastasanta.gif); +} +div.s_custom_xmas_rastasanta_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_rastasanta.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_santa_typical { + width: 148px; height: 150px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_santa_typical.gif); +} +div.s_custom_xmas_santa_typical_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_santa_typical.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_skater_costume { + width: 147px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/customs/Xmas_skater_costume.gif); +} +div.s_custom_xmas_skater_costume_pre { + background-image: url(/c_images/myhabbo/stickers/customs/Xmas_skater_costume.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_smilla_snowboard { + width: 106px; height: 64px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_smilla_snowboard.gif); +} +div.s_custom_xmas_smilla_snowboard_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_smilla_snowboard.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_snowcone_costume { + width: 146px; height: 146px; + background-image: url(/c_images/myhabbo/stickers/customs/Xmas_Snowcone_costume.gif); +} +div.s_custom_xmas_snowcone_costume_pre { + background-image: url(/c_images/myhabbo/stickers/customs/Xmas_Snowcone_costume.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_strap_horiz_gold { + width: 139px; height: 37px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_strap_horiz_gold.gif); +} +div.s_custom_xmas_strap_horiz_gold_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_strap_horiz_gold.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_strap_vertical_gold { + width: 43px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_strap_vertical_gold.gif); +} +div.s_custom_xmas_strap_vertical_gold_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_strap_vertical_gold.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_strap_vertical_silver { + width: 43px; height: 143px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_strap_vertical_silver.gif); +} +div.s_custom_xmas_strap_vertical_silver_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_strap_vertical_silver.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_tree01_animated { + width: 60px; height: 136px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_tree01_animated.gif); +} +div.s_custom_xmas_tree01_animated_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_tree01_animated.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_tree_costume { + width: 46px; height: 85px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_tree_costume.gif); +} +div.s_custom_xmas_tree_costume_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_tree_costume.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.s_custom_xmas_xtree_sticker { + width: 147px; height: 147px; + background-image: url(/c_images/myhabbo/stickers/customs/xmas_xtree_sticker.gif); +} +div.s_custom_xmas_xtree_sticker_pre { + background-image: url(/c_images/myhabbo/stickers/customs/xmas_xtree_sticker.gif); + background-repeat: no-repeat; background-position: 50% 50%; +} +div.b_bg_NSPCC_parkscene_bg { + background-image: url(/c_images/myhabbo/backgrounds2/bg_NSPCC_parkscene.gif); +} +div.b_bg_NSPCC_parkscene_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_NSPCC_parkscene.gif); +} +div.b_bg_NSPCC_num2_bg { + background-image: url(/c_images/myhabbo/backgrounds2/bg_NSPCC_num2.png); +} +div.b_bg_NSPCC_num2_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_NSPCC_num2.png); +} +div.b_group_nspcc2_928x136_bg { + background-image: url(/c_images/myhabbo/backgrounds2/group_nspcc2_928x136.jpg); +} +div.b_group_nspcc2_928x136_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/group_nspcc2_928x136.jpg); +} +div.b_bg_nspcc_birthday_bg { + background-image: url(/c_images/myhabbo/backgrounds2/bg_nspcc_birthday.png); +} +div.b_bg_nspcc_birthday_bg_pre { + background-image: url(/c_images/myhabbo/backgrounds2/bg_nspcc_birthday.png); +} \ No newline at end of file