diff --git a/Dockerfile b/Dockerfile index 42573acb10..fa9accc94a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,41 +1,41 @@ FROM ubuntu:trusty -MAINTAINER Thibault Cohen +MAINTAINER Sabe Jones -ENV DEBIAN_FRONTEND noninteractive - -### Init +# Avoid ERROR: invoke-rc.d: policy-rc.d denied execution of start. +RUN echo "#!/bin/sh\nexit 0" > /usr/sbin/policy-rc.d +# Install prerequisites RUN apt-get update +RUN apt-get install -y \ + build-essential \ + curl \ + git \ + libkrb5-dev \ + python -### Utils +# Install NodeJS +RUN curl -sL https://deb.nodesource.com/setup_4.x | sudo -E bash - +RUN apt-get install -y nodejs -RUN apt-get install -y git vim graphicsmagick nodejs phantomjs npm pkgconf libcairo2-dev libjpeg8-dev +# Clean up package management +RUN apt-get clean +RUN rm -rf /var/lib/apt/lists/* -### Installation +# Clone Habitica repo and install dependencies +RUN git clone https://github.com/HabitRPG/habitrpg.git +RUN npm install -g gulp grunt-cli bower +RUN cd /habitrpg && npm install +RUN cd /habitrpg && bower install --allow-root -RUN cd /opt && git clone https://github.com/HabitRPG/habitrpg.git +# Create environment config file and build directory +RUN cd /habitrpg && cp config.json.example config.json +RUN mkdir -p /habitrpg/website/build -#RUN cd /opt/habitrpg && git checkout -t origin/develop +# Point config.json to Mongo instance. Edit the IP address to your running Mongo container's IP before running. +RUN cd /habitrpg && sed -i 's/localhost/0.0.0.0/g' config.json -RUN cd /opt/habitrpg && git pull - -RUN cd /opt/habitrpg && npm install -g grunt-cli bower nodemon - -RUN ln -s /usr/bin/nodejs /usr/bin/node - -RUN cd /opt/habitrpg && npm install - -# Add config file - -ADD ./config.json /opt/habitrpg/ - -RUN mkdir -p /opt/habitrpg/build - -RUN cd /opt/habitrpg && bower install --allow-root - -# Run server - -RUN cd /opt/habitrpg && grunt build:prod - -CMD cd /opt/habitrpg && grunt nodemon +# Start Habitica +EXPOSE 3000 +WORKDIR /habitrpg/ +CMD ["npm", "start"] diff --git a/Gruntfile.js b/Gruntfile.js index c199069fe6..9919944361 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -56,6 +56,7 @@ module.exports = function(grunt) { build: { files: [ {expand: true, cwd: 'website/public/', src: 'favicon.ico', dest: 'website/build/'}, + {expand: true, cwd: 'website/public/', src: 'favicon_192x192.png', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/dist/sprites/spritesmith*.png', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/img/sprites/backer-only/*.gif', dest: 'website/build/'}, {expand: true, cwd: '', src: 'common/img/sprites/npc_ian.gif', dest: 'website/build/'}, @@ -75,6 +76,7 @@ module.exports = function(grunt) { 'website/build/*.js', 'website/build/*.css', 'website/build/favicon.ico', + 'website/build/favicon_192x192.png', 'website/build/common/dist/sprites/*.png', 'website/build/common/img/sprites/backer-only/*.gif', 'website/build/common/img/sprites/npc_ian.gif', diff --git a/README.md b/README.md index acadee173b..e546a4295d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -Habitica [![Build Status](https://travis-ci.org/HabitRPG/habitrpg.svg?branch=develop)](https://travis-ci.org/HabitRPG/habitrpg) [![Code Climate](https://codeclimate.com/github/HabitRPG/habitrpg.svg)](https://codeclimate.com/github/HabitRPG/habitrpg) [![Coverage Status](https://coveralls.io/repos/HabitRPG/habitrpg/badge.svg?branch=develop)](https://coveralls.io/r/HabitRPG/habitrpg?branch=develop) [![Bountysource](https://api.bountysource.com/badge/tracker?tracker_id=68393)](https://www.bountysource.com/trackers/68393-habitrpg?utm_source=68393&utm_medium=shield&utm_campaign=TRACKER_BADGE) [![Dependency Status](https://gemnasium.com/HabitRPG/habitrpg.svg)](https://gemnasium.com/HabitRPG/habitrpg) +Habitica [![Build Status](https://travis-ci.org/HabitRPG/habitrpg.svg?branch=develop)](https://travis-ci.org/HabitRPG/habitrpg) [![Code Climate](https://codeclimate.com/github/HabitRPG/habitrpg.svg)](https://codeclimate.com/github/HabitRPG/habitrpg) [![Coverage Status](https://coveralls.io/repos/HabitRPG/habitrpg/badge.svg?branch=develop)](https://coveralls.io/r/HabitRPG/habitrpg?branch=develop) [![Bountysource](https://api.bountysource.com/badge/tracker?tracker_id=68393)](https://www.bountysource.com/trackers/68393-habitrpg?utm_source=68393&utm_medium=shield&utm_campaign=TRACKER_BADGE) =============== [Habitica](https://habitica.com) is an open source habit building program which treats your life like a Role Playing Game. Level up as you succeed, lose HP as you fail, earn money to buy weapons and armor. diff --git a/common/README.md b/common/README.md index 9d3e1e2a43..c7ecb052a6 100644 --- a/common/README.md +++ b/common/README.md @@ -12,5 +12,5 @@ Shared resources useful for the multiple Habitica repositories, that way all the Because of some wonkiness with Heroku, the spritesheet compilation is not part of the production build process and must be done manually when new images are added by running: ``` bash -grunt compile:sprites +npm run sprites ``` diff --git a/common/audio/danielTheBard/Achievement_Unlocked.mp3 b/common/audio/danielTheBard/Achievement_Unlocked.mp3 index 539771b46f..a7080af148 100644 Binary files a/common/audio/danielTheBard/Achievement_Unlocked.mp3 and b/common/audio/danielTheBard/Achievement_Unlocked.mp3 differ diff --git a/common/audio/danielTheBard/Achievement_Unlocked.ogg b/common/audio/danielTheBard/Achievement_Unlocked.ogg index b70b4fe1ec..4bf46d0326 100644 Binary files a/common/audio/danielTheBard/Achievement_Unlocked.ogg and b/common/audio/danielTheBard/Achievement_Unlocked.ogg differ diff --git a/common/audio/danielTheBard/Chat.mp3 b/common/audio/danielTheBard/Chat.mp3 index dd3d8e0995..7276235419 100644 Binary files a/common/audio/danielTheBard/Chat.mp3 and b/common/audio/danielTheBard/Chat.mp3 differ diff --git a/common/audio/danielTheBard/Chat.ogg b/common/audio/danielTheBard/Chat.ogg index 462f1fe63f..4eeccdcbfb 100644 Binary files a/common/audio/danielTheBard/Chat.ogg and b/common/audio/danielTheBard/Chat.ogg differ diff --git a/common/audio/danielTheBard/Daily.mp3 b/common/audio/danielTheBard/Daily.mp3 index 0252f35975..8bf57b2f9f 100644 Binary files a/common/audio/danielTheBard/Daily.mp3 and b/common/audio/danielTheBard/Daily.mp3 differ diff --git a/common/audio/danielTheBard/Daily.ogg b/common/audio/danielTheBard/Daily.ogg index 6cb33851ee..2a49b43c91 100644 Binary files a/common/audio/danielTheBard/Daily.ogg and b/common/audio/danielTheBard/Daily.ogg differ diff --git a/common/audio/danielTheBard/Death.mp3 b/common/audio/danielTheBard/Death.mp3 index cda07e9076..b0b131d12c 100644 Binary files a/common/audio/danielTheBard/Death.mp3 and b/common/audio/danielTheBard/Death.mp3 differ diff --git a/common/audio/danielTheBard/Death.ogg b/common/audio/danielTheBard/Death.ogg index 9c0711cbfd..ef0c10bc01 100644 Binary files a/common/audio/danielTheBard/Death.ogg and b/common/audio/danielTheBard/Death.ogg differ diff --git a/common/audio/danielTheBard/Item_Drop.mp3 b/common/audio/danielTheBard/Item_Drop.mp3 index bfaa6a7171..3ffafb65c0 100644 Binary files a/common/audio/danielTheBard/Item_Drop.mp3 and b/common/audio/danielTheBard/Item_Drop.mp3 differ diff --git a/common/audio/danielTheBard/Item_Drop.ogg b/common/audio/danielTheBard/Item_Drop.ogg index a498bdb166..20861caf21 100644 Binary files a/common/audio/danielTheBard/Item_Drop.ogg and b/common/audio/danielTheBard/Item_Drop.ogg differ diff --git a/common/audio/danielTheBard/Level_Up.mp3 b/common/audio/danielTheBard/Level_Up.mp3 index 6f0e6e1a02..b99efdc458 100644 Binary files a/common/audio/danielTheBard/Level_Up.mp3 and b/common/audio/danielTheBard/Level_Up.mp3 differ diff --git a/common/audio/danielTheBard/Level_Up.ogg b/common/audio/danielTheBard/Level_Up.ogg index fe7988b68d..4daf76d2b0 100644 Binary files a/common/audio/danielTheBard/Level_Up.ogg and b/common/audio/danielTheBard/Level_Up.ogg differ diff --git a/common/audio/danielTheBard/Minus_Habit.mp3 b/common/audio/danielTheBard/Minus_Habit.mp3 index d29c6d8fe0..87230c71f1 100644 Binary files a/common/audio/danielTheBard/Minus_Habit.mp3 and b/common/audio/danielTheBard/Minus_Habit.mp3 differ diff --git a/common/audio/danielTheBard/Minus_Habit.ogg b/common/audio/danielTheBard/Minus_Habit.ogg index 182c856262..4295f9c978 100644 Binary files a/common/audio/danielTheBard/Minus_Habit.ogg and b/common/audio/danielTheBard/Minus_Habit.ogg differ diff --git a/common/audio/danielTheBard/Plus_Habit.mp3 b/common/audio/danielTheBard/Plus_Habit.mp3 index 3f43d830ac..fc2f8088a4 100644 Binary files a/common/audio/danielTheBard/Plus_Habit.mp3 and b/common/audio/danielTheBard/Plus_Habit.mp3 differ diff --git a/common/audio/danielTheBard/Plus_Habit.ogg b/common/audio/danielTheBard/Plus_Habit.ogg index d0874ba48d..3b8a61611a 100644 Binary files a/common/audio/danielTheBard/Plus_Habit.ogg and b/common/audio/danielTheBard/Plus_Habit.ogg differ diff --git a/common/audio/danielTheBard/Reward.mp3 b/common/audio/danielTheBard/Reward.mp3 index 58994c86b2..c88009f676 100644 Binary files a/common/audio/danielTheBard/Reward.mp3 and b/common/audio/danielTheBard/Reward.mp3 differ diff --git a/common/audio/danielTheBard/Reward.ogg b/common/audio/danielTheBard/Reward.ogg index 31341da2c4..c97bf5862d 100644 Binary files a/common/audio/danielTheBard/Reward.ogg and b/common/audio/danielTheBard/Reward.ogg differ diff --git a/common/audio/danielTheBard/ToDo.mp3 b/common/audio/danielTheBard/ToDo.mp3 index 50c1e8e32e..5e7478fdd8 100644 Binary files a/common/audio/danielTheBard/ToDo.mp3 and b/common/audio/danielTheBard/ToDo.mp3 differ diff --git a/common/audio/danielTheBard/ToDo.ogg b/common/audio/danielTheBard/ToDo.ogg index 23b8244f38..3d1ea001ca 100644 Binary files a/common/audio/danielTheBard/ToDo.ogg and b/common/audio/danielTheBard/ToDo.ogg differ diff --git a/common/audio/gokulTheme/Achievement_Unlocked.mp3 b/common/audio/gokulTheme/Achievement_Unlocked.mp3 index 05cd28ab61..329633deb2 100644 Binary files a/common/audio/gokulTheme/Achievement_Unlocked.mp3 and b/common/audio/gokulTheme/Achievement_Unlocked.mp3 differ diff --git a/common/audio/gokulTheme/Achievement_Unlocked.ogg b/common/audio/gokulTheme/Achievement_Unlocked.ogg index 666b7501fd..b3fc51b3ae 100644 Binary files a/common/audio/gokulTheme/Achievement_Unlocked.ogg and b/common/audio/gokulTheme/Achievement_Unlocked.ogg differ diff --git a/common/audio/gokulTheme/Chat.mp3 b/common/audio/gokulTheme/Chat.mp3 index 9bbfac8a29..0eff90059d 100644 Binary files a/common/audio/gokulTheme/Chat.mp3 and b/common/audio/gokulTheme/Chat.mp3 differ diff --git a/common/audio/gokulTheme/Chat.ogg b/common/audio/gokulTheme/Chat.ogg index a386443a5b..b5ffa577ae 100644 Binary files a/common/audio/gokulTheme/Chat.ogg and b/common/audio/gokulTheme/Chat.ogg differ diff --git a/common/audio/gokulTheme/Daily.mp3 b/common/audio/gokulTheme/Daily.mp3 index 58ece9fe2d..802d7a183d 100644 Binary files a/common/audio/gokulTheme/Daily.mp3 and b/common/audio/gokulTheme/Daily.mp3 differ diff --git a/common/audio/gokulTheme/Daily.ogg b/common/audio/gokulTheme/Daily.ogg index 03b75bf3d4..1d7741fbb5 100644 Binary files a/common/audio/gokulTheme/Daily.ogg and b/common/audio/gokulTheme/Daily.ogg differ diff --git a/common/audio/gokulTheme/Death.mp3 b/common/audio/gokulTheme/Death.mp3 index e5cbfd2699..e0fcdc39c4 100644 Binary files a/common/audio/gokulTheme/Death.mp3 and b/common/audio/gokulTheme/Death.mp3 differ diff --git a/common/audio/gokulTheme/Death.ogg b/common/audio/gokulTheme/Death.ogg index accd2390b3..c98fca9493 100644 Binary files a/common/audio/gokulTheme/Death.ogg and b/common/audio/gokulTheme/Death.ogg differ diff --git a/common/audio/gokulTheme/Item_Drop.mp3 b/common/audio/gokulTheme/Item_Drop.mp3 index 439fb7792d..8dda74181b 100644 Binary files a/common/audio/gokulTheme/Item_Drop.mp3 and b/common/audio/gokulTheme/Item_Drop.mp3 differ diff --git a/common/audio/gokulTheme/Item_Drop.ogg b/common/audio/gokulTheme/Item_Drop.ogg index 8a1309020c..99d174feff 100644 Binary files a/common/audio/gokulTheme/Item_Drop.ogg and b/common/audio/gokulTheme/Item_Drop.ogg differ diff --git a/common/audio/gokulTheme/Level_Up.mp3 b/common/audio/gokulTheme/Level_Up.mp3 index 49af3e84e9..f2153f5329 100644 Binary files a/common/audio/gokulTheme/Level_Up.mp3 and b/common/audio/gokulTheme/Level_Up.mp3 differ diff --git a/common/audio/gokulTheme/Level_Up.ogg b/common/audio/gokulTheme/Level_Up.ogg index f4473d8727..c88c355b45 100644 Binary files a/common/audio/gokulTheme/Level_Up.ogg and b/common/audio/gokulTheme/Level_Up.ogg differ diff --git a/common/audio/gokulTheme/Minus_Habit.mp3 b/common/audio/gokulTheme/Minus_Habit.mp3 index f7afb5c94b..c67418da4f 100644 Binary files a/common/audio/gokulTheme/Minus_Habit.mp3 and b/common/audio/gokulTheme/Minus_Habit.mp3 differ diff --git a/common/audio/gokulTheme/Minus_Habit.ogg b/common/audio/gokulTheme/Minus_Habit.ogg index 6e1d9eaeef..28c68f4cf3 100644 Binary files a/common/audio/gokulTheme/Minus_Habit.ogg and b/common/audio/gokulTheme/Minus_Habit.ogg differ diff --git a/common/audio/gokulTheme/Plus_Habit.mp3 b/common/audio/gokulTheme/Plus_Habit.mp3 index 91afbba5e9..9b79815eac 100644 Binary files a/common/audio/gokulTheme/Plus_Habit.mp3 and b/common/audio/gokulTheme/Plus_Habit.mp3 differ diff --git a/common/audio/gokulTheme/Plus_Habit.ogg b/common/audio/gokulTheme/Plus_Habit.ogg index 6343875f4d..8fd471d46d 100644 Binary files a/common/audio/gokulTheme/Plus_Habit.ogg and b/common/audio/gokulTheme/Plus_Habit.ogg differ diff --git a/common/audio/gokulTheme/Reward.mp3 b/common/audio/gokulTheme/Reward.mp3 index 570c2f424f..0ec446cc7d 100644 Binary files a/common/audio/gokulTheme/Reward.mp3 and b/common/audio/gokulTheme/Reward.mp3 differ diff --git a/common/audio/gokulTheme/Reward.ogg b/common/audio/gokulTheme/Reward.ogg index fe7c59cff1..f0aac8abd2 100644 Binary files a/common/audio/gokulTheme/Reward.ogg and b/common/audio/gokulTheme/Reward.ogg differ diff --git a/common/audio/gokulTheme/ToDo.mp3 b/common/audio/gokulTheme/ToDo.mp3 index 11bdd69e2e..6706c1fbbc 100644 Binary files a/common/audio/gokulTheme/ToDo.mp3 and b/common/audio/gokulTheme/ToDo.mp3 differ diff --git a/common/audio/gokulTheme/ToDo.ogg b/common/audio/gokulTheme/ToDo.ogg index 9a53b12874..3edc7e398b 100644 Binary files a/common/audio/gokulTheme/ToDo.ogg and b/common/audio/gokulTheme/ToDo.ogg differ diff --git a/common/audio/luneFoxTheme/Achievement_Unlocked.mp3 b/common/audio/luneFoxTheme/Achievement_Unlocked.mp3 index f45ac96f75..8ba7b1a371 100644 Binary files a/common/audio/luneFoxTheme/Achievement_Unlocked.mp3 and b/common/audio/luneFoxTheme/Achievement_Unlocked.mp3 differ diff --git a/common/audio/luneFoxTheme/Achievement_Unlocked.ogg b/common/audio/luneFoxTheme/Achievement_Unlocked.ogg index 9a81307512..a4cd548ed3 100644 Binary files a/common/audio/luneFoxTheme/Achievement_Unlocked.ogg and b/common/audio/luneFoxTheme/Achievement_Unlocked.ogg differ diff --git a/common/audio/luneFoxTheme/Chat.mp3 b/common/audio/luneFoxTheme/Chat.mp3 index 9fe637ff00..e7b8cce2b5 100644 Binary files a/common/audio/luneFoxTheme/Chat.mp3 and b/common/audio/luneFoxTheme/Chat.mp3 differ diff --git a/common/audio/luneFoxTheme/Chat.ogg b/common/audio/luneFoxTheme/Chat.ogg index 3caadb1909..1b90c9371b 100644 Binary files a/common/audio/luneFoxTheme/Chat.ogg and b/common/audio/luneFoxTheme/Chat.ogg differ diff --git a/common/audio/luneFoxTheme/Daily.mp3 b/common/audio/luneFoxTheme/Daily.mp3 index aa8561590a..8a019d8924 100644 Binary files a/common/audio/luneFoxTheme/Daily.mp3 and b/common/audio/luneFoxTheme/Daily.mp3 differ diff --git a/common/audio/luneFoxTheme/Daily.ogg b/common/audio/luneFoxTheme/Daily.ogg index 05287d2b4c..c4e94f31e8 100644 Binary files a/common/audio/luneFoxTheme/Daily.ogg and b/common/audio/luneFoxTheme/Daily.ogg differ diff --git a/common/audio/luneFoxTheme/Death.mp3 b/common/audio/luneFoxTheme/Death.mp3 index 917f6f4ac4..4b7961a750 100644 Binary files a/common/audio/luneFoxTheme/Death.mp3 and b/common/audio/luneFoxTheme/Death.mp3 differ diff --git a/common/audio/luneFoxTheme/Death.ogg b/common/audio/luneFoxTheme/Death.ogg index 25efd1f888..f1712da291 100644 Binary files a/common/audio/luneFoxTheme/Death.ogg and b/common/audio/luneFoxTheme/Death.ogg differ diff --git a/common/audio/luneFoxTheme/Item_Drop.mp3 b/common/audio/luneFoxTheme/Item_Drop.mp3 index 26b6e8e331..dfc595a93f 100644 Binary files a/common/audio/luneFoxTheme/Item_Drop.mp3 and b/common/audio/luneFoxTheme/Item_Drop.mp3 differ diff --git a/common/audio/luneFoxTheme/Item_Drop.ogg b/common/audio/luneFoxTheme/Item_Drop.ogg index b08764a709..58b7398b77 100644 Binary files a/common/audio/luneFoxTheme/Item_Drop.ogg and b/common/audio/luneFoxTheme/Item_Drop.ogg differ diff --git a/common/audio/luneFoxTheme/Level_Up.mp3 b/common/audio/luneFoxTheme/Level_Up.mp3 index 979678479f..4c128bc2d9 100644 Binary files a/common/audio/luneFoxTheme/Level_Up.mp3 and b/common/audio/luneFoxTheme/Level_Up.mp3 differ diff --git a/common/audio/luneFoxTheme/Level_Up.ogg b/common/audio/luneFoxTheme/Level_Up.ogg index f99dede828..6b94c08bf5 100644 Binary files a/common/audio/luneFoxTheme/Level_Up.ogg and b/common/audio/luneFoxTheme/Level_Up.ogg differ diff --git a/common/audio/luneFoxTheme/Minus_Habit.mp3 b/common/audio/luneFoxTheme/Minus_Habit.mp3 index 159ffa8afa..011c784494 100644 Binary files a/common/audio/luneFoxTheme/Minus_Habit.mp3 and b/common/audio/luneFoxTheme/Minus_Habit.mp3 differ diff --git a/common/audio/luneFoxTheme/Minus_Habit.ogg b/common/audio/luneFoxTheme/Minus_Habit.ogg index acc69e64b2..e769acdfcc 100644 Binary files a/common/audio/luneFoxTheme/Minus_Habit.ogg and b/common/audio/luneFoxTheme/Minus_Habit.ogg differ diff --git a/common/audio/luneFoxTheme/Plus_Habit.mp3 b/common/audio/luneFoxTheme/Plus_Habit.mp3 index 985c912883..a9fc0ce702 100644 Binary files a/common/audio/luneFoxTheme/Plus_Habit.mp3 and b/common/audio/luneFoxTheme/Plus_Habit.mp3 differ diff --git a/common/audio/luneFoxTheme/Plus_Habit.ogg b/common/audio/luneFoxTheme/Plus_Habit.ogg index db29eef496..264ff82d28 100644 Binary files a/common/audio/luneFoxTheme/Plus_Habit.ogg and b/common/audio/luneFoxTheme/Plus_Habit.ogg differ diff --git a/common/audio/luneFoxTheme/Reward.mp3 b/common/audio/luneFoxTheme/Reward.mp3 index f6e18a4157..52aa2cd686 100644 Binary files a/common/audio/luneFoxTheme/Reward.mp3 and b/common/audio/luneFoxTheme/Reward.mp3 differ diff --git a/common/audio/luneFoxTheme/Reward.ogg b/common/audio/luneFoxTheme/Reward.ogg index e149a004f0..f4d8c09360 100644 Binary files a/common/audio/luneFoxTheme/Reward.ogg and b/common/audio/luneFoxTheme/Reward.ogg differ diff --git a/common/audio/luneFoxTheme/ToDo.mp3 b/common/audio/luneFoxTheme/ToDo.mp3 index 188d023fb5..5871adbc91 100644 Binary files a/common/audio/luneFoxTheme/ToDo.mp3 and b/common/audio/luneFoxTheme/ToDo.mp3 differ diff --git a/common/audio/luneFoxTheme/ToDo.ogg b/common/audio/luneFoxTheme/ToDo.ogg index 38abefc5f3..ee7bb4671a 100644 Binary files a/common/audio/luneFoxTheme/ToDo.ogg and b/common/audio/luneFoxTheme/ToDo.ogg differ diff --git a/common/audio/wattsTheme/Achievement_Unlocked.mp3 b/common/audio/wattsTheme/Achievement_Unlocked.mp3 index f21b4dd9ab..9029fbff99 100644 Binary files a/common/audio/wattsTheme/Achievement_Unlocked.mp3 and b/common/audio/wattsTheme/Achievement_Unlocked.mp3 differ diff --git a/common/audio/wattsTheme/Achievement_Unlocked.ogg b/common/audio/wattsTheme/Achievement_Unlocked.ogg index 5fb69d90fa..a7d706ed77 100644 Binary files a/common/audio/wattsTheme/Achievement_Unlocked.ogg and b/common/audio/wattsTheme/Achievement_Unlocked.ogg differ diff --git a/common/audio/wattsTheme/Daily.mp3 b/common/audio/wattsTheme/Daily.mp3 index 8ad2ccf91b..574319801e 100644 Binary files a/common/audio/wattsTheme/Daily.mp3 and b/common/audio/wattsTheme/Daily.mp3 differ diff --git a/common/audio/wattsTheme/Daily.ogg b/common/audio/wattsTheme/Daily.ogg index 55cbdd1ab7..0c92bff7e5 100644 Binary files a/common/audio/wattsTheme/Daily.ogg and b/common/audio/wattsTheme/Daily.ogg differ diff --git a/common/audio/wattsTheme/Death.mp3 b/common/audio/wattsTheme/Death.mp3 index f540666a76..3eded7c2ab 100644 Binary files a/common/audio/wattsTheme/Death.mp3 and b/common/audio/wattsTheme/Death.mp3 differ diff --git a/common/audio/wattsTheme/Death.ogg b/common/audio/wattsTheme/Death.ogg index a2db1834fb..aab1b335c7 100644 Binary files a/common/audio/wattsTheme/Death.ogg and b/common/audio/wattsTheme/Death.ogg differ diff --git a/common/audio/wattsTheme/Item_Drop.mp3 b/common/audio/wattsTheme/Item_Drop.mp3 index 2d5b879fc7..7c61a91071 100644 Binary files a/common/audio/wattsTheme/Item_Drop.mp3 and b/common/audio/wattsTheme/Item_Drop.mp3 differ diff --git a/common/audio/wattsTheme/Item_Drop.ogg b/common/audio/wattsTheme/Item_Drop.ogg index 9a69aea16d..c09fd1d174 100644 Binary files a/common/audio/wattsTheme/Item_Drop.ogg and b/common/audio/wattsTheme/Item_Drop.ogg differ diff --git a/common/audio/wattsTheme/Level_Up.mp3 b/common/audio/wattsTheme/Level_Up.mp3 index 7e4be04d88..36427090b1 100644 Binary files a/common/audio/wattsTheme/Level_Up.mp3 and b/common/audio/wattsTheme/Level_Up.mp3 differ diff --git a/common/audio/wattsTheme/Level_Up.ogg b/common/audio/wattsTheme/Level_Up.ogg index da782f56f7..25672991a0 100644 Binary files a/common/audio/wattsTheme/Level_Up.ogg and b/common/audio/wattsTheme/Level_Up.ogg differ diff --git a/common/audio/wattsTheme/Minus_Habit.mp3 b/common/audio/wattsTheme/Minus_Habit.mp3 index 71cf23cd53..8584a5ae8c 100644 Binary files a/common/audio/wattsTheme/Minus_Habit.mp3 and b/common/audio/wattsTheme/Minus_Habit.mp3 differ diff --git a/common/audio/wattsTheme/Minus_Habit.ogg b/common/audio/wattsTheme/Minus_Habit.ogg index 981dc429e6..ec6247eb8e 100644 Binary files a/common/audio/wattsTheme/Minus_Habit.ogg and b/common/audio/wattsTheme/Minus_Habit.ogg differ diff --git a/common/audio/wattsTheme/Plus_Habit.mp3 b/common/audio/wattsTheme/Plus_Habit.mp3 index 54f132127d..5157827895 100644 Binary files a/common/audio/wattsTheme/Plus_Habit.mp3 and b/common/audio/wattsTheme/Plus_Habit.mp3 differ diff --git a/common/audio/wattsTheme/Plus_Habit.ogg b/common/audio/wattsTheme/Plus_Habit.ogg index 3436395de8..ba013e29fd 100644 Binary files a/common/audio/wattsTheme/Plus_Habit.ogg and b/common/audio/wattsTheme/Plus_Habit.ogg differ diff --git a/common/audio/wattsTheme/Reward.mp3 b/common/audio/wattsTheme/Reward.mp3 index d90efdd83c..a1c3b5dae8 100644 Binary files a/common/audio/wattsTheme/Reward.mp3 and b/common/audio/wattsTheme/Reward.mp3 differ diff --git a/common/audio/wattsTheme/Reward.ogg b/common/audio/wattsTheme/Reward.ogg index 1fce2f529c..b2cd01648f 100644 Binary files a/common/audio/wattsTheme/Reward.ogg and b/common/audio/wattsTheme/Reward.ogg differ diff --git a/common/audio/wattsTheme/ToDo.mp3 b/common/audio/wattsTheme/ToDo.mp3 index 9c85f09e26..26f160b3cc 100644 Binary files a/common/audio/wattsTheme/ToDo.mp3 and b/common/audio/wattsTheme/ToDo.mp3 differ diff --git a/common/audio/wattsTheme/ToDo.ogg b/common/audio/wattsTheme/ToDo.ogg index 9dbf533418..f91392d4e0 100644 Binary files a/common/audio/wattsTheme/ToDo.ogg and b/common/audio/wattsTheme/ToDo.ogg differ diff --git a/common/dist/sprites/habitrpg-shared.css b/common/dist/sprites/habitrpg-shared.css index bfd8135e18..3accdf078a 100644 --- a/common/dist/sprites/habitrpg-shared.css +++ b/common/dist/sprites/habitrpg-shared.css @@ -1 +1 @@ -.2014_Fall_HealerPROMO2{background-image:url(spritesmith-largeSprites-0.png);background-position:-822px -995px;width:90px;height:90px}.2014_Fall_Mage_PROMO9{background-image:url(spritesmith-largeSprites-0.png);background-position:-306px -417px;width:120px;height:90px}.2014_Fall_RoguePROMO3{background-image:url(spritesmith-largeSprites-0.png);background-position:-808px -621px;width:105px;height:90px}.2014_Fall_Warrior_PROMO{background-image:url(spritesmith-largeSprites-0.png);background-position:-276px -995px;width:90px;height:90px}.promo_backtoschool{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -522px;width:150px;height:150px}.promo_burnout{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px 0;width:219px;height:240px}.promo_classes_fall_2014{background-image:url(spritesmith-largeSprites-0.png);background-position:-326px -724px;width:321px;height:100px}.promo_classes_fall_2015{background-image:url(spritesmith-largeSprites-0.png);background-position:-430px -621px;width:377px;height:99px}.promo_dilatoryDistress{background-image:url(spritesmith-largeSprites-0.png);background-position:-458px -995px;width:90px;height:90px}.promo_enchanted_armoire{background-image:url(spritesmith-largeSprites-0.png);background-position:-499px -525px;width:374px;height:76px}.promo_enchanted_armoire_201507{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -673px;width:217px;height:90px}.promo_enchanted_armoire_201508{background-image:url(spritesmith-largeSprites-0.png);background-position:-648px -724px;width:180px;height:90px}.promo_enchanted_armoire_201509{background-image:url(spritesmith-largeSprites-0.png);background-position:-549px -995px;width:90px;height:90px}.promo_enchanted_armoire_201511{background-image:url(spritesmith-largeSprites-0.png);background-position:-306px -326px;width:122px;height:90px}.promo_habitica{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px -241px;width:175px;height:175px}.promo_habitica_sticker{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -220px;width:305px;height:304px}.promo_haunted_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1094px -522px;width:100px;height:137px}.customize-option.promo_haunted_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -537px;width:60px;height:60px}.promo_item_notif{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -271px;width:249px;height:102px}.promo_mystery_201405{background-image:url(spritesmith-largeSprites-0.png);background-position:-1095px -995px;width:90px;height:90px}.promo_mystery_201406{background-image:url(spritesmith-largeSprites-0.png);background-position:-91px -995px;width:90px;height:96px}.promo_mystery_201407{background-image:url(spritesmith-largeSprites-0.png);background-position:-628px -241px;width:42px;height:62px}.promo_mystery_201408{background-image:url(spritesmith-largeSprites-0.png);background-position:-1161px -764px;width:60px;height:71px}.promo_mystery_201409{background-image:url(spritesmith-largeSprites-0.png);background-position:-731px -995px;width:90px;height:90px}.promo_mystery_201410{background-image:url(spritesmith-largeSprites-0.png);background-position:-1161px -673px;width:72px;height:63px}.promo_mystery_201411{background-image:url(spritesmith-largeSprites-0.png);background-position:-913px -995px;width:90px;height:90px}.promo_mystery_201412{background-image:url(spritesmith-largeSprites-0.png);background-position:-1195px -592px;width:42px;height:66px}.promo_mystery_201501{background-image:url(spritesmith-largeSprites-0.png);background-position:-1193px -271px;width:48px;height:63px}.promo_mystery_201502{background-image:url(spritesmith-largeSprites-0.png);background-position:-367px -995px;width:90px;height:90px}.promo_mystery_201503{background-image:url(spritesmith-largeSprites-0.png);background-position:-91px -1101px;width:90px;height:90px}.promo_mystery_201504{background-image:url(spritesmith-largeSprites-0.png);background-position:-874px -525px;width:60px;height:69px}.promo_mystery_201505{background-image:url(spritesmith-largeSprites-0.png);background-position:-640px -995px;width:90px;height:90px}.promo_mystery_201506{background-image:url(spritesmith-largeSprites-0.png);background-position:-1195px -522px;width:42px;height:69px}.promo_mystery_201507{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -995px;width:90px;height:105px}.promo_mystery_201508{background-image:url(spritesmith-largeSprites-0.png);background-position:-829px -724px;width:93px;height:90px}.promo_mystery_201509{background-image:url(spritesmith-largeSprites-0.png);background-position:-1004px -995px;width:90px;height:90px}.promo_mystery_201510{background-image:url(spritesmith-largeSprites-0.png);background-position:-182px -995px;width:93px;height:90px}.promo_mystery_201511{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -1101px;width:90px;height:90px}.promo_mystery_3014{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -764px;width:217px;height:90px}.promo_orca{background-image:url(spritesmith-largeSprites-0.png);background-position:-306px -220px;width:105px;height:105px}.promo_partyhats{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -855px;width:115px;height:47px}.promo_pastel_skin{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -835px;width:330px;height:83px}.customize-option.promo_pastel_skin{background-image:url(spritesmith-largeSprites-0.png);background-position:-25px -850px;width:60px;height:60px}.promo_pet_skins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1100px -374px;width:140px;height:147px}.customize-option.promo_pet_skins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1125px -389px;width:60px;height:60px}.promo_shimmer_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-331px -835px;width:330px;height:83px}.customize-option.promo_shimmer_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-356px -850px;width:60px;height:60px}.promo_splashyskins{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px -417px;width:198px;height:91px}.customize-option.promo_splashyskins{background-image:url(spritesmith-largeSprites-0.png);background-position:-477px -432px;width:60px;height:60px}.promo_springclasses2014{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -180px;width:288px;height:90px}.promo_springclasses2015{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -89px;width:288px;height:90px}.promo_summer_classes_2014{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -621px;width:429px;height:102px}.promo_summer_classes_2015{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px 0;width:300px;height:88px}.promo_updos{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -374px;width:156px;height:147px}.promo_veteran_pets{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -919px;width:146px;height:75px}.promo_winterclasses2015{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -724px;width:325px;height:110px}.promo_winteryhair{background-image:url(spritesmith-largeSprites-0.png);background-position:-662px -835px;width:152px;height:75px}.customize-option.promo_winteryhair{background-image:url(spritesmith-largeSprites-0.png);background-position:-687px -850px;width:60px;height:60px}.avatar_variety{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -525px;width:498px;height:95px}.party_preview{background-image:url(spritesmith-largeSprites-0.png);background-position:0 0;width:451px;height:219px}.welcome_basic_avatars{background-image:url(spritesmith-largeSprites-0.png);background-position:-672px -347px;width:246px;height:165px}.welcome_promo_party{background-image:url(spritesmith-largeSprites-0.png);background-position:-672px 0;width:270px;height:180px}.welcome_sample_tasks{background-image:url(spritesmith-largeSprites-0.png);background-position:-672px -181px;width:246px;height:165px}.achievement-alien{background-image:url(spritesmith-main-0.png);background-position:-1678px -1451px;width:24px;height:26px}.achievement-alien2x{background-image:url(spritesmith-main-0.png);background-position:-895px -979px;width:48px;height:52px}.achievement-alpha{background-image:url(spritesmith-main-0.png);background-position:-1678px -1424px;width:24px;height:26px}.achievement-armor{background-image:url(spritesmith-main-0.png);background-position:-1678px -1397px;width:24px;height:26px}.achievement-armor2x{background-image:url(spritesmith-main-0.png);background-position:-944px -979px;width:48px;height:52px}.achievement-boot{background-image:url(spritesmith-main-0.png);background-position:-1678px -1343px;width:24px;height:26px}.achievement-boot2x{background-image:url(spritesmith-main-0.png);background-position:-1042px -979px;width:48px;height:52px}.achievement-bow{background-image:url(spritesmith-main-0.png);background-position:-1678px -1289px;width:24px;height:26px}.achievement-bow2x{background-image:url(spritesmith-main-0.png);background-position:-504px -1582px;width:48px;height:52px}.achievement-burnout{background-image:url(spritesmith-main-0.png);background-position:-1678px -1235px;width:24px;height:26px}.achievement-burnout2x{background-image:url(spritesmith-main-0.png);background-position:-602px -1582px;width:48px;height:52px}.achievement-cactus{background-image:url(spritesmith-main-0.png);background-position:-1678px -1181px;width:24px;height:26px}.achievement-cactus2x{background-image:url(spritesmith-main-0.png);background-position:-700px -1582px;width:48px;height:52px}.achievement-cake{background-image:url(spritesmith-main-0.png);background-position:-1678px -1127px;width:24px;height:26px}.achievement-cake2x{background-image:url(spritesmith-main-0.png);background-position:-798px -1582px;width:48px;height:52px}.achievement-cave{background-image:url(spritesmith-main-0.png);background-position:-1678px -1073px;width:24px;height:26px}.achievement-cave2x{background-image:url(spritesmith-main-0.png);background-position:-896px -1582px;width:48px;height:52px}.achievement-coffin{background-image:url(spritesmith-main-0.png);background-position:-1678px -1019px;width:24px;height:26px}.achievement-comment{background-image:url(spritesmith-main-0.png);background-position:-1678px -992px;width:24px;height:26px}.achievement-comment2x{background-image:url(spritesmith-main-0.png);background-position:-994px -1582px;width:48px;height:52px}.achievement-costumeContest{background-image:url(spritesmith-main-0.png);background-position:-1678px -938px;width:24px;height:26px}.achievement-costumeContest2x{background-image:url(spritesmith-main-0.png);background-position:-1092px -1582px;width:48px;height:52px}.achievement-dilatory{background-image:url(spritesmith-main-0.png);background-position:-1678px -884px;width:24px;height:26px}.achievement-firefox{background-image:url(spritesmith-main-0.png);background-position:-1678px -857px;width:24px;height:26px}.achievement-greeting{background-image:url(spritesmith-main-0.png);background-position:-1678px -830px;width:24px;height:26px}.achievement-greeting2x{background-image:url(spritesmith-main-0.png);background-position:-1190px -1582px;width:48px;height:52px}.achievement-habitBirthday{background-image:url(spritesmith-main-0.png);background-position:-1678px -776px;width:24px;height:26px}.achievement-habitBirthday2x{background-image:url(spritesmith-main-0.png);background-position:-1288px -1582px;width:48px;height:52px}.achievement-habiticaDay{background-image:url(spritesmith-main-0.png);background-position:-1678px -722px;width:24px;height:26px}.achievement-habiticaDay2x{background-image:url(spritesmith-main-0.png);background-position:-1386px -1582px;width:48px;height:52px}.achievement-heart{background-image:url(spritesmith-main-0.png);background-position:-1678px -668px;width:24px;height:26px}.achievement-heart2x{background-image:url(spritesmith-main-0.png);background-position:-1435px -1582px;width:48px;height:52px}.achievement-karaoke-2x{background-image:url(spritesmith-main-0.png);background-position:-1533px -1582px;width:48px;height:52px}.achievement-karaoke{background-image:url(spritesmith-main-0.png);background-position:-1678px -587px;width:24px;height:26px}.achievement-ninja{background-image:url(spritesmith-main-0.png);background-position:-1678px -560px;width:24px;height:26px}.achievement-ninja2x{background-image:url(spritesmith-main-0.png);background-position:-1678px 0;width:48px;height:52px}.achievement-nye{background-image:url(spritesmith-main-0.png);background-position:-1678px -506px;width:24px;height:26px}.achievement-nye2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -106px;width:48px;height:52px}.achievement-perfect{background-image:url(spritesmith-main-0.png);background-position:-1678px -452px;width:24px;height:26px}.achievement-perfect2x{background-image:url(spritesmith-main-0.png);background-position:-846px -979px;width:48px;height:52px}.achievement-rat{background-image:url(spritesmith-main-0.png);background-position:-1678px -911px;width:24px;height:26px}.achievement-rat2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -318px;width:48px;height:52px}.achievement-seafoam{background-image:url(spritesmith-main-0.png);background-position:-1678px -398px;width:24px;height:26px}.achievement-seafoam2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -265px;width:48px;height:52px}.achievement-shield{background-image:url(spritesmith-main-0.png);background-position:-1678px -425px;width:24px;height:26px}.achievement-shield2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -159px;width:48px;height:52px}.achievement-shinySeed{background-image:url(spritesmith-main-0.png);background-position:-1678px -479px;width:24px;height:26px}.achievement-shinySeed2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -53px;width:48px;height:52px}.achievement-snowball{background-image:url(spritesmith-main-0.png);background-position:-1678px -533px;width:24px;height:26px}.achievement-snowball2x{background-image:url(spritesmith-main-0.png);background-position:-1582px -1582px;width:48px;height:52px}.achievement-spookDust{background-image:url(spritesmith-main-0.png);background-position:-1678px -614px;width:24px;height:26px}.achievement-spookDust2x{background-image:url(spritesmith-main-0.png);background-position:-1484px -1582px;width:48px;height:52px}.achievement-stoikalm{background-image:url(spritesmith-main-0.png);background-position:-1678px -641px;width:24px;height:26px}.achievement-sun{background-image:url(spritesmith-main-0.png);background-position:-1678px -695px;width:24px;height:26px}.achievement-sun2x{background-image:url(spritesmith-main-0.png);background-position:-1337px -1582px;width:48px;height:52px}.achievement-sword{background-image:url(spritesmith-main-0.png);background-position:-1678px -749px;width:24px;height:26px}.achievement-sword2x{background-image:url(spritesmith-main-0.png);background-position:-1239px -1582px;width:48px;height:52px}.achievement-thankyou{background-image:url(spritesmith-main-0.png);background-position:-1678px -803px;width:24px;height:26px}.achievement-thankyou2x{background-image:url(spritesmith-main-0.png);background-position:-1141px -1582px;width:48px;height:52px}.achievement-thermometer{background-image:url(spritesmith-main-0.png);background-position:-1678px -371px;width:24px;height:26px}.achievement-thermometer2x{background-image:url(spritesmith-main-0.png);background-position:-1043px -1582px;width:48px;height:52px}.achievement-tree{background-image:url(spritesmith-main-0.png);background-position:-1678px -965px;width:24px;height:26px}.achievement-tree2x{background-image:url(spritesmith-main-0.png);background-position:-945px -1582px;width:48px;height:52px}.achievement-triadbingo{background-image:url(spritesmith-main-0.png);background-position:-1678px -1046px;width:24px;height:26px}.achievement-triadbingo2x{background-image:url(spritesmith-main-0.png);background-position:-847px -1582px;width:48px;height:52px}.achievement-ultimate-healer{background-image:url(spritesmith-main-0.png);background-position:-1678px -1100px;width:24px;height:26px}.achievement-ultimate-healer2x{background-image:url(spritesmith-main-0.png);background-position:-749px -1582px;width:48px;height:52px}.achievement-ultimate-mage{background-image:url(spritesmith-main-0.png);background-position:-1678px -1154px;width:24px;height:26px}.achievement-ultimate-mage2x{background-image:url(spritesmith-main-0.png);background-position:-651px -1582px;width:48px;height:52px}.achievement-ultimate-rogue{background-image:url(spritesmith-main-0.png);background-position:-1678px -1208px;width:24px;height:26px}.achievement-ultimate-rogue2x{background-image:url(spritesmith-main-0.png);background-position:-553px -1582px;width:48px;height:52px}.achievement-ultimate-warrior{background-image:url(spritesmith-main-0.png);background-position:-1678px -1262px;width:24px;height:26px}.achievement-ultimate-warrior2x{background-image:url(spritesmith-main-0.png);background-position:-455px -1582px;width:48px;height:52px}.achievement-valentine{background-image:url(spritesmith-main-0.png);background-position:-1678px -1316px;width:24px;height:26px}.achievement-valentine2x{background-image:url(spritesmith-main-0.png);background-position:-993px -979px;width:48px;height:52px}.achievement-wolf{background-image:url(spritesmith-main-0.png);background-position:-1678px -1370px;width:24px;height:26px}.achievement-wolf2x{background-image:url(spritesmith-main-0.png);background-position:-1678px -212px;width:48px;height:52px}.background_autumn_forest{background-image:url(spritesmith-main-0.png);background-position:-423px -592px;width:140px;height:147px}.background_beach{background-image:url(spritesmith-main-0.png);background-position:-426px 0;width:141px;height:147px}.background_blacksmithy{background-image:url(spritesmith-main-0.png);background-position:-709px -148px;width:140px;height:147px}.background_cherry_trees{background-image:url(spritesmith-main-0.png);background-position:-709px -296px;width:140px;height:147px}.background_clouds{background-image:url(spritesmith-main-0.png);background-position:0 -592px;width:140px;height:147px}.background_coral_reef{background-image:url(spritesmith-main-0.png);background-position:-850px -148px;width:140px;height:147px}.background_crystal_cave{background-image:url(spritesmith-main-0.png);background-position:-850px -592px;width:140px;height:147px}.background_dilatory_ruins{background-image:url(spritesmith-main-0.png);background-position:0 -740px;width:140px;height:147px}.background_distant_castle{background-image:url(spritesmith-main-0.png);background-position:-423px -888px;width:140px;height:147px}.background_drifting_raft{background-image:url(spritesmith-main-0.png);background-position:-564px -888px;width:140px;height:147px}.background_dusty_canyons{background-image:url(spritesmith-main-0.png);background-position:-705px -888px;width:140px;height:147px}.background_fairy_ring{background-image:url(spritesmith-main-0.png);background-position:-568px 0;width:140px;height:147px}.background_floating_islands{background-image:url(spritesmith-main-0.png);background-position:-568px -148px;width:140px;height:147px}.background_floral_meadow{background-image:url(spritesmith-main-0.png);background-position:-568px -296px;width:140px;height:147px}.background_forest{background-image:url(spritesmith-main-0.png);background-position:0 -444px;width:140px;height:147px}.background_frigid_peak{background-image:url(spritesmith-main-0.png);background-position:-141px -444px;width:140px;height:147px}.background_giant_wave{background-image:url(spritesmith-main-0.png);background-position:-284px 0;width:141px;height:147px}.background_graveyard{background-image:url(spritesmith-main-0.png);background-position:-423px -444px;width:140px;height:147px}.background_gumdrop_land{background-image:url(spritesmith-main-0.png);background-position:-564px -444px;width:140px;height:147px}.background_harvest_feast{background-image:url(spritesmith-main-0.png);background-position:-709px 0;width:140px;height:147px}.background_harvest_fields{background-image:url(spritesmith-main-0.png);background-position:0 -148px;width:141px;height:147px}.background_harvest_moon{background-image:url(spritesmith-main-0.png);background-position:-142px -148px;width:141px;height:147px}.background_haunted_house{background-image:url(spritesmith-main-0.png);background-position:-709px -444px;width:140px;height:147px}.background_ice_cave{background-image:url(spritesmith-main-0.png);background-position:-284px -148px;width:141px;height:147px}.background_iceberg{background-image:url(spritesmith-main-0.png);background-position:-141px -592px;width:140px;height:147px}.background_island_waterfalls{background-image:url(spritesmith-main-0.png);background-position:-282px -592px;width:140px;height:147px}.background_marble_temple{background-image:url(spritesmith-main-0.png);background-position:-142px 0;width:141px;height:147px}.background_market{background-image:url(spritesmith-main-0.png);background-position:-564px -592px;width:140px;height:147px}.background_mountain_lake{background-image:url(spritesmith-main-0.png);background-position:-705px -592px;width:140px;height:147px}.background_night_dunes{background-image:url(spritesmith-main-0.png);background-position:-850px 0;width:140px;height:147px}.background_open_waters{background-image:url(spritesmith-main-0.png);background-position:0 0;width:141px;height:147px}.background_pagodas{background-image:url(spritesmith-main-0.png);background-position:-850px -296px;width:140px;height:147px}.background_pumpkin_patch{background-image:url(spritesmith-main-0.png);background-position:-850px -444px;width:140px;height:147px}.background_pyramids{background-image:url(spritesmith-main-0.png);background-position:-426px -148px;width:141px;height:147px}.background_rolling_hills{background-image:url(spritesmith-main-0.png);background-position:0 -296px;width:141px;height:147px}.background_seafarer_ship{background-image:url(spritesmith-main-0.png);background-position:-141px -740px;width:140px;height:147px}.background_shimmery_bubbles{background-image:url(spritesmith-main-0.png);background-position:-282px -740px;width:140px;height:147px}.background_slimy_swamp{background-image:url(spritesmith-main-0.png);background-position:-423px -740px;width:140px;height:147px}.background_snowy_pines{background-image:url(spritesmith-main-0.png);background-position:-564px -740px;width:140px;height:147px}.background_south_pole{background-image:url(spritesmith-main-0.png);background-position:-705px -740px;width:140px;height:147px}.background_spring_rain{background-image:url(spritesmith-main-0.png);background-position:-846px -740px;width:140px;height:147px}.background_stable{background-image:url(spritesmith-main-0.png);background-position:-991px 0;width:140px;height:147px}.background_stained_glass{background-image:url(spritesmith-main-0.png);background-position:-991px -148px;width:140px;height:147px}.background_starry_skies{background-image:url(spritesmith-main-0.png);background-position:-991px -296px;width:140px;height:147px}.background_sunken_ship{background-image:url(spritesmith-main-0.png);background-position:-991px -444px;width:140px;height:147px}.background_sunset_meadow{background-image:url(spritesmith-main-0.png);background-position:-991px -592px;width:140px;height:147px}.background_sunset_oasis{background-image:url(spritesmith-main-0.png);background-position:-991px -740px;width:140px;height:147px}.background_sunset_savannah{background-image:url(spritesmith-main-0.png);background-position:0 -888px;width:140px;height:147px}.background_swarming_darkness{background-image:url(spritesmith-main-0.png);background-position:-141px -888px;width:140px;height:147px}.background_tavern{background-image:url(spritesmith-main-0.png);background-position:-282px -888px;width:140px;height:147px}.background_thunderstorm{background-image:url(spritesmith-main-0.png);background-position:-142px -296px;width:141px;height:147px}.background_twinkly_lights{background-image:url(spritesmith-main-0.png);background-position:-284px -296px;width:141px;height:147px}.background_twinkly_party_lights{background-image:url(spritesmith-main-0.png);background-position:-426px -296px;width:141px;height:147px}.background_volcano{background-image:url(spritesmith-main-0.png);background-position:-282px -444px;width:140px;height:147px}.hair_beard_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1314px -910px;width:90px;height:90px}.customize-option.hair_beard_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1339px -925px;width:60px;height:60px}.hair_beard_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-1314px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-1339px -1016px;width:60px;height:60px}.hair_beard_1_black{background-image:url(spritesmith-main-0.png);background-position:-1314px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_black{background-image:url(spritesmith-main-0.png);background-position:-1339px -1107px;width:60px;height:60px}.hair_beard_1_blond{background-image:url(spritesmith-main-0.png);background-position:-1314px -1183px;width:90px;height:90px}.customize-option.hair_beard_1_blond{background-image:url(spritesmith-main-0.png);background-position:-1339px -1198px;width:60px;height:60px}.hair_beard_1_blue{background-image:url(spritesmith-main-0.png);background-position:0 -1309px;width:90px;height:90px}.customize-option.hair_beard_1_blue{background-image:url(spritesmith-main-0.png);background-position:-25px -1324px;width:60px;height:60px}.hair_beard_1_brown{background-image:url(spritesmith-main-0.png);background-position:-91px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_brown{background-image:url(spritesmith-main-0.png);background-position:-116px -1324px;width:60px;height:60px}.hair_beard_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-182px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-207px -1324px;width:60px;height:60px}.hair_beard_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-273px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-298px -1324px;width:60px;height:60px}.hair_beard_1_festive{background-image:url(spritesmith-main-0.png);background-position:-364px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_festive{background-image:url(spritesmith-main-0.png);background-position:-389px -1324px;width:60px;height:60px}.hair_beard_1_frost{background-image:url(spritesmith-main-0.png);background-position:-455px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_frost{background-image:url(spritesmith-main-0.png);background-position:-480px -1324px;width:60px;height:60px}.hair_beard_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-546px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-571px -1324px;width:60px;height:60px}.hair_beard_1_green{background-image:url(spritesmith-main-0.png);background-position:-637px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_green{background-image:url(spritesmith-main-0.png);background-position:-662px -1324px;width:60px;height:60px}.hair_beard_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-728px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-753px -1324px;width:60px;height:60px}.hair_beard_1_holly{background-image:url(spritesmith-main-0.png);background-position:-819px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_holly{background-image:url(spritesmith-main-0.png);background-position:-844px -1324px;width:60px;height:60px}.hair_beard_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-910px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-935px -1324px;width:60px;height:60px}.hair_beard_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1001px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1026px -1324px;width:60px;height:60px}.hair_beard_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1092px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1117px -1324px;width:60px;height:60px}.hair_beard_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1183px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1208px -1324px;width:60px;height:60px}.hair_beard_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1274px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1299px -1324px;width:60px;height:60px}.hair_beard_1_porange{background-image:url(spritesmith-main-0.png);background-position:-1405px 0;width:90px;height:90px}.customize-option.hair_beard_1_porange{background-image:url(spritesmith-main-0.png);background-position:-1430px -15px;width:60px;height:60px}.hair_beard_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1405px -91px;width:90px;height:90px}.customize-option.hair_beard_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1430px -106px;width:60px;height:60px}.hair_beard_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1405px -182px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1430px -197px;width:60px;height:60px}.hair_beard_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1405px -273px;width:90px;height:90px}.customize-option.hair_beard_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1430px -288px;width:60px;height:60px}.hair_beard_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1405px -364px;width:90px;height:90px}.customize-option.hair_beard_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1430px -379px;width:60px;height:60px}.hair_beard_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1405px -455px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1430px -470px;width:60px;height:60px}.hair_beard_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-846px -888px;width:90px;height:90px}.customize-option.hair_beard_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-871px -903px;width:60px;height:60px}.hair_beard_1_red{background-image:url(spritesmith-main-0.png);background-position:-1405px -637px;width:90px;height:90px}.customize-option.hair_beard_1_red{background-image:url(spritesmith-main-0.png);background-position:-1430px -652px;width:60px;height:60px}.hair_beard_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1405px -728px;width:90px;height:90px}.customize-option.hair_beard_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1430px -743px;width:60px;height:60px}.hair_beard_1_white{background-image:url(spritesmith-main-0.png);background-position:-1405px -819px;width:90px;height:90px}.customize-option.hair_beard_1_white{background-image:url(spritesmith-main-0.png);background-position:-1430px -834px;width:60px;height:60px}.hair_beard_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1405px -910px;width:90px;height:90px}.customize-option.hair_beard_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1430px -925px;width:60px;height:60px}.hair_beard_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1405px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1430px -1016px;width:60px;height:60px}.hair_beard_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1405px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1430px -1107px;width:60px;height:60px}.hair_beard_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1405px -1183px;width:90px;height:90px}.customize-option.hair_beard_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1430px -1198px;width:60px;height:60px}.hair_beard_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1405px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1430px -1289px;width:60px;height:60px}.hair_beard_2_aurora{background-image:url(spritesmith-main-0.png);background-position:0 -1400px;width:90px;height:90px}.customize-option.hair_beard_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-25px -1415px;width:60px;height:60px}.hair_beard_2_black{background-image:url(spritesmith-main-0.png);background-position:-91px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_black{background-image:url(spritesmith-main-0.png);background-position:-116px -1415px;width:60px;height:60px}.hair_beard_2_blond{background-image:url(spritesmith-main-0.png);background-position:-182px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_blond{background-image:url(spritesmith-main-0.png);background-position:-207px -1415px;width:60px;height:60px}.hair_beard_2_blue{background-image:url(spritesmith-main-0.png);background-position:-273px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_blue{background-image:url(spritesmith-main-0.png);background-position:-298px -1415px;width:60px;height:60px}.hair_beard_2_brown{background-image:url(spritesmith-main-0.png);background-position:-364px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_brown{background-image:url(spritesmith-main-0.png);background-position:-389px -1415px;width:60px;height:60px}.hair_beard_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-455px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-480px -1415px;width:60px;height:60px}.hair_beard_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-546px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-571px -1415px;width:60px;height:60px}.hair_beard_2_festive{background-image:url(spritesmith-main-0.png);background-position:-637px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_festive{background-image:url(spritesmith-main-0.png);background-position:-662px -1415px;width:60px;height:60px}.hair_beard_2_frost{background-image:url(spritesmith-main-0.png);background-position:-728px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_frost{background-image:url(spritesmith-main-0.png);background-position:-753px -1415px;width:60px;height:60px}.hair_beard_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-819px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-844px -1415px;width:60px;height:60px}.hair_beard_2_green{background-image:url(spritesmith-main-0.png);background-position:-910px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_green{background-image:url(spritesmith-main-0.png);background-position:-935px -1415px;width:60px;height:60px}.hair_beard_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-1001px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-1026px -1415px;width:60px;height:60px}.hair_beard_2_holly{background-image:url(spritesmith-main-0.png);background-position:-1092px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_holly{background-image:url(spritesmith-main-0.png);background-position:-1117px -1415px;width:60px;height:60px}.hair_beard_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1183px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1208px -1415px;width:60px;height:60px}.hair_beard_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1274px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1299px -1415px;width:60px;height:60px}.hair_beard_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1365px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1390px -1415px;width:60px;height:60px}.hair_beard_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1496px 0;width:90px;height:90px}.customize-option.hair_beard_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1521px -15px;width:60px;height:60px}.hair_beard_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1496px -91px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1521px -106px;width:60px;height:60px}.hair_beard_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1496px -182px;width:90px;height:90px}.customize-option.hair_beard_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1521px -197px;width:60px;height:60px}.hair_beard_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1496px -273px;width:90px;height:90px}.customize-option.hair_beard_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1521px -288px;width:60px;height:60px}.hair_beard_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1496px -364px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1521px -379px;width:60px;height:60px}.hair_beard_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1496px -455px;width:90px;height:90px}.customize-option.hair_beard_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1521px -470px;width:60px;height:60px}.hair_beard_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1496px -546px;width:90px;height:90px}.customize-option.hair_beard_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1521px -561px;width:60px;height:60px}.hair_beard_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1496px -637px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1521px -652px;width:60px;height:60px}.hair_beard_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1496px -728px;width:90px;height:90px}.customize-option.hair_beard_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1521px -743px;width:60px;height:60px}.hair_beard_2_red{background-image:url(spritesmith-main-0.png);background-position:-1496px -819px;width:90px;height:90px}.customize-option.hair_beard_2_red{background-image:url(spritesmith-main-0.png);background-position:-1521px -834px;width:60px;height:60px}.hair_beard_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1496px -910px;width:90px;height:90px}.customize-option.hair_beard_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1521px -925px;width:60px;height:60px}.hair_beard_2_white{background-image:url(spritesmith-main-0.png);background-position:-1496px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_white{background-image:url(spritesmith-main-0.png);background-position:-1521px -1016px;width:60px;height:60px}.hair_beard_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1496px -1092px;width:90px;height:90px}.customize-option.hair_beard_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1521px -1107px;width:60px;height:60px}.hair_beard_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1496px -1183px;width:90px;height:90px}.customize-option.hair_beard_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1521px -1198px;width:60px;height:60px}.hair_beard_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-1496px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-1521px -1289px;width:60px;height:60px}.hair_beard_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-1496px -1365px;width:90px;height:90px}.customize-option.hair_beard_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-1521px -1380px;width:60px;height:60px}.hair_beard_3_TRUred{background-image:url(spritesmith-main-0.png);background-position:0 -1491px;width:90px;height:90px}.customize-option.hair_beard_3_TRUred{background-image:url(spritesmith-main-0.png);background-position:-25px -1506px;width:60px;height:60px}.hair_beard_3_aurora{background-image:url(spritesmith-main-0.png);background-position:-91px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_aurora{background-image:url(spritesmith-main-0.png);background-position:-116px -1506px;width:60px;height:60px}.hair_beard_3_black{background-image:url(spritesmith-main-0.png);background-position:-182px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_black{background-image:url(spritesmith-main-0.png);background-position:-207px -1506px;width:60px;height:60px}.hair_beard_3_blond{background-image:url(spritesmith-main-0.png);background-position:-273px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_blond{background-image:url(spritesmith-main-0.png);background-position:-298px -1506px;width:60px;height:60px}.hair_beard_3_blue{background-image:url(spritesmith-main-0.png);background-position:-364px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_blue{background-image:url(spritesmith-main-0.png);background-position:-389px -1506px;width:60px;height:60px}.hair_beard_3_brown{background-image:url(spritesmith-main-0.png);background-position:-455px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_brown{background-image:url(spritesmith-main-0.png);background-position:-480px -1506px;width:60px;height:60px}.hair_beard_3_candycane{background-image:url(spritesmith-main-0.png);background-position:-546px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_candycane{background-image:url(spritesmith-main-0.png);background-position:-571px -1506px;width:60px;height:60px}.hair_beard_3_candycorn{background-image:url(spritesmith-main-0.png);background-position:-637px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_candycorn{background-image:url(spritesmith-main-0.png);background-position:-662px -1506px;width:60px;height:60px}.hair_beard_3_festive{background-image:url(spritesmith-main-0.png);background-position:-728px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_festive{background-image:url(spritesmith-main-0.png);background-position:-753px -1506px;width:60px;height:60px}.hair_beard_3_frost{background-image:url(spritesmith-main-0.png);background-position:-819px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_frost{background-image:url(spritesmith-main-0.png);background-position:-844px -1506px;width:60px;height:60px}.hair_beard_3_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-910px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-935px -1506px;width:60px;height:60px}.hair_beard_3_green{background-image:url(spritesmith-main-0.png);background-position:-1001px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_green{background-image:url(spritesmith-main-0.png);background-position:-1026px -1506px;width:60px;height:60px}.hair_beard_3_halloween{background-image:url(spritesmith-main-0.png);background-position:-1092px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_halloween{background-image:url(spritesmith-main-0.png);background-position:-1117px -1506px;width:60px;height:60px}.hair_beard_3_holly{background-image:url(spritesmith-main-0.png);background-position:-1183px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_holly{background-image:url(spritesmith-main-0.png);background-position:-1208px -1506px;width:60px;height:60px}.hair_beard_3_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1274px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1299px -1506px;width:60px;height:60px}.hair_beard_3_midnight{background-image:url(spritesmith-main-0.png);background-position:-1365px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_midnight{background-image:url(spritesmith-main-0.png);background-position:-1390px -1506px;width:60px;height:60px}.hair_beard_3_pblue{background-image:url(spritesmith-main-0.png);background-position:-1456px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_pblue{background-image:url(spritesmith-main-0.png);background-position:-1481px -1506px;width:60px;height:60px}.hair_beard_3_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1587px 0;width:90px;height:90px}.customize-option.hair_beard_3_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1612px -15px;width:60px;height:60px}.hair_beard_3_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1587px -91px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1612px -106px;width:60px;height:60px}.hair_beard_3_porange{background-image:url(spritesmith-main-0.png);background-position:-1587px -182px;width:90px;height:90px}.customize-option.hair_beard_3_porange{background-image:url(spritesmith-main-0.png);background-position:-1612px -197px;width:60px;height:60px}.hair_beard_3_ppink{background-image:url(spritesmith-main-0.png);background-position:-1587px -273px;width:90px;height:90px}.customize-option.hair_beard_3_ppink{background-image:url(spritesmith-main-0.png);background-position:-1612px -288px;width:60px;height:60px}.hair_beard_3_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1587px -364px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1612px -379px;width:60px;height:60px}.hair_beard_3_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1587px -455px;width:90px;height:90px}.customize-option.hair_beard_3_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1612px -470px;width:60px;height:60px}.hair_beard_3_purple{background-image:url(spritesmith-main-0.png);background-position:-1587px -546px;width:90px;height:90px}.customize-option.hair_beard_3_purple{background-image:url(spritesmith-main-0.png);background-position:-1612px -561px;width:60px;height:60px}.hair_beard_3_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1587px -637px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1612px -652px;width:60px;height:60px}.hair_beard_3_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1587px -728px;width:90px;height:90px}.customize-option.hair_beard_3_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1612px -743px;width:60px;height:60px}.hair_beard_3_red{background-image:url(spritesmith-main-0.png);background-position:-1587px -819px;width:90px;height:90px}.customize-option.hair_beard_3_red{background-image:url(spritesmith-main-0.png);background-position:-1612px -834px;width:60px;height:60px}.hair_beard_3_snowy{background-image:url(spritesmith-main-0.png);background-position:-1587px -910px;width:90px;height:90px}.customize-option.hair_beard_3_snowy{background-image:url(spritesmith-main-0.png);background-position:-1612px -925px;width:60px;height:60px}.hair_beard_3_white{background-image:url(spritesmith-main-0.png);background-position:-1587px -1001px;width:90px;height:90px}.customize-option.hair_beard_3_white{background-image:url(spritesmith-main-0.png);background-position:-1612px -1016px;width:60px;height:60px}.hair_beard_3_winternight{background-image:url(spritesmith-main-0.png);background-position:-1587px -1092px;width:90px;height:90px}.customize-option.hair_beard_3_winternight{background-image:url(spritesmith-main-0.png);background-position:-1612px -1107px;width:60px;height:60px}.hair_beard_3_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1587px -1183px;width:90px;height:90px}.customize-option.hair_beard_3_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1612px -1198px;width:60px;height:60px}.hair_beard_3_yellow{background-image:url(spritesmith-main-0.png);background-position:-1587px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_yellow{background-image:url(spritesmith-main-0.png);background-position:-1612px -1289px;width:60px;height:60px}.hair_beard_3_zombie{background-image:url(spritesmith-main-0.png);background-position:-1587px -1365px;width:90px;height:90px}.customize-option.hair_beard_3_zombie{background-image:url(spritesmith-main-0.png);background-position:-1612px -1380px;width:60px;height:60px}.hair_mustache_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1587px -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1612px -1471px;width:60px;height:60px}.hair_mustache_1_aurora{background-image:url(spritesmith-main-0.png);background-position:0 -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-25px -1597px;width:60px;height:60px}.hair_mustache_1_black{background-image:url(spritesmith-main-0.png);background-position:-91px -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_black{background-image:url(spritesmith-main-0.png);background-position:-116px -1597px;width:60px;height:60px}.hair_mustache_1_blond{background-image:url(spritesmith-main-0.png);background-position:-182px -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_blond{background-image:url(spritesmith-main-0.png);background-position:-207px -1597px;width:60px;height:60px}.hair_mustache_1_blue{background-image:url(spritesmith-main-0.png);background-position:-273px -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_blue{background-image:url(spritesmith-main-0.png);background-position:-298px -1597px;width:60px;height:60px}.hair_mustache_1_brown{background-image:url(spritesmith-main-0.png);background-position:-364px -1582px;width:90px;height:90px}.customize-option.hair_mustache_1_brown{background-image:url(spritesmith-main-0.png);background-position:-389px -1597px;width:60px;height:60px}.hair_mustache_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-1405px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-1430px -561px;width:60px;height:60px}.hair_mustache_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1132px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1157px -652px;width:60px;height:60px}.hair_mustache_1_festive{background-image:url(spritesmith-main-0.png);background-position:-1132px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_festive{background-image:url(spritesmith-main-0.png);background-position:-1157px -561px;width:60px;height:60px}.hair_mustache_1_frost{background-image:url(spritesmith-main-0.png);background-position:-1132px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_frost{background-image:url(spritesmith-main-0.png);background-position:-1157px -470px;width:60px;height:60px}.hair_mustache_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1132px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1157px -379px;width:60px;height:60px}.hair_mustache_1_green{background-image:url(spritesmith-main-0.png);background-position:-1132px -273px;width:90px;height:90px}.customize-option.hair_mustache_1_green{background-image:url(spritesmith-main-0.png);background-position:-1157px -288px;width:60px;height:60px}.hair_mustache_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1132px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1157px -197px;width:60px;height:60px}.hair_mustache_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1132px -91px;width:90px;height:90px}.customize-option.hair_mustache_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1157px -106px;width:60px;height:60px}.hair_mustache_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1132px 0;width:90px;height:90px}.customize-option.hair_mustache_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1157px -15px;width:60px;height:60px}.hair_mustache_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1001px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1026px -1051px;width:60px;height:60px}.hair_mustache_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-910px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-935px -1051px;width:60px;height:60px}.hair_mustache_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-819px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-844px -1051px;width:60px;height:60px}.hair_mustache_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-728px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-753px -1051px;width:60px;height:60px}.hair_mustache_1_porange{background-image:url(spritesmith-main-0.png);background-position:-637px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_porange{background-image:url(spritesmith-main-0.png);background-position:-662px -1051px;width:60px;height:60px}.hair_mustache_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-546px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-571px -1051px;width:60px;height:60px}.hair_mustache_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-455px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-480px -1051px;width:60px;height:60px}.hair_mustache_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-364px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-389px -1051px;width:60px;height:60px}.hair_mustache_1_purple{background-image:url(spritesmith-main-0.png);background-position:-273px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_purple{background-image:url(spritesmith-main-0.png);background-position:-298px -1051px;width:60px;height:60px}.hair_mustache_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-182px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-207px -1051px;width:60px;height:60px}.hair_mustache_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-91px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-116px -1051px;width:60px;height:60px}.hair_mustache_1_red{background-image:url(spritesmith-main-0.png);background-position:0 -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_red{background-image:url(spritesmith-main-0.png);background-position:-25px -1051px;width:60px;height:60px}.hair_mustache_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1028px -888px;width:90px;height:90px}.customize-option.hair_mustache_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1053px -903px;width:60px;height:60px}.hair_mustache_1_white{background-image:url(spritesmith-main-0.png);background-position:-937px -888px;width:90px;height:90px}.customize-option.hair_mustache_1_white{background-image:url(spritesmith-main-0.png);background-position:-962px -903px;width:60px;height:60px}.hair_mustache_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1314px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1339px -834px;width:60px;height:60px}.hair_mustache_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1314px -728px;width:90px;height:90px}.customize-option.hair_mustache_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1339px -743px;width:60px;height:60px}.hair_mustache_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1314px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1339px -652px;width:60px;height:60px}.hair_mustache_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1314px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1339px -561px;width:60px;height:60px}.hair_mustache_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1314px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1339px -470px;width:60px;height:60px}.hair_mustache_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-1314px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-1339px -379px;width:60px;height:60px}.hair_mustache_2_black{background-image:url(spritesmith-main-0.png);background-position:-1314px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_black{background-image:url(spritesmith-main-0.png);background-position:-1339px -288px;width:60px;height:60px}.hair_mustache_2_blond{background-image:url(spritesmith-main-0.png);background-position:-1314px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_blond{background-image:url(spritesmith-main-0.png);background-position:-1339px -197px;width:60px;height:60px}.hair_mustache_2_blue{background-image:url(spritesmith-main-0.png);background-position:-1314px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_blue{background-image:url(spritesmith-main-0.png);background-position:-1339px -106px;width:60px;height:60px}.hair_mustache_2_brown{background-image:url(spritesmith-main-0.png);background-position:-1314px 0;width:90px;height:90px}.customize-option.hair_mustache_2_brown{background-image:url(spritesmith-main-0.png);background-position:-1339px -15px;width:60px;height:60px}.hair_mustache_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-1183px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-1208px -1233px;width:60px;height:60px}.hair_mustache_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1092px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1117px -1233px;width:60px;height:60px}.hair_mustache_2_festive{background-image:url(spritesmith-main-0.png);background-position:-1001px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_festive{background-image:url(spritesmith-main-0.png);background-position:-1026px -1233px;width:60px;height:60px}.hair_mustache_2_frost{background-image:url(spritesmith-main-0.png);background-position:-910px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_frost{background-image:url(spritesmith-main-0.png);background-position:-935px -1233px;width:60px;height:60px}.hair_mustache_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-819px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-844px -1233px;width:60px;height:60px}.hair_mustache_2_green{background-image:url(spritesmith-main-0.png);background-position:-728px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_green{background-image:url(spritesmith-main-0.png);background-position:-753px -1233px;width:60px;height:60px}.hair_mustache_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-637px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-662px -1233px;width:60px;height:60px}.hair_mustache_2_holly{background-image:url(spritesmith-main-0.png);background-position:-546px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_holly{background-image:url(spritesmith-main-0.png);background-position:-571px -1233px;width:60px;height:60px}.hair_mustache_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-455px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-480px -1233px;width:60px;height:60px}.hair_mustache_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-364px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-389px -1233px;width:60px;height:60px}.hair_mustache_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-273px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-298px -1233px;width:60px;height:60px}.hair_mustache_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-182px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-207px -1233px;width:60px;height:60px}.hair_mustache_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-91px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-116px -1233px;width:60px;height:60px}.hair_mustache_2_porange{background-image:url(spritesmith-main-0.png);background-position:0 -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_porange{background-image:url(spritesmith-main-0.png);background-position:-25px -1233px;width:60px;height:60px}.hair_mustache_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1223px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1248px -1107px;width:60px;height:60px}.hair_mustache_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1223px -1001px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1248px -1016px;width:60px;height:60px}.hair_mustache_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1223px -910px;width:90px;height:90px}.customize-option.hair_mustache_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1248px -925px;width:60px;height:60px}.hair_mustache_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1223px -819px;width:90px;height:90px}.customize-option.hair_mustache_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1248px -834px;width:60px;height:60px}.hair_mustache_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1223px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1248px -743px;width:60px;height:60px}.hair_mustache_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1223px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1248px -652px;width:60px;height:60px}.hair_mustache_2_red{background-image:url(spritesmith-main-0.png);background-position:-1223px -546px;width:90px;height:90px}.customize-option.hair_mustache_2_red{background-image:url(spritesmith-main-0.png);background-position:-1248px -561px;width:60px;height:60px}.hair_mustache_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1223px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1248px -470px;width:60px;height:60px}.hair_mustache_2_white{background-image:url(spritesmith-main-0.png);background-position:-1223px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_white{background-image:url(spritesmith-main-0.png);background-position:-1248px -379px;width:60px;height:60px}.hair_mustache_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1223px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1248px -288px;width:60px;height:60px}.hair_mustache_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1223px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1248px -197px;width:60px;height:60px}.hair_mustache_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-1223px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-1248px -106px;width:60px;height:60px}.hair_mustache_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-1223px 0;width:90px;height:90px}.customize-option.hair_mustache_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-1248px -15px;width:60px;height:60px}.hair_flower_1{background-image:url(spritesmith-main-0.png);background-position:-1092px -1127px;width:90px;height:90px}.customize-option.hair_flower_1{background-image:url(spritesmith-main-0.png);background-position:-1117px -1142px;width:60px;height:60px}.hair_flower_2{background-image:url(spritesmith-main-0.png);background-position:-1001px -1127px;width:90px;height:90px}.customize-option.hair_flower_2{background-image:url(spritesmith-main-0.png);background-position:-1026px -1142px;width:60px;height:60px}.hair_flower_3{background-image:url(spritesmith-main-0.png);background-position:-910px -1127px;width:90px;height:90px}.customize-option.hair_flower_3{background-image:url(spritesmith-main-0.png);background-position:-935px -1142px;width:60px;height:60px}.hair_flower_4{background-image:url(spritesmith-main-0.png);background-position:-819px -1127px;width:90px;height:90px}.customize-option.hair_flower_4{background-image:url(spritesmith-main-0.png);background-position:-844px -1142px;width:60px;height:60px}.hair_flower_5{background-image:url(spritesmith-main-0.png);background-position:-728px -1127px;width:90px;height:90px}.customize-option.hair_flower_5{background-image:url(spritesmith-main-0.png);background-position:-753px -1142px;width:60px;height:60px}.hair_flower_6{background-image:url(spritesmith-main-0.png);background-position:-637px -1127px;width:90px;height:90px}.customize-option.hair_flower_6{background-image:url(spritesmith-main-0.png);background-position:-662px -1142px;width:60px;height:60px}.hair_bangs_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-546px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-571px -1142px;width:60px;height:60px}.hair_bangs_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-455px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-480px -1142px;width:60px;height:60px}.hair_bangs_1_black{background-image:url(spritesmith-main-0.png);background-position:-364px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_black{background-image:url(spritesmith-main-0.png);background-position:-389px -1142px;width:60px;height:60px}.hair_bangs_1_blond{background-image:url(spritesmith-main-0.png);background-position:-273px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_blond{background-image:url(spritesmith-main-0.png);background-position:-298px -1142px;width:60px;height:60px}.hair_bangs_1_blue{background-image:url(spritesmith-main-0.png);background-position:-182px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_blue{background-image:url(spritesmith-main-0.png);background-position:-207px -1142px;width:60px;height:60px}.hair_bangs_1_brown{background-image:url(spritesmith-main-0.png);background-position:-91px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_brown{background-image:url(spritesmith-main-0.png);background-position:-116px -1142px;width:60px;height:60px}.hair_bangs_1_candycane{background-image:url(spritesmith-main-0.png);background-position:0 -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-25px -1142px;width:60px;height:60px}.hair_bangs_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1132px -1001px;width:90px;height:90px}.customize-option.hair_bangs_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1157px -1016px;width:60px;height:60px}.hair_bangs_1_festive{background-image:url(spritesmith-main-0.png);background-position:-1132px -910px;width:90px;height:90px}.customize-option.hair_bangs_1_festive{background-image:url(spritesmith-main-0.png);background-position:-1157px -925px;width:60px;height:60px}.hair_bangs_1_frost{background-image:url(spritesmith-main-0.png);background-position:-1132px -819px;width:90px;height:90px}.customize-option.hair_bangs_1_frost{background-image:url(spritesmith-main-0.png);background-position:-1157px -834px;width:60px;height:60px}.hair_bangs_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1132px -728px;width:90px;height:90px}.customize-option.hair_bangs_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1157px -743px;width:60px;height:60px}.hair_bangs_1_green{background-image:url(spritesmith-main-1.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_bangs_1_green{background-image:url(spritesmith-main-1.png);background-position:-116px -15px;width:60px;height:60px}.hair_bangs_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_bangs_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-753px -1107px;width:60px;height:60px}.hair_bangs_1_holly{background-image:url(spritesmith-main-1.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_bangs_1_holly{background-image:url(spritesmith-main-1.png);background-position:-25px -106px;width:60px;height:60px}.hair_bangs_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-116px -106px;width:60px;height:60px}.hair_bangs_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_bangs_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-207px -15px;width:60px;height:60px}.hair_bangs_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-207px -106px;width:60px;height:60px}.hair_bangs_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-25px -197px;width:60px;height:60px}.hair_bangs_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-116px -197px;width:60px;height:60px}.hair_bangs_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-207px -197px;width:60px;height:60px}.hair_bangs_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-298px -15px;width:60px;height:60px}.hair_bangs_1_porange{background-image:url(spritesmith-main-1.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_porange{background-image:url(spritesmith-main-1.png);background-position:-298px -106px;width:60px;height:60px}.hair_bangs_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-298px -197px;width:60px;height:60px}.hair_bangs_1_ppink{background-image:url(spritesmith-main-1.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-25px -288px;width:60px;height:60px}.hair_bangs_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-116px -288px;width:60px;height:60px}.hair_bangs_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-207px -288px;width:60px;height:60px}.hair_bangs_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-298px -288px;width:60px;height:60px}.hair_bangs_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_bangs_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-389px -15px;width:60px;height:60px}.hair_bangs_1_purple{background-image:url(spritesmith-main-1.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_purple{background-image:url(spritesmith-main-1.png);background-position:-389px -106px;width:60px;height:60px}.hair_bangs_1_pyellow{background-image:url(spritesmith-main-1.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow{background-image:url(spritesmith-main-1.png);background-position:-389px -197px;width:60px;height:60px}.hair_bangs_1_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-389px -288px;width:60px;height:60px}.hair_bangs_1_rainbow{background-image:url(spritesmith-main-1.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_bangs_1_rainbow{background-image:url(spritesmith-main-1.png);background-position:-25px -379px;width:60px;height:60px}.hair_bangs_1_red{background-image:url(spritesmith-main-1.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_red{background-image:url(spritesmith-main-1.png);background-position:-116px -379px;width:60px;height:60px}.hair_bangs_1_snowy{background-image:url(spritesmith-main-1.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_snowy{background-image:url(spritesmith-main-1.png);background-position:-207px -379px;width:60px;height:60px}.hair_bangs_1_white{background-image:url(spritesmith-main-1.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_white{background-image:url(spritesmith-main-1.png);background-position:-298px -379px;width:60px;height:60px}.hair_bangs_1_winternight{background-image:url(spritesmith-main-1.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_winternight{background-image:url(spritesmith-main-1.png);background-position:-389px -379px;width:60px;height:60px}.hair_bangs_1_winterstar{background-image:url(spritesmith-main-1.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_bangs_1_winterstar{background-image:url(spritesmith-main-1.png);background-position:-480px -15px;width:60px;height:60px}.hair_bangs_1_yellow{background-image:url(spritesmith-main-1.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_yellow{background-image:url(spritesmith-main-1.png);background-position:-480px -106px;width:60px;height:60px}.hair_bangs_1_zombie{background-image:url(spritesmith-main-1.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_zombie{background-image:url(spritesmith-main-1.png);background-position:-480px -197px;width:60px;height:60px}.hair_bangs_2_TRUred{background-image:url(spritesmith-main-1.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_TRUred{background-image:url(spritesmith-main-1.png);background-position:-480px -288px;width:60px;height:60px}.hair_bangs_2_aurora{background-image:url(spritesmith-main-1.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_aurora{background-image:url(spritesmith-main-1.png);background-position:-480px -379px;width:60px;height:60px}.hair_bangs_2_black{background-image:url(spritesmith-main-1.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_bangs_2_black{background-image:url(spritesmith-main-1.png);background-position:-25px -470px;width:60px;height:60px}.hair_bangs_2_blond{background-image:url(spritesmith-main-1.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_blond{background-image:url(spritesmith-main-1.png);background-position:-116px -470px;width:60px;height:60px}.hair_bangs_2_blue{background-image:url(spritesmith-main-1.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_blue{background-image:url(spritesmith-main-1.png);background-position:-207px -470px;width:60px;height:60px}.hair_bangs_2_brown{background-image:url(spritesmith-main-1.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_brown{background-image:url(spritesmith-main-1.png);background-position:-298px -470px;width:60px;height:60px}.hair_bangs_2_candycane{background-image:url(spritesmith-main-1.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_candycane{background-image:url(spritesmith-main-1.png);background-position:-389px -470px;width:60px;height:60px}.hair_bangs_2_candycorn{background-image:url(spritesmith-main-1.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_candycorn{background-image:url(spritesmith-main-1.png);background-position:-480px -470px;width:60px;height:60px}.hair_bangs_2_festive{background-image:url(spritesmith-main-1.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_bangs_2_festive{background-image:url(spritesmith-main-1.png);background-position:-571px -15px;width:60px;height:60px}.hair_bangs_2_frost{background-image:url(spritesmith-main-1.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_frost{background-image:url(spritesmith-main-1.png);background-position:-571px -106px;width:60px;height:60px}.hair_bangs_2_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-571px -197px;width:60px;height:60px}.hair_bangs_2_green{background-image:url(spritesmith-main-1.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_green{background-image:url(spritesmith-main-1.png);background-position:-571px -288px;width:60px;height:60px}.hair_bangs_2_halloween{background-image:url(spritesmith-main-1.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_halloween{background-image:url(spritesmith-main-1.png);background-position:-571px -379px;width:60px;height:60px}.hair_bangs_2_holly{background-image:url(spritesmith-main-1.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_holly{background-image:url(spritesmith-main-1.png);background-position:-571px -470px;width:60px;height:60px}.hair_bangs_2_hollygreen{background-image:url(spritesmith-main-1.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_bangs_2_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-25px -561px;width:60px;height:60px}.hair_bangs_2_midnight{background-image:url(spritesmith-main-1.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_midnight{background-image:url(spritesmith-main-1.png);background-position:-116px -561px;width:60px;height:60px}.hair_bangs_2_pblue{background-image:url(spritesmith-main-1.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue{background-image:url(spritesmith-main-1.png);background-position:-207px -561px;width:60px;height:60px}.hair_bangs_2_pblue2{background-image:url(spritesmith-main-1.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue2{background-image:url(spritesmith-main-1.png);background-position:-298px -561px;width:60px;height:60px}.hair_bangs_2_peppermint{background-image:url(spritesmith-main-1.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_peppermint{background-image:url(spritesmith-main-1.png);background-position:-389px -561px;width:60px;height:60px}.hair_bangs_2_pgreen{background-image:url(spritesmith-main-1.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen{background-image:url(spritesmith-main-1.png);background-position:-480px -561px;width:60px;height:60px}.hair_bangs_2_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-571px -561px;width:60px;height:60px}.hair_bangs_2_porange{background-image:url(spritesmith-main-1.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_bangs_2_porange{background-image:url(spritesmith-main-1.png);background-position:-662px -15px;width:60px;height:60px}.hair_bangs_2_porange2{background-image:url(spritesmith-main-1.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_porange2{background-image:url(spritesmith-main-1.png);background-position:-662px -106px;width:60px;height:60px}.hair_bangs_2_ppink{background-image:url(spritesmith-main-1.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink{background-image:url(spritesmith-main-1.png);background-position:-662px -197px;width:60px;height:60px}.hair_bangs_2_ppink2{background-image:url(spritesmith-main-1.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink2{background-image:url(spritesmith-main-1.png);background-position:-662px -288px;width:60px;height:60px}.hair_bangs_2_ppurple{background-image:url(spritesmith-main-1.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple{background-image:url(spritesmith-main-1.png);background-position:-662px -379px;width:60px;height:60px}.hair_bangs_2_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-662px -470px;width:60px;height:60px}.hair_bangs_2_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-662px -561px;width:60px;height:60px}.hair_bangs_2_purple{background-image:url(spritesmith-main-1.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_bangs_2_purple{background-image:url(spritesmith-main-1.png);background-position:-25px -652px;width:60px;height:60px}.hair_bangs_2_pyellow{background-image:url(spritesmith-main-1.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow{background-image:url(spritesmith-main-1.png);background-position:-116px -652px;width:60px;height:60px}.hair_bangs_2_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-207px -652px;width:60px;height:60px}.hair_bangs_2_rainbow{background-image:url(spritesmith-main-1.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_rainbow{background-image:url(spritesmith-main-1.png);background-position:-298px -652px;width:60px;height:60px}.hair_bangs_2_red{background-image:url(spritesmith-main-1.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_red{background-image:url(spritesmith-main-1.png);background-position:-389px -652px;width:60px;height:60px}.hair_bangs_2_snowy{background-image:url(spritesmith-main-1.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_snowy{background-image:url(spritesmith-main-1.png);background-position:-480px -652px;width:60px;height:60px}.hair_bangs_2_white{background-image:url(spritesmith-main-1.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_white{background-image:url(spritesmith-main-1.png);background-position:-571px -652px;width:60px;height:60px}.hair_bangs_2_winternight{background-image:url(spritesmith-main-1.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_winternight{background-image:url(spritesmith-main-1.png);background-position:-662px -652px;width:60px;height:60px}.hair_bangs_2_winterstar{background-image:url(spritesmith-main-1.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_bangs_2_winterstar{background-image:url(spritesmith-main-1.png);background-position:-753px -15px;width:60px;height:60px}.hair_bangs_2_yellow{background-image:url(spritesmith-main-1.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_yellow{background-image:url(spritesmith-main-1.png);background-position:-753px -106px;width:60px;height:60px}.hair_bangs_2_zombie{background-image:url(spritesmith-main-1.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_zombie{background-image:url(spritesmith-main-1.png);background-position:-753px -197px;width:60px;height:60px}.hair_bangs_3_TRUred{background-image:url(spritesmith-main-1.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_TRUred{background-image:url(spritesmith-main-1.png);background-position:-753px -288px;width:60px;height:60px}.hair_bangs_3_aurora{background-image:url(spritesmith-main-1.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_aurora{background-image:url(spritesmith-main-1.png);background-position:-753px -379px;width:60px;height:60px}.hair_bangs_3_black{background-image:url(spritesmith-main-1.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_black{background-image:url(spritesmith-main-1.png);background-position:-753px -470px;width:60px;height:60px}.hair_bangs_3_blond{background-image:url(spritesmith-main-1.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_blond{background-image:url(spritesmith-main-1.png);background-position:-753px -561px;width:60px;height:60px}.hair_bangs_3_blue{background-image:url(spritesmith-main-1.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_blue{background-image:url(spritesmith-main-1.png);background-position:-753px -652px;width:60px;height:60px}.hair_bangs_3_brown{background-image:url(spritesmith-main-1.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_bangs_3_brown{background-image:url(spritesmith-main-1.png);background-position:-25px -743px;width:60px;height:60px}.hair_bangs_3_candycane{background-image:url(spritesmith-main-1.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_candycane{background-image:url(spritesmith-main-1.png);background-position:-116px -743px;width:60px;height:60px}.hair_bangs_3_candycorn{background-image:url(spritesmith-main-1.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_candycorn{background-image:url(spritesmith-main-1.png);background-position:-207px -743px;width:60px;height:60px}.hair_bangs_3_festive{background-image:url(spritesmith-main-1.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_festive{background-image:url(spritesmith-main-1.png);background-position:-298px -743px;width:60px;height:60px}.hair_bangs_3_frost{background-image:url(spritesmith-main-1.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_frost{background-image:url(spritesmith-main-1.png);background-position:-389px -743px;width:60px;height:60px}.hair_bangs_3_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-480px -743px;width:60px;height:60px}.hair_bangs_3_green{background-image:url(spritesmith-main-1.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_green{background-image:url(spritesmith-main-1.png);background-position:-571px -743px;width:60px;height:60px}.hair_bangs_3_halloween{background-image:url(spritesmith-main-1.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_halloween{background-image:url(spritesmith-main-1.png);background-position:-662px -743px;width:60px;height:60px}.hair_bangs_3_holly{background-image:url(spritesmith-main-1.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_holly{background-image:url(spritesmith-main-1.png);background-position:-753px -743px;width:60px;height:60px}.hair_bangs_3_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_bangs_3_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-844px -15px;width:60px;height:60px}.hair_bangs_3_midnight{background-image:url(spritesmith-main-1.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_midnight{background-image:url(spritesmith-main-1.png);background-position:-844px -106px;width:60px;height:60px}.hair_bangs_3_pblue{background-image:url(spritesmith-main-1.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue{background-image:url(spritesmith-main-1.png);background-position:-844px -197px;width:60px;height:60px}.hair_bangs_3_pblue2{background-image:url(spritesmith-main-1.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue2{background-image:url(spritesmith-main-1.png);background-position:-844px -288px;width:60px;height:60px}.hair_bangs_3_peppermint{background-image:url(spritesmith-main-1.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_peppermint{background-image:url(spritesmith-main-1.png);background-position:-844px -379px;width:60px;height:60px}.hair_bangs_3_pgreen{background-image:url(spritesmith-main-1.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen{background-image:url(spritesmith-main-1.png);background-position:-844px -470px;width:60px;height:60px}.hair_bangs_3_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-844px -561px;width:60px;height:60px}.hair_bangs_3_porange{background-image:url(spritesmith-main-1.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_porange{background-image:url(spritesmith-main-1.png);background-position:-844px -652px;width:60px;height:60px}.hair_bangs_3_porange2{background-image:url(spritesmith-main-1.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_porange2{background-image:url(spritesmith-main-1.png);background-position:-844px -743px;width:60px;height:60px}.hair_bangs_3_ppink{background-image:url(spritesmith-main-1.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink{background-image:url(spritesmith-main-1.png);background-position:-25px -834px;width:60px;height:60px}.hair_bangs_3_ppink2{background-image:url(spritesmith-main-1.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink2{background-image:url(spritesmith-main-1.png);background-position:-116px -834px;width:60px;height:60px}.hair_bangs_3_ppurple{background-image:url(spritesmith-main-1.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple{background-image:url(spritesmith-main-1.png);background-position:-207px -834px;width:60px;height:60px}.hair_bangs_3_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-298px -834px;width:60px;height:60px}.hair_bangs_3_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-389px -834px;width:60px;height:60px}.hair_bangs_3_purple{background-image:url(spritesmith-main-1.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_purple{background-image:url(spritesmith-main-1.png);background-position:-480px -834px;width:60px;height:60px}.hair_bangs_3_pyellow{background-image:url(spritesmith-main-1.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow{background-image:url(spritesmith-main-1.png);background-position:-571px -834px;width:60px;height:60px}.hair_bangs_3_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-662px -834px;width:60px;height:60px}.hair_bangs_3_rainbow{background-image:url(spritesmith-main-1.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_rainbow{background-image:url(spritesmith-main-1.png);background-position:-753px -834px;width:60px;height:60px}.hair_bangs_3_red{background-image:url(spritesmith-main-1.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_red{background-image:url(spritesmith-main-1.png);background-position:-844px -834px;width:60px;height:60px}.hair_bangs_3_snowy{background-image:url(spritesmith-main-1.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_bangs_3_snowy{background-image:url(spritesmith-main-1.png);background-position:-935px -15px;width:60px;height:60px}.hair_bangs_3_white{background-image:url(spritesmith-main-1.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_white{background-image:url(spritesmith-main-1.png);background-position:-935px -106px;width:60px;height:60px}.hair_bangs_3_winternight{background-image:url(spritesmith-main-1.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_winternight{background-image:url(spritesmith-main-1.png);background-position:-935px -197px;width:60px;height:60px}.hair_bangs_3_winterstar{background-image:url(spritesmith-main-1.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_winterstar{background-image:url(spritesmith-main-1.png);background-position:-935px -288px;width:60px;height:60px}.hair_bangs_3_yellow{background-image:url(spritesmith-main-1.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_yellow{background-image:url(spritesmith-main-1.png);background-position:-935px -379px;width:60px;height:60px}.hair_bangs_3_zombie{background-image:url(spritesmith-main-1.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_zombie{background-image:url(spritesmith-main-1.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_10_TRUred{background-image:url(spritesmith-main-1.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_10_TRUred{background-image:url(spritesmith-main-1.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_10_aurora{background-image:url(spritesmith-main-1.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_10_aurora{background-image:url(spritesmith-main-1.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_10_black{background-image:url(spritesmith-main-1.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_10_black{background-image:url(spritesmith-main-1.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_10_blond{background-image:url(spritesmith-main-1.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_10_blond{background-image:url(spritesmith-main-1.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_10_blue{background-image:url(spritesmith-main-1.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_10_blue{background-image:url(spritesmith-main-1.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_10_brown{background-image:url(spritesmith-main-1.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_10_brown{background-image:url(spritesmith-main-1.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_10_candycane{background-image:url(spritesmith-main-1.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_10_candycane{background-image:url(spritesmith-main-1.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_10_candycorn{background-image:url(spritesmith-main-1.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_10_candycorn{background-image:url(spritesmith-main-1.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_10_festive{background-image:url(spritesmith-main-1.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_10_festive{background-image:url(spritesmith-main-1.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_10_frost{background-image:url(spritesmith-main-1.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_10_frost{background-image:url(spritesmith-main-1.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_10_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_10_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_10_green{background-image:url(spritesmith-main-1.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_10_green{background-image:url(spritesmith-main-1.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_10_halloween{background-image:url(spritesmith-main-1.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_10_halloween{background-image:url(spritesmith-main-1.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_10_holly{background-image:url(spritesmith-main-1.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_10_holly{background-image:url(spritesmith-main-1.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_10_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_10_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_10_midnight{background-image:url(spritesmith-main-1.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_10_midnight{background-image:url(spritesmith-main-1.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_10_pblue{background-image:url(spritesmith-main-1.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_10_pblue{background-image:url(spritesmith-main-1.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_10_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_10_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_10_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_10_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_10_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_10_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_10_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_10_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_10_porange{background-image:url(spritesmith-main-1.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_10_porange{background-image:url(spritesmith-main-1.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_10_porange2{background-image:url(spritesmith-main-1.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_10_porange2{background-image:url(spritesmith-main-1.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_10_ppink{background-image:url(spritesmith-main-1.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_10_ppink{background-image:url(spritesmith-main-1.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_10_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_10_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_10_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_10_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_10_ppurple2{background-image:url(spritesmith-main-1.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_10_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_10_purple{background-image:url(spritesmith-main-1.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_10_purple{background-image:url(spritesmith-main-1.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_10_pyellow{background-image:url(spritesmith-main-1.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pyellow{background-image:url(spritesmith-main-1.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_10_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_10_rainbow{background-image:url(spritesmith-main-1.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_10_rainbow{background-image:url(spritesmith-main-1.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_10_red{background-image:url(spritesmith-main-1.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_10_red{background-image:url(spritesmith-main-1.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_10_snowy{background-image:url(spritesmith-main-1.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_10_snowy{background-image:url(spritesmith-main-1.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_10_white{background-image:url(spritesmith-main-1.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_10_white{background-image:url(spritesmith-main-1.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_10_winternight{background-image:url(spritesmith-main-1.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_10_winternight{background-image:url(spritesmith-main-1.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_10_winterstar{background-image:url(spritesmith-main-1.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_10_winterstar{background-image:url(spritesmith-main-1.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_10_yellow{background-image:url(spritesmith-main-1.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_10_yellow{background-image:url(spritesmith-main-1.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_10_zombie{background-image:url(spritesmith-main-1.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_10_zombie{background-image:url(spritesmith-main-1.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_11_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_11_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_11_aurora{background-image:url(spritesmith-main-1.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_11_aurora{background-image:url(spritesmith-main-1.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_11_black{background-image:url(spritesmith-main-1.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_11_black{background-image:url(spritesmith-main-1.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_11_blond{background-image:url(spritesmith-main-1.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_11_blond{background-image:url(spritesmith-main-1.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_11_blue{background-image:url(spritesmith-main-1.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_11_blue{background-image:url(spritesmith-main-1.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_11_brown{background-image:url(spritesmith-main-1.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_11_brown{background-image:url(spritesmith-main-1.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_11_candycane{background-image:url(spritesmith-main-1.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_11_candycane{background-image:url(spritesmith-main-1.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_11_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_11_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_11_festive{background-image:url(spritesmith-main-1.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_11_festive{background-image:url(spritesmith-main-1.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_11_frost{background-image:url(spritesmith-main-1.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_11_frost{background-image:url(spritesmith-main-1.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_11_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_11_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_11_green{background-image:url(spritesmith-main-1.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_11_green{background-image:url(spritesmith-main-1.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_11_halloween{background-image:url(spritesmith-main-1.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_11_halloween{background-image:url(spritesmith-main-1.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_11_holly{background-image:url(spritesmith-main-1.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_11_holly{background-image:url(spritesmith-main-1.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_11_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_11_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_11_midnight{background-image:url(spritesmith-main-1.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_11_midnight{background-image:url(spritesmith-main-1.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_11_pblue{background-image:url(spritesmith-main-1.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pblue{background-image:url(spritesmith-main-1.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_11_pblue2{background-image:url(spritesmith-main-1.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pblue2{background-image:url(spritesmith-main-1.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_11_peppermint{background-image:url(spritesmith-main-1.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_11_peppermint{background-image:url(spritesmith-main-1.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_11_pgreen{background-image:url(spritesmith-main-1.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_11_pgreen{background-image:url(spritesmith-main-1.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_11_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_11_porange{background-image:url(spritesmith-main-1.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_11_porange{background-image:url(spritesmith-main-1.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_11_porange2{background-image:url(spritesmith-main-1.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_11_porange2{background-image:url(spritesmith-main-1.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_11_ppink{background-image:url(spritesmith-main-1.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_11_ppink{background-image:url(spritesmith-main-1.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_11_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_11_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_11_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_11_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_11_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_11_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_11_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_11_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_11_purple{background-image:url(spritesmith-main-1.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_11_purple{background-image:url(spritesmith-main-1.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_11_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_11_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_11_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_11_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_11_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_11_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_11_red{background-image:url(spritesmith-main-1.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_11_red{background-image:url(spritesmith-main-1.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_11_snowy{background-image:url(spritesmith-main-1.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_11_snowy{background-image:url(spritesmith-main-1.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_11_white{background-image:url(spritesmith-main-1.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_11_white{background-image:url(spritesmith-main-1.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_11_winternight{background-image:url(spritesmith-main-1.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_11_winternight{background-image:url(spritesmith-main-1.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_11_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_11_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_11_yellow{background-image:url(spritesmith-main-1.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_11_yellow{background-image:url(spritesmith-main-1.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_11_zombie{background-image:url(spritesmith-main-1.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_11_zombie{background-image:url(spritesmith-main-1.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_12_TRUred{background-image:url(spritesmith-main-1.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_12_TRUred{background-image:url(spritesmith-main-1.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_12_aurora{background-image:url(spritesmith-main-1.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_12_aurora{background-image:url(spritesmith-main-1.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_12_black{background-image:url(spritesmith-main-1.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_12_black{background-image:url(spritesmith-main-1.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_12_blond{background-image:url(spritesmith-main-1.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_12_blond{background-image:url(spritesmith-main-1.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_12_blue{background-image:url(spritesmith-main-1.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_12_blue{background-image:url(spritesmith-main-1.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_12_brown{background-image:url(spritesmith-main-1.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_12_brown{background-image:url(spritesmith-main-1.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_12_candycane{background-image:url(spritesmith-main-1.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_12_candycane{background-image:url(spritesmith-main-1.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_12_candycorn{background-image:url(spritesmith-main-1.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_12_candycorn{background-image:url(spritesmith-main-1.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_12_festive{background-image:url(spritesmith-main-1.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_12_festive{background-image:url(spritesmith-main-1.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_12_frost{background-image:url(spritesmith-main-1.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_12_frost{background-image:url(spritesmith-main-1.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_12_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_12_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_12_green{background-image:url(spritesmith-main-1.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_12_green{background-image:url(spritesmith-main-1.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_12_halloween{background-image:url(spritesmith-main-1.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_12_halloween{background-image:url(spritesmith-main-1.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_12_holly{background-image:url(spritesmith-main-1.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_12_holly{background-image:url(spritesmith-main-1.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_12_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_12_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_12_midnight{background-image:url(spritesmith-main-1.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_12_midnight{background-image:url(spritesmith-main-1.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_12_pblue{background-image:url(spritesmith-main-1.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_12_pblue{background-image:url(spritesmith-main-1.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_12_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_12_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_12_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_12_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_12_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_12_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_12_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_12_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_12_porange{background-image:url(spritesmith-main-1.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_12_porange{background-image:url(spritesmith-main-1.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_12_porange2{background-image:url(spritesmith-main-1.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_12_porange2{background-image:url(spritesmith-main-1.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_12_ppink{background-image:url(spritesmith-main-1.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_12_ppink{background-image:url(spritesmith-main-1.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_12_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_12_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_12_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_12_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_12_ppurple2{background-image:url(spritesmith-main-1.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_12_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_12_purple{background-image:url(spritesmith-main-1.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_12_purple{background-image:url(spritesmith-main-1.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_12_pyellow{background-image:url(spritesmith-main-1.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pyellow{background-image:url(spritesmith-main-1.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_12_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_12_rainbow{background-image:url(spritesmith-main-1.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_12_rainbow{background-image:url(spritesmith-main-1.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_12_red{background-image:url(spritesmith-main-1.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_12_red{background-image:url(spritesmith-main-1.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_12_snowy{background-image:url(spritesmith-main-1.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_12_snowy{background-image:url(spritesmith-main-1.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_12_white{background-image:url(spritesmith-main-1.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_12_white{background-image:url(spritesmith-main-1.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_12_winternight{background-image:url(spritesmith-main-1.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_12_winternight{background-image:url(spritesmith-main-1.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_12_winterstar{background-image:url(spritesmith-main-1.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_12_winterstar{background-image:url(spritesmith-main-1.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_12_yellow{background-image:url(spritesmith-main-1.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_12_yellow{background-image:url(spritesmith-main-1.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_12_zombie{background-image:url(spritesmith-main-1.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_12_zombie{background-image:url(spritesmith-main-1.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_13_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_13_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_13_aurora{background-image:url(spritesmith-main-1.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_13_aurora{background-image:url(spritesmith-main-1.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_13_black{background-image:url(spritesmith-main-1.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_13_black{background-image:url(spritesmith-main-1.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_13_blond{background-image:url(spritesmith-main-1.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_13_blond{background-image:url(spritesmith-main-1.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_13_blue{background-image:url(spritesmith-main-1.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_13_blue{background-image:url(spritesmith-main-1.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_13_brown{background-image:url(spritesmith-main-1.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_13_brown{background-image:url(spritesmith-main-1.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_13_candycane{background-image:url(spritesmith-main-1.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_13_candycane{background-image:url(spritesmith-main-1.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_13_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_13_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_13_festive{background-image:url(spritesmith-main-1.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_13_festive{background-image:url(spritesmith-main-1.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_13_frost{background-image:url(spritesmith-main-1.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_13_frost{background-image:url(spritesmith-main-1.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_13_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_13_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_13_green{background-image:url(spritesmith-main-1.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_13_green{background-image:url(spritesmith-main-1.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_13_halloween{background-image:url(spritesmith-main-1.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_13_halloween{background-image:url(spritesmith-main-1.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_13_holly{background-image:url(spritesmith-main-1.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_13_holly{background-image:url(spritesmith-main-1.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_13_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_13_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_13_midnight{background-image:url(spritesmith-main-1.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_13_midnight{background-image:url(spritesmith-main-1.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_13_pblue{background-image:url(spritesmith-main-1.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_13_pblue{background-image:url(spritesmith-main-1.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_13_pblue2{background-image:url(spritesmith-main-1.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_13_pblue2{background-image:url(spritesmith-main-1.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_13_peppermint{background-image:url(spritesmith-main-1.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_13_peppermint{background-image:url(spritesmith-main-1.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_13_pgreen{background-image:url(spritesmith-main-1.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pgreen{background-image:url(spritesmith-main-1.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_13_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_13_porange{background-image:url(spritesmith-main-1.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_13_porange{background-image:url(spritesmith-main-1.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_13_porange2{background-image:url(spritesmith-main-1.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_13_porange2{background-image:url(spritesmith-main-1.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_13_ppink{background-image:url(spritesmith-main-1.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppink{background-image:url(spritesmith-main-1.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_13_ppink2{background-image:url(spritesmith-main-1.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppink2{background-image:url(spritesmith-main-1.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_13_ppurple{background-image:url(spritesmith-main-1.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppurple{background-image:url(spritesmith-main-1.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_13_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_13_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_13_purple{background-image:url(spritesmith-main-1.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_13_purple{background-image:url(spritesmith-main-1.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_13_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_13_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_13_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_13_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_13_red{background-image:url(spritesmith-main-1.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_13_red{background-image:url(spritesmith-main-1.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_13_snowy{background-image:url(spritesmith-main-1.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_13_snowy{background-image:url(spritesmith-main-1.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_13_white{background-image:url(spritesmith-main-1.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_13_white{background-image:url(spritesmith-main-1.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_13_winternight{background-image:url(spritesmith-main-1.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_13_winternight{background-image:url(spritesmith-main-1.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_13_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_13_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_13_yellow{background-image:url(spritesmith-main-1.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_13_yellow{background-image:url(spritesmith-main-1.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_13_zombie{background-image:url(spritesmith-main-1.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_13_zombie{background-image:url(spritesmith-main-1.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_14_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_14_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_14_aurora{background-image:url(spritesmith-main-1.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_14_aurora{background-image:url(spritesmith-main-1.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_14_black{background-image:url(spritesmith-main-1.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_14_black{background-image:url(spritesmith-main-1.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_14_blond{background-image:url(spritesmith-main-1.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_14_blond{background-image:url(spritesmith-main-1.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_14_blue{background-image:url(spritesmith-main-1.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_14_blue{background-image:url(spritesmith-main-1.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_14_brown{background-image:url(spritesmith-main-1.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_14_brown{background-image:url(spritesmith-main-1.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_14_candycane{background-image:url(spritesmith-main-1.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_14_candycane{background-image:url(spritesmith-main-1.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_14_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_14_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_14_festive{background-image:url(spritesmith-main-1.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_14_festive{background-image:url(spritesmith-main-1.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_14_frost{background-image:url(spritesmith-main-1.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_14_frost{background-image:url(spritesmith-main-1.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_14_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_14_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_14_green{background-image:url(spritesmith-main-1.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_14_green{background-image:url(spritesmith-main-1.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_14_halloween{background-image:url(spritesmith-main-1.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_14_halloween{background-image:url(spritesmith-main-1.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_14_holly{background-image:url(spritesmith-main-1.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_14_holly{background-image:url(spritesmith-main-1.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_14_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_14_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_14_midnight{background-image:url(spritesmith-main-1.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_14_midnight{background-image:url(spritesmith-main-1.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_14_pblue{background-image:url(spritesmith-main-1.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pblue{background-image:url(spritesmith-main-1.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_14_pblue2{background-image:url(spritesmith-main-1.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pblue2{background-image:url(spritesmith-main-1.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_14_peppermint{background-image:url(spritesmith-main-1.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_14_peppermint{background-image:url(spritesmith-main-1.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_14_pgreen{background-image:url(spritesmith-main-1.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pgreen{background-image:url(spritesmith-main-1.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_14_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_14_porange{background-image:url(spritesmith-main-1.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_14_porange{background-image:url(spritesmith-main-1.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_14_porange2{background-image:url(spritesmith-main-1.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_14_porange2{background-image:url(spritesmith-main-1.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_14_ppink{background-image:url(spritesmith-main-1.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ppink{background-image:url(spritesmith-main-1.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_14_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_14_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_14_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_14_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_14_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_14_purple{background-image:url(spritesmith-main-1.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_14_purple{background-image:url(spritesmith-main-1.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_14_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_14_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_14_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_14_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_14_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_14_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_14_red{background-image:url(spritesmith-main-1.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_14_red{background-image:url(spritesmith-main-1.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_14_snowy{background-image:url(spritesmith-main-1.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_14_snowy{background-image:url(spritesmith-main-1.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_14_white{background-image:url(spritesmith-main-1.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_14_white{background-image:url(spritesmith-main-1.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_14_winternight{background-image:url(spritesmith-main-1.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_14_winternight{background-image:url(spritesmith-main-1.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_14_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_14_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_14_yellow{background-image:url(spritesmith-main-1.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_14_yellow{background-image:url(spritesmith-main-1.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_14_zombie{background-image:url(spritesmith-main-1.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_14_zombie{background-image:url(spritesmith-main-1.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_1_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_1_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_1_aurora{background-image:url(spritesmith-main-1.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_1_aurora{background-image:url(spritesmith-main-1.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_1_black{background-image:url(spritesmith-main-1.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_1_black{background-image:url(spritesmith-main-1.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_1_blond{background-image:url(spritesmith-main-1.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_1_blond{background-image:url(spritesmith-main-1.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_1_blue{background-image:url(spritesmith-main-1.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_1_blue{background-image:url(spritesmith-main-1.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_1_brown{background-image:url(spritesmith-main-1.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_1_brown{background-image:url(spritesmith-main-1.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_1_festive{background-image:url(spritesmith-main-1.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_1_festive{background-image:url(spritesmith-main-1.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_1_frost{background-image:url(spritesmith-main-1.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_1_frost{background-image:url(spritesmith-main-1.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_1_green{background-image:url(spritesmith-main-1.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_1_green{background-image:url(spritesmith-main-1.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_1_holly{background-image:url(spritesmith-main-1.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_1_holly{background-image:url(spritesmith-main-1.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_1_porange{background-image:url(spritesmith-main-1.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_1_porange{background-image:url(spritesmith-main-1.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_base_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_base_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_base_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1663px -379px;width:60px;height:60px}.hair_base_1_purple{background-image:url(spritesmith-main-2.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_1_purple{background-image:url(spritesmith-main-2.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_1_pyellow{background-image:url(spritesmith-main-2.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_base_1_pyellow{background-image:url(spritesmith-main-2.png);background-position:-753px -1107px;width:60px;height:60px}.hair_base_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_1_rainbow{background-image:url(spritesmith-main-2.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_1_rainbow{background-image:url(spritesmith-main-2.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_1_red{background-image:url(spritesmith-main-2.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_1_red{background-image:url(spritesmith-main-2.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_1_snowy{background-image:url(spritesmith-main-2.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_1_snowy{background-image:url(spritesmith-main-2.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_1_white{background-image:url(spritesmith-main-2.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_1_white{background-image:url(spritesmith-main-2.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_1_winternight{background-image:url(spritesmith-main-2.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_1_winternight{background-image:url(spritesmith-main-2.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_1_winterstar{background-image:url(spritesmith-main-2.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_1_winterstar{background-image:url(spritesmith-main-2.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_1_yellow{background-image:url(spritesmith-main-2.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_1_yellow{background-image:url(spritesmith-main-2.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_1_zombie{background-image:url(spritesmith-main-2.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_1_zombie{background-image:url(spritesmith-main-2.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_2_TRUred{background-image:url(spritesmith-main-2.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_2_TRUred{background-image:url(spritesmith-main-2.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_2_aurora{background-image:url(spritesmith-main-2.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_2_aurora{background-image:url(spritesmith-main-2.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_2_black{background-image:url(spritesmith-main-2.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_2_black{background-image:url(spritesmith-main-2.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_2_blond{background-image:url(spritesmith-main-2.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_2_blond{background-image:url(spritesmith-main-2.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_2_blue{background-image:url(spritesmith-main-2.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_2_blue{background-image:url(spritesmith-main-2.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_2_brown{background-image:url(spritesmith-main-2.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_2_brown{background-image:url(spritesmith-main-2.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_2_candycane{background-image:url(spritesmith-main-2.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_2_candycane{background-image:url(spritesmith-main-2.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_2_candycorn{background-image:url(spritesmith-main-2.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_2_candycorn{background-image:url(spritesmith-main-2.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_2_festive{background-image:url(spritesmith-main-2.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_2_festive{background-image:url(spritesmith-main-2.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_2_frost{background-image:url(spritesmith-main-2.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_2_frost{background-image:url(spritesmith-main-2.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_2_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_2_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_2_green{background-image:url(spritesmith-main-2.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_2_green{background-image:url(spritesmith-main-2.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_2_halloween{background-image:url(spritesmith-main-2.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_2_halloween{background-image:url(spritesmith-main-2.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_2_holly{background-image:url(spritesmith-main-2.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_2_holly{background-image:url(spritesmith-main-2.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_2_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_2_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_2_midnight{background-image:url(spritesmith-main-2.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_2_midnight{background-image:url(spritesmith-main-2.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_2_pblue{background-image:url(spritesmith-main-2.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_2_pblue{background-image:url(spritesmith-main-2.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_2_pblue2{background-image:url(spritesmith-main-2.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_2_pblue2{background-image:url(spritesmith-main-2.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_2_peppermint{background-image:url(spritesmith-main-2.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_2_peppermint{background-image:url(spritesmith-main-2.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_2_pgreen{background-image:url(spritesmith-main-2.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_2_pgreen{background-image:url(spritesmith-main-2.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_2_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_2_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_2_porange{background-image:url(spritesmith-main-2.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_2_porange{background-image:url(spritesmith-main-2.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_2_porange2{background-image:url(spritesmith-main-2.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_2_porange2{background-image:url(spritesmith-main-2.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_2_ppink{background-image:url(spritesmith-main-2.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_2_ppink{background-image:url(spritesmith-main-2.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_2_ppink2{background-image:url(spritesmith-main-2.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_2_ppink2{background-image:url(spritesmith-main-2.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_2_ppurple{background-image:url(spritesmith-main-2.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_2_ppurple{background-image:url(spritesmith-main-2.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_2_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_2_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_2_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_2_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_2_purple{background-image:url(spritesmith-main-2.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_2_purple{background-image:url(spritesmith-main-2.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_2_pyellow{background-image:url(spritesmith-main-2.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_2_pyellow{background-image:url(spritesmith-main-2.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_2_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_2_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_2_rainbow{background-image:url(spritesmith-main-2.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_2_rainbow{background-image:url(spritesmith-main-2.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_2_red{background-image:url(spritesmith-main-2.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_2_red{background-image:url(spritesmith-main-2.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_2_snowy{background-image:url(spritesmith-main-2.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_2_snowy{background-image:url(spritesmith-main-2.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_2_white{background-image:url(spritesmith-main-2.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_2_white{background-image:url(spritesmith-main-2.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_2_winternight{background-image:url(spritesmith-main-2.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_2_winternight{background-image:url(spritesmith-main-2.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_2_winterstar{background-image:url(spritesmith-main-2.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_2_winterstar{background-image:url(spritesmith-main-2.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_2_yellow{background-image:url(spritesmith-main-2.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_2_yellow{background-image:url(spritesmith-main-2.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_2_zombie{background-image:url(spritesmith-main-2.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_2_zombie{background-image:url(spritesmith-main-2.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_3_TRUred{background-image:url(spritesmith-main-2.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_3_TRUred{background-image:url(spritesmith-main-2.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_3_aurora{background-image:url(spritesmith-main-2.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_3_aurora{background-image:url(spritesmith-main-2.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_3_black{background-image:url(spritesmith-main-2.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_3_black{background-image:url(spritesmith-main-2.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_3_blond{background-image:url(spritesmith-main-2.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_3_blond{background-image:url(spritesmith-main-2.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_3_blue{background-image:url(spritesmith-main-2.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_3_blue{background-image:url(spritesmith-main-2.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_3_brown{background-image:url(spritesmith-main-2.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_3_brown{background-image:url(spritesmith-main-2.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_3_candycane{background-image:url(spritesmith-main-2.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_3_candycane{background-image:url(spritesmith-main-2.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_3_candycorn{background-image:url(spritesmith-main-2.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_3_candycorn{background-image:url(spritesmith-main-2.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_3_festive{background-image:url(spritesmith-main-2.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_3_festive{background-image:url(spritesmith-main-2.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_3_frost{background-image:url(spritesmith-main-2.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_3_frost{background-image:url(spritesmith-main-2.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_3_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_3_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_3_green{background-image:url(spritesmith-main-2.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_3_green{background-image:url(spritesmith-main-2.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_3_halloween{background-image:url(spritesmith-main-2.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_3_halloween{background-image:url(spritesmith-main-2.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_3_holly{background-image:url(spritesmith-main-2.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_3_holly{background-image:url(spritesmith-main-2.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_3_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_3_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_3_midnight{background-image:url(spritesmith-main-2.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_3_midnight{background-image:url(spritesmith-main-2.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_3_pblue{background-image:url(spritesmith-main-2.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_3_pblue{background-image:url(spritesmith-main-2.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_3_pblue2{background-image:url(spritesmith-main-2.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_3_pblue2{background-image:url(spritesmith-main-2.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_3_peppermint{background-image:url(spritesmith-main-2.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_3_peppermint{background-image:url(spritesmith-main-2.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_3_pgreen{background-image:url(spritesmith-main-2.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_3_pgreen{background-image:url(spritesmith-main-2.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_3_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_3_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_3_porange{background-image:url(spritesmith-main-2.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_3_porange{background-image:url(spritesmith-main-2.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_3_porange2{background-image:url(spritesmith-main-2.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_3_porange2{background-image:url(spritesmith-main-2.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_3_ppink{background-image:url(spritesmith-main-2.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppink{background-image:url(spritesmith-main-2.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_3_ppink2{background-image:url(spritesmith-main-2.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppink2{background-image:url(spritesmith-main-2.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_3_ppurple{background-image:url(spritesmith-main-2.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppurple{background-image:url(spritesmith-main-2.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_3_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_3_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_3_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_3_purple{background-image:url(spritesmith-main-2.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_3_purple{background-image:url(spritesmith-main-2.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_3_pyellow{background-image:url(spritesmith-main-2.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_3_pyellow{background-image:url(spritesmith-main-2.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_3_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_3_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_3_rainbow{background-image:url(spritesmith-main-2.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_3_rainbow{background-image:url(spritesmith-main-2.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_3_red{background-image:url(spritesmith-main-2.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_3_red{background-image:url(spritesmith-main-2.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_3_snowy{background-image:url(spritesmith-main-2.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_3_snowy{background-image:url(spritesmith-main-2.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_3_white{background-image:url(spritesmith-main-2.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_3_white{background-image:url(spritesmith-main-2.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_3_winternight{background-image:url(spritesmith-main-2.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_3_winternight{background-image:url(spritesmith-main-2.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_3_winterstar{background-image:url(spritesmith-main-2.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_3_winterstar{background-image:url(spritesmith-main-2.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_3_yellow{background-image:url(spritesmith-main-2.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_3_yellow{background-image:url(spritesmith-main-2.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_3_zombie{background-image:url(spritesmith-main-2.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_3_zombie{background-image:url(spritesmith-main-2.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_4_TRUred{background-image:url(spritesmith-main-2.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_4_TRUred{background-image:url(spritesmith-main-2.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_4_aurora{background-image:url(spritesmith-main-2.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_4_aurora{background-image:url(spritesmith-main-2.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_4_black{background-image:url(spritesmith-main-2.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_4_black{background-image:url(spritesmith-main-2.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_4_blond{background-image:url(spritesmith-main-2.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_4_blond{background-image:url(spritesmith-main-2.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_4_blue{background-image:url(spritesmith-main-2.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_4_blue{background-image:url(spritesmith-main-2.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_4_brown{background-image:url(spritesmith-main-2.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_4_brown{background-image:url(spritesmith-main-2.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_4_candycane{background-image:url(spritesmith-main-2.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_4_candycane{background-image:url(spritesmith-main-2.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_4_candycorn{background-image:url(spritesmith-main-2.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_4_candycorn{background-image:url(spritesmith-main-2.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_4_festive{background-image:url(spritesmith-main-2.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_4_festive{background-image:url(spritesmith-main-2.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_4_frost{background-image:url(spritesmith-main-2.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_4_frost{background-image:url(spritesmith-main-2.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_4_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_4_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_4_green{background-image:url(spritesmith-main-2.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_4_green{background-image:url(spritesmith-main-2.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_4_halloween{background-image:url(spritesmith-main-2.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_4_halloween{background-image:url(spritesmith-main-2.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_4_holly{background-image:url(spritesmith-main-2.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_4_holly{background-image:url(spritesmith-main-2.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_4_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_4_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_4_midnight{background-image:url(spritesmith-main-2.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_4_midnight{background-image:url(spritesmith-main-2.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_4_pblue{background-image:url(spritesmith-main-2.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_4_pblue{background-image:url(spritesmith-main-2.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_4_pblue2{background-image:url(spritesmith-main-2.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_4_pblue2{background-image:url(spritesmith-main-2.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_4_peppermint{background-image:url(spritesmith-main-2.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_4_peppermint{background-image:url(spritesmith-main-2.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_4_pgreen{background-image:url(spritesmith-main-2.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_4_pgreen{background-image:url(spritesmith-main-2.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_4_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_4_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_4_porange{background-image:url(spritesmith-main-2.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_4_porange{background-image:url(spritesmith-main-2.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_4_porange2{background-image:url(spritesmith-main-2.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_4_porange2{background-image:url(spritesmith-main-2.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_4_ppink{background-image:url(spritesmith-main-2.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppink{background-image:url(spritesmith-main-2.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_4_ppink2{background-image:url(spritesmith-main-2.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppink2{background-image:url(spritesmith-main-2.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_4_ppurple{background-image:url(spritesmith-main-2.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppurple{background-image:url(spritesmith-main-2.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_4_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_4_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_4_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_4_purple{background-image:url(spritesmith-main-2.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_4_purple{background-image:url(spritesmith-main-2.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_4_pyellow{background-image:url(spritesmith-main-2.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_4_pyellow{background-image:url(spritesmith-main-2.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_4_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_4_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_4_rainbow{background-image:url(spritesmith-main-2.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_4_rainbow{background-image:url(spritesmith-main-2.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_4_red{background-image:url(spritesmith-main-2.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_4_red{background-image:url(spritesmith-main-2.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_4_snowy{background-image:url(spritesmith-main-2.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_4_snowy{background-image:url(spritesmith-main-2.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_4_white{background-image:url(spritesmith-main-2.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_4_white{background-image:url(spritesmith-main-2.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_4_winternight{background-image:url(spritesmith-main-2.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_4_winternight{background-image:url(spritesmith-main-2.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_4_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_4_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_4_yellow{background-image:url(spritesmith-main-2.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_4_yellow{background-image:url(spritesmith-main-2.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_4_zombie{background-image:url(spritesmith-main-2.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_4_zombie{background-image:url(spritesmith-main-2.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_5_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_5_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_5_aurora{background-image:url(spritesmith-main-2.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_5_aurora{background-image:url(spritesmith-main-2.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_5_black{background-image:url(spritesmith-main-2.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_5_black{background-image:url(spritesmith-main-2.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_5_blond{background-image:url(spritesmith-main-2.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_5_blond{background-image:url(spritesmith-main-2.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_5_blue{background-image:url(spritesmith-main-2.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_5_blue{background-image:url(spritesmith-main-2.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_5_brown{background-image:url(spritesmith-main-2.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_5_brown{background-image:url(spritesmith-main-2.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_5_candycane{background-image:url(spritesmith-main-2.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_5_candycane{background-image:url(spritesmith-main-2.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_5_candycorn{background-image:url(spritesmith-main-2.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_5_candycorn{background-image:url(spritesmith-main-2.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_5_festive{background-image:url(spritesmith-main-2.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_5_festive{background-image:url(spritesmith-main-2.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_5_frost{background-image:url(spritesmith-main-2.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_5_frost{background-image:url(spritesmith-main-2.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_5_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_5_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_5_green{background-image:url(spritesmith-main-2.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_5_green{background-image:url(spritesmith-main-2.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_5_halloween{background-image:url(spritesmith-main-2.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_5_halloween{background-image:url(spritesmith-main-2.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_5_holly{background-image:url(spritesmith-main-2.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_5_holly{background-image:url(spritesmith-main-2.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_5_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_5_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_5_midnight{background-image:url(spritesmith-main-2.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_5_midnight{background-image:url(spritesmith-main-2.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_5_pblue{background-image:url(spritesmith-main-2.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_5_pblue{background-image:url(spritesmith-main-2.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_5_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_5_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_5_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_5_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_5_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_5_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_5_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_5_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_5_porange{background-image:url(spritesmith-main-2.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_5_porange{background-image:url(spritesmith-main-2.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_5_porange2{background-image:url(spritesmith-main-2.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_5_porange2{background-image:url(spritesmith-main-2.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_5_ppink{background-image:url(spritesmith-main-2.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_5_ppink{background-image:url(spritesmith-main-2.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_5_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_5_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_5_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_5_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_5_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_5_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_5_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_5_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_5_purple{background-image:url(spritesmith-main-2.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_5_purple{background-image:url(spritesmith-main-2.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_5_pyellow{background-image:url(spritesmith-main-2.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pyellow{background-image:url(spritesmith-main-2.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_5_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_5_rainbow{background-image:url(spritesmith-main-2.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_5_rainbow{background-image:url(spritesmith-main-2.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_5_red{background-image:url(spritesmith-main-2.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_5_red{background-image:url(spritesmith-main-2.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_5_snowy{background-image:url(spritesmith-main-2.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_5_snowy{background-image:url(spritesmith-main-2.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_5_white{background-image:url(spritesmith-main-2.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_5_white{background-image:url(spritesmith-main-2.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_5_winternight{background-image:url(spritesmith-main-2.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_5_winternight{background-image:url(spritesmith-main-2.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_5_winterstar{background-image:url(spritesmith-main-2.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_5_winterstar{background-image:url(spritesmith-main-2.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_5_yellow{background-image:url(spritesmith-main-2.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_5_yellow{background-image:url(spritesmith-main-2.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_5_zombie{background-image:url(spritesmith-main-2.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_5_zombie{background-image:url(spritesmith-main-2.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_6_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_6_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_6_aurora{background-image:url(spritesmith-main-2.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_6_aurora{background-image:url(spritesmith-main-2.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_6_black{background-image:url(spritesmith-main-2.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_6_black{background-image:url(spritesmith-main-2.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_6_blond{background-image:url(spritesmith-main-2.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_6_blond{background-image:url(spritesmith-main-2.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_6_blue{background-image:url(spritesmith-main-2.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_6_blue{background-image:url(spritesmith-main-2.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_6_brown{background-image:url(spritesmith-main-2.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_6_brown{background-image:url(spritesmith-main-2.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_6_candycane{background-image:url(spritesmith-main-2.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_6_candycane{background-image:url(spritesmith-main-2.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_6_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_6_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_6_festive{background-image:url(spritesmith-main-2.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_6_festive{background-image:url(spritesmith-main-2.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_6_frost{background-image:url(spritesmith-main-2.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_6_frost{background-image:url(spritesmith-main-2.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_6_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_6_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_6_green{background-image:url(spritesmith-main-2.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_6_green{background-image:url(spritesmith-main-2.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_6_halloween{background-image:url(spritesmith-main-2.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_6_halloween{background-image:url(spritesmith-main-2.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_6_holly{background-image:url(spritesmith-main-2.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_6_holly{background-image:url(spritesmith-main-2.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_6_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_6_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_6_midnight{background-image:url(spritesmith-main-2.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_6_midnight{background-image:url(spritesmith-main-2.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_6_pblue{background-image:url(spritesmith-main-2.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pblue{background-image:url(spritesmith-main-2.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_6_pblue2{background-image:url(spritesmith-main-2.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pblue2{background-image:url(spritesmith-main-2.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_6_peppermint{background-image:url(spritesmith-main-2.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_6_peppermint{background-image:url(spritesmith-main-2.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_6_pgreen{background-image:url(spritesmith-main-2.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pgreen{background-image:url(spritesmith-main-2.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_6_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_6_porange{background-image:url(spritesmith-main-2.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_6_porange{background-image:url(spritesmith-main-2.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_6_porange2{background-image:url(spritesmith-main-2.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_6_porange2{background-image:url(spritesmith-main-2.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_6_ppink{background-image:url(spritesmith-main-2.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ppink{background-image:url(spritesmith-main-2.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_6_ppink2{background-image:url(spritesmith-main-2.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ppink2{background-image:url(spritesmith-main-2.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_6_ppurple{background-image:url(spritesmith-main-2.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ppurple{background-image:url(spritesmith-main-2.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_6_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_6_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_6_purple{background-image:url(spritesmith-main-2.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_6_purple{background-image:url(spritesmith-main-2.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_6_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_6_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_6_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_6_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_6_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_6_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_6_red{background-image:url(spritesmith-main-2.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_6_red{background-image:url(spritesmith-main-2.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_6_snowy{background-image:url(spritesmith-main-2.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_6_snowy{background-image:url(spritesmith-main-2.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_6_white{background-image:url(spritesmith-main-2.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_6_white{background-image:url(spritesmith-main-2.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_6_winternight{background-image:url(spritesmith-main-2.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_6_winternight{background-image:url(spritesmith-main-2.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_6_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_6_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_6_yellow{background-image:url(spritesmith-main-2.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_6_yellow{background-image:url(spritesmith-main-2.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_6_zombie{background-image:url(spritesmith-main-2.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_6_zombie{background-image:url(spritesmith-main-2.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_7_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_7_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_7_aurora{background-image:url(spritesmith-main-2.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_7_aurora{background-image:url(spritesmith-main-2.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_7_black{background-image:url(spritesmith-main-2.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_7_black{background-image:url(spritesmith-main-2.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_7_blond{background-image:url(spritesmith-main-2.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_7_blond{background-image:url(spritesmith-main-2.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_7_blue{background-image:url(spritesmith-main-2.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_7_blue{background-image:url(spritesmith-main-2.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_7_brown{background-image:url(spritesmith-main-2.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_7_brown{background-image:url(spritesmith-main-2.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_7_candycane{background-image:url(spritesmith-main-2.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_7_candycane{background-image:url(spritesmith-main-2.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_7_candycorn{background-image:url(spritesmith-main-2.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_7_candycorn{background-image:url(spritesmith-main-2.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_7_festive{background-image:url(spritesmith-main-2.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_7_festive{background-image:url(spritesmith-main-2.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_7_frost{background-image:url(spritesmith-main-2.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_7_frost{background-image:url(spritesmith-main-2.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_7_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_7_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_7_green{background-image:url(spritesmith-main-2.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_7_green{background-image:url(spritesmith-main-2.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_7_halloween{background-image:url(spritesmith-main-2.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_7_halloween{background-image:url(spritesmith-main-2.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_7_holly{background-image:url(spritesmith-main-2.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_7_holly{background-image:url(spritesmith-main-2.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_7_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_7_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_7_midnight{background-image:url(spritesmith-main-2.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_7_midnight{background-image:url(spritesmith-main-2.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_7_pblue{background-image:url(spritesmith-main-2.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_7_pblue{background-image:url(spritesmith-main-2.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_7_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_7_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_7_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_7_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_7_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_7_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_7_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_7_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_7_porange{background-image:url(spritesmith-main-2.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_7_porange{background-image:url(spritesmith-main-2.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_7_porange2{background-image:url(spritesmith-main-2.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_7_porange2{background-image:url(spritesmith-main-2.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_7_ppink{background-image:url(spritesmith-main-2.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_7_ppink{background-image:url(spritesmith-main-2.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_7_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_7_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_7_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_7_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_7_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_7_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_7_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_7_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_7_purple{background-image:url(spritesmith-main-2.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_7_purple{background-image:url(spritesmith-main-2.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_7_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_7_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_7_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_7_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_7_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_7_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_7_red{background-image:url(spritesmith-main-2.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_7_red{background-image:url(spritesmith-main-2.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_7_snowy{background-image:url(spritesmith-main-2.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_7_snowy{background-image:url(spritesmith-main-2.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_7_white{background-image:url(spritesmith-main-2.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_7_white{background-image:url(spritesmith-main-2.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_7_winternight{background-image:url(spritesmith-main-2.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_7_winternight{background-image:url(spritesmith-main-2.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_7_winterstar{background-image:url(spritesmith-main-2.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_7_winterstar{background-image:url(spritesmith-main-2.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_7_yellow{background-image:url(spritesmith-main-2.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_7_yellow{background-image:url(spritesmith-main-2.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_7_zombie{background-image:url(spritesmith-main-2.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_7_zombie{background-image:url(spritesmith-main-2.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_8_TRUred{background-image:url(spritesmith-main-2.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_8_TRUred{background-image:url(spritesmith-main-2.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_8_aurora{background-image:url(spritesmith-main-2.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_8_aurora{background-image:url(spritesmith-main-2.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_8_black{background-image:url(spritesmith-main-2.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_8_black{background-image:url(spritesmith-main-2.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_8_blond{background-image:url(spritesmith-main-2.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_8_blond{background-image:url(spritesmith-main-2.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_8_blue{background-image:url(spritesmith-main-2.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_8_blue{background-image:url(spritesmith-main-2.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_8_brown{background-image:url(spritesmith-main-2.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_8_brown{background-image:url(spritesmith-main-2.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_8_candycane{background-image:url(spritesmith-main-2.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_8_candycane{background-image:url(spritesmith-main-2.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_8_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_8_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_8_festive{background-image:url(spritesmith-main-2.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_8_festive{background-image:url(spritesmith-main-2.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_8_frost{background-image:url(spritesmith-main-2.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_8_frost{background-image:url(spritesmith-main-2.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_8_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_8_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_8_green{background-image:url(spritesmith-main-2.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_8_green{background-image:url(spritesmith-main-2.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_8_halloween{background-image:url(spritesmith-main-2.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_8_halloween{background-image:url(spritesmith-main-2.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_8_holly{background-image:url(spritesmith-main-2.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_8_holly{background-image:url(spritesmith-main-2.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_8_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_8_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_8_midnight{background-image:url(spritesmith-main-2.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_8_midnight{background-image:url(spritesmith-main-2.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_8_pblue{background-image:url(spritesmith-main-2.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_8_pblue{background-image:url(spritesmith-main-2.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_8_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_8_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_8_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_8_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_8_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_8_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_8_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_8_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_8_porange{background-image:url(spritesmith-main-2.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_8_porange{background-image:url(spritesmith-main-2.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_8_porange2{background-image:url(spritesmith-main-2.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_8_porange2{background-image:url(spritesmith-main-2.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_8_ppink{background-image:url(spritesmith-main-2.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_8_ppink{background-image:url(spritesmith-main-2.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_8_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_8_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_8_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_8_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_8_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_8_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_8_pumpkin{background-image:url(spritesmith-main-2.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_8_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_8_purple{background-image:url(spritesmith-main-2.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_8_purple{background-image:url(spritesmith-main-2.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_8_pyellow{background-image:url(spritesmith-main-2.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pyellow{background-image:url(spritesmith-main-2.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_8_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_8_rainbow{background-image:url(spritesmith-main-2.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_8_rainbow{background-image:url(spritesmith-main-2.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_8_red{background-image:url(spritesmith-main-2.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_8_red{background-image:url(spritesmith-main-2.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_8_snowy{background-image:url(spritesmith-main-2.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_8_snowy{background-image:url(spritesmith-main-2.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_8_white{background-image:url(spritesmith-main-2.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_8_white{background-image:url(spritesmith-main-2.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_8_winternight{background-image:url(spritesmith-main-2.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winternight{background-image:url(spritesmith-main-2.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_8_winterstar{background-image:url(spritesmith-main-2.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winterstar{background-image:url(spritesmith-main-2.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_8_yellow{background-image:url(spritesmith-main-2.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_8_yellow{background-image:url(spritesmith-main-2.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_8_zombie{background-image:url(spritesmith-main-2.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_8_zombie{background-image:url(spritesmith-main-2.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_9_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_9_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_9_aurora{background-image:url(spritesmith-main-2.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_9_aurora{background-image:url(spritesmith-main-2.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_9_black{background-image:url(spritesmith-main-2.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_9_black{background-image:url(spritesmith-main-2.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_9_blond{background-image:url(spritesmith-main-2.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_9_blond{background-image:url(spritesmith-main-2.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_9_blue{background-image:url(spritesmith-main-2.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_9_blue{background-image:url(spritesmith-main-2.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_9_brown{background-image:url(spritesmith-main-2.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_9_brown{background-image:url(spritesmith-main-2.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_9_candycane{background-image:url(spritesmith-main-2.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_9_candycane{background-image:url(spritesmith-main-2.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_9_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_9_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_9_festive{background-image:url(spritesmith-main-2.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_9_festive{background-image:url(spritesmith-main-2.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_9_frost{background-image:url(spritesmith-main-2.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_9_frost{background-image:url(spritesmith-main-2.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_9_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_9_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_9_green{background-image:url(spritesmith-main-2.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_9_green{background-image:url(spritesmith-main-2.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_9_halloween{background-image:url(spritesmith-main-2.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_9_halloween{background-image:url(spritesmith-main-2.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_9_holly{background-image:url(spritesmith-main-2.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_9_holly{background-image:url(spritesmith-main-2.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_9_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_9_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_9_midnight{background-image:url(spritesmith-main-2.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_9_midnight{background-image:url(spritesmith-main-2.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_9_pblue{background-image:url(spritesmith-main-2.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_9_pblue{background-image:url(spritesmith-main-2.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_9_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_9_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_9_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_9_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_9_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_9_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_9_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_9_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_9_porange{background-image:url(spritesmith-main-2.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_9_porange{background-image:url(spritesmith-main-2.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_9_porange2{background-image:url(spritesmith-main-2.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_9_porange2{background-image:url(spritesmith-main-2.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_9_ppink{background-image:url(spritesmith-main-2.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppink{background-image:url(spritesmith-main-2.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_9_ppink2{background-image:url(spritesmith-main-2.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppink2{background-image:url(spritesmith-main-2.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_9_ppurple{background-image:url(spritesmith-main-2.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppurple{background-image:url(spritesmith-main-2.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_9_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_9_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_9_purple{background-image:url(spritesmith-main-2.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_9_purple{background-image:url(spritesmith-main-2.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_9_pyellow{background-image:url(spritesmith-main-2.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pyellow{background-image:url(spritesmith-main-2.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_9_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_9_rainbow{background-image:url(spritesmith-main-2.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_9_rainbow{background-image:url(spritesmith-main-2.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_9_red{background-image:url(spritesmith-main-2.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_9_red{background-image:url(spritesmith-main-2.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_9_snowy{background-image:url(spritesmith-main-2.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_9_snowy{background-image:url(spritesmith-main-2.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_9_white{background-image:url(spritesmith-main-2.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_9_white{background-image:url(spritesmith-main-2.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_9_winternight{background-image:url(spritesmith-main-2.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_9_winternight{background-image:url(spritesmith-main-2.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_9_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_9_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_9_yellow{background-image:url(spritesmith-main-2.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_9_yellow{background-image:url(spritesmith-main-2.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_9_zombie{background-image:url(spritesmith-main-2.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_9_zombie{background-image:url(spritesmith-main-2.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_beard_1_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_beard_1_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_beard_1_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_beard_1_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1663px -15px;width:60px;height:60px}.hair_beard_1_porange2{background-image:url(spritesmith-main-2.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_beard_1_porange2{background-image:url(spritesmith-main-2.png);background-position:-1663px -106px;width:60px;height:60px}.hair_beard_1_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_beard_1_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1663px -197px;width:60px;height:60px}.hair_beard_1_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1663px -288px;width:60px;height:60px}.hair_beard_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1663px -379px;width:60px;height:60px}.hair_beard_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-454px -273px;width:90px;height:90px}.customize-option.hair_beard_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-479px -288px;width:60px;height:60px}.hair_beard_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1276px -728px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1301px -743px;width:60px;height:60px}.hair_beard_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-1276px -1092px;width:90px;height:90px}.customize-option.hair_beard_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-1301px -1107px;width:60px;height:60px}.hair_beard_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-207px -1289px;width:60px;height:60px}.hair_beard_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-298px -1289px;width:60px;height:60px}.hair_beard_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-480px -1289px;width:60px;height:60px}.hair_beard_3_pblue2{background-image:url(spritesmith-main-3.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_pblue2{background-image:url(spritesmith-main-3.png);background-position:-571px -1289px;width:60px;height:60px}.hair_beard_3_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-935px -1289px;width:60px;height:60px}.hair_beard_3_porange2{background-image:url(spritesmith-main-3.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_porange2{background-image:url(spritesmith-main-3.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_beard_3_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_beard_3_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1367px -91px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1392px -106px;width:60px;height:60px}.hair_beard_3_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-1367px -182px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-1392px -197px;width:60px;height:60px}.hair_mustache_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1367px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1392px -379px;width:60px;height:60px}.hair_mustache_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1367px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1392px -470px;width:60px;height:60px}.hair_mustache_1_porange2{background-image:url(spritesmith-main-3.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-25px -1471px;width:60px;height:60px}.hair_mustache_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-116px -1471px;width:60px;height:60px}.hair_mustache_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-298px -1471px;width:60px;height:60px}.hair_mustache_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-389px -1471px;width:60px;height:60px}.hair_mustache_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-753px -1471px;width:60px;height:60px}.hair_mustache_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-844px -1471px;width:60px;height:60px}.hair_mustache_2_porange2{background-image:url(spritesmith-main-3.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_mustache_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-25px -379px;width:60px;height:60px}.hair_mustache_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-116px -379px;width:60px;height:60px}.hair_mustache_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-207px -379px;width:60px;height:60px}.hair_mustache_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-298px -379px;width:60px;height:60px}.broad_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.broad_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-389px -394px;width:60px;height:60px}.broad_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.broad_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-480px -394px;width:60px;height:60px}.broad_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:0 -455px;width:90px;height:90px}.customize-option.broad_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-25px -485px;width:60px;height:60px}.broad_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.broad_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-116px -485px;width:60px;height:60px}.broad_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.broad_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-207px -485px;width:60px;height:60px}.broad_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.broad_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-298px -485px;width:60px;height:60px}.broad_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.broad_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-389px -485px;width:60px;height:60px}.broad_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.broad_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-480px -485px;width:60px;height:60px}.broad_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-548px 0;width:90px;height:90px}.customize-option.broad_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-573px -30px;width:60px;height:60px}.broad_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-548px -91px;width:90px;height:90px}.customize-option.broad_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-573px -121px;width:60px;height:60px}.broad_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-548px -182px;width:90px;height:90px}.customize-option.broad_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-573px -212px;width:60px;height:60px}.broad_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-548px -273px;width:90px;height:90px}.customize-option.broad_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-573px -303px;width:60px;height:60px}.broad_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-548px -364px;width:90px;height:90px}.customize-option.broad_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-573px -394px;width:60px;height:60px}.broad_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-548px -455px;width:90px;height:90px}.customize-option.broad_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-573px -485px;width:60px;height:60px}.broad_shirt_white{background-image:url(spritesmith-main-3.png);background-position:0 -546px;width:90px;height:90px}.customize-option.broad_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-25px -576px;width:60px;height:60px}.broad_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.broad_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-116px -576px;width:60px;height:60px}.broad_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.broad_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-207px -576px;width:60px;height:60px}.slim_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.slim_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-298px -576px;width:60px;height:60px}.slim_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.slim_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-389px -576px;width:60px;height:60px}.slim_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.slim_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-480px -576px;width:60px;height:60px}.slim_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.slim_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-571px -576px;width:60px;height:60px}.slim_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-639px 0;width:90px;height:90px}.customize-option.slim_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-664px -30px;width:60px;height:60px}.slim_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-639px -91px;width:90px;height:90px}.customize-option.slim_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-664px -121px;width:60px;height:60px}.slim_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-639px -182px;width:90px;height:90px}.customize-option.slim_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-664px -212px;width:60px;height:60px}.slim_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-639px -273px;width:90px;height:90px}.customize-option.slim_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-664px -303px;width:60px;height:60px}.slim_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-639px -364px;width:90px;height:90px}.customize-option.slim_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-664px -394px;width:60px;height:60px}.slim_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-639px -455px;width:90px;height:90px}.customize-option.slim_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-664px -485px;width:60px;height:60px}.slim_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-639px -546px;width:90px;height:90px}.customize-option.slim_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-664px -576px;width:60px;height:60px}.slim_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:0 -637px;width:90px;height:90px}.customize-option.slim_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-25px -667px;width:60px;height:60px}.slim_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.slim_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-116px -667px;width:60px;height:60px}.slim_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.slim_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-207px -667px;width:60px;height:60px}.slim_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.slim_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-298px -667px;width:60px;height:60px}.slim_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.slim_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-389px -667px;width:60px;height:60px}.slim_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.slim_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-480px -667px;width:60px;height:60px}.skin_0ff591{background-image:url(spritesmith-main-3.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.skin_0ff591{background-image:url(spritesmith-main-3.png);background-position:-571px -652px;width:60px;height:60px}.skin_0ff591_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.skin_0ff591_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -652px;width:60px;height:60px}.skin_2b43f6{background-image:url(spritesmith-main-3.png);background-position:-730px 0;width:90px;height:90px}.customize-option.skin_2b43f6{background-image:url(spritesmith-main-3.png);background-position:-755px -15px;width:60px;height:60px}.skin_2b43f6_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -91px;width:90px;height:90px}.customize-option.skin_2b43f6_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -106px;width:60px;height:60px}.skin_6bd049{background-image:url(spritesmith-main-3.png);background-position:-730px -182px;width:90px;height:90px}.customize-option.skin_6bd049{background-image:url(spritesmith-main-3.png);background-position:-755px -197px;width:60px;height:60px}.skin_6bd049_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -273px;width:90px;height:90px}.customize-option.skin_6bd049_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -288px;width:60px;height:60px}.skin_800ed0{background-image:url(spritesmith-main-3.png);background-position:-730px -364px;width:90px;height:90px}.customize-option.skin_800ed0{background-image:url(spritesmith-main-3.png);background-position:-755px -379px;width:60px;height:60px}.skin_800ed0_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -455px;width:90px;height:90px}.customize-option.skin_800ed0_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -470px;width:60px;height:60px}.skin_915533{background-image:url(spritesmith-main-3.png);background-position:-730px -546px;width:90px;height:90px}.customize-option.skin_915533{background-image:url(spritesmith-main-3.png);background-position:-755px -561px;width:60px;height:60px}.skin_915533_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -637px;width:90px;height:90px}.customize-option.skin_915533_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -652px;width:60px;height:60px}.skin_98461a{background-image:url(spritesmith-main-3.png);background-position:0 -728px;width:90px;height:90px}.customize-option.skin_98461a{background-image:url(spritesmith-main-3.png);background-position:-25px -743px;width:60px;height:60px}.skin_98461a_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.skin_98461a_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -743px;width:60px;height:60px}.skin_bear{background-image:url(spritesmith-main-3.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.skin_bear{background-image:url(spritesmith-main-3.png);background-position:-207px -743px;width:60px;height:60px}.skin_bear_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.skin_bear_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -743px;width:60px;height:60px}.skin_c06534{background-image:url(spritesmith-main-3.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.skin_c06534{background-image:url(spritesmith-main-3.png);background-position:-389px -743px;width:60px;height:60px}.skin_c06534_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.skin_c06534_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -743px;width:60px;height:60px}.skin_c3e1dc{background-image:url(spritesmith-main-3.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.skin_c3e1dc{background-image:url(spritesmith-main-3.png);background-position:-571px -743px;width:60px;height:60px}.skin_c3e1dc_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.skin_c3e1dc_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -743px;width:60px;height:60px}.skin_cactus{background-image:url(spritesmith-main-3.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.skin_cactus{background-image:url(spritesmith-main-3.png);background-position:-753px -743px;width:60px;height:60px}.skin_cactus_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px 0;width:90px;height:90px}.customize-option.skin_cactus_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -15px;width:60px;height:60px}.skin_candycorn{background-image:url(spritesmith-main-3.png);background-position:-821px -91px;width:90px;height:90px}.customize-option.skin_candycorn{background-image:url(spritesmith-main-3.png);background-position:-846px -106px;width:60px;height:60px}.skin_candycorn_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -182px;width:90px;height:90px}.customize-option.skin_candycorn_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -197px;width:60px;height:60px}.skin_clownfish{background-image:url(spritesmith-main-3.png);background-position:-821px -273px;width:90px;height:90px}.customize-option.skin_clownfish{background-image:url(spritesmith-main-3.png);background-position:-846px -288px;width:60px;height:60px}.skin_clownfish_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -364px;width:90px;height:90px}.customize-option.skin_clownfish_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -379px;width:60px;height:60px}.skin_d7a9f7{background-image:url(spritesmith-main-3.png);background-position:-821px -455px;width:90px;height:90px}.customize-option.skin_d7a9f7{background-image:url(spritesmith-main-3.png);background-position:-846px -470px;width:60px;height:60px}.skin_d7a9f7_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -546px;width:90px;height:90px}.customize-option.skin_d7a9f7_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -561px;width:60px;height:60px}.skin_ddc994{background-image:url(spritesmith-main-3.png);background-position:-821px -637px;width:90px;height:90px}.customize-option.skin_ddc994{background-image:url(spritesmith-main-3.png);background-position:-846px -652px;width:60px;height:60px}.skin_ddc994_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -728px;width:90px;height:90px}.customize-option.skin_ddc994_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -743px;width:60px;height:60px}.skin_deepocean{background-image:url(spritesmith-main-3.png);background-position:0 -819px;width:90px;height:90px}.customize-option.skin_deepocean{background-image:url(spritesmith-main-3.png);background-position:-25px -834px;width:60px;height:60px}.skin_deepocean_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.skin_deepocean_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -834px;width:60px;height:60px}.skin_ea8349{background-image:url(spritesmith-main-3.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.skin_ea8349{background-image:url(spritesmith-main-3.png);background-position:-207px -834px;width:60px;height:60px}.skin_ea8349_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.skin_ea8349_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -834px;width:60px;height:60px}.skin_eb052b{background-image:url(spritesmith-main-3.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.skin_eb052b{background-image:url(spritesmith-main-3.png);background-position:-389px -834px;width:60px;height:60px}.skin_eb052b_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.skin_eb052b_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -834px;width:60px;height:60px}.skin_f5a76e{background-image:url(spritesmith-main-3.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.skin_f5a76e{background-image:url(spritesmith-main-3.png);background-position:-571px -834px;width:60px;height:60px}.skin_f5a76e_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.skin_f5a76e_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -834px;width:60px;height:60px}.skin_f5d70f{background-image:url(spritesmith-main-3.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.skin_f5d70f{background-image:url(spritesmith-main-3.png);background-position:-753px -834px;width:60px;height:60px}.skin_f5d70f_sleep{background-image:url(spritesmith-main-3.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.skin_f5d70f_sleep{background-image:url(spritesmith-main-3.png);background-position:-844px -834px;width:60px;height:60px}.skin_f69922{background-image:url(spritesmith-main-3.png);background-position:-912px 0;width:90px;height:90px}.customize-option.skin_f69922{background-image:url(spritesmith-main-3.png);background-position:-937px -15px;width:60px;height:60px}.skin_f69922_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -91px;width:90px;height:90px}.customize-option.skin_f69922_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -106px;width:60px;height:60px}.skin_fox{background-image:url(spritesmith-main-3.png);background-position:-912px -182px;width:90px;height:90px}.customize-option.skin_fox{background-image:url(spritesmith-main-3.png);background-position:-937px -197px;width:60px;height:60px}.skin_fox_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -273px;width:90px;height:90px}.customize-option.skin_fox_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -288px;width:60px;height:60px}.skin_ghost{background-image:url(spritesmith-main-3.png);background-position:-912px -364px;width:90px;height:90px}.customize-option.skin_ghost{background-image:url(spritesmith-main-3.png);background-position:-937px -379px;width:60px;height:60px}.skin_ghost_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -455px;width:90px;height:90px}.customize-option.skin_ghost_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -470px;width:60px;height:60px}.skin_lion{background-image:url(spritesmith-main-3.png);background-position:-912px -546px;width:90px;height:90px}.customize-option.skin_lion{background-image:url(spritesmith-main-3.png);background-position:-937px -561px;width:60px;height:60px}.skin_lion_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -637px;width:90px;height:90px}.customize-option.skin_lion_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -652px;width:60px;height:60px}.skin_merblue{background-image:url(spritesmith-main-3.png);background-position:-912px -728px;width:90px;height:90px}.customize-option.skin_merblue{background-image:url(spritesmith-main-3.png);background-position:-937px -743px;width:60px;height:60px}.skin_merblue_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -819px;width:90px;height:90px}.customize-option.skin_merblue_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -834px;width:60px;height:60px}.skin_mergold{background-image:url(spritesmith-main-3.png);background-position:0 -910px;width:90px;height:90px}.customize-option.skin_mergold{background-image:url(spritesmith-main-3.png);background-position:-25px -925px;width:60px;height:60px}.skin_mergold_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.skin_mergold_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -925px;width:60px;height:60px}.skin_mergreen{background-image:url(spritesmith-main-3.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.skin_mergreen{background-image:url(spritesmith-main-3.png);background-position:-207px -925px;width:60px;height:60px}.skin_mergreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.skin_mergreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -925px;width:60px;height:60px}.skin_merruby{background-image:url(spritesmith-main-3.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.skin_merruby{background-image:url(spritesmith-main-3.png);background-position:-389px -925px;width:60px;height:60px}.skin_merruby_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.skin_merruby_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -925px;width:60px;height:60px}.skin_monster{background-image:url(spritesmith-main-3.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.skin_monster{background-image:url(spritesmith-main-3.png);background-position:-571px -925px;width:60px;height:60px}.skin_monster_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.skin_monster_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -925px;width:60px;height:60px}.skin_ogre{background-image:url(spritesmith-main-3.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.skin_ogre{background-image:url(spritesmith-main-3.png);background-position:-753px -925px;width:60px;height:60px}.skin_ogre_sleep{background-image:url(spritesmith-main-3.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.skin_ogre_sleep{background-image:url(spritesmith-main-3.png);background-position:-844px -925px;width:60px;height:60px}.skin_panda{background-image:url(spritesmith-main-3.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.skin_panda{background-image:url(spritesmith-main-3.png);background-position:-935px -925px;width:60px;height:60px}.skin_panda_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px 0;width:90px;height:90px}.customize-option.skin_panda_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -15px;width:60px;height:60px}.skin_pastelBlue{background-image:url(spritesmith-main-3.png);background-position:-1003px -91px;width:90px;height:90px}.customize-option.skin_pastelBlue{background-image:url(spritesmith-main-3.png);background-position:-1028px -106px;width:60px;height:60px}.skin_pastelBlue_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -182px;width:90px;height:90px}.customize-option.skin_pastelBlue_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -197px;width:60px;height:60px}.skin_pastelGreen{background-image:url(spritesmith-main-3.png);background-position:-1003px -273px;width:90px;height:90px}.customize-option.skin_pastelGreen{background-image:url(spritesmith-main-3.png);background-position:-1028px -288px;width:60px;height:60px}.skin_pastelGreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -364px;width:90px;height:90px}.customize-option.skin_pastelGreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -379px;width:60px;height:60px}.skin_pastelOrange{background-image:url(spritesmith-main-3.png);background-position:-1003px -455px;width:90px;height:90px}.customize-option.skin_pastelOrange{background-image:url(spritesmith-main-3.png);background-position:-1028px -470px;width:60px;height:60px}.skin_pastelOrange_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -546px;width:90px;height:90px}.customize-option.skin_pastelOrange_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -561px;width:60px;height:60px}.skin_pastelPink{background-image:url(spritesmith-main-3.png);background-position:-1003px -637px;width:90px;height:90px}.customize-option.skin_pastelPink{background-image:url(spritesmith-main-3.png);background-position:-1028px -652px;width:60px;height:60px}.skin_pastelPink_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -728px;width:90px;height:90px}.customize-option.skin_pastelPink_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -743px;width:60px;height:60px}.skin_pastelPurple{background-image:url(spritesmith-main-3.png);background-position:-1003px -819px;width:90px;height:90px}.customize-option.skin_pastelPurple{background-image:url(spritesmith-main-3.png);background-position:-1028px -834px;width:60px;height:60px}.skin_pastelPurple_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -910px;width:90px;height:90px}.customize-option.skin_pastelPurple_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -925px;width:60px;height:60px}.skin_pastelRainbowChevron{background-image:url(spritesmith-main-3.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron{background-image:url(spritesmith-main-3.png);background-position:-25px -1016px;width:60px;height:60px}.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -1016px;width:60px;height:60px}.skin_pastelRainbowDiagonal{background-image:url(spritesmith-main-3.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal{background-image:url(spritesmith-main-3.png);background-position:-207px -1016px;width:60px;height:60px}.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -1016px;width:60px;height:60px}.skin_pastelYellow{background-image:url(spritesmith-main-3.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.skin_pastelYellow{background-image:url(spritesmith-main-3.png);background-position:-389px -1016px;width:60px;height:60px}.skin_pastelYellow_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.skin_pastelYellow_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -1016px;width:60px;height:60px}.skin_pig{background-image:url(spritesmith-main-3.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.skin_pig{background-image:url(spritesmith-main-3.png);background-position:-571px -1016px;width:60px;height:60px}.skin_pig_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.skin_pig_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -1016px;width:60px;height:60px}.skin_pumpkin{background-image:url(spritesmith-main-3.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.skin_pumpkin{background-image:url(spritesmith-main-3.png);background-position:-753px -1016px;width:60px;height:60px}.skin_pumpkin2{background-image:url(spritesmith-main-3.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.skin_pumpkin2{background-image:url(spritesmith-main-3.png);background-position:-844px -1016px;width:60px;height:60px}.skin_pumpkin2_sleep{background-image:url(spritesmith-main-3.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.skin_pumpkin2_sleep{background-image:url(spritesmith-main-3.png);background-position:-935px -1016px;width:60px;height:60px}.skin_pumpkin_sleep{background-image:url(spritesmith-main-3.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.skin_pumpkin_sleep{background-image:url(spritesmith-main-3.png);background-position:-1026px -1016px;width:60px;height:60px}.skin_rainbow{background-image:url(spritesmith-main-3.png);background-position:-1094px 0;width:90px;height:90px}.customize-option.skin_rainbow{background-image:url(spritesmith-main-3.png);background-position:-1119px -15px;width:60px;height:60px}.skin_rainbow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -91px;width:90px;height:90px}.customize-option.skin_rainbow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -106px;width:60px;height:60px}.skin_reptile{background-image:url(spritesmith-main-3.png);background-position:-1094px -182px;width:90px;height:90px}.customize-option.skin_reptile{background-image:url(spritesmith-main-3.png);background-position:-1119px -197px;width:60px;height:60px}.skin_reptile_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -273px;width:90px;height:90px}.customize-option.skin_reptile_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -288px;width:60px;height:60px}.skin_shadow{background-image:url(spritesmith-main-3.png);background-position:-1094px -364px;width:90px;height:90px}.customize-option.skin_shadow{background-image:url(spritesmith-main-3.png);background-position:-1119px -379px;width:60px;height:60px}.skin_shadow2{background-image:url(spritesmith-main-3.png);background-position:-1094px -455px;width:90px;height:90px}.customize-option.skin_shadow2{background-image:url(spritesmith-main-3.png);background-position:-1119px -470px;width:60px;height:60px}.skin_shadow2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -546px;width:90px;height:90px}.customize-option.skin_shadow2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -561px;width:60px;height:60px}.skin_shadow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -637px;width:90px;height:90px}.customize-option.skin_shadow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -652px;width:60px;height:60px}.skin_shark{background-image:url(spritesmith-main-3.png);background-position:-1094px -728px;width:90px;height:90px}.customize-option.skin_shark{background-image:url(spritesmith-main-3.png);background-position:-1119px -743px;width:60px;height:60px}.skin_shark_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -819px;width:90px;height:90px}.customize-option.skin_shark_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -834px;width:60px;height:60px}.skin_skeleton{background-image:url(spritesmith-main-3.png);background-position:-1094px -910px;width:90px;height:90px}.customize-option.skin_skeleton{background-image:url(spritesmith-main-3.png);background-position:-1119px -925px;width:60px;height:60px}.skin_skeleton2{background-image:url(spritesmith-main-3.png);background-position:-1094px -1001px;width:90px;height:90px}.customize-option.skin_skeleton2{background-image:url(spritesmith-main-3.png);background-position:-1119px -1016px;width:60px;height:60px}.skin_skeleton2_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.skin_skeleton2_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -1107px;width:60px;height:60px}.skin_skeleton_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.skin_skeleton_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -1107px;width:60px;height:60px}.skin_tiger{background-image:url(spritesmith-main-3.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.skin_tiger{background-image:url(spritesmith-main-3.png);background-position:-207px -1107px;width:60px;height:60px}.skin_tiger_sleep{background-image:url(spritesmith-main-3.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.skin_tiger_sleep{background-image:url(spritesmith-main-3.png);background-position:-298px -1107px;width:60px;height:60px}.skin_transparent{background-image:url(spritesmith-main-3.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.skin_transparent{background-image:url(spritesmith-main-3.png);background-position:-389px -1107px;width:60px;height:60px}.skin_transparent_sleep{background-image:url(spritesmith-main-3.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.skin_transparent_sleep{background-image:url(spritesmith-main-3.png);background-position:-480px -1107px;width:60px;height:60px}.skin_tropicalwater{background-image:url(spritesmith-main-3.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.skin_tropicalwater{background-image:url(spritesmith-main-3.png);background-position:-571px -1107px;width:60px;height:60px}.skin_tropicalwater_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.skin_tropicalwater_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -1107px;width:60px;height:60px}.skin_wolf{background-image:url(spritesmith-main-3.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.skin_wolf{background-image:url(spritesmith-main-3.png);background-position:-753px -1107px;width:60px;height:60px}.skin_wolf_sleep{background-image:url(spritesmith-main-3.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.skin_wolf_sleep{background-image:url(spritesmith-main-3.png);background-position:-844px -1107px;width:60px;height:60px}.skin_zombie{background-image:url(spritesmith-main-3.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.skin_zombie{background-image:url(spritesmith-main-3.png);background-position:-935px -1107px;width:60px;height:60px}.skin_zombie2{background-image:url(spritesmith-main-3.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.skin_zombie2{background-image:url(spritesmith-main-3.png);background-position:-1026px -1107px;width:60px;height:60px}.skin_zombie2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.skin_zombie2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1117px -1107px;width:60px;height:60px}.skin_zombie_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px 0;width:90px;height:90px}.customize-option.skin_zombie_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -15px;width:60px;height:60px}.broad_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -91px;width:90px;height:90px}.broad_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1185px -182px;width:90px;height:90px}.broad_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -273px;width:90px;height:90px}.broad_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -364px;width:90px;height:90px}.broad_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1185px -455px;width:90px;height:90px}.broad_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1185px -546px;width:90px;height:90px}.broad_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-1185px -637px;width:90px;height:90px}.broad_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-1185px -728px;width:90px;height:90px}.eyewear_armoire_plagueDoctorMask{background-image:url(spritesmith-main-3.png);background-position:-1185px -819px;width:90px;height:90px}.head_armoire_blackCat{background-image:url(spritesmith-main-3.png);background-position:-1185px -910px;width:90px;height:90px}.head_armoire_blueFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1185px -1001px;width:90px;height:90px}.head_armoire_blueHairbow{background-image:url(spritesmith-main-3.png);background-position:-1185px -1092px;width:90px;height:90px}.head_armoire_gladiatorHelm{background-image:url(spritesmith-main-3.png);background-position:0 -1183px;width:90px;height:90px}.head_armoire_goldenLaurels{background-image:url(spritesmith-main-3.png);background-position:-91px -1183px;width:90px;height:90px}.head_armoire_hornedIronHelm{background-image:url(spritesmith-main-3.png);background-position:-182px -1183px;width:90px;height:90px}.head_armoire_lunarCrown{background-image:url(spritesmith-main-3.png);background-position:-273px -1183px;width:90px;height:90px}.head_armoire_orangeCat{background-image:url(spritesmith-main-3.png);background-position:-364px -1183px;width:90px;height:90px}.head_armoire_plagueDoctorHat{background-image:url(spritesmith-main-3.png);background-position:-455px -1183px;width:90px;height:90px}.head_armoire_rancherHat{background-image:url(spritesmith-main-3.png);background-position:-546px -1183px;width:90px;height:90px}.head_armoire_redFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-637px -1183px;width:90px;height:90px}.head_armoire_redHairbow{background-image:url(spritesmith-main-3.png);background-position:-728px -1183px;width:90px;height:90px}.head_armoire_royalCrown{background-image:url(spritesmith-main-3.png);background-position:-819px -1183px;width:90px;height:90px}.head_armoire_shepherdHeaddress{background-image:url(spritesmith-main-3.png);background-position:-910px -1183px;width:90px;height:90px}.head_armoire_violetFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1001px -1183px;width:90px;height:90px}.head_armoire_yellowHairbow{background-image:url(spritesmith-main-3.png);background-position:-1092px -1183px;width:90px;height:90px}.shield_armoire_gladiatorShield{background-image:url(spritesmith-main-3.png);background-position:-1183px -1183px;width:90px;height:90px}.shield_armoire_midnightShield{background-image:url(spritesmith-main-3.png);background-position:-1276px 0;width:90px;height:90px}.shield_armoire_royalCane{background-image:url(spritesmith-main-3.png);background-position:-1276px -91px;width:90px;height:90px}.shop_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -943px;width:40px;height:40px}.shop_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1640px -779px;width:40px;height:40px}.shop_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -738px;width:40px;height:40px}.shop_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -697px;width:40px;height:40px}.shop_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1640px -656px;width:40px;height:40px}.shop_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -533px;width:40px;height:40px}.shop_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -984px;width:40px;height:40px}.shop_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -492px;width:40px;height:40px}.shop_eyewear_armoire_plagueDoctorMask{background-image:url(spritesmith-main-3.png);background-position:-1640px -451px;width:40px;height:40px}.shop_head_armoire_blackCat{background-image:url(spritesmith-main-3.png);background-position:-1640px -410px;width:40px;height:40px}.shop_head_armoire_blueFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1640px -369px;width:40px;height:40px}.shop_head_armoire_blueHairbow{background-image:url(spritesmith-main-3.png);background-position:-1640px -328px;width:40px;height:40px}.shop_head_armoire_gladiatorHelm{background-image:url(spritesmith-main-3.png);background-position:-1640px -287px;width:40px;height:40px}.shop_head_armoire_goldenLaurels{background-image:url(spritesmith-main-3.png);background-position:-1640px -246px;width:40px;height:40px}.shop_head_armoire_hornedIronHelm{background-image:url(spritesmith-main-3.png);background-position:-1640px -205px;width:40px;height:40px}.shop_head_armoire_lunarCrown{background-image:url(spritesmith-main-3.png);background-position:-1640px -164px;width:40px;height:40px}.shop_head_armoire_orangeCat{background-image:url(spritesmith-main-3.png);background-position:-1640px -123px;width:40px;height:40px}.shop_head_armoire_plagueDoctorHat{background-image:url(spritesmith-main-3.png);background-position:-1640px -82px;width:40px;height:40px}.shop_head_armoire_rancherHat{background-image:url(spritesmith-main-3.png);background-position:-1640px -41px;width:40px;height:40px}.shop_head_armoire_redFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1640px 0;width:40px;height:40px}.shop_head_armoire_redHairbow{background-image:url(spritesmith-main-3.png);background-position:-1576px -1588px;width:40px;height:40px}.shop_head_armoire_royalCrown{background-image:url(spritesmith-main-3.png);background-position:-1535px -1588px;width:40px;height:40px}.shop_head_armoire_shepherdHeaddress{background-image:url(spritesmith-main-3.png);background-position:-1494px -1588px;width:40px;height:40px}.shop_head_armoire_violetFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1453px -1588px;width:40px;height:40px}.shop_head_armoire_yellowHairbow{background-image:url(spritesmith-main-3.png);background-position:-182px -1588px;width:40px;height:40px}.shop_shield_armoire_gladiatorShield{background-image:url(spritesmith-main-3.png);background-position:-1576px -1547px;width:40px;height:40px}.shop_shield_armoire_midnightShield{background-image:url(spritesmith-main-3.png);background-position:-1535px -1547px;width:40px;height:40px}.shop_shield_armoire_royalCane{background-image:url(spritesmith-main-3.png);background-position:-1494px -1547px;width:40px;height:40px}.shop_weapon_armoire_basicCrossbow{background-image:url(spritesmith-main-3.png);background-position:-1453px -1547px;width:40px;height:40px}.shop_weapon_armoire_batWand{background-image:url(spritesmith-main-3.png);background-position:-1412px -1547px;width:40px;height:40px}.shop_weapon_armoire_goldWingStaff{background-image:url(spritesmith-main-3.png);background-position:-1371px -1547px;width:40px;height:40px}.shop_weapon_armoire_ironCrook{background-image:url(spritesmith-main-3.png);background-position:-1330px -1547px;width:40px;height:40px}.shop_weapon_armoire_lunarSceptre{background-image:url(spritesmith-main-3.png);background-position:-1289px -1547px;width:40px;height:40px}.shop_weapon_armoire_mythmakerSword{background-image:url(spritesmith-main-3.png);background-position:-1248px -1547px;width:40px;height:40px}.shop_weapon_armoire_rancherLasso{background-image:url(spritesmith-main-3.png);background-position:-1207px -1547px;width:40px;height:40px}.shop_weapon_armoire_shepherdsCrook{background-image:url(spritesmith-main-3.png);background-position:-1166px -1547px;width:40px;height:40px}.slim_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1367px -819px;width:90px;height:90px}.slim_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1367px -910px;width:90px;height:90px}.slim_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1367px -1001px;width:90px;height:90px}.slim_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1367px -1092px;width:90px;height:90px}.slim_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1367px -1183px;width:90px;height:90px}.slim_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1367px -1274px;width:90px;height:90px}.slim_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:0 -1365px;width:90px;height:90px}.slim_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-91px -1365px;width:90px;height:90px}.weapon_armoire_basicCrossbow{background-image:url(spritesmith-main-3.png);background-position:-182px -1365px;width:90px;height:90px}.weapon_armoire_batWand{background-image:url(spritesmith-main-3.png);background-position:-273px -1365px;width:90px;height:90px}.weapon_armoire_goldWingStaff{background-image:url(spritesmith-main-3.png);background-position:-364px -1365px;width:90px;height:90px}.weapon_armoire_ironCrook{background-image:url(spritesmith-main-3.png);background-position:-455px -1365px;width:90px;height:90px}.weapon_armoire_lunarSceptre{background-image:url(spritesmith-main-3.png);background-position:-546px -1365px;width:90px;height:90px}.weapon_armoire_mythmakerSword{background-image:url(spritesmith-main-3.png);background-position:-637px -1365px;width:90px;height:90px}.weapon_armoire_rancherLasso{background-image:url(spritesmith-main-3.png);background-position:-728px -1365px;width:90px;height:90px}.weapon_armoire_shepherdsCrook{background-image:url(spritesmith-main-3.png);background-position:-819px -1365px;width:90px;height:90px}.broad_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-910px -1365px;width:90px;height:90px}.broad_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1001px -1365px;width:90px;height:90px}.broad_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1092px -1365px;width:90px;height:90px}.broad_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1183px -1365px;width:90px;height:90px}.broad_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-1274px -1365px;width:90px;height:90px}.broad_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-1365px -1365px;width:90px;height:90px}.broad_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-1458px 0;width:90px;height:90px}.broad_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-1458px -91px;width:90px;height:90px}.broad_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-1458px -182px;width:90px;height:90px}.broad_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-1458px -273px;width:90px;height:90px}.broad_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-1458px -364px;width:90px;height:90px}.broad_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-1458px -455px;width:90px;height:90px}.broad_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-1458px -546px;width:90px;height:90px}.broad_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-1458px -637px;width:90px;height:90px}.broad_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-1458px -728px;width:90px;height:90px}.broad_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-1458px -819px;width:90px;height:90px}.broad_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-1458px -910px;width:90px;height:90px}.broad_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-1458px -1001px;width:90px;height:90px}.broad_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-1458px -1092px;width:90px;height:90px}.broad_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-1458px -1183px;width:90px;height:90px}.broad_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-1458px -1274px;width:90px;height:90px}.broad_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-1458px -1365px;width:90px;height:90px}.shop_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-1125px -1547px;width:40px;height:40px}.shop_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1084px -1547px;width:40px;height:40px}.shop_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1043px -1547px;width:40px;height:40px}.shop_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1002px -1547px;width:40px;height:40px}.shop_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-961px -1547px;width:40px;height:40px}.shop_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-920px -1547px;width:40px;height:40px}.shop_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-879px -1547px;width:40px;height:40px}.shop_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-838px -1547px;width:40px;height:40px}.shop_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-797px -1547px;width:40px;height:40px}.shop_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-756px -1547px;width:40px;height:40px}.shop_armor_special_0{background-image:url(spritesmith-main-3.png);background-position:-715px -1547px;width:40px;height:40px}.shop_armor_special_1{background-image:url(spritesmith-main-3.png);background-position:-674px -1547px;width:40px;height:40px}.shop_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-551px -1547px;width:40px;height:40px}.shop_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-510px -1547px;width:40px;height:40px}.shop_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-469px -1547px;width:40px;height:40px}.shop_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-428px -1547px;width:40px;height:40px}.shop_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-387px -1547px;width:40px;height:40px}.shop_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-346px -1547px;width:40px;height:40px}.shop_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-305px -1547px;width:40px;height:40px}.shop_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-264px -1547px;width:40px;height:40px}.shop_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-223px -1547px;width:40px;height:40px}.shop_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-182px -1547px;width:40px;height:40px}.shop_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-633px -1588px;width:40px;height:40px}.shop_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-400px -314px;width:40px;height:40px}.slim_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -637px;width:90px;height:90px}.slim_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -728px;width:90px;height:90px}.slim_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -819px;width:90px;height:90px}.slim_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -910px;width:90px;height:90px}.slim_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -1001px;width:90px;height:90px}.slim_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -1092px;width:90px;height:90px}.slim_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -1183px;width:90px;height:90px}.slim_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -1274px;width:90px;height:90px}.slim_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -1365px;width:90px;height:90px}.slim_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -1456px;width:90px;height:90px}.slim_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:0 -1547px;width:90px;height:90px}.slim_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-91px -1547px;width:90px;height:90px}.slim_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -546px;width:90px;height:90px}.slim_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -455px;width:90px;height:90px}.slim_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -364px;width:90px;height:90px}.slim_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -273px;width:90px;height:90px}.slim_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -182px;width:90px;height:90px}.slim_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -91px;width:90px;height:90px}.slim_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-1549px 0;width:90px;height:90px}.slim_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-1456px -1456px;width:90px;height:90px}.slim_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-1365px -1456px;width:90px;height:90px}.slim_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-1274px -1456px;width:90px;height:90px}.broad_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-1183px -1456px;width:90px;height:90px}.broad_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-1092px -1456px;width:90px;height:90px}.shop_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-592px -1547px;width:40px;height:40px}.shop_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-633px -1547px;width:40px;height:40px}.slim_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-1001px -1456px;width:90px;height:90px}.slim_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-910px -1456px;width:90px;height:90px}.broad_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-212px -273px;width:93px;height:90px}.broad_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-106px -273px;width:105px;height:90px}.broad_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-637px -1456px;width:90px;height:90px}.broad_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-546px -1456px;width:90px;height:90px}.broad_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-455px -1456px;width:90px;height:90px}.broad_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-121px -91px;width:120px;height:90px}.broad_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-348px -182px;width:105px;height:90px}.broad_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-182px -1456px;width:90px;height:90px}.head_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-306px -273px;width:93px;height:90px}.head_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-348px -91px;width:105px;height:90px}.head_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1367px -728px;width:90px;height:90px}.head_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -637px;width:90px;height:90px}.head_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1367px -546px;width:90px;height:90px}.head_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:0 -91px;width:120px;height:90px}.head_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-212px -182px;width:105px;height:90px}.head_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -273px;width:90px;height:90px}.shield_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-454px 0;width:93px;height:90px}.shield_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:0 -273px;width:105px;height:90px}.shield_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1367px 0;width:90px;height:90px}.shield_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1274px -1274px;width:90px;height:90px}.shield_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:0 -182px;width:105px;height:90px}.shield_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1092px -1274px;width:90px;height:90px}.shop_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-223px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-264px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-305px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-346px -1588px;width:40px;height:40px}.shop_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-387px -1588px;width:40px;height:40px}.shop_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-428px -1588px;width:40px;height:40px}.shop_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-469px -1588px;width:40px;height:40px}.shop_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-510px -1588px;width:40px;height:40px}.shop_head_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-551px -1588px;width:40px;height:40px}.shop_head_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-592px -1588px;width:40px;height:40px}.shop_head_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-400px -273px;width:40px;height:40px}.shop_head_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-674px -1588px;width:40px;height:40px}.shop_head_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-715px -1588px;width:40px;height:40px}.shop_head_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-756px -1588px;width:40px;height:40px}.shop_head_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-797px -1588px;width:40px;height:40px}.shop_head_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-838px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-879px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-920px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-961px -1588px;width:40px;height:40px}.shop_shield_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1002px -1588px;width:40px;height:40px}.shop_shield_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1043px -1588px;width:40px;height:40px}.shop_shield_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1084px -1588px;width:40px;height:40px}.shop_weapon_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-1125px -1588px;width:40px;height:40px}.shop_weapon_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-1166px -1588px;width:40px;height:40px}.shop_weapon_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1207px -1588px;width:40px;height:40px}.shop_weapon_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1248px -1588px;width:40px;height:40px}.shop_weapon_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1289px -1588px;width:40px;height:40px}.shop_weapon_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-1330px -1588px;width:40px;height:40px}.shop_weapon_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1371px -1588px;width:40px;height:40px}.shop_weapon_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1412px -1588px;width:40px;height:40px}.slim_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-454px -91px;width:93px;height:90px}.slim_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-242px -91px;width:105px;height:90px}.slim_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-819px -1274px;width:90px;height:90px}.slim_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-728px -1274px;width:90px;height:90px}.slim_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-637px -1274px;width:90px;height:90px}.slim_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:0 0;width:120px;height:90px}.slim_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-348px 0;width:105px;height:90px}.slim_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-364px -1274px;width:90px;height:90px}.weapon_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-454px -182px;width:93px;height:90px}.weapon_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-106px -182px;width:105px;height:90px}.weapon_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-91px -1274px;width:90px;height:90px}.weapon_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:0 -1274px;width:90px;height:90px}.weapon_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1276px -1183px;width:90px;height:90px}.weapon_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-121px 0;width:120px;height:90px}.weapon_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-242px 0;width:105px;height:90px}.weapon_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1276px -910px;width:90px;height:90px}.broad_armor_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1276px -819px;width:90px;height:90px}.head_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1276px -637px;width:90px;height:90px}.shop_armor_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1640px -574px;width:40px;height:40px}.shop_head_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1640px -615px;width:40px;height:40px}.slim_armor_special_gaymerx{background-image:url(spritesmith-main-3.png);background-position:-1276px -546px;width:90px;height:90px}.back_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1276px -455px;width:90px;height:90px}.broad_armor_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1276px -364px;width:90px;height:90px}.head_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1276px -273px;width:90px;height:90px}.shop_armor_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1640px -820px;width:40px;height:40px}.shop_back_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1640px -861px;width:40px;height:40px}.shop_head_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1640px -902px;width:40px;height:40px}.slim_armor_mystery_201402{background-image:url(spritesmith-main-3.png);background-position:-1276px -182px;width:90px;height:90px}.broad_armor_mystery_201403{background-image:url(spritesmith-main-3.png);background-position:-1276px -1001px;width:90px;height:90px}.headAccessory_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-910px -1061px;width:90px;height:90px}.shop_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-1605px -1435px;width:40px;height:40px}.shop_headAccessory_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-1564px -1025px;width:40px;height:40px}.slim_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-1109px -728px;width:90px;height:90px}.back_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1001px -1061px;width:90px;height:90px}.headAccessory_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1092px -1061px;width:90px;height:90px}.shop_back_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1564px -533px;width:40px;height:40px}.shop_headAccessory_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1564px -902px;width:40px;height:40px}.broad_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-637px -970px;width:90px;height:90px}.head_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-728px -970px;width:90px;height:90px}.shop_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-697px -1557px;width:40px;height:40px}.shop_head_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-246px -1516px;width:40px;height:40px}.slim_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1001px -970px;width:90px;height:90px}.broad_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-739px -212px;width:90px;height:96px}.head_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-830px -188px;width:90px;height:96px}.shop_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-164px -1557px;width:40px;height:40px}.shop_head_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-205px -1557px;width:40px;height:40px}.slim_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-830px -91px;width:90px;height:96px}.broad_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1200px 0;width:90px;height:90px}.head_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1200px -273px;width:90px;height:90px}.shop_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-369px -1516px;width:40px;height:40px}.shop_head_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1564px -492px;width:40px;height:40px}.slim_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1200px -364px;width:90px;height:90px}.broad_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1200px -455px;width:90px;height:90px}.head_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1200px -546px;width:90px;height:90px}.shop_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1564px -1066px;width:40px;height:40px}.shop_head_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-41px -1557px;width:40px;height:40px}.slim_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:0 -1152px;width:90px;height:90px}.broad_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-91px -1152px;width:90px;height:90px}.headAccessory_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-455px -970px;width:90px;height:90px}.shop_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-451px -1557px;width:40px;height:40px}.shop_headAccessory_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-656px -1557px;width:40px;height:40px}.slim_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-546px -970px;width:90px;height:90px}.back_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-830px -558px;width:93px;height:90px}.broad_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-830px -285px;width:93px;height:90px}.shop_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-1564px -328px;width:40px;height:40px}.shop_back_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-1564px -369px;width:40px;height:40px}.slim_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-94px -788px;width:93px;height:90px}.head_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1109px 0;width:90px;height:90px}.shop_head_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1564px -820px;width:40px;height:40px}.shop_weapon_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1564px -861px;width:40px;height:40px}.weapon_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1109px -91px;width:90px;height:90px}.broad_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-1109px -182px;width:90px;height:90px}.head_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-1109px -273px;width:90px;height:90px}.shop_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-1564px -1394px;width:40px;height:40px}.shop_head_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:0 -1557px;width:40px;height:40px}.slim_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-1109px -364px;width:90px;height:90px}.broad_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1109px -455px;width:90px;height:90px}.head_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1109px -546px;width:90px;height:90px}.shop_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-246px -1557px;width:40px;height:40px}.shop_head_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-369px -1557px;width:40px;height:40px}.slim_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1109px -819px;width:90px;height:90px}.headAccessory_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-1109px -910px;width:90px;height:90px}.shop_headAccessory_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-574px -1557px;width:40px;height:40px}.shop_weapon_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-615px -1557px;width:40px;height:40px}.weapon_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:0 -1061px;width:90px;height:90px}.broad_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-91px -1061px;width:90px;height:90px}.eyewear_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-182px -1061px;width:90px;height:90px}.shop_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-287px -1516px;width:40px;height:40px}.shop_eyewear_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-328px -1516px;width:40px;height:40px}.slim_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-273px -1061px;width:90px;height:90px}.back_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-364px -1061px;width:90px;height:90px}.broad_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-455px -1061px;width:90px;height:90px}.shop_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-1564px -410px;width:40px;height:40px}.shop_back_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-1564px -451px;width:40px;height:40px}.slim_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-546px -1061px;width:90px;height:90px}.head_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-637px -1061px;width:90px;height:90px}.shop_head_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-1564px -738px;width:40px;height:40px}.shop_weapon_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-1564px -779px;width:40px;height:40px}.weapon_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-819px -1061px;width:90px;height:90px}.broad_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:0 -591px;width:90px;height:105px}.eyewear_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-273px -591px;width:90px;height:105px}.shop_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-1564px -943px;width:40px;height:40px}.shop_eyewear_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-1564px -984px;width:40px;height:40px}.slim_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-739px -106px;width:90px;height:105px}.back_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-455px -591px;width:90px;height:105px}.eyewear_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-364px -591px;width:90px;height:105px}.shop_back_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-1564px -1435px;width:40px;height:40px}.shop_eyewear_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-1564px -1476px;width:40px;height:40px}.broad_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-830px -467px;width:93px;height:90px}.head_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:0 -788px;width:93px;height:90px}.shop_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-82px -1557px;width:40px;height:40px}.shop_head_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-123px -1557px;width:40px;height:40px}.slim_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-830px -376px;width:93px;height:90px}.broad_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-1200px -637px;width:90px;height:90px}.head_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-1200px -728px;width:90px;height:90px}.shop_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-287px -1557px;width:40px;height:40px}.shop_head_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-328px -1557px;width:40px;height:40px}.slim_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-1200px -1001px;width:90px;height:90px}.back_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-536px -394px;width:105px;height:90px}.headAccessory_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-830px -649px;width:93px;height:90px}.shop_back_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-492px -1557px;width:40px;height:40px}.shop_headAccessory_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-533px -1557px;width:40px;height:40px}.broad_armor_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-182px -1152px;width:90px;height:90px}.head_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-273px -1152px;width:90px;height:90px}.shop_armor_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1516px -1365px;width:42px;height:42px}.shop_head_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1473px -1365px;width:42px;height:42px}.slim_armor_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1291px -546px;width:90px;height:90px}.broad_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1291px -819px;width:90px;height:90px}.eyewear_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1291px -1092px;width:90px;height:90px}.head_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-637px -1243px;width:90px;height:90px}.shop_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1564px -164px;width:40px;height:40px}.shop_eyewear_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1564px -205px;width:40px;height:40px}.shop_head_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1564px -246px;width:40px;height:40px}.shop_weapon_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1564px -287px;width:40px;height:40px}.slim_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1382px 0;width:90px;height:90px}.weapon_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-182px -1425px;width:90px;height:90px}.eyewear_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-273px -1425px;width:90px;height:90px}.headAccessory_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-364px -1425px;width:90px;height:90px}.head_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-455px -1425px;width:90px;height:90px}.shield_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-546px -1425px;width:90px;height:90px}.shop_eyewear_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1564px -574px;width:40px;height:40px}.shop_headAccessory_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1564px -615px;width:40px;height:40px}.shop_head_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1564px -656px;width:40px;height:40px}.shop_shield_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1564px -697px;width:40px;height:40px}.broad_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-637px -1425px;width:90px;height:90px}.broad_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-819px -1425px;width:90px;height:90px}.broad_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-739px -400px;width:90px;height:90px}.broad_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-739px -491px;width:90px;height:90px}.broad_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-739px -582px;width:90px;height:90px}.broad_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-188px -788px;width:90px;height:90px}.broad_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-279px -788px;width:90px;height:90px}.broad_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-370px -788px;width:90px;height:90px}.headAccessory_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-461px -788px;width:90px;height:90px}.headAccessory_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-552px -788px;width:90px;height:90px}.headAccessory_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-643px -788px;width:90px;height:90px}.headAccessory_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-734px -788px;width:90px;height:90px}.headAccessory_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-825px -788px;width:90px;height:90px}.headAccessory_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-927px 0;width:90px;height:90px}.headAccessory_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-927px -91px;width:90px;height:90px}.headAccessory_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-927px -182px;width:90px;height:90px}.head_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-927px -273px;width:90px;height:90px}.head_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-927px -364px;width:90px;height:90px}.head_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-927px -455px;width:90px;height:90px}.head_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-927px -546px;width:90px;height:90px}.head_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-927px -637px;width:90px;height:90px}.head_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-927px -728px;width:90px;height:90px}.head_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:0 -879px;width:90px;height:90px}.head_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-91px -879px;width:90px;height:90px}.shield_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-182px -879px;width:90px;height:90px}.shield_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-273px -879px;width:90px;height:90px}.shield_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-364px -879px;width:90px;height:90px}.shield_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-455px -879px;width:90px;height:90px}.shield_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-546px -879px;width:90px;height:90px}.shield_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-637px -879px;width:90px;height:90px}.shop_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-738px -1557px;width:40px;height:40px}.shop_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-779px -1557px;width:40px;height:40px}.shop_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-927px -819px;width:40px;height:40px}.shop_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-968px -819px;width:40px;height:40px}.shop_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-830px -740px;width:40px;height:40px}.shop_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-871px -740px;width:40px;height:40px}.shop_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-648px -530px;width:40px;height:40px}.shop_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-689px -530px;width:40px;height:40px}.shop_headAccessory_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-230px -212px;width:40px;height:40px}.shop_headAccessory_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-230px -253px;width:40px;height:40px}.shop_headAccessory_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-336px -303px;width:40px;height:40px}.shop_headAccessory_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-377px -303px;width:40px;height:40px}.shop_headAccessory_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-336px -344px;width:40px;height:40px}.shop_headAccessory_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-377px -344px;width:40px;height:40px}.shop_headAccessory_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-448px -394px;width:40px;height:40px}.shop_headAccessory_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-489px -394px;width:40px;height:40px}.shop_head_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-448px -435px;width:40px;height:40px}.shop_head_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-489px -435px;width:40px;height:40px}.shop_head_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1274px -1425px;width:40px;height:40px}.shop_head_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1315px -1425px;width:40px;height:40px}.shop_head_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1356px -1425px;width:40px;height:40px}.shop_head_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1397px -1425px;width:40px;height:40px}.shop_head_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1438px -1425px;width:40px;height:40px}.shop_head_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1479px -1425px;width:40px;height:40px}.shop_shield_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1520px -1425px;width:40px;height:40px}.shop_shield_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1274px -1466px;width:40px;height:40px}.shop_shield_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1315px -1466px;width:40px;height:40px}.shop_shield_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1356px -1466px;width:40px;height:40px}.shop_shield_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1397px -1466px;width:40px;height:40px}.shop_shield_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1438px -1466px;width:40px;height:40px}.shop_weapon_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1479px -1466px;width:40px;height:40px}.shop_weapon_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1520px -1466px;width:40px;height:40px}.shop_weapon_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 -1516px;width:40px;height:40px}.shop_weapon_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-41px -1516px;width:40px;height:40px}.shop_weapon_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-82px -1516px;width:40px;height:40px}.shop_weapon_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-123px -1516px;width:40px;height:40px}.shop_weapon_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-164px -1516px;width:40px;height:40px}.shop_weapon_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-205px -1516px;width:40px;height:40px}.slim_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-728px -879px;width:90px;height:90px}.slim_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-819px -879px;width:90px;height:90px}.slim_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-910px -879px;width:90px;height:90px}.slim_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1018px 0;width:90px;height:90px}.slim_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1018px -91px;width:90px;height:90px}.slim_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1018px -182px;width:90px;height:90px}.slim_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1018px -273px;width:90px;height:90px}.slim_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1018px -364px;width:90px;height:90px}.weapon_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1018px -455px;width:90px;height:90px}.weapon_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1018px -546px;width:90px;height:90px}.weapon_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1018px -637px;width:90px;height:90px}.weapon_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1018px -728px;width:90px;height:90px}.weapon_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1018px -819px;width:90px;height:90px}.weapon_special_springMage{background-image:url(spritesmith-main-4.png);background-position:0 -970px;width:90px;height:90px}.weapon_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-91px -970px;width:90px;height:90px}.weapon_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-182px -970px;width:90px;height:90px}.body_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-273px -970px;width:90px;height:90px}.body_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-364px -970px;width:90px;height:90px}.body_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 -106px;width:102px;height:105px}.body_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-273px -485px;width:90px;height:105px}.body_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-182px -485px;width:90px;height:105px}.body_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-91px -485px;width:90px;height:105px}.broad_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-819px -970px;width:90px;height:90px}.broad_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-910px -970px;width:90px;height:90px}.broad_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-206px -106px;width:102px;height:105px}.broad_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:0 -485px;width:90px;height:105px}.broad_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-637px -591px;width:90px;height:105px}.broad_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-536px -288px;width:90px;height:105px}.broad_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-536px -91px;width:111px;height:90px}.broad_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-536px 0;width:111px;height:90px}.eyewear_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-224px -394px;width:111px;height:90px}.eyewear_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-112px -394px;width:111px;height:90px}.head_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1109px -637px;width:90px;height:90px}.head_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-739px -309px;width:90px;height:90px}.head_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-103px -106px;width:102px;height:105px}.head_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-364px -485px;width:90px;height:105px}.head_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-455px -485px;width:90px;height:105px}.head_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-546px -485px;width:90px;height:105px}.head_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-424px -182px;width:111px;height:90px}.head_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-309px -91px;width:111px;height:90px}.Healer_Summer{background-image:url(spritesmith-main-4.png);background-position:-648px -212px;width:90px;height:105px}.Mage_Summer{background-image:url(spritesmith-main-4.png);background-position:-648px -318px;width:90px;height:105px}.SummerRogue14{background-image:url(spritesmith-main-4.png);background-position:-424px -91px;width:111px;height:90px}.SummerWarrior14{background-image:url(spritesmith-main-4.png);background-position:-424px 0;width:111px;height:90px}.shield_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-728px -1061px;width:90px;height:90px}.shield_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-206px 0;width:102px;height:105px}.shield_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-91px -591px;width:90px;height:105px}.shield_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-182px -591px;width:90px;height:105px}.shield_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-112px -303px;width:111px;height:90px}.shield_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:0 -303px;width:111px;height:90px}.shop_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1605px -205px;width:40px;height:40px}.shop_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1605px -246px;width:40px;height:40px}.shop_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1605px -287px;width:40px;height:40px}.shop_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1605px -328px;width:40px;height:40px}.shop_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1605px -369px;width:40px;height:40px}.shop_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1605px -410px;width:40px;height:40px}.shop_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1605px -451px;width:40px;height:40px}.shop_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1605px -492px;width:40px;height:40px}.shop_body_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1605px -861px;width:40px;height:40px}.shop_body_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1605px -902px;width:40px;height:40px}.shop_body_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1605px -943px;width:40px;height:40px}.shop_body_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1605px -984px;width:40px;height:40px}.shop_body_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1605px -1025px;width:40px;height:40px}.shop_body_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1605px -1066px;width:40px;height:40px}.shop_eyewear_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1605px -1107px;width:40px;height:40px}.shop_eyewear_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1605px -1148px;width:40px;height:40px}.shop_head_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1605px -1189px;width:40px;height:40px}.shop_head_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1605px -1230px;width:40px;height:40px}.shop_head_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1605px -1271px;width:40px;height:40px}.shop_head_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1605px -1312px;width:40px;height:40px}.shop_head_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1605px -1353px;width:40px;height:40px}.shop_head_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1605px -1394px;width:40px;height:40px}.shop_head_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1646px -697px;width:40px;height:40px}.shop_head_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1605px -1476px;width:40px;height:40px}.shop_shield_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1605px -1517px;width:40px;height:40px}.shop_shield_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 -1598px;width:40px;height:40px}.shop_shield_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-41px -1598px;width:40px;height:40px}.shop_shield_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-82px -1598px;width:40px;height:40px}.shop_shield_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1382px -1274px;width:40px;height:40px}.shop_shield_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1423px -1274px;width:40px;height:40px}.shop_weapon_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1291px -1183px;width:40px;height:40px}.shop_weapon_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1332px -1183px;width:40px;height:40px}.shop_weapon_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1200px -1092px;width:40px;height:40px}.shop_weapon_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1241px -1092px;width:40px;height:40px}.shop_weapon_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1109px -1001px;width:40px;height:40px}.shop_weapon_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1150px -1001px;width:40px;height:40px}.shop_weapon_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1018px -910px;width:40px;height:40px}.shop_weapon_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1059px -910px;width:40px;height:40px}.slim_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1200px -91px;width:90px;height:90px}.slim_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1200px -182px;width:90px;height:90px}.slim_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-103px 0;width:102px;height:105px}.slim_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-546px -591px;width:90px;height:105px}.slim_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-536px -182px;width:90px;height:105px}.slim_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-739px 0;width:90px;height:105px}.slim_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-336px -394px;width:111px;height:90px}.slim_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:0 -394px;width:111px;height:90px}.weapon_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1200px -819px;width:90px;height:90px}.weapon_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1200px -910px;width:90px;height:90px}.weapon_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 0;width:102px;height:105px}.weapon_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-648px -424px;width:90px;height:105px}.weapon_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-648px -106px;width:90px;height:105px}.weapon_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-648px 0;width:90px;height:105px}.weapon_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-224px -303px;width:111px;height:90px}.weapon_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-309px -182px;width:111px;height:90px}.broad_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-455px -1152px;width:90px;height:90px}.broad_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-546px -1152px;width:90px;height:90px}.broad_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-637px -1152px;width:90px;height:90px}.broad_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-728px -1152px;width:90px;height:90px}.broad_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-819px -1152px;width:90px;height:90px}.broad_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-604px -697px;width:96px;height:90px}.broad_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1001px -1152px;width:90px;height:90px}.broad_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1092px -1152px;width:90px;height:90px}.head_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1183px -1152px;width:90px;height:90px}.head_special_nye{background-image:url(spritesmith-main-4.png);background-position:-1291px 0;width:90px;height:90px}.head_special_nye2014{background-image:url(spritesmith-main-4.png);background-position:-1291px -91px;width:90px;height:90px}.head_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1291px -182px;width:90px;height:90px}.head_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1291px -273px;width:90px;height:90px}.head_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1291px -364px;width:90px;height:90px}.head_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1291px -455px;width:90px;height:90px}.head_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-701px -697px;width:96px;height:90px}.head_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1291px -637px;width:90px;height:90px}.head_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1291px -728px;width:90px;height:90px}.shield_special_ski{background-image:url(spritesmith-main-4.png);background-position:0 -697px;width:104px;height:90px}.shield_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1291px -910px;width:90px;height:90px}.shield_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1291px -1001px;width:90px;height:90px}.shield_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-410px -697px;width:96px;height:90px}.shield_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:0 -1243px;width:90px;height:90px}.shield_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-91px -1243px;width:90px;height:90px}.shop_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-410px -1516px;width:40px;height:40px}.shop_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-451px -1516px;width:40px;height:40px}.shop_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-492px -1516px;width:40px;height:40px}.shop_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-533px -1516px;width:40px;height:40px}.shop_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-574px -1516px;width:40px;height:40px}.shop_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-615px -1516px;width:40px;height:40px}.shop_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-656px -1516px;width:40px;height:40px}.shop_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-697px -1516px;width:40px;height:40px}.shop_head_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-738px -1516px;width:40px;height:40px}.shop_head_special_nye{background-image:url(spritesmith-main-4.png);background-position:-779px -1516px;width:40px;height:40px}.shop_head_special_nye2014{background-image:url(spritesmith-main-4.png);background-position:-820px -1516px;width:40px;height:40px}.shop_head_special_ski{background-image:url(spritesmith-main-4.png);background-position:-861px -1516px;width:40px;height:40px}.shop_head_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-902px -1516px;width:40px;height:40px}.shop_head_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-943px -1516px;width:40px;height:40px}.shop_head_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-984px -1516px;width:40px;height:40px}.shop_head_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1025px -1516px;width:40px;height:40px}.shop_head_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1066px -1516px;width:40px;height:40px}.shop_head_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1107px -1516px;width:40px;height:40px}.shop_shield_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1148px -1516px;width:40px;height:40px}.shop_shield_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1189px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1230px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1271px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1312px -1516px;width:40px;height:40px}.shop_shield_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1353px -1516px;width:40px;height:40px}.shop_weapon_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1394px -1516px;width:40px;height:40px}.shop_weapon_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1435px -1516px;width:40px;height:40px}.shop_weapon_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1476px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1517px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1564px 0;width:40px;height:40px}.shop_weapon_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1564px -41px;width:40px;height:40px}.shop_weapon_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1564px -82px;width:40px;height:40px}.shop_weapon_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1564px -123px;width:40px;height:40px}.slim_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-182px -1243px;width:90px;height:90px}.slim_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-273px -1243px;width:90px;height:90px}.slim_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-364px -1243px;width:90px;height:90px}.slim_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-455px -1243px;width:90px;height:90px}.slim_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-546px -1243px;width:90px;height:90px}.slim_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-507px -697px;width:96px;height:90px}.slim_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-728px -1243px;width:90px;height:90px}.slim_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-819px -1243px;width:90px;height:90px}.weapon_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-910px -1243px;width:90px;height:90px}.weapon_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1001px -1243px;width:90px;height:90px}.weapon_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1092px -1243px;width:90px;height:90px}.weapon_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1183px -1243px;width:90px;height:90px}.weapon_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1274px -1243px;width:90px;height:90px}.weapon_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-313px -697px;width:96px;height:90px}.weapon_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1382px -91px;width:90px;height:90px}.weapon_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1382px -182px;width:90px;height:90px}.back_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1382px -273px;width:90px;height:90px}.back_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1382px -364px;width:90px;height:90px}.body_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1382px -455px;width:90px;height:90px}.body_special_wondercon_gold{background-image:url(spritesmith-main-4.png);background-position:-1382px -546px;width:90px;height:90px}.body_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1382px -637px;width:90px;height:90px}.eyewear_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1382px -728px;width:90px;height:90px}.eyewear_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1382px -819px;width:90px;height:90px}.shop_back_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1564px -1107px;width:40px;height:40px}.shop_back_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1564px -1148px;width:40px;height:40px}.shop_body_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1564px -1189px;width:40px;height:40px}.shop_body_special_wondercon_gold{background-image:url(spritesmith-main-4.png);background-position:-1564px -1230px;width:40px;height:40px}.shop_body_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1564px -1271px;width:40px;height:40px}.shop_eyewear_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1564px -1312px;width:40px;height:40px}.shop_eyewear_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1564px -1353px;width:40px;height:40px}.head_0{background-image:url(spritesmith-main-4.png);background-position:-1382px -910px;width:90px;height:90px}.customize-option.head_0{background-image:url(spritesmith-main-4.png);background-position:-1407px -925px;width:60px;height:60px}.head_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1382px -1001px;width:90px;height:90px}.head_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1382px -1092px;width:90px;height:90px}.head_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1382px -1183px;width:90px;height:90px}.head_healer_4{background-image:url(spritesmith-main-4.png);background-position:0 -1334px;width:90px;height:90px}.head_healer_5{background-image:url(spritesmith-main-4.png);background-position:-91px -1334px;width:90px;height:90px}.head_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-182px -1334px;width:90px;height:90px}.head_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-273px -1334px;width:90px;height:90px}.head_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-364px -1334px;width:90px;height:90px}.head_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-455px -1334px;width:90px;height:90px}.head_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-546px -1334px;width:90px;height:90px}.head_special_2{background-image:url(spritesmith-main-4.png);background-position:-637px -1334px;width:90px;height:90px}.head_special_fireCoralCirclet{background-image:url(spritesmith-main-4.png);background-position:-728px -1334px;width:90px;height:90px}.head_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-819px -1334px;width:90px;height:90px}.head_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-910px -1334px;width:90px;height:90px}.head_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-1001px -1334px;width:90px;height:90px}.head_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-1092px -1334px;width:90px;height:90px}.head_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-1183px -1334px;width:90px;height:90px}.head_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-1274px -1334px;width:90px;height:90px}.head_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-1365px -1334px;width:90px;height:90px}.head_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-1473px 0;width:90px;height:90px}.head_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-1473px -91px;width:90px;height:90px}.head_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-1473px -182px;width:90px;height:90px}.shop_head_healer_1{background-image:url(spritesmith-main-4.png);background-position:-820px -1557px;width:40px;height:40px}.shop_head_healer_2{background-image:url(spritesmith-main-4.png);background-position:-861px -1557px;width:40px;height:40px}.shop_head_healer_3{background-image:url(spritesmith-main-4.png);background-position:-902px -1557px;width:40px;height:40px}.shop_head_healer_4{background-image:url(spritesmith-main-4.png);background-position:-943px -1557px;width:40px;height:40px}.shop_head_healer_5{background-image:url(spritesmith-main-4.png);background-position:-984px -1557px;width:40px;height:40px}.shop_head_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-1025px -1557px;width:40px;height:40px}.shop_head_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-1066px -1557px;width:40px;height:40px}.shop_head_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-1107px -1557px;width:40px;height:40px}.shop_head_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-1148px -1557px;width:40px;height:40px}.shop_head_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-1189px -1557px;width:40px;height:40px}.shop_head_special_0{background-image:url(spritesmith-main-4.png);background-position:-1230px -1557px;width:40px;height:40px}.shop_head_special_1{background-image:url(spritesmith-main-4.png);background-position:-1271px -1557px;width:40px;height:40px}.shop_head_special_2{background-image:url(spritesmith-main-4.png);background-position:-1312px -1557px;width:40px;height:40px}.shop_head_special_fireCoralCirclet{background-image:url(spritesmith-main-4.png);background-position:-1353px -1557px;width:40px;height:40px}.shop_head_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-1394px -1557px;width:40px;height:40px}.shop_head_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-1435px -1557px;width:40px;height:40px}.shop_head_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-1476px -1557px;width:40px;height:40px}.shop_head_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-1517px -1557px;width:40px;height:40px}.shop_head_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-1558px -1557px;width:40px;height:40px}.shop_head_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-1605px 0;width:40px;height:40px}.shop_head_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-1605px -41px;width:40px;height:40px}.shop_head_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-1605px -82px;width:40px;height:40px}.shop_head_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-1605px -123px;width:40px;height:40px}.shop_head_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-1605px -164px;width:40px;height:40px}.headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-1473px -273px;width:90px;height:90px}.customize-option.headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-1498px -288px;width:60px;height:60px}.headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1473px -364px;width:90px;height:90px}.customize-option.headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1498px -379px;width:60px;height:60px}.headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1473px -455px;width:90px;height:90px}.customize-option.headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1498px -470px;width:60px;height:60px}.headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1473px -546px;width:90px;height:90px}.customize-option.headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1498px -561px;width:60px;height:60px}.headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1473px -637px;width:90px;height:90px}.customize-option.headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1498px -652px;width:60px;height:60px}.headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-1473px -728px;width:90px;height:90px}.customize-option.headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-1498px -743px;width:60px;height:60px}.headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-1473px -819px;width:90px;height:90px}.customize-option.headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-1498px -834px;width:60px;height:60px}.headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1473px -910px;width:90px;height:90px}.customize-option.headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1498px -925px;width:60px;height:60px}.shop_headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -533px;width:40px;height:40px}.shop_headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -574px;width:40px;height:40px}.shop_headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -615px;width:40px;height:40px}.shop_headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -656px;width:40px;height:40px}.shop_headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -697px;width:40px;height:40px}.shop_headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -738px;width:40px;height:40px}.shop_headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -779px;width:40px;height:40px}.shop_headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1605px -820px;width:40px;height:40px}.shield_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1473px -1001px;width:90px;height:90px}.shield_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1473px -1092px;width:90px;height:90px}.shield_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1473px -1183px;width:90px;height:90px}.shield_healer_4{background-image:url(spritesmith-main-4.png);background-position:-1473px -1274px;width:90px;height:90px}.shield_healer_5{background-image:url(spritesmith-main-4.png);background-position:0 -1425px;width:90px;height:90px}.shield_rogue_0{background-image:url(spritesmith-main-4.png);background-position:-91px -1425px;width:90px;height:90px}.shield_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-105px -697px;width:103px;height:90px}.shield_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-209px -697px;width:103px;height:90px}.shield_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-309px 0;width:114px;height:90px}.shield_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-830px 0;width:96px;height:90px}.shield_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-115px -212px;width:114px;height:90px}.shield_rogue_6{background-image:url(spritesmith-main-4.png);background-position:0 -212px;width:114px;height:90px}.shield_special_1{background-image:url(spritesmith-main-4.png);background-position:-728px -1425px;width:90px;height:90px}.shield_special_goldenknight{background-image:url(spritesmith-main-4.png);background-position:-424px -273px;width:111px;height:90px}.shield_special_moonpearlShield{background-image:url(spritesmith-main-4.png);background-position:-910px -1425px;width:90px;height:90px}.shield_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-1001px -1425px;width:90px;height:90px}.shield_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-1092px -1425px;width:90px;height:90px}.shield_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-910px -1152px;width:90px;height:90px}.shield_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-364px -1152px;width:90px;height:90px}.shield_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-1183px -1425px;width:90px;height:90px}.shop_shield_healer_1{background-image:url(spritesmith-main-4.png);background-position:-123px -1598px;width:40px;height:40px}.shop_shield_healer_2{background-image:url(spritesmith-main-4.png);background-position:-164px -1598px;width:40px;height:40px}.shop_shield_healer_3{background-image:url(spritesmith-main-4.png);background-position:-205px -1598px;width:40px;height:40px}.shop_shield_healer_4{background-image:url(spritesmith-main-4.png);background-position:-246px -1598px;width:40px;height:40px}.shop_shield_healer_5{background-image:url(spritesmith-main-4.png);background-position:-287px -1598px;width:40px;height:40px}.shop_shield_rogue_0{background-image:url(spritesmith-main-4.png);background-position:-328px -1598px;width:40px;height:40px}.shop_shield_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-369px -1598px;width:40px;height:40px}.shop_shield_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-410px -1598px;width:40px;height:40px}.shop_shield_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-451px -1598px;width:40px;height:40px}.shop_shield_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-492px -1598px;width:40px;height:40px}.shop_shield_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-533px -1598px;width:40px;height:40px}.shop_shield_rogue_6{background-image:url(spritesmith-main-4.png);background-position:-574px -1598px;width:40px;height:40px}.shop_shield_special_0{background-image:url(spritesmith-main-4.png);background-position:-615px -1598px;width:40px;height:40px}.shop_shield_special_1{background-image:url(spritesmith-main-4.png);background-position:-656px -1598px;width:40px;height:40px}.shop_shield_special_goldenknight{background-image:url(spritesmith-main-4.png);background-position:-697px -1598px;width:40px;height:40px}.shop_shield_special_moonpearlShield{background-image:url(spritesmith-main-4.png);background-position:-738px -1598px;width:40px;height:40px}.shop_shield_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-779px -1598px;width:40px;height:40px}.shop_shield_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-820px -1598px;width:40px;height:40px}.shop_shield_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-861px -1598px;width:40px;height:40px}.shop_shield_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-902px -1598px;width:40px;height:40px}.shop_shield_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-943px -1598px;width:40px;height:40px}.shop_weapon_healer_0{background-image:url(spritesmith-main-4.png);background-position:-984px -1598px;width:40px;height:40px}.shop_weapon_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1025px -1598px;width:40px;height:40px}.shop_weapon_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1066px -1598px;width:40px;height:40px}.shop_weapon_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1107px -1598px;width:40px;height:40px}.shop_weapon_healer_4{background-image:url(spritesmith-main-4.png);background-position:-1148px -1598px;width:40px;height:40px}.shop_weapon_healer_5{background-image:url(spritesmith-main-4.png);background-position:-1189px -1598px;width:40px;height:40px}.shop_weapon_healer_6{background-image:url(spritesmith-main-4.png);background-position:-1230px -1598px;width:40px;height:40px}.shop_weapon_rogue_0{background-image:url(spritesmith-main-4.png);background-position:-1271px -1598px;width:40px;height:40px}.shop_weapon_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-1312px -1598px;width:40px;height:40px}.shop_weapon_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-1353px -1598px;width:40px;height:40px}.shop_weapon_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-1394px -1598px;width:40px;height:40px}.shop_weapon_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-1435px -1598px;width:40px;height:40px}.shop_weapon_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-1476px -1598px;width:40px;height:40px}.shop_weapon_rogue_6{background-image:url(spritesmith-main-4.png);background-position:-1517px -1598px;width:40px;height:40px}.shop_weapon_special_0{background-image:url(spritesmith-main-4.png);background-position:-1558px -1598px;width:40px;height:40px}.shop_weapon_special_1{background-image:url(spritesmith-main-4.png);background-position:-1599px -1598px;width:40px;height:40px}.shop_weapon_special_2{background-image:url(spritesmith-main-4.png);background-position:-1646px 0;width:40px;height:40px}.shop_weapon_special_3{background-image:url(spritesmith-main-4.png);background-position:-1646px -41px;width:40px;height:40px}.shop_weapon_special_critical{background-image:url(spritesmith-main-4.png);background-position:-1646px -82px;width:40px;height:40px}.shop_weapon_special_tridentOfCrashingTides{background-image:url(spritesmith-main-4.png);background-position:-1646px -123px;width:40px;height:40px}.shop_weapon_warrior_0{background-image:url(spritesmith-main-4.png);background-position:-1646px -164px;width:40px;height:40px}.shop_weapon_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-1646px -205px;width:40px;height:40px}.shop_weapon_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-1646px -246px;width:40px;height:40px}.shop_weapon_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-1646px -287px;width:40px;height:40px}.shop_weapon_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-1646px -328px;width:40px;height:40px}.shop_weapon_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-1646px -369px;width:40px;height:40px}.shop_weapon_warrior_6{background-image:url(spritesmith-main-4.png);background-position:-1646px -410px;width:40px;height:40px}.shop_weapon_wizard_0{background-image:url(spritesmith-main-4.png);background-position:-1646px -451px;width:40px;height:40px}.shop_weapon_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-1646px -492px;width:40px;height:40px}.shop_weapon_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-1646px -533px;width:40px;height:40px}.shop_weapon_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-1646px -574px;width:40px;height:40px}.shop_weapon_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-1646px -615px;width:40px;height:40px}.shop_weapon_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-1646px -656px;width:40px;height:40px}.shop_weapon_wizard_6{background-image:url(spritesmith-main-4.png);background-position:-410px -1557px;width:40px;height:40px}.weapon_healer_0{background-image:url(spritesmith-main-5.png);background-position:-1536px -1001px;width:90px;height:90px}.weapon_healer_1{background-image:url(spritesmith-main-5.png);background-position:-1627px 0;width:90px;height:90px}.weapon_healer_2{background-image:url(spritesmith-main-5.png);background-position:-1274px -1523px;width:90px;height:90px}.weapon_healer_3{background-image:url(spritesmith-main-5.png);background-position:-1365px -1523px;width:90px;height:90px}.weapon_healer_4{background-image:url(spritesmith-main-5.png);background-position:-1456px -1523px;width:90px;height:90px}.weapon_healer_5{background-image:url(spritesmith-main-5.png);background-position:-1443px -1251px;width:90px;height:90px}.weapon_healer_6{background-image:url(spritesmith-main-5.png);background-position:-1536px 0;width:90px;height:90px}.weapon_rogue_0{background-image:url(spritesmith-main-5.png);background-position:-1536px -91px;width:90px;height:90px}.weapon_rogue_1{background-image:url(spritesmith-main-5.png);background-position:-1536px -182px;width:90px;height:90px}.weapon_rogue_2{background-image:url(spritesmith-main-5.png);background-position:-1536px -273px;width:90px;height:90px}.weapon_rogue_3{background-image:url(spritesmith-main-5.png);background-position:-1536px -364px;width:90px;height:90px}.weapon_rogue_4{background-image:url(spritesmith-main-5.png);background-position:-1536px -455px;width:90px;height:90px}.weapon_rogue_5{background-image:url(spritesmith-main-5.png);background-position:-1536px -546px;width:90px;height:90px}.weapon_rogue_6{background-image:url(spritesmith-main-5.png);background-position:-1536px -728px;width:90px;height:90px}.weapon_special_1{background-image:url(spritesmith-main-5.png);background-position:-185px -1402px;width:102px;height:90px}.weapon_special_2{background-image:url(spritesmith-main-5.png);background-position:-1536px -1092px;width:90px;height:90px}.weapon_special_3{background-image:url(spritesmith-main-5.png);background-position:-1536px -1183px;width:90px;height:90px}.weapon_special_tridentOfCrashingTides{background-image:url(spritesmith-main-5.png);background-position:-1536px -1274px;width:90px;height:90px}.weapon_warrior_0{background-image:url(spritesmith-main-5.png);background-position:-1536px -1365px;width:90px;height:90px}.weapon_warrior_1{background-image:url(spritesmith-main-5.png);background-position:0 -1523px;width:90px;height:90px}.weapon_warrior_2{background-image:url(spritesmith-main-5.png);background-position:-91px -1523px;width:90px;height:90px}.weapon_warrior_3{background-image:url(spritesmith-main-5.png);background-position:-182px -1523px;width:90px;height:90px}.weapon_warrior_4{background-image:url(spritesmith-main-5.png);background-position:-273px -1523px;width:90px;height:90px}.weapon_warrior_5{background-image:url(spritesmith-main-5.png);background-position:-364px -1523px;width:90px;height:90px}.weapon_warrior_6{background-image:url(spritesmith-main-5.png);background-position:-546px -1523px;width:90px;height:90px}.weapon_wizard_0{background-image:url(spritesmith-main-5.png);background-position:-637px -1523px;width:90px;height:90px}.weapon_wizard_1{background-image:url(spritesmith-main-5.png);background-position:-728px -1523px;width:90px;height:90px}.weapon_wizard_2{background-image:url(spritesmith-main-5.png);background-position:-819px -1523px;width:90px;height:90px}.weapon_wizard_3{background-image:url(spritesmith-main-5.png);background-position:-910px -1523px;width:90px;height:90px}.weapon_wizard_4{background-image:url(spritesmith-main-5.png);background-position:-1001px -1523px;width:90px;height:90px}.weapon_wizard_5{background-image:url(spritesmith-main-5.png);background-position:-1092px -1523px;width:90px;height:90px}.weapon_wizard_6{background-image:url(spritesmith-main-5.png);background-position:-1183px -1523px;width:90px;height:90px}.GrimReaper{background-image:url(spritesmith-main-5.png);background-position:-1627px -164px;width:57px;height:66px}.Pet_Currency_Gem{background-image:url(spritesmith-main-5.png);background-position:-1671px -1567px;width:45px;height:39px}.Pet_Currency_Gem1x{background-image:url(spritesmith-main-5.png);background-position:-1688px -91px;width:15px;height:13px}.Pet_Currency_Gem2x{background-image:url(spritesmith-main-5.png);background-position:-1685px -451px;width:30px;height:26px}.PixelPaw-Gold{background-image:url(spritesmith-main-5.png);background-position:-1627px -891px;width:51px;height:51px}.PixelPaw{background-image:url(spritesmith-main-5.png);background-position:-1627px -995px;width:51px;height:51px}.PixelPaw002{background-image:url(spritesmith-main-5.png);background-position:-1627px -943px;width:51px;height:51px}.avatar_floral_healer{background-image:url(spritesmith-main-5.png);background-position:-1143px -1251px;width:99px;height:99px}.avatar_floral_rogue{background-image:url(spritesmith-main-5.png);background-position:-1243px -1251px;width:99px;height:99px}.avatar_floral_warrior{background-image:url(spritesmith-main-5.png);background-position:-1343px -1251px;width:99px;height:99px}.avatar_floral_wizard{background-image:url(spritesmith-main-5.png);background-position:-85px -1402px;width:99px;height:99px}.empty_bottles{background-image:url(spritesmith-main-5.png);background-position:-1627px -231px;width:64px;height:54px}.inventory_present{background-image:url(spritesmith-main-5.png);background-position:-1718px -156px;width:48px;height:51px}.inventory_present_01{background-image:url(spritesmith-main-5.png);background-position:-1718px -104px;width:48px;height:51px}.inventory_present_02{background-image:url(spritesmith-main-5.png);background-position:-1718px -52px;width:48px;height:51px}.inventory_present_03{background-image:url(spritesmith-main-5.png);background-position:-1718px 0;width:48px;height:51px}.inventory_present_04{background-image:url(spritesmith-main-5.png);background-position:-1627px -1047px;width:48px;height:51px}.inventory_present_05{background-image:url(spritesmith-main-5.png);background-position:-1617px -1666px;width:48px;height:51px}.inventory_present_06{background-image:url(spritesmith-main-5.png);background-position:-1568px -1666px;width:48px;height:51px}.inventory_present_07{background-image:url(spritesmith-main-5.png);background-position:-1519px -1666px;width:48px;height:51px}.inventory_present_08{background-image:url(spritesmith-main-5.png);background-position:-1470px -1666px;width:48px;height:51px}.inventory_present_09{background-image:url(spritesmith-main-5.png);background-position:-1421px -1666px;width:48px;height:51px}.inventory_present_10{background-image:url(spritesmith-main-5.png);background-position:-1372px -1666px;width:48px;height:51px}.inventory_present_11{background-image:url(spritesmith-main-5.png);background-position:-1323px -1666px;width:48px;height:51px}.inventory_present_12{background-image:url(spritesmith-main-5.png);background-position:-1274px -1666px;width:48px;height:51px}.inventory_quest_scroll{background-image:url(spritesmith-main-5.png);background-position:-1225px -1666px;width:48px;height:51px}.inventory_quest_scroll_locked{background-image:url(spritesmith-main-5.png);background-position:-1176px -1666px;width:48px;height:51px}.inventory_special_fortify{background-image:url(spritesmith-main-5.png);background-position:-1627px -781px;width:57px;height:54px}.inventory_special_greeting{background-image:url(spritesmith-main-5.png);background-position:-1627px -726px;width:57px;height:54px}.inventory_special_nye{background-image:url(spritesmith-main-5.png);background-position:-1627px -671px;width:57px;height:54px}.inventory_special_opaquePotion{background-image:url(spritesmith-main-5.png);background-position:-1676px -1463px;width:40px;height:40px}.inventory_special_seafoam{background-image:url(spritesmith-main-5.png);background-position:-1627px -616px;width:57px;height:54px}.inventory_special_shinySeed{background-image:url(spritesmith-main-5.png);background-position:-1627px -561px;width:57px;height:54px}.inventory_special_snowball{background-image:url(spritesmith-main-5.png);background-position:-1627px -286px;width:57px;height:54px}.inventory_special_spookDust{background-image:url(spritesmith-main-5.png);background-position:-1627px -836px;width:57px;height:54px}.inventory_special_thankyou{background-image:url(spritesmith-main-5.png);background-position:-1627px -396px;width:57px;height:54px}.inventory_special_trinket{background-image:url(spritesmith-main-5.png);background-position:-637px -1666px;width:48px;height:51px}.inventory_special_valentine{background-image:url(spritesmith-main-5.png);background-position:-1627px -341px;width:57px;height:54px}.knockout{background-image:url(spritesmith-main-5.png);background-position:-288px -1442px;width:120px;height:47px}.pet_key{background-image:url(spritesmith-main-5.png);background-position:-1627px -506px;width:57px;height:54px}.rebirth_orb{background-image:url(spritesmith-main-5.png);background-position:-1627px -451px;width:57px;height:54px}.seafoam_star{background-image:url(spritesmith-main-5.png);background-position:-1536px -637px;width:90px;height:90px}.shop_armoire{background-image:url(spritesmith-main-5.png);background-position:-1676px -1359px;width:40px;height:40px}.snowman{background-image:url(spritesmith-main-5.png);background-position:-1536px -819px;width:90px;height:90px}.spookman{background-image:url(spritesmith-main-5.png);background-position:-1536px -910px;width:90px;height:90px}.zzz{background-image:url(spritesmith-main-5.png);background-position:-1676px -1255px;width:40px;height:40px}.zzz_light{background-image:url(spritesmith-main-5.png);background-position:-1676px -1151px;width:40px;height:40px}.npc_alex{background-image:url(spritesmith-main-5.png);background-position:-314px -1251px;width:162px;height:138px}.npc_bailey{background-image:url(spritesmith-main-5.png);background-position:-1627px -91px;width:60px;height:72px}.npc_daniel{background-image:url(spritesmith-main-5.png);background-position:-477px -1251px;width:135px;height:123px}.npc_justin{background-image:url(spritesmith-main-5.png);background-position:0 -1402px;width:84px;height:120px}.npc_justin_head{background-image:url(spritesmith-main-5.png);background-position:-1679px -891px;width:36px;height:39px}.npc_matt{background-image:url(spritesmith-main-5.png);background-position:-1322px -676px;width:195px;height:138px}.npc_timetravelers{background-image:url(spritesmith-main-5.png);background-position:-1322px -954px;width:195px;height:138px}.npc_timetravelers_active{background-image:url(spritesmith-main-5.png);background-position:-1322px -815px;width:195px;height:138px}.npc_tyler{background-image:url(spritesmith-main-5.png);background-position:-455px -1523px;width:90px;height:90px}.seasonalshop_closed{background-image:url(spritesmith-main-5.png);background-position:-151px -1251px;width:162px;height:138px}.inventory_quest_scroll_atom1{background-image:url(spritesmith-main-5.png);background-position:-49px -1666px;width:48px;height:51px}.inventory_quest_scroll_atom1_locked{background-image:url(spritesmith-main-5.png);background-position:-1127px -1614px;width:48px;height:51px}.inventory_quest_scroll_atom2{background-image:url(spritesmith-main-5.png);background-position:-1078px -1614px;width:48px;height:51px}.inventory_quest_scroll_atom2_locked{background-image:url(spritesmith-main-5.png);background-position:-1029px -1614px;width:48px;height:51px}.inventory_quest_scroll_atom3{background-image:url(spritesmith-main-5.png);background-position:-980px -1614px;width:48px;height:51px}.inventory_quest_scroll_atom3_locked{background-image:url(spritesmith-main-5.png);background-position:-931px -1614px;width:48px;height:51px}.inventory_quest_scroll_basilist{background-image:url(spritesmith-main-5.png);background-position:-882px -1614px;width:48px;height:51px}.inventory_quest_scroll_bunny{background-image:url(spritesmith-main-5.png);background-position:-833px -1614px;width:48px;height:51px}.inventory_quest_scroll_cheetah{background-image:url(spritesmith-main-5.png);background-position:-784px -1614px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress1{background-image:url(spritesmith-main-5.png);background-position:-735px -1614px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress2{background-image:url(spritesmith-main-5.png);background-position:-441px -1614px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress2_locked{background-image:url(spritesmith-main-5.png);background-position:-98px -1666px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress3{background-image:url(spritesmith-main-5.png);background-position:-1666px -1666px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress3_locked{background-image:url(spritesmith-main-5.png);background-position:-147px -1666px;width:48px;height:51px}.inventory_quest_scroll_dilatory_derby{background-image:url(spritesmith-main-5.png);background-position:-392px -1666px;width:48px;height:51px}.inventory_quest_scroll_egg{background-image:url(spritesmith-main-5.png);background-position:-441px -1666px;width:48px;height:51px}.inventory_quest_scroll_evilsanta{background-image:url(spritesmith-main-5.png);background-position:-490px -1666px;width:48px;height:51px}.inventory_quest_scroll_evilsanta2{background-image:url(spritesmith-main-5.png);background-position:-588px -1666px;width:48px;height:51px}.inventory_quest_scroll_frog{background-image:url(spritesmith-main-5.png);background-position:-686px -1666px;width:48px;height:51px}.inventory_quest_scroll_ghost_stag{background-image:url(spritesmith-main-5.png);background-position:-735px -1666px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1{background-image:url(spritesmith-main-5.png);background-position:-784px -1666px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1_locked{background-image:url(spritesmith-main-5.png);background-position:-833px -1666px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2{background-image:url(spritesmith-main-5.png);background-position:-882px -1666px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2_locked{background-image:url(spritesmith-main-5.png);background-position:-1029px -1666px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3{background-image:url(spritesmith-main-5.png);background-position:-1078px -1666px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3_locked{background-image:url(spritesmith-main-5.png);background-position:-1127px -1666px;width:48px;height:51px}.inventory_quest_scroll_gryphon{background-image:url(spritesmith-main-5.png);background-position:-1718px -208px;width:48px;height:51px}.inventory_quest_scroll_harpy{background-image:url(spritesmith-main-5.png);background-position:-1718px -260px;width:48px;height:51px}.inventory_quest_scroll_hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1718px -364px;width:48px;height:51px}.inventory_quest_scroll_horse{background-image:url(spritesmith-main-5.png);background-position:-1718px -416px;width:48px;height:51px}.inventory_quest_scroll_kraken{background-image:url(spritesmith-main-5.png);background-position:-1627px -1099px;width:48px;height:51px}.inventory_quest_scroll_moonstone1{background-image:url(spritesmith-main-5.png);background-position:-1627px -1151px;width:48px;height:51px}.inventory_quest_scroll_moonstone1_locked{background-image:url(spritesmith-main-5.png);background-position:-1627px -1203px;width:48px;height:51px}.inventory_quest_scroll_moonstone2{background-image:url(spritesmith-main-5.png);background-position:-1627px -1255px;width:48px;height:51px}.inventory_quest_scroll_moonstone2_locked{background-image:url(spritesmith-main-5.png);background-position:-1627px -1307px;width:48px;height:51px}.inventory_quest_scroll_moonstone3{background-image:url(spritesmith-main-5.png);background-position:-1627px -1359px;width:48px;height:51px}.inventory_quest_scroll_moonstone3_locked{background-image:url(spritesmith-main-5.png);background-position:-1627px -1411px;width:48px;height:51px}.inventory_quest_scroll_octopus{background-image:url(spritesmith-main-5.png);background-position:-1627px -1463px;width:48px;height:51px}.inventory_quest_scroll_owl{background-image:url(spritesmith-main-5.png);background-position:-1627px -1515px;width:48px;height:51px}.inventory_quest_scroll_penguin{background-image:url(spritesmith-main-5.png);background-position:-1536px -1456px;width:48px;height:51px}.inventory_quest_scroll_rat{background-image:url(spritesmith-main-5.png);background-position:-1547px -1523px;width:48px;height:51px}.inventory_quest_scroll_rock{background-image:url(spritesmith-main-5.png);background-position:0 -1614px;width:48px;height:51px}.inventory_quest_scroll_rooster{background-image:url(spritesmith-main-5.png);background-position:-49px -1614px;width:48px;height:51px}.inventory_quest_scroll_sheep{background-image:url(spritesmith-main-5.png);background-position:-98px -1614px;width:48px;height:51px}.inventory_quest_scroll_slime{background-image:url(spritesmith-main-5.png);background-position:-147px -1614px;width:48px;height:51px}.inventory_quest_scroll_snake{background-image:url(spritesmith-main-5.png);background-position:-196px -1614px;width:48px;height:51px}.inventory_quest_scroll_spider{background-image:url(spritesmith-main-5.png);background-position:-245px -1614px;width:48px;height:51px}.inventory_quest_scroll_trex{background-image:url(spritesmith-main-5.png);background-position:-294px -1614px;width:48px;height:51px}.inventory_quest_scroll_trex_undead{background-image:url(spritesmith-main-5.png);background-position:-343px -1614px;width:48px;height:51px}.inventory_quest_scroll_vice1{background-image:url(spritesmith-main-5.png);background-position:-392px -1614px;width:48px;height:51px}.inventory_quest_scroll_vice1_locked{background-image:url(spritesmith-main-5.png);background-position:-1767px -1248px;width:48px;height:51px}.inventory_quest_scroll_vice2{background-image:url(spritesmith-main-5.png);background-position:-490px -1614px;width:48px;height:51px}.inventory_quest_scroll_vice2_locked{background-image:url(spritesmith-main-5.png);background-position:-539px -1614px;width:48px;height:51px}.inventory_quest_scroll_vice3{background-image:url(spritesmith-main-5.png);background-position:-588px -1614px;width:48px;height:51px}.inventory_quest_scroll_vice3_locked{background-image:url(spritesmith-main-5.png);background-position:-637px -1614px;width:48px;height:51px}.inventory_quest_scroll_whale{background-image:url(spritesmith-main-5.png);background-position:-686px -1614px;width:48px;height:51px}.quest_TEMPLATE_FOR_MISSING_IMAGE{background-image:url(spritesmith-main-5.png);background-position:-1100px -805px;width:221px;height:39px}.quest_atom1{background-image:url(spritesmith-main-5.png);background-position:-434px -1070px;width:250px;height:150px}.quest_atom2{background-image:url(spritesmith-main-5.png);background-position:-1322px -537px;width:207px;height:138px}.quest_atom3{background-image:url(spritesmith-main-5.png);background-position:0 -1070px;width:216px;height:180px}.quest_basilist{background-image:url(spritesmith-main-5.png);background-position:-1322px -1093px;width:189px;height:141px}.quest_bunny{background-image:url(spritesmith-main-5.png);background-position:-1100px -618px;width:210px;height:186px}.quest_cheetah{background-image:url(spritesmith-main-5.png);background-position:0 -232px;width:219px;height:219px}.quest_dilatory{background-image:url(spritesmith-main-5.png);background-position:-660px 0;width:219px;height:219px}.quest_dilatoryDistress1{background-image:url(spritesmith-main-5.png);background-position:-288px -1402px;width:221px;height:39px}.quest_dilatoryDistress1_blueFins{background-image:url(spritesmith-main-5.png);background-position:-1176px -1614px;width:51px;height:48px}.quest_dilatoryDistress1_fireCoral{background-image:url(spritesmith-main-5.png);background-position:0 -1666px;width:48px;height:51px}.quest_dilatoryDistress2{background-image:url(spritesmith-main-5.png);background-position:0 -1251px;width:150px;height:150px}.quest_dilatoryDistress3{background-image:url(spritesmith-main-5.png);background-position:-660px -220px;width:219px;height:219px}.quest_dilatory_derby{background-image:url(spritesmith-main-5.png);background-position:0 -452px;width:219px;height:219px}.quest_egg{background-image:url(spritesmith-main-5.png);background-position:-732px -1402px;width:221px;height:39px}.quest_egg_plainEgg{background-image:url(spritesmith-main-5.png);background-position:-245px -1666px;width:48px;height:51px}.quest_evilsanta{background-image:url(spritesmith-main-5.png);background-position:-1187px -1070px;width:118px;height:131px}.quest_evilsanta2{background-image:url(spritesmith-main-5.png);background-position:-220px -452px;width:219px;height:219px}.quest_frog{background-image:url(spritesmith-main-5.png);background-position:-1100px 0;width:221px;height:213px}.quest_ghost_stag{background-image:url(spritesmith-main-5.png);background-position:-220px -672px;width:219px;height:219px}.quest_goldenknight1{background-image:url(spritesmith-main-5.png);background-position:-1100px -845px;width:221px;height:39px}.quest_goldenknight1_testimony{background-image:url(spritesmith-main-5.png);background-position:-539px -1666px;width:48px;height:51px}.quest_goldenknight2{background-image:url(spritesmith-main-5.png);background-position:-936px -1070px;width:250px;height:150px}.quest_goldenknight3{background-image:url(spritesmith-main-5.png);background-position:0 0;width:219px;height:231px}.quest_gryphon{background-image:url(spritesmith-main-5.png);background-position:-440px -892px;width:216px;height:177px}.quest_harpy{background-image:url(spritesmith-main-5.png);background-position:-880px -672px;width:219px;height:219px}.quest_hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1100px -431px;width:219px;height:186px}.quest_horse{background-image:url(spritesmith-main-5.png);background-position:-440px 0;width:219px;height:219px}.quest_kraken{background-image:url(spritesmith-main-5.png);background-position:-657px -892px;width:216px;height:177px}.quest_moonstone1{background-image:url(spritesmith-main-5.png);background-position:-954px -1402px;width:221px;height:39px}.quest_moonstone1_moonstone{background-image:url(spritesmith-main-5.png);background-position:-1685px -396px;width:30px;height:30px}.quest_moonstone2{background-image:url(spritesmith-main-5.png);background-position:-440px -232px;width:219px;height:219px}.quest_moonstone3{background-image:url(spritesmith-main-5.png);background-position:-440px -452px;width:219px;height:219px}.quest_octopus{background-image:url(spritesmith-main-5.png);background-position:0 -892px;width:222px;height:177px}.quest_owl{background-image:url(spritesmith-main-5.png);background-position:-660px -452px;width:219px;height:219px}.quest_penguin{background-image:url(spritesmith-main-5.png);background-position:-1322px -353px;width:190px;height:183px}.quest_rat{background-image:url(spritesmith-main-5.png);background-position:-880px 0;width:219px;height:219px}.quest_rock{background-image:url(spritesmith-main-5.png);background-position:-1100px -214px;width:216px;height:216px}.quest_rooster{background-image:url(spritesmith-main-5.png);background-position:-1322px 0;width:213px;height:174px}.quest_sheep{background-image:url(spritesmith-main-5.png);background-position:-440px -672px;width:219px;height:219px}.quest_slime{background-image:url(spritesmith-main-5.png);background-position:-660px -672px;width:219px;height:219px}.quest_snake{background-image:url(spritesmith-main-5.png);background-position:-874px -892px;width:216px;height:177px}.quest_spider{background-image:url(spritesmith-main-5.png);background-position:-685px -1070px;width:250px;height:150px}.quest_stressbeast{background-image:url(spritesmith-main-5.png);background-position:-220px 0;width:219px;height:219px}.quest_stressbeast_bailey{background-image:url(spritesmith-main-5.png);background-position:0 -672px;width:219px;height:219px}.quest_stressbeast_guide{background-image:url(spritesmith-main-5.png);background-position:-880px -440px;width:219px;height:219px}.quest_stressbeast_stables{background-image:url(spritesmith-main-5.png);background-position:-880px -220px;width:219px;height:219px}.quest_trex{background-image:url(spritesmith-main-5.png);background-position:-1322px -175px;width:204px;height:177px}.quest_trex_undead{background-image:url(spritesmith-main-5.png);background-position:-1091px -892px;width:216px;height:177px}.quest_vice1{background-image:url(spritesmith-main-5.png);background-position:-217px -1070px;width:216px;height:177px}.quest_vice2{background-image:url(spritesmith-main-5.png);background-position:-510px -1402px;width:221px;height:39px}.quest_vice2_lightCrystal{background-image:url(spritesmith-main-5.png);background-position:-1676px -1047px;width:40px;height:40px}.quest_vice3{background-image:url(spritesmith-main-5.png);background-position:-223px -892px;width:216px;height:177px}.quest_whale{background-image:url(spritesmith-main-5.png);background-position:-220px -232px;width:219px;height:219px}.shop_copper{background-image:url(spritesmith-main-5.png);background-position:-1685px -478px;width:32px;height:22px}.shop_eyes{background-image:url(spritesmith-main-5.png);background-position:-1676px -1411px;width:40px;height:40px}.shop_gold{background-image:url(spritesmith-main-5.png);background-position:-1685px -427px;width:32px;height:22px}.shop_opaquePotion{background-image:url(spritesmith-main-5.png);background-position:-1676px -1307px;width:40px;height:40px}.shop_potion{background-image:url(spritesmith-main-5.png);background-position:-1676px -1099px;width:40px;height:40px}.shop_reroll{background-image:url(spritesmith-main-5.png);background-position:-1676px -1203px;width:40px;height:40px}.shop_seafoam{background-image:url(spritesmith-main-5.png);background-position:-1685px -164px;width:32px;height:32px}.shop_shinySeed{background-image:url(spritesmith-main-5.png);background-position:-1685px -286px;width:32px;height:32px}.shop_silver{background-image:url(spritesmith-main-5.png);background-position:-1685px -506px;width:32px;height:22px}.shop_snowball{background-image:url(spritesmith-main-5.png);background-position:-1685px -197px;width:32px;height:32px}.shop_spookDust{background-image:url(spritesmith-main-5.png);background-position:-1685px -341px;width:32px;height:32px}.Pet_Egg_BearCub{background-image:url(spritesmith-main-5.png);background-position:-1718px -1040px;width:48px;height:51px}.Pet_Egg_Bunny{background-image:url(spritesmith-main-5.png);background-position:-1718px -1092px;width:48px;height:51px}.Pet_Egg_Cactus{background-image:url(spritesmith-main-5.png);background-position:-1718px -1144px;width:48px;height:51px}.Pet_Egg_Cheetah{background-image:url(spritesmith-main-5.png);background-position:-1718px -1196px;width:48px;height:51px}.Pet_Egg_Cuttlefish{background-image:url(spritesmith-main-5.png);background-position:-1718px -1248px;width:48px;height:51px}.Pet_Egg_Deer{background-image:url(spritesmith-main-5.png);background-position:-1718px -1300px;width:48px;height:51px}.Pet_Egg_Dragon{background-image:url(spritesmith-main-5.png);background-position:-1718px -1352px;width:48px;height:51px}.Pet_Egg_Egg{background-image:url(spritesmith-main-5.png);background-position:-1718px -1404px;width:48px;height:51px}.Pet_Egg_FlyingPig{background-image:url(spritesmith-main-5.png);background-position:-1718px -1456px;width:48px;height:51px}.Pet_Egg_Fox{background-image:url(spritesmith-main-5.png);background-position:-1718px -1508px;width:48px;height:51px}.Pet_Egg_Frog{background-image:url(spritesmith-main-5.png);background-position:-1718px -1560px;width:48px;height:51px}.Pet_Egg_Gryphon{background-image:url(spritesmith-main-5.png);background-position:-1718px -1612px;width:48px;height:51px}.Pet_Egg_Hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1718px -1664px;width:48px;height:51px}.Pet_Egg_Horse{background-image:url(spritesmith-main-5.png);background-position:-1767px 0;width:48px;height:51px}.Pet_Egg_LionCub{background-image:url(spritesmith-main-5.png);background-position:-1767px -52px;width:48px;height:51px}.Pet_Egg_Octopus{background-image:url(spritesmith-main-5.png);background-position:-1767px -104px;width:48px;height:51px}.Pet_Egg_Owl{background-image:url(spritesmith-main-5.png);background-position:-1767px -156px;width:48px;height:51px}.Pet_Egg_PandaCub{background-image:url(spritesmith-main-5.png);background-position:-1767px -208px;width:48px;height:51px}.Pet_Egg_Parrot{background-image:url(spritesmith-main-5.png);background-position:-1767px -260px;width:48px;height:51px}.Pet_Egg_Penguin{background-image:url(spritesmith-main-5.png);background-position:-1767px -312px;width:48px;height:51px}.Pet_Egg_PolarBear{background-image:url(spritesmith-main-5.png);background-position:-1767px -364px;width:48px;height:51px}.Pet_Egg_Rat{background-image:url(spritesmith-main-5.png);background-position:-1767px -416px;width:48px;height:51px}.Pet_Egg_Rock{background-image:url(spritesmith-main-5.png);background-position:-1767px -468px;width:48px;height:51px}.Pet_Egg_Rooster{background-image:url(spritesmith-main-5.png);background-position:-1767px -520px;width:48px;height:51px}.Pet_Egg_Seahorse{background-image:url(spritesmith-main-5.png);background-position:-1767px -572px;width:48px;height:51px}.Pet_Egg_Sheep{background-image:url(spritesmith-main-5.png);background-position:-1767px -624px;width:48px;height:51px}.Pet_Egg_Slime{background-image:url(spritesmith-main-5.png);background-position:-1767px -676px;width:48px;height:51px}.Pet_Egg_Snake{background-image:url(spritesmith-main-5.png);background-position:-1767px -728px;width:48px;height:51px}.Pet_Egg_Spider{background-image:url(spritesmith-main-5.png);background-position:-1767px -780px;width:48px;height:51px}.Pet_Egg_TRex{background-image:url(spritesmith-main-5.png);background-position:-1767px -832px;width:48px;height:51px}.Pet_Egg_TigerCub{background-image:url(spritesmith-main-5.png);background-position:-1767px -884px;width:48px;height:51px}.Pet_Egg_Whale{background-image:url(spritesmith-main-5.png);background-position:-1767px -936px;width:48px;height:51px}.Pet_Egg_Wolf{background-image:url(spritesmith-main-5.png);background-position:-1767px -988px;width:48px;height:51px}.Pet_Food_Cake_Base{background-image:url(spritesmith-main-5.png);background-position:-1767px -1619px;width:43px;height:43px}.Pet_Food_Cake_CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-1767px -1663px;width:42px;height:44px}.Pet_Food_Cake_CottonCandyPink{background-image:url(spritesmith-main-5.png);background-position:-1767px -1438px;width:43px;height:45px}.Pet_Food_Cake_Desert{background-image:url(spritesmith-main-5.png);background-position:-1767px -1529px;width:43px;height:44px}.Pet_Food_Cake_Golden{background-image:url(spritesmith-main-5.png);background-position:-1627px -1567px;width:43px;height:42px}.Pet_Food_Cake_Red{background-image:url(spritesmith-main-5.png);background-position:-1767px -1574px;width:43px;height:44px}.Pet_Food_Cake_Shade{background-image:url(spritesmith-main-5.png);background-position:-1767px -1484px;width:43px;height:44px}.Pet_Food_Cake_Skeleton{background-image:url(spritesmith-main-5.png);background-position:-1767px -1345px;width:42px;height:47px}.Pet_Food_Cake_White{background-image:url(spritesmith-main-5.png);background-position:-1767px -1393px;width:44px;height:44px}.Pet_Food_Cake_Zombie{background-image:url(spritesmith-main-5.png);background-position:-1767px -1300px;width:45px;height:44px}.Pet_Food_Candy_Base{background-image:url(spritesmith-main-5.png);background-position:-1767px -1196px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-1767px -1144px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyPink{background-image:url(spritesmith-main-5.png);background-position:-1767px -1092px;width:48px;height:51px}.Pet_Food_Candy_Desert{background-image:url(spritesmith-main-5.png);background-position:-1767px -1040px;width:48px;height:51px}.Pet_Food_Candy_Golden{background-image:url(spritesmith-main-5.png);background-position:-1718px -988px;width:48px;height:51px}.Pet_Food_Candy_Red{background-image:url(spritesmith-main-5.png);background-position:-1718px -936px;width:48px;height:51px}.Pet_Food_Candy_Shade{background-image:url(spritesmith-main-5.png);background-position:-1718px -884px;width:48px;height:51px}.Pet_Food_Candy_Skeleton{background-image:url(spritesmith-main-5.png);background-position:-1718px -832px;width:48px;height:51px}.Pet_Food_Candy_White{background-image:url(spritesmith-main-5.png);background-position:-1718px -780px;width:48px;height:51px}.Pet_Food_Candy_Zombie{background-image:url(spritesmith-main-5.png);background-position:-1718px -728px;width:48px;height:51px}.Pet_Food_Chocolate{background-image:url(spritesmith-main-5.png);background-position:-1718px -676px;width:48px;height:51px}.Pet_Food_CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-1718px -624px;width:48px;height:51px}.Pet_Food_CottonCandyPink{background-image:url(spritesmith-main-5.png);background-position:-1718px -572px;width:48px;height:51px}.Pet_Food_Fish{background-image:url(spritesmith-main-5.png);background-position:-1718px -520px;width:48px;height:51px}.Pet_Food_Honey{background-image:url(spritesmith-main-5.png);background-position:-1718px -468px;width:48px;height:51px}.Pet_Food_Meat{background-image:url(spritesmith-main-5.png);background-position:-1718px -312px;width:48px;height:51px}.Pet_Food_Milk{background-image:url(spritesmith-main-5.png);background-position:-980px -1666px;width:48px;height:51px}.Pet_Food_Potatoe{background-image:url(spritesmith-main-5.png);background-position:-931px -1666px;width:48px;height:51px}.Pet_Food_RottenMeat{background-image:url(spritesmith-main-5.png);background-position:-343px -1666px;width:48px;height:51px}.Pet_Food_Saddle{background-image:url(spritesmith-main-5.png);background-position:-294px -1666px;width:48px;height:51px}.Pet_Food_Strawberry{background-image:url(spritesmith-main-5.png);background-position:-196px -1666px;width:48px;height:51px}.Mount_Body_BearCub-Base{background-image:url(spritesmith-main-5.png);background-position:-1037px -1251px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-825px -1251px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyPink{background-image:url(spritesmith-main-5.png);background-position:-719px -1251px;width:105px;height:105px}.Mount_Body_BearCub-Desert{background-image:url(spritesmith-main-5.png);background-position:-931px -1251px;width:105px;height:105px}.Mount_Body_BearCub-Golden{background-image:url(spritesmith-main-5.png);background-position:-613px -1251px;width:105px;height:105px}.Mount_Body_BearCub-Polar{background-image:url(spritesmith-main-6.png);background-position:-424px -575px;width:105px;height:105px}.Mount_Body_BearCub-Red{background-image:url(spritesmith-main-6.png);background-position:-318px -1105px;width:105px;height:105px}.Mount_Body_BearCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-530px -575px;width:105px;height:105px}.Mount_Body_BearCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-636px -575px;width:105px;height:105px}.Mount_Body_BearCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-742px 0;width:105px;height:105px}.Mount_Body_BearCub-White{background-image:url(spritesmith-main-6.png);background-position:-742px -106px;width:105px;height:105px}.Mount_Body_BearCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-742px -212px;width:105px;height:105px}.Mount_Body_Bunny-Base{background-image:url(spritesmith-main-6.png);background-position:-742px -318px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-742px -424px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-742px -530px;width:105px;height:105px}.Mount_Body_Bunny-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -681px;width:105px;height:105px}.Mount_Body_Bunny-Golden{background-image:url(spritesmith-main-6.png);background-position:-318px -999px;width:105px;height:105px}.Mount_Body_Bunny-Red{background-image:url(spritesmith-main-6.png);background-position:-424px -999px;width:105px;height:105px}.Mount_Body_Bunny-Shade{background-image:url(spritesmith-main-6.png);background-position:-530px -999px;width:105px;height:105px}.Mount_Body_Bunny-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-636px -999px;width:105px;height:105px}.Mount_Body_Bunny-White{background-image:url(spritesmith-main-6.png);background-position:-742px -999px;width:105px;height:105px}.Mount_Body_Bunny-Zombie{background-image:url(spritesmith-main-6.png);background-position:-848px -999px;width:105px;height:105px}.Mount_Body_Cactus-Base{background-image:url(spritesmith-main-6.png);background-position:-954px -999px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1060px -999px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1166px 0;width:105px;height:105px}.Mount_Body_Cactus-Desert{background-image:url(spritesmith-main-6.png);background-position:-1166px -106px;width:105px;height:105px}.Mount_Body_Cactus-Golden{background-image:url(spritesmith-main-6.png);background-position:-954px -1211px;width:105px;height:105px}.Mount_Body_Cactus-Red{background-image:url(spritesmith-main-6.png);background-position:-1378px 0;width:105px;height:105px}.Mount_Body_Cactus-Shade{background-image:url(spritesmith-main-6.png);background-position:-1378px -106px;width:105px;height:105px}.Mount_Body_Cactus-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-530px -221px;width:105px;height:105px}.Mount_Body_Cactus-Spooky{background-image:url(spritesmith-main-6.png);background-position:-530px -327px;width:105px;height:105px}.Mount_Body_Cactus-White{background-image:url(spritesmith-main-6.png);background-position:-221px -469px;width:105px;height:105px}.Mount_Body_Cactus-Zombie{background-image:url(spritesmith-main-6.png);background-position:-327px -469px;width:105px;height:105px}.Mount_Body_Cheetah-Base{background-image:url(spritesmith-main-6.png);background-position:-433px -469px;width:105px;height:105px}.Mount_Body_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-636px 0;width:105px;height:105px}.Mount_Body_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-636px -106px;width:105px;height:105px}.Mount_Body_Cheetah-Desert{background-image:url(spritesmith-main-6.png);background-position:-636px -212px;width:105px;height:105px}.Mount_Body_Cheetah-Golden{background-image:url(spritesmith-main-6.png);background-position:-636px -318px;width:105px;height:105px}.Mount_Body_Cheetah-Red{background-image:url(spritesmith-main-6.png);background-position:-636px -424px;width:105px;height:105px}.Mount_Body_Cheetah-Shade{background-image:url(spritesmith-main-6.png);background-position:0 -575px;width:105px;height:105px}.Mount_Body_Cheetah-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-106px -575px;width:105px;height:105px}.Mount_Body_Cheetah-White{background-image:url(spritesmith-main-6.png);background-position:-212px -575px;width:105px;height:105px}.Mount_Body_Cheetah-Zombie{background-image:url(spritesmith-main-6.png);background-position:-318px -575px;width:105px;height:105px}.Mount_Body_Cuttlefish-Base{background-image:url(spritesmith-main-6.png);background-position:-530px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-318px -239px;width:105px;height:114px}.Mount_Body_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-212px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Golden{background-image:url(spritesmith-main-6.png);background-position:-106px -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-318px -115px;width:105px;height:114px}.Mount_Body_Cuttlefish-White{background-image:url(spritesmith-main-6.png);background-position:0 -239px;width:105px;height:114px}.Mount_Body_Cuttlefish-Zombie{background-image:url(spritesmith-main-6.png);background-position:-106px -239px;width:105px;height:114px}.Mount_Body_Deer-Base{background-image:url(spritesmith-main-6.png);background-position:-106px -681px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-212px -681px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-318px -681px;width:105px;height:105px}.Mount_Body_Deer-Desert{background-image:url(spritesmith-main-6.png);background-position:-424px -681px;width:105px;height:105px}.Mount_Body_Deer-Golden{background-image:url(spritesmith-main-6.png);background-position:-530px -681px;width:105px;height:105px}.Mount_Body_Deer-Red{background-image:url(spritesmith-main-6.png);background-position:-636px -681px;width:105px;height:105px}.Mount_Body_Deer-Shade{background-image:url(spritesmith-main-6.png);background-position:-742px -681px;width:105px;height:105px}.Mount_Body_Deer-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-848px 0;width:105px;height:105px}.Mount_Body_Deer-White{background-image:url(spritesmith-main-6.png);background-position:-848px -106px;width:105px;height:105px}.Mount_Body_Deer-Zombie{background-image:url(spritesmith-main-6.png);background-position:-848px -212px;width:105px;height:105px}.Mount_Body_Dragon-Base{background-image:url(spritesmith-main-6.png);background-position:-848px -318px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-848px -424px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-848px -530px;width:105px;height:105px}.Mount_Body_Dragon-Desert{background-image:url(spritesmith-main-6.png);background-position:-848px -636px;width:105px;height:105px}.Mount_Body_Dragon-Golden{background-image:url(spritesmith-main-6.png);background-position:0 -787px;width:105px;height:105px}.Mount_Body_Dragon-Red{background-image:url(spritesmith-main-6.png);background-position:-106px -787px;width:105px;height:105px}.Mount_Body_Dragon-Shade{background-image:url(spritesmith-main-6.png);background-position:-212px -787px;width:105px;height:105px}.Mount_Body_Dragon-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-318px -787px;width:105px;height:105px}.Mount_Body_Dragon-Spooky{background-image:url(spritesmith-main-6.png);background-position:-424px -787px;width:105px;height:105px}.Mount_Body_Dragon-White{background-image:url(spritesmith-main-6.png);background-position:-530px -787px;width:105px;height:105px}.Mount_Body_Dragon-Zombie{background-image:url(spritesmith-main-6.png);background-position:-636px -787px;width:105px;height:105px}.Mount_Body_Egg-Base{background-image:url(spritesmith-main-6.png);background-position:-742px -787px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-848px -787px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-954px 0;width:105px;height:105px}.Mount_Body_Egg-Desert{background-image:url(spritesmith-main-6.png);background-position:-954px -106px;width:105px;height:105px}.Mount_Body_Egg-Golden{background-image:url(spritesmith-main-6.png);background-position:-954px -212px;width:105px;height:105px}.Mount_Body_Egg-Red{background-image:url(spritesmith-main-6.png);background-position:-954px -318px;width:105px;height:105px}.Mount_Body_Egg-Shade{background-image:url(spritesmith-main-6.png);background-position:-954px -424px;width:105px;height:105px}.Mount_Body_Egg-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-954px -530px;width:105px;height:105px}.Mount_Body_Egg-White{background-image:url(spritesmith-main-6.png);background-position:-954px -636px;width:105px;height:105px}.Mount_Body_Egg-Zombie{background-image:url(spritesmith-main-6.png);background-position:-954px -742px;width:105px;height:105px}.Mount_Body_FlyingPig-Base{background-image:url(spritesmith-main-6.png);background-position:0 -893px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-106px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-212px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Desert{background-image:url(spritesmith-main-6.png);background-position:-318px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Golden{background-image:url(spritesmith-main-6.png);background-position:-424px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Red{background-image:url(spritesmith-main-6.png);background-position:-530px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Shade{background-image:url(spritesmith-main-6.png);background-position:-636px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-742px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Spooky{background-image:url(spritesmith-main-6.png);background-position:-848px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-White{background-image:url(spritesmith-main-6.png);background-position:-954px -893px;width:105px;height:105px}.Mount_Body_FlyingPig-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1060px 0;width:105px;height:105px}.Mount_Body_Fox-Base{background-image:url(spritesmith-main-6.png);background-position:-1060px -106px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1060px -212px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1060px -318px;width:105px;height:105px}.Mount_Body_Fox-Desert{background-image:url(spritesmith-main-6.png);background-position:-1060px -424px;width:105px;height:105px}.Mount_Body_Fox-Golden{background-image:url(spritesmith-main-6.png);background-position:-1060px -530px;width:105px;height:105px}.Mount_Body_Fox-Red{background-image:url(spritesmith-main-6.png);background-position:-1060px -636px;width:105px;height:105px}.Mount_Body_Fox-Shade{background-image:url(spritesmith-main-6.png);background-position:-1060px -742px;width:105px;height:105px}.Mount_Body_Fox-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1060px -848px;width:105px;height:105px}.Mount_Body_Fox-Spooky{background-image:url(spritesmith-main-6.png);background-position:0 -999px;width:105px;height:105px}.Mount_Body_Fox-White{background-image:url(spritesmith-main-6.png);background-position:-106px -999px;width:105px;height:105px}.Mount_Body_Fox-Zombie{background-image:url(spritesmith-main-6.png);background-position:-212px -999px;width:105px;height:105px}.Mount_Body_Frog-Base{background-image:url(spritesmith-main-6.png);background-position:-212px -239px;width:105px;height:114px}.Mount_Body_Frog-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-106px 0;width:105px;height:114px}.Mount_Body_Frog-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-424px 0;width:105px;height:114px}.Mount_Body_Frog-Desert{background-image:url(spritesmith-main-6.png);background-position:-424px -115px;width:105px;height:114px}.Mount_Body_Frog-Golden{background-image:url(spritesmith-main-6.png);background-position:-424px -230px;width:105px;height:114px}.Mount_Body_Frog-Red{background-image:url(spritesmith-main-6.png);background-position:0 -354px;width:105px;height:114px}.Mount_Body_Frog-Shade{background-image:url(spritesmith-main-6.png);background-position:-106px -354px;width:105px;height:114px}.Mount_Body_Frog-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-212px -354px;width:105px;height:114px}.Mount_Body_Frog-White{background-image:url(spritesmith-main-6.png);background-position:-318px -354px;width:105px;height:114px}.Mount_Body_Frog-Zombie{background-image:url(spritesmith-main-6.png);background-position:-424px -354px;width:105px;height:114px}.Mount_Body_Gryphon-Base{background-image:url(spritesmith-main-6.png);background-position:-1166px -212px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1166px -318px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1166px -424px;width:105px;height:105px}.Mount_Body_Gryphon-Desert{background-image:url(spritesmith-main-6.png);background-position:-1166px -530px;width:105px;height:105px}.Mount_Body_Gryphon-Golden{background-image:url(spritesmith-main-6.png);background-position:-1166px -636px;width:105px;height:105px}.Mount_Body_Gryphon-Red{background-image:url(spritesmith-main-6.png);background-position:-1166px -742px;width:105px;height:105px}.Mount_Body_Gryphon-RoyalPurple{background-image:url(spritesmith-main-6.png);background-position:-1166px -848px;width:105px;height:105px}.Mount_Body_Gryphon-Shade{background-image:url(spritesmith-main-6.png);background-position:-1166px -954px;width:105px;height:105px}.Mount_Body_Gryphon-Skeleton{background-image:url(spritesmith-main-6.png);background-position:0 -1105px;width:105px;height:105px}.Mount_Body_Gryphon-White{background-image:url(spritesmith-main-6.png);background-position:-106px -1105px;width:105px;height:105px}.Mount_Body_Gryphon-Zombie{background-image:url(spritesmith-main-6.png);background-position:-212px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Base{background-image:url(spritesmith-main-6.png);background-position:-530px -115px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-424px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-530px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Desert{background-image:url(spritesmith-main-6.png);background-position:-636px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Golden{background-image:url(spritesmith-main-6.png);background-position:-742px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Red{background-image:url(spritesmith-main-6.png);background-position:-848px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Shade{background-image:url(spritesmith-main-6.png);background-position:-954px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1060px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-White{background-image:url(spritesmith-main-6.png);background-position:-1166px -1105px;width:105px;height:105px}.Mount_Body_Hedgehog-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1272px 0;width:105px;height:105px}.Mount_Body_Horse-Base{background-image:url(spritesmith-main-6.png);background-position:-1272px -106px;width:105px;height:105px}.Mount_Body_Horse-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1272px -212px;width:105px;height:105px}.Mount_Body_Horse-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1272px -318px;width:105px;height:105px}.Mount_Body_Horse-Desert{background-image:url(spritesmith-main-6.png);background-position:-1272px -424px;width:105px;height:105px}.Mount_Body_Horse-Golden{background-image:url(spritesmith-main-6.png);background-position:-1272px -530px;width:105px;height:105px}.Mount_Body_Horse-Red{background-image:url(spritesmith-main-6.png);background-position:-1272px -636px;width:105px;height:105px}.Mount_Body_Horse-Shade{background-image:url(spritesmith-main-6.png);background-position:-1272px -742px;width:105px;height:105px}.Mount_Body_Horse-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1272px -848px;width:105px;height:105px}.Mount_Body_Horse-White{background-image:url(spritesmith-main-6.png);background-position:-1272px -954px;width:105px;height:105px}.Mount_Body_Horse-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1272px -1060px;width:105px;height:105px}.Mount_Body_JackOLantern-Base{background-image:url(spritesmith-main-6.png);background-position:-1696px -530px;width:90px;height:105px}.Mount_Body_LionCub-Base{background-image:url(spritesmith-main-6.png);background-position:-106px -1211px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-212px -1211px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-318px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-424px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Ethereal{background-image:url(spritesmith-main-6.png);background-position:-530px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-636px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Red{background-image:url(spritesmith-main-6.png);background-position:-742px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-848px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:0 -469px;width:111px;height:105px}.Mount_Body_LionCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-1060px -1211px;width:105px;height:105px}.Mount_Body_LionCub-White{background-image:url(spritesmith-main-6.png);background-position:-1166px -1211px;width:105px;height:105px}.Mount_Body_LionCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1272px -1211px;width:105px;height:105px}.Mount_Body_Mammoth-Base{background-image:url(spritesmith-main-6.png);background-position:0 0;width:105px;height:123px}.Mount_Body_MantisShrimp-Base{background-image:url(spritesmith-main-6.png);background-position:-112px -469px;width:108px;height:105px}.Mount_Body_Octopus-Base{background-image:url(spritesmith-main-6.png);background-position:-1378px -212px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1378px -318px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1378px -424px;width:105px;height:105px}.Mount_Body_Octopus-Desert{background-image:url(spritesmith-main-6.png);background-position:-1378px -530px;width:105px;height:105px}.Mount_Body_Octopus-Golden{background-image:url(spritesmith-main-6.png);background-position:-1378px -636px;width:105px;height:105px}.Mount_Body_Octopus-Red{background-image:url(spritesmith-main-6.png);background-position:-1378px -742px;width:105px;height:105px}.Mount_Body_Octopus-Shade{background-image:url(spritesmith-main-6.png);background-position:-1378px -848px;width:105px;height:105px}.Mount_Body_Octopus-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1378px -954px;width:105px;height:105px}.Mount_Body_Octopus-White{background-image:url(spritesmith-main-6.png);background-position:-1378px -1060px;width:105px;height:105px}.Mount_Body_Octopus-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1378px -1166px;width:105px;height:105px}.Mount_Body_Orca-Base{background-image:url(spritesmith-main-6.png);background-position:0 -1317px;width:105px;height:105px}.Mount_Body_Owl-Base{background-image:url(spritesmith-main-6.png);background-position:-106px -1317px;width:105px;height:105px}.Mount_Body_Owl-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-212px -1317px;width:105px;height:105px}.Mount_Body_Owl-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-318px -1317px;width:105px;height:105px}.Mount_Body_Owl-Desert{background-image:url(spritesmith-main-6.png);background-position:-424px -1317px;width:105px;height:105px}.Mount_Body_Owl-Golden{background-image:url(spritesmith-main-6.png);background-position:-530px -1317px;width:105px;height:105px}.Mount_Body_Owl-Red{background-image:url(spritesmith-main-6.png);background-position:-636px -1317px;width:105px;height:105px}.Mount_Body_Owl-Shade{background-image:url(spritesmith-main-6.png);background-position:-742px -1317px;width:105px;height:105px}.Mount_Body_Owl-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-848px -1317px;width:105px;height:105px}.Mount_Body_Owl-White{background-image:url(spritesmith-main-6.png);background-position:-954px -1317px;width:105px;height:105px}.Mount_Body_Owl-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1060px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-Base{background-image:url(spritesmith-main-6.png);background-position:-1166px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1272px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1378px -1317px;width:105px;height:105px}.Mount_Body_PandaCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-1484px 0;width:105px;height:105px}.Mount_Body_PandaCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-1484px -106px;width:105px;height:105px}.Mount_Body_PandaCub-Red{background-image:url(spritesmith-main-6.png);background-position:-1484px -212px;width:105px;height:105px}.Mount_Body_PandaCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-1484px -318px;width:105px;height:105px}.Mount_Body_PandaCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1484px -424px;width:105px;height:105px}.Mount_Body_PandaCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-1484px -530px;width:105px;height:105px}.Mount_Body_PandaCub-White{background-image:url(spritesmith-main-6.png);background-position:-1484px -636px;width:105px;height:105px}.Mount_Body_PandaCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1484px -742px;width:105px;height:105px}.Mount_Body_Parrot-Base{background-image:url(spritesmith-main-6.png);background-position:-1484px -848px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1484px -954px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1484px -1060px;width:105px;height:105px}.Mount_Body_Parrot-Desert{background-image:url(spritesmith-main-6.png);background-position:-1484px -1166px;width:105px;height:105px}.Mount_Body_Parrot-Golden{background-image:url(spritesmith-main-6.png);background-position:-1484px -1272px;width:105px;height:105px}.Mount_Body_Parrot-Red{background-image:url(spritesmith-main-6.png);background-position:0 -1423px;width:105px;height:105px}.Mount_Body_Parrot-Shade{background-image:url(spritesmith-main-6.png);background-position:-106px -1423px;width:105px;height:105px}.Mount_Body_Parrot-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-212px -1423px;width:105px;height:105px}.Mount_Body_Parrot-White{background-image:url(spritesmith-main-6.png);background-position:-318px -1423px;width:105px;height:105px}.Mount_Body_Parrot-Zombie{background-image:url(spritesmith-main-6.png);background-position:-424px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Base{background-image:url(spritesmith-main-6.png);background-position:-530px -1423px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-636px -1423px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-742px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Desert{background-image:url(spritesmith-main-6.png);background-position:-848px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Golden{background-image:url(spritesmith-main-6.png);background-position:-954px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Red{background-image:url(spritesmith-main-6.png);background-position:-1060px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Shade{background-image:url(spritesmith-main-6.png);background-position:-1166px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1272px -1423px;width:105px;height:105px}.Mount_Body_Penguin-White{background-image:url(spritesmith-main-6.png);background-position:-1378px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1484px -1423px;width:105px;height:105px}.Mount_Body_Phoenix-Base{background-image:url(spritesmith-main-6.png);background-position:-1590px 0;width:105px;height:105px}.Mount_Body_Rat-Base{background-image:url(spritesmith-main-6.png);background-position:-1590px -106px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1590px -212px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1590px -318px;width:105px;height:105px}.Mount_Body_Rat-Desert{background-image:url(spritesmith-main-6.png);background-position:-1590px -424px;width:105px;height:105px}.Mount_Body_Rat-Golden{background-image:url(spritesmith-main-6.png);background-position:-1590px -530px;width:105px;height:105px}.Mount_Body_Rat-Red{background-image:url(spritesmith-main-6.png);background-position:-1590px -636px;width:105px;height:105px}.Mount_Body_Rat-Shade{background-image:url(spritesmith-main-6.png);background-position:-1590px -742px;width:105px;height:105px}.Mount_Body_Rat-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1590px -848px;width:105px;height:105px}.Mount_Body_Rat-White{background-image:url(spritesmith-main-6.png);background-position:-1590px -954px;width:105px;height:105px}.Mount_Body_Rat-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1590px -1060px;width:105px;height:105px}.Mount_Body_Rock-Base{background-image:url(spritesmith-main-6.png);background-position:-1590px -1166px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1590px -1272px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1590px -1378px;width:105px;height:105px}.Mount_Body_Rock-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -1529px;width:105px;height:105px}.Mount_Body_Rock-Golden{background-image:url(spritesmith-main-6.png);background-position:-106px -1529px;width:105px;height:105px}.Mount_Body_Rock-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -1529px;width:105px;height:105px}.Mount_Body_Rock-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px -1529px;width:105px;height:105px}.Mount_Body_Rock-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-424px -1529px;width:105px;height:105px}.Mount_Body_Rock-White{background-image:url(spritesmith-main-6.png);background-position:-530px -1529px;width:105px;height:105px}.Mount_Body_Rock-Zombie{background-image:url(spritesmith-main-6.png);background-position:-636px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Base{background-image:url(spritesmith-main-6.png);background-position:-742px -1529px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-848px -1529px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-954px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Desert{background-image:url(spritesmith-main-6.png);background-position:-1060px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Golden{background-image:url(spritesmith-main-6.png);background-position:-1166px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Red{background-image:url(spritesmith-main-6.png);background-position:-1272px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Shade{background-image:url(spritesmith-main-6.png);background-position:-1378px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1484px -1529px;width:105px;height:105px}.Mount_Body_Rooster-White{background-image:url(spritesmith-main-6.png);background-position:-1590px -1529px;width:105px;height:105px}.Mount_Body_Rooster-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1696px 0;width:105px;height:105px}.Mount_Body_Seahorse-Base{background-image:url(spritesmith-main-6.png);background-position:-1696px -106px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1696px -212px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1696px -318px;width:105px;height:105px}.Mount_Body_Seahorse-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -1211px;width:105px;height:105px}.Mount_Body_Seahorse-Golden{background-image:url(spritesmith-main-6.png);background-position:-1696px -424px;width:105px;height:105px}.Mount_Body_Seahorse-Red{background-image:url(spritesmith-main-7.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Body_Seahorse-Shade{background-image:url(spritesmith-main-7.png);background-position:-848px -1113px;width:105px;height:105px}.Mount_Body_Seahorse-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Body_Seahorse-White{background-image:url(spritesmith-main-7.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Body_Seahorse-Zombie{background-image:url(spritesmith-main-7.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Body_Sheep-Base{background-image:url(spritesmith-main-7.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -795px;width:105px;height:105px}.Mount_Body_Sheep-Desert{background-image:url(spritesmith-main-7.png);background-position:-106px -795px;width:105px;height:105px}.Mount_Body_Sheep-Golden{background-image:url(spritesmith-main-7.png);background-position:-212px -795px;width:105px;height:105px}.Mount_Body_Sheep-Red{background-image:url(spritesmith-main-7.png);background-position:-318px -795px;width:105px;height:105px}.Mount_Body_Sheep-Shade{background-image:url(spritesmith-main-7.png);background-position:-954px -901px;width:105px;height:105px}.Mount_Body_Sheep-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Body_Sheep-White{background-image:url(spritesmith-main-7.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Body_Sheep-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Body_Slime-Base{background-image:url(spritesmith-main-7.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Body_Slime-Desert{background-image:url(spritesmith-main-7.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Body_Slime-Golden{background-image:url(spritesmith-main-7.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Body_Slime-Red{background-image:url(spritesmith-main-7.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Body_Slime-Shade{background-image:url(spritesmith-main-7.png);background-position:0 -1007px;width:105px;height:105px}.Mount_Body_Slime-Skeleton{background-image:url(spritesmith-main-7.png);background-position:0 -1219px;width:105px;height:105px}.Mount_Body_Slime-White{background-image:url(spritesmith-main-7.png);background-position:-106px -1219px;width:105px;height:105px}.Mount_Body_Slime-Zombie{background-image:url(spritesmith-main-7.png);background-position:-212px -1219px;width:105px;height:105px}.Mount_Body_Snake-Base{background-image:url(spritesmith-main-7.png);background-position:-318px -1219px;width:105px;height:105px}.Mount_Body_Snake-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-424px -1219px;width:105px;height:105px}.Mount_Body_Snake-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-530px -1219px;width:105px;height:105px}.Mount_Body_Snake-Desert{background-image:url(spritesmith-main-7.png);background-position:-636px -1219px;width:105px;height:105px}.Mount_Body_Snake-Golden{background-image:url(spritesmith-main-7.png);background-position:-742px -1219px;width:105px;height:105px}.Mount_Body_Snake-Red{background-image:url(spritesmith-main-7.png);background-position:-848px -1219px;width:105px;height:105px}.Mount_Body_Snake-Shade{background-image:url(spritesmith-main-7.png);background-position:-954px -1219px;width:105px;height:105px}.Mount_Body_Snake-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1166px -1431px;width:105px;height:105px}.Mount_Body_Snake-White{background-image:url(spritesmith-main-7.png);background-position:-1272px -1431px;width:105px;height:105px}.Mount_Body_Snake-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1378px -1431px;width:105px;height:105px}.Mount_Body_Spider-Base{background-image:url(spritesmith-main-7.png);background-position:-1484px -1431px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1634px 0;width:105px;height:105px}.Mount_Body_Spider-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1634px -106px;width:105px;height:105px}.Mount_Body_Spider-Desert{background-image:url(spritesmith-main-7.png);background-position:-1634px -212px;width:105px;height:105px}.Mount_Body_Spider-Golden{background-image:url(spritesmith-main-7.png);background-position:-1634px -318px;width:105px;height:105px}.Mount_Body_Spider-Red{background-image:url(spritesmith-main-7.png);background-position:-1634px -424px;width:105px;height:105px}.Mount_Body_Spider-Shade{background-image:url(spritesmith-main-7.png);background-position:-1634px -530px;width:105px;height:105px}.Mount_Body_Spider-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-636px -680px;width:105px;height:105px}.Mount_Body_Spider-White{background-image:url(spritesmith-main-7.png);background-position:-742px -680px;width:105px;height:105px}.Mount_Body_Spider-Zombie{background-image:url(spritesmith-main-7.png);background-position:-892px 0;width:105px;height:105px}.Mount_Body_TRex-Base{background-image:url(spritesmith-main-7.png);background-position:0 -544px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -136px;width:135px;height:135px}.Mount_Body_TRex-Desert{background-image:url(spritesmith-main-7.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Body_TRex-Golden{background-image:url(spritesmith-main-7.png);background-position:-272px 0;width:135px;height:135px}.Mount_Body_TRex-Red{background-image:url(spritesmith-main-7.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Body_TRex-Shade{background-image:url(spritesmith-main-7.png);background-position:0 -272px;width:135px;height:135px}.Mount_Body_TRex-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Body_TRex-White{background-image:url(spritesmith-main-7.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Body_TRex-Zombie{background-image:url(spritesmith-main-7.png);background-position:-408px 0;width:135px;height:135px}.Mount_Body_TigerCub-Base{background-image:url(spritesmith-main-7.png);background-position:-424px -795px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-530px -795px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-636px -795px;width:105px;height:105px}.Mount_Body_TigerCub-Desert{background-image:url(spritesmith-main-7.png);background-position:-742px -795px;width:105px;height:105px}.Mount_Body_TigerCub-Golden{background-image:url(spritesmith-main-7.png);background-position:-848px -795px;width:105px;height:105px}.Mount_Body_TigerCub-Red{background-image:url(spritesmith-main-7.png);background-position:-998px 0;width:105px;height:105px}.Mount_Body_TigerCub-Shade{background-image:url(spritesmith-main-7.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Body_TigerCub-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Body_TigerCub-Spooky{background-image:url(spritesmith-main-7.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Body_TigerCub-White{background-image:url(spritesmith-main-7.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Body_TigerCub-Zombie{background-image:url(spritesmith-main-7.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Body_Turkey-Base{background-image:url(spritesmith-main-7.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Body_Whale-Base{background-image:url(spritesmith-main-7.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Body_Whale-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:0 -901px;width:105px;height:105px}.Mount_Body_Whale-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-106px -901px;width:105px;height:105px}.Mount_Body_Whale-Desert{background-image:url(spritesmith-main-7.png);background-position:-212px -901px;width:105px;height:105px}.Mount_Body_Whale-Golden{background-image:url(spritesmith-main-7.png);background-position:-318px -901px;width:105px;height:105px}.Mount_Body_Whale-Red{background-image:url(spritesmith-main-7.png);background-position:-424px -901px;width:105px;height:105px}.Mount_Body_Whale-Shade{background-image:url(spritesmith-main-7.png);background-position:-530px -901px;width:105px;height:105px}.Mount_Body_Whale-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-636px -901px;width:105px;height:105px}.Mount_Body_Whale-White{background-image:url(spritesmith-main-7.png);background-position:-742px -901px;width:105px;height:105px}.Mount_Body_Whale-Zombie{background-image:url(spritesmith-main-7.png);background-position:-848px -901px;width:105px;height:105px}.Mount_Body_Wolf-Base{background-image:url(spritesmith-main-7.png);background-position:0 0;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -408px;width:135px;height:135px}.Mount_Body_Wolf-Desert{background-image:url(spritesmith-main-7.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Body_Wolf-Golden{background-image:url(spritesmith-main-7.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Body_Wolf-Red{background-image:url(spritesmith-main-7.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Body_Wolf-Shade{background-image:url(spritesmith-main-7.png);background-position:-544px 0;width:135px;height:135px}.Mount_Body_Wolf-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Body_Wolf-Spooky{background-image:url(spritesmith-main-7.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Body_Wolf-White{background-image:url(spritesmith-main-7.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Body_Wolf-Zombie{background-image:url(spritesmith-main-7.png);background-position:-136px 0;width:135px;height:135px}.Mount_Head_BearCub-Base{background-image:url(spritesmith-main-7.png);background-position:-106px -1007px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-212px -1007px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-318px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Desert{background-image:url(spritesmith-main-7.png);background-position:-424px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Golden{background-image:url(spritesmith-main-7.png);background-position:-530px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Polar{background-image:url(spritesmith-main-7.png);background-position:-636px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Red{background-image:url(spritesmith-main-7.png);background-position:-742px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Shade{background-image:url(spritesmith-main-7.png);background-position:-848px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-954px -1007px;width:105px;height:105px}.Mount_Head_BearCub-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1060px -1007px;width:105px;height:105px}.Mount_Head_BearCub-White{background-image:url(spritesmith-main-7.png);background-position:-1210px 0;width:105px;height:105px}.Mount_Head_BearCub-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1210px -106px;width:105px;height:105px}.Mount_Head_Bunny-Base{background-image:url(spritesmith-main-7.png);background-position:-1210px -212px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1210px -318px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1210px -424px;width:105px;height:105px}.Mount_Head_Bunny-Desert{background-image:url(spritesmith-main-7.png);background-position:-1210px -530px;width:105px;height:105px}.Mount_Head_Bunny-Golden{background-image:url(spritesmith-main-7.png);background-position:-1210px -636px;width:105px;height:105px}.Mount_Head_Bunny-Red{background-image:url(spritesmith-main-7.png);background-position:-1210px -742px;width:105px;height:105px}.Mount_Head_Bunny-Shade{background-image:url(spritesmith-main-7.png);background-position:-1210px -848px;width:105px;height:105px}.Mount_Head_Bunny-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1210px -954px;width:105px;height:105px}.Mount_Head_Bunny-White{background-image:url(spritesmith-main-7.png);background-position:0 -1113px;width:105px;height:105px}.Mount_Head_Bunny-Zombie{background-image:url(spritesmith-main-7.png);background-position:-106px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Base{background-image:url(spritesmith-main-7.png);background-position:-212px -1113px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-318px -1113px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-424px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Desert{background-image:url(spritesmith-main-7.png);background-position:-530px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Golden{background-image:url(spritesmith-main-7.png);background-position:-636px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Red{background-image:url(spritesmith-main-7.png);background-position:-742px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Shade{background-image:url(spritesmith-main-7.png);background-position:-530px -680px;width:105px;height:105px}.Mount_Head_Cactus-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-954px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1060px -1113px;width:105px;height:105px}.Mount_Head_Cactus-White{background-image:url(spritesmith-main-7.png);background-position:-1166px -1113px;width:105px;height:105px}.Mount_Head_Cactus-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1316px 0;width:105px;height:105px}.Mount_Head_Cheetah-Base{background-image:url(spritesmith-main-7.png);background-position:-1316px -106px;width:105px;height:105px}.Mount_Head_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1316px -212px;width:105px;height:105px}.Mount_Head_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1316px -318px;width:105px;height:105px}.Mount_Head_Cheetah-Desert{background-image:url(spritesmith-main-7.png);background-position:-1316px -424px;width:105px;height:105px}.Mount_Head_Cheetah-Golden{background-image:url(spritesmith-main-7.png);background-position:-1316px -530px;width:105px;height:105px}.Mount_Head_Cheetah-Red{background-image:url(spritesmith-main-7.png);background-position:-1316px -636px;width:105px;height:105px}.Mount_Head_Cheetah-Shade{background-image:url(spritesmith-main-7.png);background-position:-1316px -742px;width:105px;height:105px}.Mount_Head_Cheetah-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1316px -848px;width:105px;height:105px}.Mount_Head_Cheetah-White{background-image:url(spritesmith-main-7.png);background-position:-1316px -954px;width:105px;height:105px}.Mount_Head_Cheetah-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1316px -1060px;width:105px;height:105px}.Mount_Head_Cuttlefish-Base{background-image:url(spritesmith-main-7.png);background-position:-242px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-348px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-454px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-Desert{background-image:url(spritesmith-main-7.png);background-position:-560px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-Golden{background-image:url(spritesmith-main-7.png);background-position:-680px 0;width:105px;height:114px}.Mount_Head_Cuttlefish-Red{background-image:url(spritesmith-main-7.png);background-position:-680px -115px;width:105px;height:114px}.Mount_Head_Cuttlefish-Shade{background-image:url(spritesmith-main-7.png);background-position:-680px -230px;width:105px;height:114px}.Mount_Head_Cuttlefish-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-680px -345px;width:105px;height:114px}.Mount_Head_Cuttlefish-White{background-image:url(spritesmith-main-7.png);background-position:-680px -460px;width:105px;height:114px}.Mount_Head_Cuttlefish-Zombie{background-image:url(spritesmith-main-7.png);background-position:-786px 0;width:105px;height:114px}.Mount_Head_Deer-Base{background-image:url(spritesmith-main-7.png);background-position:-1060px -1219px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1166px -1219px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1272px -1219px;width:105px;height:105px}.Mount_Head_Deer-Desert{background-image:url(spritesmith-main-7.png);background-position:-1422px 0;width:105px;height:105px}.Mount_Head_Deer-Golden{background-image:url(spritesmith-main-7.png);background-position:-1422px -106px;width:105px;height:105px}.Mount_Head_Deer-Red{background-image:url(spritesmith-main-7.png);background-position:-1422px -212px;width:105px;height:105px}.Mount_Head_Deer-Shade{background-image:url(spritesmith-main-7.png);background-position:-1422px -318px;width:105px;height:105px}.Mount_Head_Deer-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1422px -424px;width:105px;height:105px}.Mount_Head_Deer-White{background-image:url(spritesmith-main-7.png);background-position:-1422px -530px;width:105px;height:105px}.Mount_Head_Deer-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1422px -636px;width:105px;height:105px}.Mount_Head_Dragon-Base{background-image:url(spritesmith-main-7.png);background-position:-1422px -742px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1422px -848px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1422px -954px;width:105px;height:105px}.Mount_Head_Dragon-Desert{background-image:url(spritesmith-main-7.png);background-position:-1422px -1060px;width:105px;height:105px}.Mount_Head_Dragon-Golden{background-image:url(spritesmith-main-7.png);background-position:-1422px -1166px;width:105px;height:105px}.Mount_Head_Dragon-Red{background-image:url(spritesmith-main-7.png);background-position:0 -1325px;width:105px;height:105px}.Mount_Head_Dragon-Shade{background-image:url(spritesmith-main-7.png);background-position:-106px -1325px;width:105px;height:105px}.Mount_Head_Dragon-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-212px -1325px;width:105px;height:105px}.Mount_Head_Dragon-Spooky{background-image:url(spritesmith-main-7.png);background-position:-318px -1325px;width:105px;height:105px}.Mount_Head_Dragon-White{background-image:url(spritesmith-main-7.png);background-position:-424px -1325px;width:105px;height:105px}.Mount_Head_Dragon-Zombie{background-image:url(spritesmith-main-7.png);background-position:-530px -1325px;width:105px;height:105px}.Mount_Head_Egg-Base{background-image:url(spritesmith-main-7.png);background-position:-636px -1325px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-742px -1325px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-848px -1325px;width:105px;height:105px}.Mount_Head_Egg-Desert{background-image:url(spritesmith-main-7.png);background-position:-954px -1325px;width:105px;height:105px}.Mount_Head_Egg-Golden{background-image:url(spritesmith-main-7.png);background-position:-1060px -1325px;width:105px;height:105px}.Mount_Head_Egg-Red{background-image:url(spritesmith-main-7.png);background-position:-1166px -1325px;width:105px;height:105px}.Mount_Head_Egg-Shade{background-image:url(spritesmith-main-7.png);background-position:-1272px -1325px;width:105px;height:105px}.Mount_Head_Egg-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1378px -1325px;width:105px;height:105px}.Mount_Head_Egg-White{background-image:url(spritesmith-main-7.png);background-position:-1528px 0;width:105px;height:105px}.Mount_Head_Egg-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1528px -106px;width:105px;height:105px}.Mount_Head_FlyingPig-Base{background-image:url(spritesmith-main-7.png);background-position:-1528px -212px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1528px -318px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1528px -424px;width:105px;height:105px}.Mount_Head_FlyingPig-Desert{background-image:url(spritesmith-main-7.png);background-position:-1528px -530px;width:105px;height:105px}.Mount_Head_FlyingPig-Golden{background-image:url(spritesmith-main-7.png);background-position:-1528px -636px;width:105px;height:105px}.Mount_Head_FlyingPig-Red{background-image:url(spritesmith-main-7.png);background-position:-1528px -742px;width:105px;height:105px}.Mount_Head_FlyingPig-Shade{background-image:url(spritesmith-main-7.png);background-position:-1528px -848px;width:105px;height:105px}.Mount_Head_FlyingPig-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1528px -954px;width:105px;height:105px}.Mount_Head_FlyingPig-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1528px -1060px;width:105px;height:105px}.Mount_Head_FlyingPig-White{background-image:url(spritesmith-main-7.png);background-position:-1528px -1166px;width:105px;height:105px}.Mount_Head_FlyingPig-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1528px -1272px;width:105px;height:105px}.Mount_Head_Fox-Base{background-image:url(spritesmith-main-7.png);background-position:0 -1431px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-106px -1431px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-212px -1431px;width:105px;height:105px}.Mount_Head_Fox-Desert{background-image:url(spritesmith-main-7.png);background-position:-318px -1431px;width:105px;height:105px}.Mount_Head_Fox-Golden{background-image:url(spritesmith-main-7.png);background-position:-424px -1431px;width:105px;height:105px}.Mount_Head_Fox-Red{background-image:url(spritesmith-main-7.png);background-position:-530px -1431px;width:105px;height:105px}.Mount_Head_Fox-Shade{background-image:url(spritesmith-main-7.png);background-position:-636px -1431px;width:105px;height:105px}.Mount_Head_Fox-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-742px -1431px;width:105px;height:105px}.Mount_Head_Fox-Spooky{background-image:url(spritesmith-main-7.png);background-position:-848px -1431px;width:105px;height:105px}.Mount_Head_Fox-White{background-image:url(spritesmith-main-7.png);background-position:-954px -1431px;width:105px;height:105px}.Mount_Head_Fox-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1060px -1431px;width:105px;height:105px}.Mount_Head_Frog-Base{background-image:url(spritesmith-main-7.png);background-position:-786px -115px;width:105px;height:114px}.Mount_Head_Frog-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-786px -230px;width:105px;height:114px}.Mount_Head_Frog-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-786px -345px;width:105px;height:114px}.Mount_Head_Frog-Desert{background-image:url(spritesmith-main-7.png);background-position:-786px -460px;width:105px;height:114px}.Mount_Head_Frog-Golden{background-image:url(spritesmith-main-7.png);background-position:0 -680px;width:105px;height:114px}.Mount_Head_Frog-Red{background-image:url(spritesmith-main-7.png);background-position:-106px -680px;width:105px;height:114px}.Mount_Head_Frog-Shade{background-image:url(spritesmith-main-7.png);background-position:-212px -680px;width:105px;height:114px}.Mount_Head_Frog-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-318px -680px;width:105px;height:114px}.Mount_Head_Frog-White{background-image:url(spritesmith-main-7.png);background-position:-424px -680px;width:105px;height:114px}.Mount_Head_Frog-Zombie{background-image:url(spritesmith-main-7.png);background-position:-136px -544px;width:105px;height:114px}.Mount_Head_Gryphon-Base{background-image:url(spritesmith-main-7.png);background-position:-1634px -636px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1634px -742px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1634px -848px;width:105px;height:105px}.Mount_Head_Gryphon-Desert{background-image:url(spritesmith-main-7.png);background-position:-1634px -954px;width:105px;height:105px}.Mount_Head_Gryphon-Golden{background-image:url(spritesmith-main-7.png);background-position:-1634px -1060px;width:105px;height:105px}.Mount_Head_Gryphon-Red{background-image:url(spritesmith-main-7.png);background-position:-1634px -1166px;width:105px;height:105px}.Mount_Head_Gryphon-RoyalPurple{background-image:url(spritesmith-main-7.png);background-position:-1634px -1272px;width:105px;height:105px}.Mount_Head_Gryphon-Shade{background-image:url(spritesmith-main-7.png);background-position:-1634px -1378px;width:105px;height:105px}.Mount_Head_Gryphon-Skeleton{background-image:url(spritesmith-main-7.png);background-position:0 -1537px;width:105px;height:105px}.Mount_Head_Gryphon-White{background-image:url(spritesmith-main-7.png);background-position:-106px -1537px;width:105px;height:105px}.Mount_Head_Gryphon-Zombie{background-image:url(spritesmith-main-7.png);background-position:-212px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Base{background-image:url(spritesmith-main-7.png);background-position:-318px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-424px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-530px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Desert{background-image:url(spritesmith-main-7.png);background-position:-636px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Golden{background-image:url(spritesmith-main-7.png);background-position:-742px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Red{background-image:url(spritesmith-main-7.png);background-position:-848px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Shade{background-image:url(spritesmith-main-7.png);background-position:-954px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1060px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-White{background-image:url(spritesmith-main-7.png);background-position:-1166px -1537px;width:105px;height:105px}.Mount_Head_Hedgehog-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1272px -1537px;width:105px;height:105px}.Mount_Head_Horse-Base{background-image:url(spritesmith-main-7.png);background-position:-1378px -1537px;width:105px;height:105px}.Mount_Head_Horse-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1484px -1537px;width:105px;height:105px}.Mount_Head_Horse-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1590px -1537px;width:105px;height:105px}.Mount_Head_Horse-Desert{background-image:url(spritesmith-main-7.png);background-position:-1740px 0;width:105px;height:105px}.Mount_Head_Horse-Golden{background-image:url(spritesmith-main-7.png);background-position:-1740px -106px;width:105px;height:105px}.Mount_Head_Horse-Red{background-image:url(spritesmith-main-7.png);background-position:-1740px -212px;width:105px;height:105px}.Mount_Head_Horse-Shade{background-image:url(spritesmith-main-7.png);background-position:-1740px -318px;width:105px;height:105px}.Mount_Head_Horse-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1740px -424px;width:105px;height:105px}.Mount_Head_Horse-White{background-image:url(spritesmith-main-8.png);background-position:-1060px -1316px;width:105px;height:105px}.Mount_Head_Horse-Zombie{background-image:url(spritesmith-main-8.png);background-position:-212px -1210px;width:105px;height:105px}.Mount_Head_JackOLantern-Base{background-image:url(spritesmith-main-8.png);background-position:-1528px -636px;width:90px;height:105px}.Mount_Head_LionCub-Base{background-image:url(spritesmith-main-8.png);background-position:-1060px -1422px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1166px -1422px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-424px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-530px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Ethereal{background-image:url(spritesmith-main-8.png);background-position:-636px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-742px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Red{background-image:url(spritesmith-main-8.png);background-position:-848px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-954px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-242px -544px;width:105px;height:110px}.Mount_Head_LionCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-1166px -1316px;width:105px;height:105px}.Mount_Head_LionCub-White{background-image:url(spritesmith-main-8.png);background-position:-1272px -1316px;width:105px;height:105px}.Mount_Head_LionCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1422px 0;width:105px;height:105px}.Mount_Head_Mammoth-Base{background-image:url(spritesmith-main-8.png);background-position:-136px -544px;width:105px;height:123px}.Mount_Head_MantisShrimp-Base{background-image:url(spritesmith-main-8.png);background-position:-348px -544px;width:108px;height:105px}.Mount_Head_Octopus-Base{background-image:url(spritesmith-main-8.png);background-position:-1272px -1422px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1378px -1422px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1528px 0;width:105px;height:105px}.Mount_Head_Octopus-Desert{background-image:url(spritesmith-main-8.png);background-position:-1528px -106px;width:105px;height:105px}.Mount_Head_Octopus-Golden{background-image:url(spritesmith-main-8.png);background-position:-1528px -212px;width:105px;height:105px}.Mount_Head_Octopus-Red{background-image:url(spritesmith-main-8.png);background-position:-1528px -318px;width:105px;height:105px}.Mount_Head_Octopus-Shade{background-image:url(spritesmith-main-8.png);background-position:-1528px -424px;width:105px;height:105px}.Mount_Head_Octopus-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1528px -530px;width:105px;height:105px}.Mount_Head_Octopus-White{background-image:url(spritesmith-main-8.png);background-position:-563px -544px;width:105px;height:105px}.Mount_Head_Octopus-Zombie{background-image:url(spritesmith-main-8.png);background-position:-680px 0;width:105px;height:105px}.Mount_Head_Orca-Base{background-image:url(spritesmith-main-8.png);background-position:-680px -106px;width:105px;height:105px}.Mount_Head_Owl-Base{background-image:url(spritesmith-main-8.png);background-position:-680px -212px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-680px -318px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-680px -424px;width:105px;height:105px}.Mount_Head_Owl-Desert{background-image:url(spritesmith-main-8.png);background-position:-680px -530px;width:105px;height:105px}.Mount_Head_Owl-Golden{background-image:url(spritesmith-main-8.png);background-position:0 -680px;width:105px;height:105px}.Mount_Head_Owl-Red{background-image:url(spritesmith-main-8.png);background-position:-106px -680px;width:105px;height:105px}.Mount_Head_Owl-Shade{background-image:url(spritesmith-main-8.png);background-position:-212px -680px;width:105px;height:105px}.Mount_Head_Owl-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-318px -680px;width:105px;height:105px}.Mount_Head_Owl-White{background-image:url(spritesmith-main-8.png);background-position:-424px -680px;width:105px;height:105px}.Mount_Head_Owl-Zombie{background-image:url(spritesmith-main-8.png);background-position:-530px -680px;width:105px;height:105px}.Mount_Head_PandaCub-Base{background-image:url(spritesmith-main-8.png);background-position:-636px -680px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-786px 0;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-786px -106px;width:105px;height:105px}.Mount_Head_PandaCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-786px -212px;width:105px;height:105px}.Mount_Head_PandaCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-786px -318px;width:105px;height:105px}.Mount_Head_PandaCub-Red{background-image:url(spritesmith-main-8.png);background-position:-786px -424px;width:105px;height:105px}.Mount_Head_PandaCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-786px -530px;width:105px;height:105px}.Mount_Head_PandaCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-786px -636px;width:105px;height:105px}.Mount_Head_PandaCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:0 -786px;width:105px;height:105px}.Mount_Head_PandaCub-White{background-image:url(spritesmith-main-8.png);background-position:-106px -786px;width:105px;height:105px}.Mount_Head_PandaCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-212px -786px;width:105px;height:105px}.Mount_Head_Parrot-Base{background-image:url(spritesmith-main-8.png);background-position:-318px -786px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-424px -786px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-530px -786px;width:105px;height:105px}.Mount_Head_Parrot-Desert{background-image:url(spritesmith-main-8.png);background-position:-636px -786px;width:105px;height:105px}.Mount_Head_Parrot-Golden{background-image:url(spritesmith-main-8.png);background-position:-742px -786px;width:105px;height:105px}.Mount_Head_Parrot-Red{background-image:url(spritesmith-main-8.png);background-position:-892px 0;width:105px;height:105px}.Mount_Head_Parrot-Shade{background-image:url(spritesmith-main-8.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Head_Parrot-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Head_Parrot-White{background-image:url(spritesmith-main-8.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Head_Parrot-Zombie{background-image:url(spritesmith-main-8.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Head_Penguin-Base{background-image:url(spritesmith-main-8.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-892px -742px;width:105px;height:105px}.Mount_Head_Penguin-Desert{background-image:url(spritesmith-main-8.png);background-position:0 -892px;width:105px;height:105px}.Mount_Head_Penguin-Golden{background-image:url(spritesmith-main-8.png);background-position:-106px -892px;width:105px;height:105px}.Mount_Head_Penguin-Red{background-image:url(spritesmith-main-8.png);background-position:-212px -892px;width:105px;height:105px}.Mount_Head_Penguin-Shade{background-image:url(spritesmith-main-8.png);background-position:-318px -892px;width:105px;height:105px}.Mount_Head_Penguin-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-424px -892px;width:105px;height:105px}.Mount_Head_Penguin-White{background-image:url(spritesmith-main-8.png);background-position:-530px -892px;width:105px;height:105px}.Mount_Head_Penguin-Zombie{background-image:url(spritesmith-main-8.png);background-position:-636px -892px;width:105px;height:105px}.Mount_Head_Phoenix-Base{background-image:url(spritesmith-main-8.png);background-position:-742px -892px;width:105px;height:105px}.Mount_Head_Rat-Base{background-image:url(spritesmith-main-8.png);background-position:-848px -892px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-998px 0;width:105px;height:105px}.Mount_Head_Rat-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Head_Rat-Desert{background-image:url(spritesmith-main-8.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Head_Rat-Golden{background-image:url(spritesmith-main-8.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Head_Rat-Red{background-image:url(spritesmith-main-8.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Head_Rat-Shade{background-image:url(spritesmith-main-8.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Head_Rat-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Head_Rat-White{background-image:url(spritesmith-main-8.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Head_Rat-Zombie{background-image:url(spritesmith-main-8.png);background-position:-998px -848px;width:105px;height:105px}.Mount_Head_Rock-Base{background-image:url(spritesmith-main-8.png);background-position:0 -998px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-106px -998px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-212px -998px;width:105px;height:105px}.Mount_Head_Rock-Desert{background-image:url(spritesmith-main-8.png);background-position:-318px -998px;width:105px;height:105px}.Mount_Head_Rock-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -998px;width:105px;height:105px}.Mount_Head_Rock-Red{background-image:url(spritesmith-main-8.png);background-position:-530px -998px;width:105px;height:105px}.Mount_Head_Rock-Shade{background-image:url(spritesmith-main-8.png);background-position:-636px -998px;width:105px;height:105px}.Mount_Head_Rock-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-742px -998px;width:105px;height:105px}.Mount_Head_Rock-White{background-image:url(spritesmith-main-8.png);background-position:-848px -998px;width:105px;height:105px}.Mount_Head_Rock-Zombie{background-image:url(spritesmith-main-8.png);background-position:-954px -998px;width:105px;height:105px}.Mount_Head_Rooster-Base{background-image:url(spritesmith-main-8.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Head_Rooster-Desert{background-image:url(spritesmith-main-8.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Head_Rooster-Golden{background-image:url(spritesmith-main-8.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Head_Rooster-Red{background-image:url(spritesmith-main-8.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Head_Rooster-Shade{background-image:url(spritesmith-main-8.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Head_Rooster-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Head_Rooster-White{background-image:url(spritesmith-main-8.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Head_Rooster-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1104px -954px;width:105px;height:105px}.Mount_Head_Seahorse-Base{background-image:url(spritesmith-main-8.png);background-position:0 -1104px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-106px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-212px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Desert{background-image:url(spritesmith-main-8.png);background-position:-318px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Red{background-image:url(spritesmith-main-8.png);background-position:-530px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Shade{background-image:url(spritesmith-main-8.png);background-position:-636px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-742px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-White{background-image:url(spritesmith-main-8.png);background-position:-848px -1104px;width:105px;height:105px}.Mount_Head_Seahorse-Zombie{background-image:url(spritesmith-main-8.png);background-position:-954px -1104px;width:105px;height:105px}.Mount_Head_Sheep-Base{background-image:url(spritesmith-main-8.png);background-position:-1060px -1104px;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1210px 0;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1210px -106px;width:105px;height:105px}.Mount_Head_Sheep-Desert{background-image:url(spritesmith-main-8.png);background-position:-1210px -212px;width:105px;height:105px}.Mount_Head_Sheep-Golden{background-image:url(spritesmith-main-8.png);background-position:-1210px -318px;width:105px;height:105px}.Mount_Head_Sheep-Red{background-image:url(spritesmith-main-8.png);background-position:-1210px -424px;width:105px;height:105px}.Mount_Head_Sheep-Shade{background-image:url(spritesmith-main-8.png);background-position:-1210px -530px;width:105px;height:105px}.Mount_Head_Sheep-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1210px -636px;width:105px;height:105px}.Mount_Head_Sheep-White{background-image:url(spritesmith-main-8.png);background-position:-1210px -742px;width:105px;height:105px}.Mount_Head_Sheep-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1210px -848px;width:105px;height:105px}.Mount_Head_Slime-Base{background-image:url(spritesmith-main-8.png);background-position:-1210px -954px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1210px -1060px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:0 -1210px;width:105px;height:105px}.Mount_Head_Slime-Desert{background-image:url(spritesmith-main-8.png);background-position:-106px -1210px;width:105px;height:105px}.Mount_Head_Slime-Golden{background-image:url(spritesmith-main-8.png);background-position:-457px -544px;width:105px;height:105px}.Mount_Head_Slime-Red{background-image:url(spritesmith-main-8.png);background-position:-318px -1210px;width:105px;height:105px}.Mount_Head_Slime-Shade{background-image:url(spritesmith-main-8.png);background-position:-424px -1210px;width:105px;height:105px}.Mount_Head_Slime-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-530px -1210px;width:105px;height:105px}.Mount_Head_Slime-White{background-image:url(spritesmith-main-8.png);background-position:-636px -1210px;width:105px;height:105px}.Mount_Head_Slime-Zombie{background-image:url(spritesmith-main-8.png);background-position:-742px -1210px;width:105px;height:105px}.Mount_Head_Snake-Base{background-image:url(spritesmith-main-8.png);background-position:-848px -1210px;width:105px;height:105px}.Mount_Head_Snake-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-954px -1210px;width:105px;height:105px}.Mount_Head_Snake-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1060px -1210px;width:105px;height:105px}.Mount_Head_Snake-Desert{background-image:url(spritesmith-main-8.png);background-position:-1166px -1210px;width:105px;height:105px}.Mount_Head_Snake-Golden{background-image:url(spritesmith-main-8.png);background-position:-1316px 0;width:105px;height:105px}.Mount_Head_Snake-Red{background-image:url(spritesmith-main-8.png);background-position:-1316px -106px;width:105px;height:105px}.Mount_Head_Snake-Shade{background-image:url(spritesmith-main-8.png);background-position:-1316px -212px;width:105px;height:105px}.Mount_Head_Snake-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1316px -318px;width:105px;height:105px}.Mount_Head_Snake-White{background-image:url(spritesmith-main-8.png);background-position:-1316px -424px;width:105px;height:105px}.Mount_Head_Snake-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1316px -530px;width:105px;height:105px}.Mount_Head_Spider-Base{background-image:url(spritesmith-main-8.png);background-position:-1316px -636px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1316px -742px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1316px -848px;width:105px;height:105px}.Mount_Head_Spider-Desert{background-image:url(spritesmith-main-8.png);background-position:-1316px -954px;width:105px;height:105px}.Mount_Head_Spider-Golden{background-image:url(spritesmith-main-8.png);background-position:-1316px -1060px;width:105px;height:105px}.Mount_Head_Spider-Red{background-image:url(spritesmith-main-8.png);background-position:-1316px -1166px;width:105px;height:105px}.Mount_Head_Spider-Shade{background-image:url(spritesmith-main-8.png);background-position:0 -1316px;width:105px;height:105px}.Mount_Head_Spider-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-106px -1316px;width:105px;height:105px}.Mount_Head_Spider-White{background-image:url(spritesmith-main-8.png);background-position:-212px -1316px;width:105px;height:105px}.Mount_Head_Spider-Zombie{background-image:url(spritesmith-main-8.png);background-position:-318px -1316px;width:105px;height:105px}.Mount_Head_TRex-Base{background-image:url(spritesmith-main-8.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:0 -272px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Head_TRex-Desert{background-image:url(spritesmith-main-8.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Head_TRex-Golden{background-image:url(spritesmith-main-8.png);background-position:-408px 0;width:135px;height:135px}.Mount_Head_TRex-Red{background-image:url(spritesmith-main-8.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Head_TRex-Shade{background-image:url(spritesmith-main-8.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Head_TRex-Skeleton{background-image:url(spritesmith-main-8.png);background-position:0 0;width:135px;height:135px}.Mount_Head_TRex-White{background-image:url(spritesmith-main-8.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Head_TRex-Zombie{background-image:url(spritesmith-main-8.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Head_TigerCub-Base{background-image:url(spritesmith-main-8.png);background-position:-1422px -106px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1422px -212px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1422px -318px;width:105px;height:105px}.Mount_Head_TigerCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-1422px -424px;width:105px;height:105px}.Mount_Head_TigerCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-1422px -530px;width:105px;height:105px}.Mount_Head_TigerCub-Red{background-image:url(spritesmith-main-8.png);background-position:-1422px -636px;width:105px;height:105px}.Mount_Head_TigerCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-1422px -742px;width:105px;height:105px}.Mount_Head_TigerCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1422px -848px;width:105px;height:105px}.Mount_Head_TigerCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-1422px -954px;width:105px;height:105px}.Mount_Head_TigerCub-White{background-image:url(spritesmith-main-8.png);background-position:-1422px -1060px;width:105px;height:105px}.Mount_Head_TigerCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1422px -1166px;width:105px;height:105px}.Mount_Head_Turkey-Base{background-image:url(spritesmith-main-8.png);background-position:-1422px -1272px;width:105px;height:105px}.Mount_Head_Whale-Base{background-image:url(spritesmith-main-8.png);background-position:0 -1422px;width:105px;height:105px}.Mount_Head_Whale-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-106px -1422px;width:105px;height:105px}.Mount_Head_Whale-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-212px -1422px;width:105px;height:105px}.Mount_Head_Whale-Desert{background-image:url(spritesmith-main-8.png);background-position:-318px -1422px;width:105px;height:105px}.Mount_Head_Whale-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -1422px;width:105px;height:105px}.Mount_Head_Whale-Red{background-image:url(spritesmith-main-8.png);background-position:-530px -1422px;width:105px;height:105px}.Mount_Head_Whale-Shade{background-image:url(spritesmith-main-8.png);background-position:-636px -1422px;width:105px;height:105px}.Mount_Head_Whale-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-742px -1422px;width:105px;height:105px}.Mount_Head_Whale-White{background-image:url(spritesmith-main-8.png);background-position:-848px -1422px;width:105px;height:105px}.Mount_Head_Whale-Zombie{background-image:url(spritesmith-main-8.png);background-position:-954px -1422px;width:105px;height:105px}.Mount_Head_Wolf-Base{background-image:url(spritesmith-main-8.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-544px 0;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Head_Wolf-Desert{background-image:url(spritesmith-main-8.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Head_Wolf-Golden{background-image:url(spritesmith-main-8.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Head_Wolf-Red{background-image:url(spritesmith-main-8.png);background-position:0 -544px;width:135px;height:135px}.Mount_Head_Wolf-Shade{background-image:url(spritesmith-main-8.png);background-position:-272px 0;width:135px;height:135px}.Mount_Head_Wolf-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Head_Wolf-Spooky{background-image:url(spritesmith-main-8.png);background-position:0 -136px;width:135px;height:135px}.Mount_Head_Wolf-White{background-image:url(spritesmith-main-8.png);background-position:-136px 0;width:135px;height:135px}.Mount_Head_Wolf-Zombie{background-image:url(spritesmith-main-8.png);background-position:0 -408px;width:135px;height:135px}.Pet-BearCub-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -100px;width:81px;height:99px}.Pet-BearCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1528px -842px;width:81px;height:99px}.Pet-BearCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1528px -942px;width:81px;height:99px}.Pet-BearCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-1528px -1042px;width:81px;height:99px}.Pet-BearCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-1528px -1142px;width:81px;height:99px}.Pet-BearCub-Polar{background-image:url(spritesmith-main-8.png);background-position:-1528px -1242px;width:81px;height:99px}.Pet-BearCub-Red{background-image:url(spritesmith-main-8.png);background-position:-1528px -1342px;width:81px;height:99px}.Pet-BearCub-Shade{background-image:url(spritesmith-main-8.png);background-position:0 -1528px;width:81px;height:99px}.Pet-BearCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-82px -1528px;width:81px;height:99px}.Pet-BearCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-164px -1528px;width:81px;height:99px}.Pet-BearCub-White{background-image:url(spritesmith-main-8.png);background-position:-246px -1528px;width:81px;height:99px}.Pet-BearCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-328px -1528px;width:81px;height:99px}.Pet-Bunny-Base{background-image:url(spritesmith-main-8.png);background-position:-410px -1528px;width:81px;height:99px}.Pet-Bunny-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-492px -1528px;width:81px;height:99px}.Pet-Bunny-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-574px -1528px;width:81px;height:99px}.Pet-Bunny-Desert{background-image:url(spritesmith-main-8.png);background-position:-656px -1528px;width:81px;height:99px}.Pet-Bunny-Golden{background-image:url(spritesmith-main-8.png);background-position:-738px -1528px;width:81px;height:99px}.Pet-Bunny-Red{background-image:url(spritesmith-main-8.png);background-position:-820px -1528px;width:81px;height:99px}.Pet-Bunny-Shade{background-image:url(spritesmith-main-8.png);background-position:-902px -1528px;width:81px;height:99px}.Pet-Bunny-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-984px -1528px;width:81px;height:99px}.Pet-Bunny-White{background-image:url(spritesmith-main-8.png);background-position:-1066px -1528px;width:81px;height:99px}.Pet-Bunny-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1148px -1528px;width:81px;height:99px}.Pet-Cactus-Base{background-image:url(spritesmith-main-8.png);background-position:-1230px -1528px;width:81px;height:99px}.Pet-Cactus-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1312px -1528px;width:81px;height:99px}.Pet-Cactus-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1394px -1528px;width:81px;height:99px}.Pet-Cactus-Desert{background-image:url(spritesmith-main-8.png);background-position:-1476px -1528px;width:81px;height:99px}.Pet-Cactus-Golden{background-image:url(spritesmith-main-8.png);background-position:-1634px 0;width:81px;height:99px}.Pet-Cactus-Red{background-image:url(spritesmith-main-8.png);background-position:-1716px -1300px;width:81px;height:99px}.Pet-Cactus-Shade{background-image:url(spritesmith-main-8.png);background-position:-1634px -200px;width:81px;height:99px}.Pet-Cactus-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1634px -300px;width:81px;height:99px}.Pet-Cactus-Spooky{background-image:url(spritesmith-main-8.png);background-position:-1634px -400px;width:81px;height:99px}.Pet-Cactus-White{background-image:url(spritesmith-main-8.png);background-position:-1634px -500px;width:81px;height:99px}.Pet-Cactus-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1634px -600px;width:81px;height:99px}.Pet-Cheetah-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -700px;width:81px;height:99px}.Pet-Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1634px -800px;width:81px;height:99px}.Pet-Cheetah-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1634px -900px;width:81px;height:99px}.Pet-Cheetah-Desert{background-image:url(spritesmith-main-8.png);background-position:-1634px -1000px;width:81px;height:99px}.Pet-Cheetah-Golden{background-image:url(spritesmith-main-8.png);background-position:-1634px -1100px;width:81px;height:99px}.Pet-Cheetah-Red{background-image:url(spritesmith-main-8.png);background-position:-1634px -1200px;width:81px;height:99px}.Pet-Cheetah-Shade{background-image:url(spritesmith-main-8.png);background-position:-1634px -1300px;width:81px;height:99px}.Pet-Cheetah-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1634px -1400px;width:81px;height:99px}.Pet-Cheetah-White{background-image:url(spritesmith-main-8.png);background-position:-1634px -1500px;width:81px;height:99px}.Pet-Cheetah-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1716px 0;width:81px;height:99px}.Pet-Cuttlefish-Base{background-image:url(spritesmith-main-8.png);background-position:-1716px -100px;width:81px;height:99px}.Pet-Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1716px -200px;width:81px;height:99px}.Pet-Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1716px -300px;width:81px;height:99px}.Pet-Cuttlefish-Desert{background-image:url(spritesmith-main-8.png);background-position:-1716px -400px;width:81px;height:99px}.Pet-Cuttlefish-Golden{background-image:url(spritesmith-main-8.png);background-position:-1716px -500px;width:81px;height:99px}.Pet-Cuttlefish-Red{background-image:url(spritesmith-main-8.png);background-position:-1716px -600px;width:81px;height:99px}.Pet-Cuttlefish-Shade{background-image:url(spritesmith-main-8.png);background-position:-1716px -700px;width:81px;height:99px}.Pet-Cuttlefish-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1716px -800px;width:81px;height:99px}.Pet-Cuttlefish-White{background-image:url(spritesmith-main-8.png);background-position:-1716px -900px;width:81px;height:99px}.Pet-Cuttlefish-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1716px -1000px;width:81px;height:99px}.Pet-Deer-Base{background-image:url(spritesmith-main-8.png);background-position:-1716px -1100px;width:81px;height:99px}.Pet-Deer-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1716px -1200px;width:81px;height:99px}.Pet-Deer-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1528px -742px;width:81px;height:99px}.Pet-Deer-Desert{background-image:url(spritesmith-main-9.png);background-position:-82px 0;width:81px;height:99px}.Pet-Deer-Golden{background-image:url(spritesmith-main-9.png);background-position:-574px -1000px;width:81px;height:99px}.Pet-Deer-Red{background-image:url(spritesmith-main-9.png);background-position:-164px 0;width:81px;height:99px}.Pet-Deer-Shade{background-image:url(spritesmith-main-9.png);background-position:0 -100px;width:81px;height:99px}.Pet-Deer-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-82px -100px;width:81px;height:99px}.Pet-Deer-White{background-image:url(spritesmith-main-9.png);background-position:-164px -100px;width:81px;height:99px}.Pet-Deer-Zombie{background-image:url(spritesmith-main-9.png);background-position:-246px 0;width:81px;height:99px}.Pet-Dragon-Base{background-image:url(spritesmith-main-9.png);background-position:-246px -100px;width:81px;height:99px}.Pet-Dragon-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:0 -200px;width:81px;height:99px}.Pet-Dragon-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-82px -200px;width:81px;height:99px}.Pet-Dragon-Desert{background-image:url(spritesmith-main-9.png);background-position:-164px -200px;width:81px;height:99px}.Pet-Dragon-Golden{background-image:url(spritesmith-main-9.png);background-position:-246px -200px;width:81px;height:99px}.Pet-Dragon-Hydra{background-image:url(spritesmith-main-9.png);background-position:-328px 0;width:81px;height:99px}.Pet-Dragon-Red{background-image:url(spritesmith-main-9.png);background-position:-328px -100px;width:81px;height:99px}.Pet-Dragon-Shade{background-image:url(spritesmith-main-9.png);background-position:-328px -200px;width:81px;height:99px}.Pet-Dragon-Skeleton{background-image:url(spritesmith-main-9.png);background-position:0 -300px;width:81px;height:99px}.Pet-Dragon-Spooky{background-image:url(spritesmith-main-9.png);background-position:-82px -300px;width:81px;height:99px}.Pet-Dragon-White{background-image:url(spritesmith-main-9.png);background-position:-164px -300px;width:81px;height:99px}.Pet-Dragon-Zombie{background-image:url(spritesmith-main-9.png);background-position:-246px -300px;width:81px;height:99px}.Pet-Egg-Base{background-image:url(spritesmith-main-9.png);background-position:-328px -300px;width:81px;height:99px}.Pet-Egg-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-410px 0;width:81px;height:99px}.Pet-Egg-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-410px -100px;width:81px;height:99px}.Pet-Egg-Desert{background-image:url(spritesmith-main-9.png);background-position:-410px -200px;width:81px;height:99px}.Pet-Egg-Golden{background-image:url(spritesmith-main-9.png);background-position:-410px -300px;width:81px;height:99px}.Pet-Egg-Red{background-image:url(spritesmith-main-9.png);background-position:-492px 0;width:81px;height:99px}.Pet-Egg-Shade{background-image:url(spritesmith-main-9.png);background-position:-492px -100px;width:81px;height:99px}.Pet-Egg-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-492px -200px;width:81px;height:99px}.Pet-Egg-White{background-image:url(spritesmith-main-9.png);background-position:-492px -300px;width:81px;height:99px}.Pet-Egg-Zombie{background-image:url(spritesmith-main-9.png);background-position:0 -400px;width:81px;height:99px}.Pet-FlyingPig-Base{background-image:url(spritesmith-main-9.png);background-position:-82px -400px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-164px -400px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-246px -400px;width:81px;height:99px}.Pet-FlyingPig-Desert{background-image:url(spritesmith-main-9.png);background-position:-328px -400px;width:81px;height:99px}.Pet-FlyingPig-Golden{background-image:url(spritesmith-main-9.png);background-position:-410px -400px;width:81px;height:99px}.Pet-FlyingPig-Red{background-image:url(spritesmith-main-9.png);background-position:-492px -400px;width:81px;height:99px}.Pet-FlyingPig-Shade{background-image:url(spritesmith-main-9.png);background-position:-574px 0;width:81px;height:99px}.Pet-FlyingPig-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-574px -100px;width:81px;height:99px}.Pet-FlyingPig-Spooky{background-image:url(spritesmith-main-9.png);background-position:-574px -200px;width:81px;height:99px}.Pet-FlyingPig-White{background-image:url(spritesmith-main-9.png);background-position:-574px -300px;width:81px;height:99px}.Pet-FlyingPig-Zombie{background-image:url(spritesmith-main-9.png);background-position:-574px -400px;width:81px;height:99px}.Pet-Fox-Base{background-image:url(spritesmith-main-9.png);background-position:0 -500px;width:81px;height:99px}.Pet-Fox-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-82px -500px;width:81px;height:99px}.Pet-Fox-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-164px -500px;width:81px;height:99px}.Pet-Fox-Desert{background-image:url(spritesmith-main-9.png);background-position:-246px -500px;width:81px;height:99px}.Pet-Fox-Golden{background-image:url(spritesmith-main-9.png);background-position:-328px -500px;width:81px;height:99px}.Pet-Fox-Red{background-image:url(spritesmith-main-9.png);background-position:-410px -500px;width:81px;height:99px}.Pet-Fox-Shade{background-image:url(spritesmith-main-9.png);background-position:-492px -500px;width:81px;height:99px}.Pet-Fox-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-574px -500px;width:81px;height:99px}.Pet-Fox-Spooky{background-image:url(spritesmith-main-9.png);background-position:-656px 0;width:81px;height:99px}.Pet-Fox-White{background-image:url(spritesmith-main-9.png);background-position:-656px -100px;width:81px;height:99px}.Pet-Fox-Zombie{background-image:url(spritesmith-main-9.png);background-position:-656px -200px;width:81px;height:99px}.Pet-Frog-Base{background-image:url(spritesmith-main-9.png);background-position:-656px -300px;width:81px;height:99px}.Pet-Frog-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-656px -400px;width:81px;height:99px}.Pet-Frog-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-656px -500px;width:81px;height:99px}.Pet-Frog-Desert{background-image:url(spritesmith-main-9.png);background-position:0 -600px;width:81px;height:99px}.Pet-Frog-Golden{background-image:url(spritesmith-main-9.png);background-position:-82px -600px;width:81px;height:99px}.Pet-Frog-Red{background-image:url(spritesmith-main-9.png);background-position:-164px -600px;width:81px;height:99px}.Pet-Frog-Shade{background-image:url(spritesmith-main-9.png);background-position:-246px -600px;width:81px;height:99px}.Pet-Frog-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-328px -600px;width:81px;height:99px}.Pet-Frog-White{background-image:url(spritesmith-main-9.png);background-position:-410px -600px;width:81px;height:99px}.Pet-Frog-Zombie{background-image:url(spritesmith-main-9.png);background-position:-492px -600px;width:81px;height:99px}.Pet-Gryphon-Base{background-image:url(spritesmith-main-9.png);background-position:-574px -600px;width:81px;height:99px}.Pet-Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-656px -600px;width:81px;height:99px}.Pet-Gryphon-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-738px 0;width:81px;height:99px}.Pet-Gryphon-Desert{background-image:url(spritesmith-main-9.png);background-position:-738px -100px;width:81px;height:99px}.Pet-Gryphon-Golden{background-image:url(spritesmith-main-9.png);background-position:-738px -200px;width:81px;height:99px}.Pet-Gryphon-Red{background-image:url(spritesmith-main-9.png);background-position:-738px -300px;width:81px;height:99px}.Pet-Gryphon-Shade{background-image:url(spritesmith-main-9.png);background-position:-738px -400px;width:81px;height:99px}.Pet-Gryphon-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-738px -500px;width:81px;height:99px}.Pet-Gryphon-White{background-image:url(spritesmith-main-9.png);background-position:-738px -600px;width:81px;height:99px}.Pet-Gryphon-Zombie{background-image:url(spritesmith-main-9.png);background-position:0 -700px;width:81px;height:99px}.Pet-Hedgehog-Base{background-image:url(spritesmith-main-9.png);background-position:-82px -700px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-164px -700px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-246px -700px;width:81px;height:99px}.Pet-Hedgehog-Desert{background-image:url(spritesmith-main-9.png);background-position:-328px -700px;width:81px;height:99px}.Pet-Hedgehog-Golden{background-image:url(spritesmith-main-9.png);background-position:-410px -700px;width:81px;height:99px}.Pet-Hedgehog-Red{background-image:url(spritesmith-main-9.png);background-position:-492px -700px;width:81px;height:99px}.Pet-Hedgehog-Shade{background-image:url(spritesmith-main-9.png);background-position:-574px -700px;width:81px;height:99px}.Pet-Hedgehog-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-656px -700px;width:81px;height:99px}.Pet-Hedgehog-White{background-image:url(spritesmith-main-9.png);background-position:-738px -700px;width:81px;height:99px}.Pet-Hedgehog-Zombie{background-image:url(spritesmith-main-9.png);background-position:-820px 0;width:81px;height:99px}.Pet-Horse-Base{background-image:url(spritesmith-main-9.png);background-position:-820px -100px;width:81px;height:99px}.Pet-Horse-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-820px -200px;width:81px;height:99px}.Pet-Horse-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-820px -300px;width:81px;height:99px}.Pet-Horse-Desert{background-image:url(spritesmith-main-9.png);background-position:-820px -400px;width:81px;height:99px}.Pet-Horse-Golden{background-image:url(spritesmith-main-9.png);background-position:-820px -500px;width:81px;height:99px}.Pet-Horse-Red{background-image:url(spritesmith-main-9.png);background-position:-820px -600px;width:81px;height:99px}.Pet-Horse-Shade{background-image:url(spritesmith-main-9.png);background-position:-820px -700px;width:81px;height:99px}.Pet-Horse-Skeleton{background-image:url(spritesmith-main-9.png);background-position:0 -800px;width:81px;height:99px}.Pet-Horse-White{background-image:url(spritesmith-main-9.png);background-position:-82px -800px;width:81px;height:99px}.Pet-Horse-Zombie{background-image:url(spritesmith-main-9.png);background-position:-164px -800px;width:81px;height:99px}.Pet-JackOLantern-Base{background-image:url(spritesmith-main-9.png);background-position:-246px -800px;width:81px;height:99px}.Pet-LionCub-Base{background-image:url(spritesmith-main-9.png);background-position:-328px -800px;width:81px;height:99px}.Pet-LionCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-410px -800px;width:81px;height:99px}.Pet-LionCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-492px -800px;width:81px;height:99px}.Pet-LionCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-574px -800px;width:81px;height:99px}.Pet-LionCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-656px -800px;width:81px;height:99px}.Pet-LionCub-Red{background-image:url(spritesmith-main-9.png);background-position:-738px -800px;width:81px;height:99px}.Pet-LionCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-820px -800px;width:81px;height:99px}.Pet-LionCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-902px 0;width:81px;height:99px}.Pet-LionCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-902px -100px;width:81px;height:99px}.Pet-LionCub-White{background-image:url(spritesmith-main-9.png);background-position:-902px -200px;width:81px;height:99px}.Pet-LionCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-902px -300px;width:81px;height:99px}.Pet-Mammoth-Base{background-image:url(spritesmith-main-9.png);background-position:-902px -400px;width:81px;height:99px}.Pet-MantisShrimp-Base{background-image:url(spritesmith-main-9.png);background-position:-902px -500px;width:81px;height:99px}.Pet-Octopus-Base{background-image:url(spritesmith-main-9.png);background-position:-902px -600px;width:81px;height:99px}.Pet-Octopus-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-902px -700px;width:81px;height:99px}.Pet-Octopus-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-902px -800px;width:81px;height:99px}.Pet-Octopus-Desert{background-image:url(spritesmith-main-9.png);background-position:-984px 0;width:81px;height:99px}.Pet-Octopus-Golden{background-image:url(spritesmith-main-9.png);background-position:-984px -100px;width:81px;height:99px}.Pet-Octopus-Red{background-image:url(spritesmith-main-9.png);background-position:-984px -200px;width:81px;height:99px}.Pet-Octopus-Shade{background-image:url(spritesmith-main-9.png);background-position:-984px -300px;width:81px;height:99px}.Pet-Octopus-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-984px -400px;width:81px;height:99px}.Pet-Octopus-White{background-image:url(spritesmith-main-9.png);background-position:-984px -500px;width:81px;height:99px}.Pet-Octopus-Zombie{background-image:url(spritesmith-main-9.png);background-position:-984px -600px;width:81px;height:99px}.Pet-Owl-Base{background-image:url(spritesmith-main-9.png);background-position:-984px -700px;width:81px;height:99px}.Pet-Owl-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-984px -800px;width:81px;height:99px}.Pet-Owl-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:0 -900px;width:81px;height:99px}.Pet-Owl-Desert{background-image:url(spritesmith-main-9.png);background-position:-82px -900px;width:81px;height:99px}.Pet-Owl-Golden{background-image:url(spritesmith-main-9.png);background-position:-164px -900px;width:81px;height:99px}.Pet-Owl-Red{background-image:url(spritesmith-main-9.png);background-position:-246px -900px;width:81px;height:99px}.Pet-Owl-Shade{background-image:url(spritesmith-main-9.png);background-position:-328px -900px;width:81px;height:99px}.Pet-Owl-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-410px -900px;width:81px;height:99px}.Pet-Owl-White{background-image:url(spritesmith-main-9.png);background-position:-492px -900px;width:81px;height:99px}.Pet-Owl-Zombie{background-image:url(spritesmith-main-9.png);background-position:-574px -900px;width:81px;height:99px}.Pet-PandaCub-Base{background-image:url(spritesmith-main-9.png);background-position:-656px -900px;width:81px;height:99px}.Pet-PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-738px -900px;width:81px;height:99px}.Pet-PandaCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-820px -900px;width:81px;height:99px}.Pet-PandaCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-902px -900px;width:81px;height:99px}.Pet-PandaCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-984px -900px;width:81px;height:99px}.Pet-PandaCub-Red{background-image:url(spritesmith-main-9.png);background-position:-1066px 0;width:81px;height:99px}.Pet-PandaCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-1066px -100px;width:81px;height:99px}.Pet-PandaCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1066px -200px;width:81px;height:99px}.Pet-PandaCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-1066px -300px;width:81px;height:99px}.Pet-PandaCub-White{background-image:url(spritesmith-main-9.png);background-position:-1066px -400px;width:81px;height:99px}.Pet-PandaCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1066px -500px;width:81px;height:99px}.Pet-Parrot-Base{background-image:url(spritesmith-main-9.png);background-position:-1066px -600px;width:81px;height:99px}.Pet-Parrot-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1066px -700px;width:81px;height:99px}.Pet-Parrot-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1066px -800px;width:81px;height:99px}.Pet-Parrot-Desert{background-image:url(spritesmith-main-9.png);background-position:-1066px -900px;width:81px;height:99px}.Pet-Parrot-Golden{background-image:url(spritesmith-main-9.png);background-position:0 -1000px;width:81px;height:99px}.Pet-Parrot-Red{background-image:url(spritesmith-main-9.png);background-position:-82px -1000px;width:81px;height:99px}.Pet-Parrot-Shade{background-image:url(spritesmith-main-9.png);background-position:-164px -1000px;width:81px;height:99px}.Pet-Parrot-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-246px -1000px;width:81px;height:99px}.Pet-Parrot-White{background-image:url(spritesmith-main-9.png);background-position:-328px -1000px;width:81px;height:99px}.Pet-Parrot-Zombie{background-image:url(spritesmith-main-9.png);background-position:-410px -1000px;width:81px;height:99px}.Pet-Penguin-Base{background-image:url(spritesmith-main-9.png);background-position:-492px -1000px;width:81px;height:99px}.Pet-Penguin-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:0 0;width:81px;height:99px}.Pet-Penguin-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-656px -1000px;width:81px;height:99px}.Pet-Penguin-Desert{background-image:url(spritesmith-main-9.png);background-position:-738px -1000px;width:81px;height:99px}.Pet-Penguin-Golden{background-image:url(spritesmith-main-9.png);background-position:-820px -1000px;width:81px;height:99px}.Pet-Penguin-Red{background-image:url(spritesmith-main-9.png);background-position:-902px -1000px;width:81px;height:99px}.Pet-Penguin-Shade{background-image:url(spritesmith-main-9.png);background-position:-984px -1000px;width:81px;height:99px}.Pet-Penguin-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1066px -1000px;width:81px;height:99px}.Pet-Penguin-White{background-image:url(spritesmith-main-9.png);background-position:-1148px 0;width:81px;height:99px}.Pet-Penguin-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1148px -100px;width:81px;height:99px}.Pet-Phoenix-Base{background-image:url(spritesmith-main-9.png);background-position:-1148px -200px;width:81px;height:99px}.Pet-Rat-Base{background-image:url(spritesmith-main-9.png);background-position:-1148px -300px;width:81px;height:99px}.Pet-Rat-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1148px -400px;width:81px;height:99px}.Pet-Rat-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1148px -500px;width:81px;height:99px}.Pet-Rat-Desert{background-image:url(spritesmith-main-9.png);background-position:-1148px -600px;width:81px;height:99px}.Pet-Rat-Golden{background-image:url(spritesmith-main-9.png);background-position:-1148px -700px;width:81px;height:99px}.Pet-Rat-Red{background-image:url(spritesmith-main-9.png);background-position:-1148px -800px;width:81px;height:99px}.Pet-Rat-Shade{background-image:url(spritesmith-main-9.png);background-position:-1148px -900px;width:81px;height:99px}.Pet-Rat-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1148px -1000px;width:81px;height:99px}.Pet-Rat-White{background-image:url(spritesmith-main-9.png);background-position:0 -1100px;width:81px;height:99px}.Pet-Rat-Zombie{background-image:url(spritesmith-main-9.png);background-position:-82px -1100px;width:81px;height:99px}.Pet-Rock-Base{background-image:url(spritesmith-main-9.png);background-position:-164px -1100px;width:81px;height:99px}.Pet-Rock-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-246px -1100px;width:81px;height:99px}.Pet-Rock-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-328px -1100px;width:81px;height:99px}.Pet-Rock-Desert{background-image:url(spritesmith-main-9.png);background-position:-410px -1100px;width:81px;height:99px}.Pet-Rock-Golden{background-image:url(spritesmith-main-9.png);background-position:-492px -1100px;width:81px;height:99px}.Pet-Rock-Red{background-image:url(spritesmith-main-9.png);background-position:-574px -1100px;width:81px;height:99px}.Pet-Rock-Shade{background-image:url(spritesmith-main-9.png);background-position:-656px -1100px;width:81px;height:99px}.Pet-Rock-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-738px -1100px;width:81px;height:99px}.Pet-Rock-White{background-image:url(spritesmith-main-9.png);background-position:-820px -1100px;width:81px;height:99px}.Pet-Rock-Zombie{background-image:url(spritesmith-main-9.png);background-position:-902px -1100px;width:81px;height:99px}.Pet-Rooster-Base{background-image:url(spritesmith-main-9.png);background-position:-984px -1100px;width:81px;height:99px}.Pet-Rooster-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1066px -1100px;width:81px;height:99px}.Pet-Rooster-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1148px -1100px;width:81px;height:99px}.Pet-Rooster-Desert{background-image:url(spritesmith-main-9.png);background-position:-1230px 0;width:81px;height:99px}.Pet-Rooster-Golden{background-image:url(spritesmith-main-9.png);background-position:-1230px -100px;width:81px;height:99px}.Pet-Rooster-Red{background-image:url(spritesmith-main-9.png);background-position:-1230px -200px;width:81px;height:99px}.Pet-Rooster-Shade{background-image:url(spritesmith-main-9.png);background-position:-1230px -300px;width:81px;height:99px}.Pet-Rooster-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1230px -400px;width:81px;height:99px}.Pet-Rooster-White{background-image:url(spritesmith-main-9.png);background-position:-1230px -500px;width:81px;height:99px}.Pet-Rooster-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1230px -600px;width:81px;height:99px}.Pet-Seahorse-Base{background-image:url(spritesmith-main-9.png);background-position:-1230px -700px;width:81px;height:99px}.Pet-Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1230px -800px;width:81px;height:99px}.Pet-Seahorse-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1230px -900px;width:81px;height:99px}.Pet-Seahorse-Desert{background-image:url(spritesmith-main-9.png);background-position:-1230px -1000px;width:81px;height:99px}.Pet-Seahorse-Golden{background-image:url(spritesmith-main-9.png);background-position:-1230px -1100px;width:81px;height:99px}.Pet-Seahorse-Red{background-image:url(spritesmith-main-9.png);background-position:0 -1200px;width:81px;height:99px}.Pet-Seahorse-Shade{background-image:url(spritesmith-main-9.png);background-position:-82px -1200px;width:81px;height:99px}.Pet-Seahorse-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-164px -1200px;width:81px;height:99px}.Pet-Seahorse-White{background-image:url(spritesmith-main-9.png);background-position:-246px -1200px;width:81px;height:99px}.Pet-Seahorse-Zombie{background-image:url(spritesmith-main-9.png);background-position:-328px -1200px;width:81px;height:99px}.Pet-Sheep-Base{background-image:url(spritesmith-main-9.png);background-position:-410px -1200px;width:81px;height:99px}.Pet-Sheep-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-492px -1200px;width:81px;height:99px}.Pet-Sheep-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-574px -1200px;width:81px;height:99px}.Pet-Sheep-Desert{background-image:url(spritesmith-main-9.png);background-position:-656px -1200px;width:81px;height:99px}.Pet-Sheep-Golden{background-image:url(spritesmith-main-9.png);background-position:-738px -1200px;width:81px;height:99px}.Pet-Sheep-Red{background-image:url(spritesmith-main-9.png);background-position:-820px -1200px;width:81px;height:99px}.Pet-Sheep-Shade{background-image:url(spritesmith-main-9.png);background-position:-902px -1200px;width:81px;height:99px}.Pet-Sheep-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-984px -1200px;width:81px;height:99px}.Pet-Sheep-White{background-image:url(spritesmith-main-9.png);background-position:-1066px -1200px;width:81px;height:99px}.Pet-Sheep-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1148px -1200px;width:81px;height:99px}.Pet-Slime-Base{background-image:url(spritesmith-main-9.png);background-position:-1230px -1200px;width:81px;height:99px}.Pet-Slime-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1312px 0;width:81px;height:99px}.Pet-Slime-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1312px -100px;width:81px;height:99px}.Pet-Slime-Desert{background-image:url(spritesmith-main-9.png);background-position:-1312px -200px;width:81px;height:99px}.Pet-Slime-Golden{background-image:url(spritesmith-main-9.png);background-position:-1312px -300px;width:81px;height:99px}.Pet-Slime-Red{background-image:url(spritesmith-main-9.png);background-position:-1312px -400px;width:81px;height:99px}.Pet-Slime-Shade{background-image:url(spritesmith-main-9.png);background-position:-1312px -500px;width:81px;height:99px}.Pet-Slime-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1312px -600px;width:81px;height:99px}.Pet-Slime-White{background-image:url(spritesmith-main-9.png);background-position:-1312px -700px;width:81px;height:99px}.Pet-Slime-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1312px -800px;width:81px;height:99px}.Pet-Snake-Base{background-image:url(spritesmith-main-9.png);background-position:-1312px -900px;width:81px;height:99px}.Pet-Snake-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1312px -1000px;width:81px;height:99px}.Pet-Snake-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1312px -1100px;width:81px;height:99px}.Pet-Snake-Desert{background-image:url(spritesmith-main-9.png);background-position:-1312px -1200px;width:81px;height:99px}.Pet-Snake-Golden{background-image:url(spritesmith-main-9.png);background-position:-1394px 0;width:81px;height:99px}.Pet-Snake-Red{background-image:url(spritesmith-main-9.png);background-position:-1394px -100px;width:81px;height:99px}.Pet-Snake-Shade{background-image:url(spritesmith-main-9.png);background-position:-1394px -200px;width:81px;height:99px}.Pet-Snake-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1394px -300px;width:81px;height:99px}.Pet-Snake-White{background-image:url(spritesmith-main-9.png);background-position:-1394px -400px;width:81px;height:99px}.Pet-Snake-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1394px -500px;width:81px;height:99px}.Pet-Spider-Base{background-image:url(spritesmith-main-9.png);background-position:-1394px -600px;width:81px;height:99px}.Pet-Spider-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1394px -700px;width:81px;height:99px}.Pet-Spider-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1394px -800px;width:81px;height:99px}.Pet-Spider-Desert{background-image:url(spritesmith-main-9.png);background-position:-1394px -900px;width:81px;height:99px}.Pet-Spider-Golden{background-image:url(spritesmith-main-9.png);background-position:-1394px -1000px;width:81px;height:99px}.Pet-Spider-Red{background-image:url(spritesmith-main-9.png);background-position:-1394px -1100px;width:81px;height:99px}.Pet-Spider-Shade{background-image:url(spritesmith-main-9.png);background-position:-1394px -1200px;width:81px;height:99px}.Pet-Spider-Skeleton{background-image:url(spritesmith-main-9.png);background-position:0 -1300px;width:81px;height:99px}.Pet-Spider-White{background-image:url(spritesmith-main-9.png);background-position:-82px -1300px;width:81px;height:99px}.Pet-Spider-Zombie{background-image:url(spritesmith-main-9.png);background-position:-164px -1300px;width:81px;height:99px}.Pet-TRex-Base{background-image:url(spritesmith-main-9.png);background-position:-246px -1300px;width:81px;height:99px}.Pet-TRex-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-328px -1300px;width:81px;height:99px}.Pet-TRex-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-410px -1300px;width:81px;height:99px}.Pet-TRex-Desert{background-image:url(spritesmith-main-9.png);background-position:-492px -1300px;width:81px;height:99px}.Pet-TRex-Golden{background-image:url(spritesmith-main-9.png);background-position:-574px -1300px;width:81px;height:99px}.Pet-TRex-Red{background-image:url(spritesmith-main-9.png);background-position:-656px -1300px;width:81px;height:99px}.Pet-TRex-Shade{background-image:url(spritesmith-main-9.png);background-position:-738px -1300px;width:81px;height:99px}.Pet-TRex-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-820px -1300px;width:81px;height:99px}.Pet-TRex-White{background-image:url(spritesmith-main-9.png);background-position:-902px -1300px;width:81px;height:99px}.Pet-TRex-Zombie{background-image:url(spritesmith-main-9.png);background-position:-984px -1300px;width:81px;height:99px}.Pet-Tiger-Veteran{background-image:url(spritesmith-main-9.png);background-position:-1066px -1300px;width:81px;height:99px}.Pet-TigerCub-Base{background-image:url(spritesmith-main-9.png);background-position:-1148px -1300px;width:81px;height:99px}.Pet-TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1230px -1300px;width:81px;height:99px}.Pet-TigerCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1312px -1300px;width:81px;height:99px}.Pet-TigerCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-1394px -1300px;width:81px;height:99px}.Pet-TigerCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-1476px 0;width:81px;height:99px}.Pet-TigerCub-Red{background-image:url(spritesmith-main-9.png);background-position:-1476px -100px;width:81px;height:99px}.Pet-TigerCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-1476px -200px;width:81px;height:99px}.Pet-TigerCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1476px -300px;width:81px;height:99px}.Pet-TigerCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-1476px -400px;width:81px;height:99px}.Pet-TigerCub-White{background-image:url(spritesmith-main-9.png);background-position:-1476px -500px;width:81px;height:99px}.Pet-TigerCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1476px -600px;width:81px;height:99px}.Pet-Turkey-Base{background-image:url(spritesmith-main-9.png);background-position:-1476px -700px;width:81px;height:99px}.Pet-Turkey-Gilded{background-image:url(spritesmith-main-9.png);background-position:-1476px -800px;width:81px;height:99px}.Pet-Whale-Base{background-image:url(spritesmith-main-9.png);background-position:-1476px -900px;width:81px;height:99px}.Pet-Whale-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1476px -1000px;width:81px;height:99px}.Pet-Whale-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1476px -1100px;width:81px;height:99px}.Pet-Whale-Desert{background-image:url(spritesmith-main-9.png);background-position:-1476px -1200px;width:81px;height:99px}.Pet-Whale-Golden{background-image:url(spritesmith-main-9.png);background-position:-1476px -1300px;width:81px;height:99px}.Pet-Whale-Red{background-image:url(spritesmith-main-9.png);background-position:0 -1400px;width:81px;height:99px}.Pet-Whale-Shade{background-image:url(spritesmith-main-9.png);background-position:-82px -1400px;width:81px;height:99px}.Pet-Whale-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-164px -1400px;width:81px;height:99px}.Pet-Whale-White{background-image:url(spritesmith-main-9.png);background-position:-246px -1400px;width:81px;height:99px}.Pet-Whale-Zombie{background-image:url(spritesmith-main-9.png);background-position:-328px -1400px;width:81px;height:99px}.Pet-Wolf-Base{background-image:url(spritesmith-main-9.png);background-position:-410px -1400px;width:81px;height:99px}.Pet-Wolf-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-492px -1400px;width:81px;height:99px}.Pet-Wolf-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-574px -1400px;width:81px;height:99px}.Pet-Wolf-Desert{background-image:url(spritesmith-main-9.png);background-position:-656px -1400px;width:81px;height:99px}.Pet-Wolf-Golden{background-image:url(spritesmith-main-9.png);background-position:-738px -1400px;width:81px;height:99px}.Pet-Wolf-Red{background-image:url(spritesmith-main-9.png);background-position:-820px -1400px;width:81px;height:99px}.Pet-Wolf-Shade{background-image:url(spritesmith-main-9.png);background-position:-902px -1400px;width:81px;height:99px}.Pet-Wolf-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-984px -1400px;width:81px;height:99px}.Pet-Wolf-Spooky{background-image:url(spritesmith-main-9.png);background-position:-1066px -1400px;width:81px;height:99px}.Pet-Wolf-Veteran{background-image:url(spritesmith-main-9.png);background-position:-1148px -1400px;width:81px;height:99px}.Pet-Wolf-White{background-image:url(spritesmith-main-9.png);background-position:-1230px -1400px;width:81px;height:99px}.Pet-Wolf-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1312px -1400px;width:81px;height:99px}.Pet_HatchingPotion_Base{background-image:url(spritesmith-main-9.png);background-position:-1443px -1400px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-98px -1500px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1492px -1400px;width:48px;height:51px}.Pet_HatchingPotion_Desert{background-image:url(spritesmith-main-9.png);background-position:0 -1500px;width:48px;height:51px}.Pet_HatchingPotion_Golden{background-image:url(spritesmith-main-9.png);background-position:-49px -1500px;width:48px;height:51px}.Pet_HatchingPotion_Red{background-image:url(spritesmith-main-9.png);background-position:-1394px -1400px;width:48px;height:51px}.Pet_HatchingPotion_Shade{background-image:url(spritesmith-main-9.png);background-position:-147px -1500px;width:48px;height:51px}.Pet_HatchingPotion_Skeleton{background-image:url(spritesmith-main-9.png);background-position:-196px -1500px;width:48px;height:51px}.Pet_HatchingPotion_Spooky{background-image:url(spritesmith-main-9.png);background-position:-245px -1500px;width:48px;height:51px}.Pet_HatchingPotion_White{background-image:url(spritesmith-main-9.png);background-position:-294px -1500px;width:48px;height:51px}.Pet_HatchingPotion_Zombie{background-image:url(spritesmith-main-9.png);background-position:-343px -1500px;width:48px;height:51px}.head_special_0,.weapon_special_0{width:105px;height:105px;margin-left:-3px;margin-top:-18px}.broad_armor_special_0,.shield_special_0,.slim_armor_special_0{width:90px;height:90px}.weapon_special_critical{background:url(/common/img/sprites/backer-only/weapon_special_critical.gif) no-repeat;width:90px;height:90px;margin-left:-12px;margin-top:12px}.weapon_special_1{margin-left:-12px}.broad_armor_special_1,.head_special_1,.slim_armor_special_1{width:90px;height:90px}.head_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif) no-repeat}.head_special_1{background:url(/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif) no-repeat;margin-top:3px}.broad_armor_special_0,.slim_armor_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif) no-repeat}.broad_armor_special_1,.slim_armor_special_1{background:url(/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif) no-repeat}.shield_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif) no-repeat}.weapon_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif) no-repeat}.Pet-Wolf-Cerberus{width:105px;height:72px;background:url(/common/img/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif) no-repeat}.npc_ian{background:url(/common/img/sprites/npc_ian.gif) no-repeat;width:78px;height:135px}.quest_burnout{background:url(/common/img/sprites/quest_burnout.gif) no-repeat;width:219px;height:249px}.Gems{display:inline-block;margin-right:5px;border-style:none;margin-left:0;margin-top:2px}.inline-gems{vertical-align:middle;margin-left:0;display:inline-block}.customize-menu .locked{background-color:#727272}.achievement{float:left;clear:right;margin-right:10px}.multi-achievement{margin:auto;padding-left:.5em;padding-right:.5em}[class*=Mount_Body_],[class*=Mount_Head_]{margin-top:18px}.Pet_Currency_Gem{margin-top:5px;margin-bottom:5px} \ No newline at end of file +.2014_Fall_HealerPROMO2{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -616px;width:90px;height:90px}.2014_Fall_Mage_PROMO9{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -252px;width:120px;height:90px}.2014_Fall_RoguePROMO3{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -343px;width:105px;height:90px}.2014_Fall_Warrior_PROMO{background-image:url(spritesmith-largeSprites-0.png);background-position:-306px -402px;width:90px;height:90px}.promo_android{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px 0;width:175px;height:175px}.promo_backtoschool{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -251px;width:150px;height:150px}.promo_burnout{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px 0;width:219px;height:240px}.promo_classes_fall_2014{background-image:url(spritesmith-largeSprites-0.png);background-position:-326px -724px;width:321px;height:100px}.promo_classes_fall_2015{background-image:url(spritesmith-largeSprites-0.png);background-position:-430px -621px;width:377px;height:99px}.promo_dilatoryDistress{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px -417px;width:90px;height:90px}.promo_enchanted_armoire{background-image:url(spritesmith-largeSprites-0.png);background-position:-499px -525px;width:374px;height:76px}.promo_enchanted_armoire_201507{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -550px;width:217px;height:90px}.promo_enchanted_armoire_201508{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -824px;width:180px;height:90px}.promo_enchanted_armoire_201509{background-image:url(spritesmith-largeSprites-0.png);background-position:-543px -417px;width:90px;height:90px}.promo_enchanted_armoire_201511{background-image:url(spritesmith-largeSprites-0.png);background-position:-1225px -991px;width:122px;height:90px}.promo_habitica{background-image:url(spritesmith-largeSprites-0.png);background-position:-452px -241px;width:175px;height:175px}.promo_habitica_sticker{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -220px;width:305px;height:304px}.promo_haunted_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1260px -402px;width:100px;height:137px}.customize-option.promo_haunted_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1285px -417px;width:60px;height:60px}.promo_item_notif{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px 0;width:249px;height:102px}.promo_mystery_201405{background-image:url(spritesmith-largeSprites-0.png);background-position:-380px -1008px;width:90px;height:90px}.promo_mystery_201406{background-image:url(spritesmith-largeSprites-0.png);background-position:-1270px -251px;width:90px;height:96px}.promo_mystery_201407{background-image:url(spritesmith-largeSprites-0.png);background-position:-1037px -525px;width:42px;height:62px}.promo_mystery_201408{background-image:url(spritesmith-largeSprites-0.png);background-position:-1300px -824px;width:60px;height:71px}.promo_mystery_201409{background-image:url(spritesmith-largeSprites-0.png);background-position:-306px -311px;width:90px;height:90px}.promo_mystery_201410{background-image:url(spritesmith-largeSprites-0.png);background-position:-1272px -915px;width:72px;height:63px}.promo_mystery_201411{background-image:url(spritesmith-largeSprites-0.png);background-position:-808px -621px;width:90px;height:90px}.promo_mystery_201412{background-image:url(spritesmith-largeSprites-0.png);background-position:-1037px -434px;width:42px;height:66px}.promo_mystery_201501{background-image:url(spritesmith-largeSprites-0.png);background-position:-1318px -732px;width:48px;height:63px}.promo_mystery_201502{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -707px;width:90px;height:90px}.promo_mystery_201503{background-image:url(spritesmith-largeSprites-0.png);background-position:-562px -1008px;width:90px;height:90px}.promo_mystery_201504{background-image:url(spritesmith-largeSprites-0.png);background-position:-1049px -343px;width:60px;height:69px}.promo_mystery_201505{background-image:url(spritesmith-largeSprites-0.png);background-position:-306px -220px;width:90px;height:90px}.promo_mystery_201506{background-image:url(spritesmith-largeSprites-0.png);background-position:-1064px -252px;width:42px;height:69px}.promo_mystery_201507{background-image:url(spritesmith-largeSprites-0.png);background-position:-1276px -103px;width:90px;height:105px}.promo_mystery_201508{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -525px;width:93px;height:90px}.promo_mystery_201509{background-image:url(spritesmith-largeSprites-0.png);background-position:-289px -1008px;width:90px;height:90px}.promo_mystery_201510{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -434px;width:93px;height:90px}.promo_mystery_201511{background-image:url(spritesmith-largeSprites-0.png);background-position:-471px -1008px;width:90px;height:90px}.promo_mystery_3014{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -641px;width:217px;height:90px}.promo_orca{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -991px;width:105px;height:105px}.promo_partyhats{background-image:url(spritesmith-largeSprites-0.png);background-position:-662px -835px;width:115px;height:47px}.promo_pastel_skin{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -835px;width:330px;height:83px}.customize-option.promo_pastel_skin{background-image:url(spritesmith-largeSprites-0.png);background-position:-25px -850px;width:60px;height:60px}.promo_pet_skins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -402px;width:140px;height:147px}.customize-option.promo_pet_skins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1144px -417px;width:60px;height:60px}.promo_shimmer_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-331px -835px;width:330px;height:83px}.customize-option.promo_shimmer_hair{background-image:url(spritesmith-largeSprites-0.png);background-position:-356px -850px;width:60px;height:60px}.promo_splashyskins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -732px;width:198px;height:91px}.customize-option.promo_splashyskins{background-image:url(spritesmith-largeSprites-0.png);background-position:-1144px -747px;width:60px;height:60px}.promo_springclasses2014{background-image:url(spritesmith-largeSprites-0.png);background-position:-648px -724px;width:288px;height:90px}.promo_springclasses2015{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -1008px;width:288px;height:90px}.promo_summer_classes_2014{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -621px;width:429px;height:102px}.promo_summer_classes_2015{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -919px;width:300px;height:88px}.promo_updos{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -103px;width:156px;height:147px}.promo_veteran_pets{background-image:url(spritesmith-largeSprites-0.png);background-position:-943px -176px;width:146px;height:75px}.promo_winterclasses2015{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -724px;width:325px;height:110px}.promo_winteryhair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1119px -915px;width:152px;height:75px}.customize-option.promo_winteryhair{background-image:url(spritesmith-largeSprites-0.png);background-position:-1144px -930px;width:60px;height:60px}.avatar_variety{background-image:url(spritesmith-largeSprites-0.png);background-position:0 -525px;width:498px;height:95px}.party_preview{background-image:url(spritesmith-largeSprites-0.png);background-position:0 0;width:451px;height:219px}.welcome_basic_avatars{background-image:url(spritesmith-largeSprites-0.png);background-position:-672px -347px;width:246px;height:165px}.welcome_promo_party{background-image:url(spritesmith-largeSprites-0.png);background-position:-672px 0;width:270px;height:180px}.welcome_sample_tasks{background-image:url(spritesmith-largeSprites-0.png);background-position:-672px -181px;width:246px;height:165px}.achievement-alien{background-image:url(spritesmith-main-0.png);background-position:-1208px -1180px;width:24px;height:26px}.achievement-alien2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -239px;width:48px;height:52px}.achievement-alpha{background-image:url(spritesmith-main-0.png);background-position:-1183px -1180px;width:24px;height:26px}.achievement-armor{background-image:url(spritesmith-main-0.png);background-position:-1232px -1127px;width:24px;height:26px}.achievement-armor2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -330px;width:48px;height:52px}.achievement-boot{background-image:url(spritesmith-main-0.png);background-position:-1208px -1089px;width:24px;height:26px}.achievement-boot2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -512px;width:48px;height:52px}.achievement-bow{background-image:url(spritesmith-main-0.png);background-position:-1232px -1036px;width:24px;height:26px}.achievement-bow2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -694px;width:48px;height:52px}.achievement-burnout{background-image:url(spritesmith-main-0.png);background-position:-1248px -929px;width:24px;height:26px}.achievement-burnout2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -876px;width:48px;height:52px}.achievement-cactus{background-image:url(spritesmith-main-0.png);background-position:-1248px -838px;width:24px;height:26px}.achievement-cactus2x{background-image:url(spritesmith-main-0.png);background-position:-1181px -967px;width:48px;height:52px}.achievement-cake{background-image:url(spritesmith-main-0.png);background-position:-1248px -747px;width:24px;height:26px}.achievement-cake2x{background-image:url(spritesmith-main-0.png);background-position:-1183px -1127px;width:48px;height:52px}.achievement-cave{background-image:url(spritesmith-main-0.png);background-position:-1248px -656px;width:24px;height:26px}.achievement-cave2x{background-image:url(spritesmith-main-0.png);background-position:-1365px -1309px;width:48px;height:52px}.achievement-coffin{background-image:url(spritesmith-main-0.png);background-position:-1248px -565px;width:24px;height:26px}.achievement-comment{background-image:url(spritesmith-main-0.png);background-position:-1223px -565px;width:24px;height:26px}.achievement-comment2x{background-image:url(spritesmith-main-0.png);background-position:-1547px -1491px;width:48px;height:52px}.achievement-costumeContest{background-image:url(spritesmith-main-0.png);background-position:-1223px -474px;width:24px;height:26px}.achievement-costumeContest2x{background-image:url(spritesmith-main-0.png);background-position:-322px -1582px;width:48px;height:52px}.achievement-dilatory{background-image:url(spritesmith-main-0.png);background-position:-1223px -383px;width:24px;height:26px}.achievement-firefox{background-image:url(spritesmith-main-0.png);background-position:-1248px -292px;width:24px;height:26px}.achievement-greeting{background-image:url(spritesmith-main-0.png);background-position:-1223px -292px;width:24px;height:26px}.achievement-greeting2x{background-image:url(spritesmith-main-0.png);background-position:-420px -1582px;width:48px;height:52px}.achievement-habitBirthday{background-image:url(spritesmith-main-0.png);background-position:-1223px -201px;width:24px;height:26px}.achievement-habitBirthday2x{background-image:url(spritesmith-main-0.png);background-position:-518px -1582px;width:48px;height:52px}.achievement-habiticaDay{background-image:url(spritesmith-main-0.png);background-position:-1298px -1183px;width:24px;height:26px}.achievement-habiticaDay2x{background-image:url(spritesmith-main-0.png);background-position:-616px -1582px;width:48px;height:52px}.achievement-heart{background-image:url(spritesmith-main-0.png);background-position:-1414px -1274px;width:24px;height:26px}.achievement-heart2x{background-image:url(spritesmith-main-0.png);background-position:-665px -1582px;width:48px;height:52px}.achievement-karaoke-2x{background-image:url(spritesmith-main-0.png);background-position:-763px -1582px;width:48px;height:52px}.achievement-karaoke{background-image:url(spritesmith-main-0.png);background-position:-1505px -1365px;width:24px;height:26px}.achievement-ninja{background-image:url(spritesmith-main-0.png);background-position:-1480px -1365px;width:24px;height:26px}.achievement-ninja2x{background-image:url(spritesmith-main-0.png);background-position:-861px -1582px;width:48px;height:52px}.achievement-nye{background-image:url(spritesmith-main-0.png);background-position:-1596px -1456px;width:24px;height:26px}.achievement-nye2x{background-image:url(spritesmith-main-0.png);background-position:-959px -1582px;width:48px;height:52px}.achievement-perfect{background-image:url(spritesmith-main-0.png);background-position:-1546px -1456px;width:24px;height:26px}.achievement-perfect2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -148px;width:48px;height:52px}.achievement-rat{background-image:url(spritesmith-main-0.png);background-position:-1248px -383px;width:24px;height:26px}.achievement-rat2x{background-image:url(spritesmith-main-0.png);background-position:-1155px -1582px;width:48px;height:52px}.achievement-seafoam{background-image:url(spritesmith-main-0.png);background-position:-1662px -1547px;width:24px;height:26px}.achievement-seafoam2x{background-image:url(spritesmith-main-0.png);background-position:-1106px -1582px;width:48px;height:52px}.achievement-shield{background-image:url(spritesmith-main-0.png);background-position:-1687px -1547px;width:24px;height:26px}.achievement-shield2x{background-image:url(spritesmith-main-0.png);background-position:-1008px -1582px;width:48px;height:52px}.achievement-shinySeed{background-image:url(spritesmith-main-0.png);background-position:-1571px -1456px;width:24px;height:26px}.achievement-shinySeed2x{background-image:url(spritesmith-main-0.png);background-position:-910px -1582px;width:48px;height:52px}.achievement-snowball{background-image:url(spritesmith-main-0.png);background-position:-1455px -1365px;width:24px;height:26px}.achievement-snowball2x{background-image:url(spritesmith-main-0.png);background-position:-812px -1582px;width:48px;height:52px}.achievement-spookDust{background-image:url(spritesmith-main-0.png);background-position:-1364px -1274px;width:24px;height:26px}.achievement-spookDust2x{background-image:url(spritesmith-main-0.png);background-position:-714px -1582px;width:48px;height:52px}.achievement-stoikalm{background-image:url(spritesmith-main-0.png);background-position:-1389px -1274px;width:24px;height:26px}.achievement-sun{background-image:url(spritesmith-main-0.png);background-position:-1273px -1183px;width:24px;height:26px}.achievement-sun2x{background-image:url(spritesmith-main-0.png);background-position:-567px -1582px;width:48px;height:52px}.achievement-sword{background-image:url(spritesmith-main-0.png);background-position:-1323px -1183px;width:24px;height:26px}.achievement-sword2x{background-image:url(spritesmith-main-0.png);background-position:-469px -1582px;width:48px;height:52px}.achievement-thankyou{background-image:url(spritesmith-main-0.png);background-position:-1248px -201px;width:24px;height:26px}.achievement-thankyou2x{background-image:url(spritesmith-main-0.png);background-position:-371px -1582px;width:48px;height:52px}.achievement-thermometer{background-image:url(spritesmith-main-0.png);background-position:-1637px -1547px;width:24px;height:26px}.achievement-thermometer2x{background-image:url(spritesmith-main-0.png);background-position:-273px -1582px;width:48px;height:52px}.achievement-tree{background-image:url(spritesmith-main-0.png);background-position:-1248px -474px;width:24px;height:26px}.achievement-tree2x{background-image:url(spritesmith-main-0.png);background-position:-1456px -1400px;width:48px;height:52px}.achievement-triadbingo{background-image:url(spritesmith-main-0.png);background-position:-1223px -656px;width:24px;height:26px}.achievement-triadbingo2x{background-image:url(spritesmith-main-0.png);background-position:-1274px -1218px;width:48px;height:52px}.achievement-ultimate-healer{background-image:url(spritesmith-main-0.png);background-position:-1223px -747px;width:24px;height:26px}.achievement-ultimate-healer2x{background-image:url(spritesmith-main-0.png);background-position:-1183px -1036px;width:48px;height:52px}.achievement-ultimate-mage{background-image:url(spritesmith-main-0.png);background-position:-1223px -838px;width:24px;height:26px}.achievement-ultimate-mage2x{background-image:url(spritesmith-main-0.png);background-position:-1132px -967px;width:48px;height:52px}.achievement-ultimate-rogue{background-image:url(spritesmith-main-0.png);background-position:-1223px -929px;width:24px;height:26px}.achievement-ultimate-rogue2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -785px;width:48px;height:52px}.achievement-ultimate-warrior{background-image:url(spritesmith-main-0.png);background-position:-1230px -967px;width:24px;height:26px}.achievement-ultimate-warrior2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -603px;width:48px;height:52px}.achievement-valentine{background-image:url(spritesmith-main-0.png);background-position:-1183px -1089px;width:24px;height:26px}.achievement-valentine2x{background-image:url(spritesmith-main-0.png);background-position:-1223px -421px;width:48px;height:52px}.achievement-wolf{background-image:url(spritesmith-main-0.png);background-position:-1233px -1089px;width:24px;height:26px}.achievement-wolf2x{background-image:url(spritesmith-main-0.png);background-position:-1057px -1582px;width:48px;height:52px}.background_alpine_slopes{background-image:url(spritesmith-main-0.png);background-position:-705px -592px;width:140px;height:147px}.background_autumn_forest{background-image:url(spritesmith-main-0.png);background-position:-423px -444px;width:140px;height:147px}.background_beach{background-image:url(spritesmith-main-0.png);background-position:-426px 0;width:141px;height:147px}.background_blacksmithy{background-image:url(spritesmith-main-0.png);background-position:-709px -444px;width:140px;height:147px}.background_cherry_trees{background-image:url(spritesmith-main-0.png);background-position:-141px -592px;width:140px;height:147px}.background_clouds{background-image:url(spritesmith-main-0.png);background-position:-564px -592px;width:140px;height:147px}.background_coral_reef{background-image:url(spritesmith-main-0.png);background-position:-850px -296px;width:140px;height:147px}.background_crystal_cave{background-image:url(spritesmith-main-0.png);background-position:0 -740px;width:140px;height:147px}.background_dilatory_ruins{background-image:url(spritesmith-main-0.png);background-position:-141px -740px;width:140px;height:147px}.background_distant_castle{background-image:url(spritesmith-main-0.png);background-position:-705px -888px;width:140px;height:147px}.background_drifting_raft{background-image:url(spritesmith-main-0.png);background-position:-846px -888px;width:140px;height:147px}.background_dusty_canyons{background-image:url(spritesmith-main-0.png);background-position:-987px -888px;width:140px;height:147px}.background_fairy_ring{background-image:url(spritesmith-main-0.png);background-position:-568px -148px;width:140px;height:147px}.background_floating_islands{background-image:url(spritesmith-main-0.png);background-position:-568px -296px;width:140px;height:147px}.background_floral_meadow{background-image:url(spritesmith-main-0.png);background-position:0 -444px;width:140px;height:147px}.background_forest{background-image:url(spritesmith-main-0.png);background-position:-141px -444px;width:140px;height:147px}.background_frigid_peak{background-image:url(spritesmith-main-0.png);background-position:-282px -444px;width:140px;height:147px}.background_giant_wave{background-image:url(spritesmith-main-0.png);background-position:-284px 0;width:141px;height:147px}.background_graveyard{background-image:url(spritesmith-main-0.png);background-position:-564px -444px;width:140px;height:147px}.background_gumdrop_land{background-image:url(spritesmith-main-0.png);background-position:-709px 0;width:140px;height:147px}.background_harvest_feast{background-image:url(spritesmith-main-0.png);background-position:-709px -148px;width:140px;height:147px}.background_harvest_fields{background-image:url(spritesmith-main-0.png);background-position:0 -148px;width:141px;height:147px}.background_harvest_moon{background-image:url(spritesmith-main-0.png);background-position:-142px -148px;width:141px;height:147px}.background_haunted_house{background-image:url(spritesmith-main-0.png);background-position:0 -592px;width:140px;height:147px}.background_ice_cave{background-image:url(spritesmith-main-0.png);background-position:-284px -148px;width:141px;height:147px}.background_iceberg{background-image:url(spritesmith-main-0.png);background-position:-282px -592px;width:140px;height:147px}.background_island_waterfalls{background-image:url(spritesmith-main-0.png);background-position:-423px -592px;width:140px;height:147px}.background_marble_temple{background-image:url(spritesmith-main-0.png);background-position:0 0;width:141px;height:147px}.background_market{background-image:url(spritesmith-main-0.png);background-position:-568px 0;width:140px;height:147px}.background_mountain_lake{background-image:url(spritesmith-main-0.png);background-position:-850px 0;width:140px;height:147px}.background_night_dunes{background-image:url(spritesmith-main-0.png);background-position:-850px -148px;width:140px;height:147px}.background_open_waters{background-image:url(spritesmith-main-0.png);background-position:-426px -148px;width:141px;height:147px}.background_pagodas{background-image:url(spritesmith-main-0.png);background-position:-850px -444px;width:140px;height:147px}.background_pumpkin_patch{background-image:url(spritesmith-main-0.png);background-position:-850px -592px;width:140px;height:147px}.background_pyramids{background-image:url(spritesmith-main-0.png);background-position:0 -296px;width:141px;height:147px}.background_rolling_hills{background-image:url(spritesmith-main-0.png);background-position:-142px -296px;width:141px;height:147px}.background_seafarer_ship{background-image:url(spritesmith-main-0.png);background-position:-282px -740px;width:140px;height:147px}.background_shimmery_bubbles{background-image:url(spritesmith-main-0.png);background-position:-423px -740px;width:140px;height:147px}.background_slimy_swamp{background-image:url(spritesmith-main-0.png);background-position:-564px -740px;width:140px;height:147px}.background_snowy_pines{background-image:url(spritesmith-main-0.png);background-position:-705px -740px;width:140px;height:147px}.background_snowy_sunrise{background-image:url(spritesmith-main-0.png);background-position:-846px -740px;width:140px;height:147px}.background_south_pole{background-image:url(spritesmith-main-0.png);background-position:-991px 0;width:140px;height:147px}.background_spring_rain{background-image:url(spritesmith-main-0.png);background-position:-991px -148px;width:140px;height:147px}.background_stable{background-image:url(spritesmith-main-0.png);background-position:-991px -296px;width:140px;height:147px}.background_stained_glass{background-image:url(spritesmith-main-0.png);background-position:-991px -444px;width:140px;height:147px}.background_starry_skies{background-image:url(spritesmith-main-0.png);background-position:-991px -592px;width:140px;height:147px}.background_sunken_ship{background-image:url(spritesmith-main-0.png);background-position:-991px -740px;width:140px;height:147px}.background_sunset_meadow{background-image:url(spritesmith-main-0.png);background-position:0 -888px;width:140px;height:147px}.background_sunset_oasis{background-image:url(spritesmith-main-0.png);background-position:-141px -888px;width:140px;height:147px}.background_sunset_savannah{background-image:url(spritesmith-main-0.png);background-position:-282px -888px;width:140px;height:147px}.background_swarming_darkness{background-image:url(spritesmith-main-0.png);background-position:-423px -888px;width:140px;height:147px}.background_tavern{background-image:url(spritesmith-main-0.png);background-position:-564px -888px;width:140px;height:147px}.background_thunderstorm{background-image:url(spritesmith-main-0.png);background-position:-284px -296px;width:141px;height:147px}.background_twinkly_lights{background-image:url(spritesmith-main-0.png);background-position:-426px -296px;width:141px;height:147px}.background_twinkly_party_lights{background-image:url(spritesmith-main-0.png);background-position:-142px 0;width:141px;height:147px}.background_volcano{background-image:url(spritesmith-main-0.png);background-position:-1132px 0;width:140px;height:147px}.background_winter_town{background-image:url(spritesmith-main-0.png);background-position:-709px -296px;width:140px;height:147px}.hair_beard_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-91px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-116px -1324px;width:60px;height:60px}.hair_beard_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-182px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-207px -1324px;width:60px;height:60px}.hair_beard_1_black{background-image:url(spritesmith-main-0.png);background-position:-273px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_black{background-image:url(spritesmith-main-0.png);background-position:-298px -1324px;width:60px;height:60px}.hair_beard_1_blond{background-image:url(spritesmith-main-0.png);background-position:-364px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_blond{background-image:url(spritesmith-main-0.png);background-position:-389px -1324px;width:60px;height:60px}.hair_beard_1_blue{background-image:url(spritesmith-main-0.png);background-position:-455px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_blue{background-image:url(spritesmith-main-0.png);background-position:-480px -1324px;width:60px;height:60px}.hair_beard_1_brown{background-image:url(spritesmith-main-0.png);background-position:-546px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_brown{background-image:url(spritesmith-main-0.png);background-position:-571px -1324px;width:60px;height:60px}.hair_beard_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-637px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-662px -1324px;width:60px;height:60px}.hair_beard_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-728px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-753px -1324px;width:60px;height:60px}.hair_beard_1_festive{background-image:url(spritesmith-main-0.png);background-position:-819px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_festive{background-image:url(spritesmith-main-0.png);background-position:-844px -1324px;width:60px;height:60px}.hair_beard_1_frost{background-image:url(spritesmith-main-0.png);background-position:-910px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_frost{background-image:url(spritesmith-main-0.png);background-position:-935px -1324px;width:60px;height:60px}.hair_beard_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1001px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1026px -1324px;width:60px;height:60px}.hair_beard_1_green{background-image:url(spritesmith-main-0.png);background-position:-1092px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_green{background-image:url(spritesmith-main-0.png);background-position:-1117px -1324px;width:60px;height:60px}.hair_beard_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1183px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1208px -1324px;width:60px;height:60px}.hair_beard_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1274px -1309px;width:90px;height:90px}.customize-option.hair_beard_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1299px -1324px;width:60px;height:60px}.hair_beard_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1455px 0;width:90px;height:90px}.customize-option.hair_beard_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1480px -15px;width:60px;height:60px}.hair_beard_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1455px -91px;width:90px;height:90px}.customize-option.hair_beard_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1480px -106px;width:60px;height:60px}.hair_beard_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1455px -182px;width:90px;height:90px}.customize-option.hair_beard_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1480px -197px;width:60px;height:60px}.hair_beard_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1455px -273px;width:90px;height:90px}.customize-option.hair_beard_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1480px -288px;width:60px;height:60px}.hair_beard_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1455px -364px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1480px -379px;width:60px;height:60px}.hair_beard_1_porange{background-image:url(spritesmith-main-0.png);background-position:-1455px -455px;width:90px;height:90px}.customize-option.hair_beard_1_porange{background-image:url(spritesmith-main-0.png);background-position:-1480px -470px;width:60px;height:60px}.hair_beard_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1132px -148px;width:90px;height:90px}.customize-option.hair_beard_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1157px -163px;width:60px;height:60px}.hair_beard_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1455px -637px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1480px -652px;width:60px;height:60px}.hair_beard_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1455px -728px;width:90px;height:90px}.customize-option.hair_beard_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1480px -743px;width:60px;height:60px}.hair_beard_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1455px -819px;width:90px;height:90px}.customize-option.hair_beard_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1480px -834px;width:60px;height:60px}.hair_beard_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1455px -910px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1480px -925px;width:60px;height:60px}.hair_beard_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1455px -1001px;width:90px;height:90px}.customize-option.hair_beard_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1480px -1016px;width:60px;height:60px}.hair_beard_1_red{background-image:url(spritesmith-main-0.png);background-position:-1455px -1092px;width:90px;height:90px}.customize-option.hair_beard_1_red{background-image:url(spritesmith-main-0.png);background-position:-1480px -1107px;width:60px;height:60px}.hair_beard_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1455px -1183px;width:90px;height:90px}.customize-option.hair_beard_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1480px -1198px;width:60px;height:60px}.hair_beard_1_white{background-image:url(spritesmith-main-0.png);background-position:-1455px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_white{background-image:url(spritesmith-main-0.png);background-position:-1480px -1289px;width:60px;height:60px}.hair_beard_1_winternight{background-image:url(spritesmith-main-0.png);background-position:0 -1400px;width:90px;height:90px}.customize-option.hair_beard_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-25px -1415px;width:60px;height:60px}.hair_beard_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-91px -1400px;width:90px;height:90px}.customize-option.hair_beard_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-116px -1415px;width:60px;height:60px}.hair_beard_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-182px -1400px;width:90px;height:90px}.customize-option.hair_beard_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-207px -1415px;width:60px;height:60px}.hair_beard_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-273px -1400px;width:90px;height:90px}.customize-option.hair_beard_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-298px -1415px;width:60px;height:60px}.hair_beard_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-364px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-389px -1415px;width:60px;height:60px}.hair_beard_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-455px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-480px -1415px;width:60px;height:60px}.hair_beard_2_black{background-image:url(spritesmith-main-0.png);background-position:-546px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_black{background-image:url(spritesmith-main-0.png);background-position:-571px -1415px;width:60px;height:60px}.hair_beard_2_blond{background-image:url(spritesmith-main-0.png);background-position:-637px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_blond{background-image:url(spritesmith-main-0.png);background-position:-662px -1415px;width:60px;height:60px}.hair_beard_2_blue{background-image:url(spritesmith-main-0.png);background-position:-728px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_blue{background-image:url(spritesmith-main-0.png);background-position:-753px -1415px;width:60px;height:60px}.hair_beard_2_brown{background-image:url(spritesmith-main-0.png);background-position:-819px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_brown{background-image:url(spritesmith-main-0.png);background-position:-844px -1415px;width:60px;height:60px}.hair_beard_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-910px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-935px -1415px;width:60px;height:60px}.hair_beard_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1001px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1026px -1415px;width:60px;height:60px}.hair_beard_2_festive{background-image:url(spritesmith-main-0.png);background-position:-1092px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_festive{background-image:url(spritesmith-main-0.png);background-position:-1117px -1415px;width:60px;height:60px}.hair_beard_2_frost{background-image:url(spritesmith-main-0.png);background-position:-1183px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_frost{background-image:url(spritesmith-main-0.png);background-position:-1208px -1415px;width:60px;height:60px}.hair_beard_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1274px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1299px -1415px;width:60px;height:60px}.hair_beard_2_green{background-image:url(spritesmith-main-0.png);background-position:-1365px -1400px;width:90px;height:90px}.customize-option.hair_beard_2_green{background-image:url(spritesmith-main-0.png);background-position:-1390px -1415px;width:60px;height:60px}.hair_beard_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-1546px 0;width:90px;height:90px}.customize-option.hair_beard_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-1571px -15px;width:60px;height:60px}.hair_beard_2_holly{background-image:url(spritesmith-main-0.png);background-position:-1546px -91px;width:90px;height:90px}.customize-option.hair_beard_2_holly{background-image:url(spritesmith-main-0.png);background-position:-1571px -106px;width:60px;height:60px}.hair_beard_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1546px -182px;width:90px;height:90px}.customize-option.hair_beard_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1571px -197px;width:60px;height:60px}.hair_beard_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1546px -273px;width:90px;height:90px}.customize-option.hair_beard_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1571px -288px;width:60px;height:60px}.hair_beard_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1546px -364px;width:90px;height:90px}.customize-option.hair_beard_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1571px -379px;width:60px;height:60px}.hair_beard_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1546px -455px;width:90px;height:90px}.customize-option.hair_beard_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1571px -470px;width:60px;height:60px}.hair_beard_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1546px -546px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1571px -561px;width:60px;height:60px}.hair_beard_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1546px -637px;width:90px;height:90px}.customize-option.hair_beard_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1571px -652px;width:60px;height:60px}.hair_beard_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1546px -728px;width:90px;height:90px}.customize-option.hair_beard_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1571px -743px;width:60px;height:60px}.hair_beard_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1546px -819px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1571px -834px;width:60px;height:60px}.hair_beard_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1546px -910px;width:90px;height:90px}.customize-option.hair_beard_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1571px -925px;width:60px;height:60px}.hair_beard_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1546px -1001px;width:90px;height:90px}.customize-option.hair_beard_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1571px -1016px;width:60px;height:60px}.hair_beard_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1546px -1092px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1571px -1107px;width:60px;height:60px}.hair_beard_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1546px -1183px;width:90px;height:90px}.customize-option.hair_beard_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1571px -1198px;width:60px;height:60px}.hair_beard_2_red{background-image:url(spritesmith-main-0.png);background-position:-1546px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_red{background-image:url(spritesmith-main-0.png);background-position:-1571px -1289px;width:60px;height:60px}.hair_beard_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1546px -1365px;width:90px;height:90px}.customize-option.hair_beard_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1571px -1380px;width:60px;height:60px}.hair_beard_2_white{background-image:url(spritesmith-main-0.png);background-position:0 -1491px;width:90px;height:90px}.customize-option.hair_beard_2_white{background-image:url(spritesmith-main-0.png);background-position:-25px -1506px;width:60px;height:60px}.hair_beard_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-91px -1491px;width:90px;height:90px}.customize-option.hair_beard_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-116px -1506px;width:60px;height:60px}.hair_beard_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-182px -1491px;width:90px;height:90px}.customize-option.hair_beard_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-207px -1506px;width:60px;height:60px}.hair_beard_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-273px -1491px;width:90px;height:90px}.customize-option.hair_beard_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-298px -1506px;width:60px;height:60px}.hair_beard_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-364px -1491px;width:90px;height:90px}.customize-option.hair_beard_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-389px -1506px;width:60px;height:60px}.hair_beard_3_TRUred{background-image:url(spritesmith-main-0.png);background-position:-455px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_TRUred{background-image:url(spritesmith-main-0.png);background-position:-480px -1506px;width:60px;height:60px}.hair_beard_3_aurora{background-image:url(spritesmith-main-0.png);background-position:-546px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_aurora{background-image:url(spritesmith-main-0.png);background-position:-571px -1506px;width:60px;height:60px}.hair_beard_3_black{background-image:url(spritesmith-main-0.png);background-position:-637px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_black{background-image:url(spritesmith-main-0.png);background-position:-662px -1506px;width:60px;height:60px}.hair_beard_3_blond{background-image:url(spritesmith-main-0.png);background-position:-728px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_blond{background-image:url(spritesmith-main-0.png);background-position:-753px -1506px;width:60px;height:60px}.hair_beard_3_blue{background-image:url(spritesmith-main-0.png);background-position:-819px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_blue{background-image:url(spritesmith-main-0.png);background-position:-844px -1506px;width:60px;height:60px}.hair_beard_3_brown{background-image:url(spritesmith-main-0.png);background-position:-910px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_brown{background-image:url(spritesmith-main-0.png);background-position:-935px -1506px;width:60px;height:60px}.hair_beard_3_candycane{background-image:url(spritesmith-main-0.png);background-position:-1001px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_candycane{background-image:url(spritesmith-main-0.png);background-position:-1026px -1506px;width:60px;height:60px}.hair_beard_3_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1092px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_candycorn{background-image:url(spritesmith-main-0.png);background-position:-1117px -1506px;width:60px;height:60px}.hair_beard_3_festive{background-image:url(spritesmith-main-0.png);background-position:-1183px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_festive{background-image:url(spritesmith-main-0.png);background-position:-1208px -1506px;width:60px;height:60px}.hair_beard_3_frost{background-image:url(spritesmith-main-0.png);background-position:-1274px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_frost{background-image:url(spritesmith-main-0.png);background-position:-1299px -1506px;width:60px;height:60px}.hair_beard_3_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1365px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-1390px -1506px;width:60px;height:60px}.hair_beard_3_green{background-image:url(spritesmith-main-0.png);background-position:-1456px -1491px;width:90px;height:90px}.customize-option.hair_beard_3_green{background-image:url(spritesmith-main-0.png);background-position:-1481px -1506px;width:60px;height:60px}.hair_beard_3_halloween{background-image:url(spritesmith-main-0.png);background-position:-1637px 0;width:90px;height:90px}.customize-option.hair_beard_3_halloween{background-image:url(spritesmith-main-0.png);background-position:-1662px -15px;width:60px;height:60px}.hair_beard_3_holly{background-image:url(spritesmith-main-0.png);background-position:-1637px -91px;width:90px;height:90px}.customize-option.hair_beard_3_holly{background-image:url(spritesmith-main-0.png);background-position:-1662px -106px;width:60px;height:60px}.hair_beard_3_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1637px -182px;width:90px;height:90px}.customize-option.hair_beard_3_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1662px -197px;width:60px;height:60px}.hair_beard_3_midnight{background-image:url(spritesmith-main-0.png);background-position:-1637px -273px;width:90px;height:90px}.customize-option.hair_beard_3_midnight{background-image:url(spritesmith-main-0.png);background-position:-1662px -288px;width:60px;height:60px}.hair_beard_3_pblue{background-image:url(spritesmith-main-0.png);background-position:-1637px -364px;width:90px;height:90px}.customize-option.hair_beard_3_pblue{background-image:url(spritesmith-main-0.png);background-position:-1662px -379px;width:60px;height:60px}.hair_beard_3_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1637px -455px;width:90px;height:90px}.customize-option.hair_beard_3_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1662px -470px;width:60px;height:60px}.hair_beard_3_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1637px -546px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1662px -561px;width:60px;height:60px}.hair_beard_3_porange{background-image:url(spritesmith-main-0.png);background-position:-1637px -637px;width:90px;height:90px}.customize-option.hair_beard_3_porange{background-image:url(spritesmith-main-0.png);background-position:-1662px -652px;width:60px;height:60px}.hair_beard_3_ppink{background-image:url(spritesmith-main-0.png);background-position:-1637px -728px;width:90px;height:90px}.customize-option.hair_beard_3_ppink{background-image:url(spritesmith-main-0.png);background-position:-1662px -743px;width:60px;height:60px}.hair_beard_3_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1637px -819px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1662px -834px;width:60px;height:60px}.hair_beard_3_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1637px -910px;width:90px;height:90px}.customize-option.hair_beard_3_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1662px -925px;width:60px;height:60px}.hair_beard_3_purple{background-image:url(spritesmith-main-0.png);background-position:-1637px -1001px;width:90px;height:90px}.customize-option.hair_beard_3_purple{background-image:url(spritesmith-main-0.png);background-position:-1662px -1016px;width:60px;height:60px}.hair_beard_3_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1637px -1092px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1662px -1107px;width:60px;height:60px}.hair_beard_3_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1637px -1183px;width:90px;height:90px}.customize-option.hair_beard_3_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1662px -1198px;width:60px;height:60px}.hair_beard_3_red{background-image:url(spritesmith-main-0.png);background-position:-1637px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_red{background-image:url(spritesmith-main-0.png);background-position:-1662px -1289px;width:60px;height:60px}.hair_beard_3_snowy{background-image:url(spritesmith-main-0.png);background-position:-1637px -1365px;width:90px;height:90px}.customize-option.hair_beard_3_snowy{background-image:url(spritesmith-main-0.png);background-position:-1662px -1380px;width:60px;height:60px}.hair_beard_3_white{background-image:url(spritesmith-main-0.png);background-position:-1637px -1456px;width:90px;height:90px}.customize-option.hair_beard_3_white{background-image:url(spritesmith-main-0.png);background-position:-1662px -1471px;width:60px;height:60px}.hair_beard_3_winternight{background-image:url(spritesmith-main-0.png);background-position:0 -1582px;width:90px;height:90px}.customize-option.hair_beard_3_winternight{background-image:url(spritesmith-main-0.png);background-position:-25px -1597px;width:60px;height:60px}.hair_beard_3_winterstar{background-image:url(spritesmith-main-0.png);background-position:-91px -1582px;width:90px;height:90px}.customize-option.hair_beard_3_winterstar{background-image:url(spritesmith-main-0.png);background-position:-116px -1597px;width:60px;height:60px}.hair_beard_3_yellow{background-image:url(spritesmith-main-0.png);background-position:-182px -1582px;width:90px;height:90px}.customize-option.hair_beard_3_yellow{background-image:url(spritesmith-main-0.png);background-position:-207px -1597px;width:60px;height:60px}.hair_beard_3_zombie{background-image:url(spritesmith-main-0.png);background-position:-1455px -546px;width:90px;height:90px}.customize-option.hair_beard_3_zombie{background-image:url(spritesmith-main-0.png);background-position:-1480px -561px;width:60px;height:60px}.hair_mustache_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-910px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-935px -1051px;width:60px;height:60px}.hair_mustache_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-819px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-844px -1051px;width:60px;height:60px}.hair_mustache_1_black{background-image:url(spritesmith-main-0.png);background-position:-728px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_black{background-image:url(spritesmith-main-0.png);background-position:-753px -1051px;width:60px;height:60px}.hair_mustache_1_blond{background-image:url(spritesmith-main-0.png);background-position:-637px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_blond{background-image:url(spritesmith-main-0.png);background-position:-662px -1051px;width:60px;height:60px}.hair_mustache_1_blue{background-image:url(spritesmith-main-0.png);background-position:-546px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_blue{background-image:url(spritesmith-main-0.png);background-position:-571px -1051px;width:60px;height:60px}.hair_mustache_1_brown{background-image:url(spritesmith-main-0.png);background-position:-455px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_brown{background-image:url(spritesmith-main-0.png);background-position:-480px -1051px;width:60px;height:60px}.hair_mustache_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-364px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_candycane{background-image:url(spritesmith-main-0.png);background-position:-389px -1051px;width:60px;height:60px}.hair_mustache_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-273px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_candycorn{background-image:url(spritesmith-main-0.png);background-position:-298px -1051px;width:60px;height:60px}.hair_mustache_1_festive{background-image:url(spritesmith-main-0.png);background-position:-182px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_festive{background-image:url(spritesmith-main-0.png);background-position:-207px -1051px;width:60px;height:60px}.hair_mustache_1_frost{background-image:url(spritesmith-main-0.png);background-position:-91px -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_frost{background-image:url(spritesmith-main-0.png);background-position:-116px -1051px;width:60px;height:60px}.hair_mustache_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:0 -1036px;width:90px;height:90px}.customize-option.hair_mustache_1_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-25px -1051px;width:60px;height:60px}.hair_mustache_1_green{background-image:url(spritesmith-main-0.png);background-position:-1132px -876px;width:90px;height:90px}.customize-option.hair_mustache_1_green{background-image:url(spritesmith-main-0.png);background-position:-1157px -891px;width:60px;height:60px}.hair_mustache_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1132px -785px;width:90px;height:90px}.customize-option.hair_mustache_1_halloween{background-image:url(spritesmith-main-0.png);background-position:-1157px -800px;width:60px;height:60px}.hair_mustache_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1132px -694px;width:90px;height:90px}.customize-option.hair_mustache_1_holly{background-image:url(spritesmith-main-0.png);background-position:-1157px -709px;width:60px;height:60px}.hair_mustache_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1132px -603px;width:90px;height:90px}.customize-option.hair_mustache_1_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-1157px -618px;width:60px;height:60px}.hair_mustache_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1132px -512px;width:90px;height:90px}.customize-option.hair_mustache_1_midnight{background-image:url(spritesmith-main-0.png);background-position:-1157px -527px;width:60px;height:60px}.hair_mustache_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1132px -421px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue{background-image:url(spritesmith-main-0.png);background-position:-1157px -436px;width:60px;height:60px}.hair_mustache_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1132px -330px;width:90px;height:90px}.customize-option.hair_mustache_1_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1157px -345px;width:60px;height:60px}.hair_mustache_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1132px -239px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1157px -254px;width:60px;height:60px}.hair_mustache_1_porange{background-image:url(spritesmith-main-0.png);background-position:0 -1309px;width:90px;height:90px}.customize-option.hair_mustache_1_porange{background-image:url(spritesmith-main-0.png);background-position:-25px -1324px;width:60px;height:60px}.hair_mustache_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1364px -1183px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink{background-image:url(spritesmith-main-0.png);background-position:-1389px -1198px;width:60px;height:60px}.hair_mustache_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1364px -1092px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1389px -1107px;width:60px;height:60px}.hair_mustache_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1364px -1001px;width:90px;height:90px}.customize-option.hair_mustache_1_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1389px -1016px;width:60px;height:60px}.hair_mustache_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1364px -910px;width:90px;height:90px}.customize-option.hair_mustache_1_purple{background-image:url(spritesmith-main-0.png);background-position:-1389px -925px;width:60px;height:60px}.hair_mustache_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1364px -819px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1389px -834px;width:60px;height:60px}.hair_mustache_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1364px -728px;width:90px;height:90px}.customize-option.hair_mustache_1_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1389px -743px;width:60px;height:60px}.hair_mustache_1_red{background-image:url(spritesmith-main-0.png);background-position:-1364px -637px;width:90px;height:90px}.customize-option.hair_mustache_1_red{background-image:url(spritesmith-main-0.png);background-position:-1389px -652px;width:60px;height:60px}.hair_mustache_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1364px -546px;width:90px;height:90px}.customize-option.hair_mustache_1_snowy{background-image:url(spritesmith-main-0.png);background-position:-1389px -561px;width:60px;height:60px}.hair_mustache_1_white{background-image:url(spritesmith-main-0.png);background-position:-1364px -455px;width:90px;height:90px}.customize-option.hair_mustache_1_white{background-image:url(spritesmith-main-0.png);background-position:-1389px -470px;width:60px;height:60px}.hair_mustache_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1364px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_winternight{background-image:url(spritesmith-main-0.png);background-position:-1389px -379px;width:60px;height:60px}.hair_mustache_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1364px -273px;width:90px;height:90px}.customize-option.hair_mustache_1_winterstar{background-image:url(spritesmith-main-0.png);background-position:-1389px -288px;width:60px;height:60px}.hair_mustache_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1364px -182px;width:90px;height:90px}.customize-option.hair_mustache_1_yellow{background-image:url(spritesmith-main-0.png);background-position:-1389px -197px;width:60px;height:60px}.hair_mustache_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1364px -91px;width:90px;height:90px}.customize-option.hair_mustache_1_zombie{background-image:url(spritesmith-main-0.png);background-position:-1389px -106px;width:60px;height:60px}.hair_mustache_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1364px 0;width:90px;height:90px}.customize-option.hair_mustache_2_TRUred{background-image:url(spritesmith-main-0.png);background-position:-1389px -15px;width:60px;height:60px}.hair_mustache_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-1183px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_aurora{background-image:url(spritesmith-main-0.png);background-position:-1208px -1233px;width:60px;height:60px}.hair_mustache_2_black{background-image:url(spritesmith-main-0.png);background-position:-1092px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_black{background-image:url(spritesmith-main-0.png);background-position:-1117px -1233px;width:60px;height:60px}.hair_mustache_2_blond{background-image:url(spritesmith-main-0.png);background-position:-1001px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_blond{background-image:url(spritesmith-main-0.png);background-position:-1026px -1233px;width:60px;height:60px}.hair_mustache_2_blue{background-image:url(spritesmith-main-0.png);background-position:-910px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_blue{background-image:url(spritesmith-main-0.png);background-position:-935px -1233px;width:60px;height:60px}.hair_mustache_2_brown{background-image:url(spritesmith-main-0.png);background-position:-819px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_brown{background-image:url(spritesmith-main-0.png);background-position:-844px -1233px;width:60px;height:60px}.hair_mustache_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-728px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_candycane{background-image:url(spritesmith-main-0.png);background-position:-753px -1233px;width:60px;height:60px}.hair_mustache_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-637px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_candycorn{background-image:url(spritesmith-main-0.png);background-position:-662px -1233px;width:60px;height:60px}.hair_mustache_2_festive{background-image:url(spritesmith-main-0.png);background-position:-546px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_festive{background-image:url(spritesmith-main-0.png);background-position:-571px -1233px;width:60px;height:60px}.hair_mustache_2_frost{background-image:url(spritesmith-main-0.png);background-position:-455px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_frost{background-image:url(spritesmith-main-0.png);background-position:-480px -1233px;width:60px;height:60px}.hair_mustache_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-364px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_ghostwhite{background-image:url(spritesmith-main-0.png);background-position:-389px -1233px;width:60px;height:60px}.hair_mustache_2_green{background-image:url(spritesmith-main-0.png);background-position:-273px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_green{background-image:url(spritesmith-main-0.png);background-position:-298px -1233px;width:60px;height:60px}.hair_mustache_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-182px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_halloween{background-image:url(spritesmith-main-0.png);background-position:-207px -1233px;width:60px;height:60px}.hair_mustache_2_holly{background-image:url(spritesmith-main-0.png);background-position:-91px -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_holly{background-image:url(spritesmith-main-0.png);background-position:-116px -1233px;width:60px;height:60px}.hair_mustache_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:0 -1218px;width:90px;height:90px}.customize-option.hair_mustache_2_hollygreen{background-image:url(spritesmith-main-0.png);background-position:-25px -1233px;width:60px;height:60px}.hair_mustache_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1273px -1092px;width:90px;height:90px}.customize-option.hair_mustache_2_midnight{background-image:url(spritesmith-main-0.png);background-position:-1298px -1107px;width:60px;height:60px}.hair_mustache_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1273px -1001px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue{background-image:url(spritesmith-main-0.png);background-position:-1298px -1016px;width:60px;height:60px}.hair_mustache_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1273px -910px;width:90px;height:90px}.customize-option.hair_mustache_2_peppermint{background-image:url(spritesmith-main-0.png);background-position:-1298px -925px;width:60px;height:60px}.hair_mustache_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1273px -819px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen{background-image:url(spritesmith-main-0.png);background-position:-1298px -834px;width:60px;height:60px}.hair_mustache_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1273px -728px;width:90px;height:90px}.customize-option.hair_mustache_2_porange{background-image:url(spritesmith-main-0.png);background-position:-1298px -743px;width:60px;height:60px}.hair_mustache_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1273px -637px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink{background-image:url(spritesmith-main-0.png);background-position:-1298px -652px;width:60px;height:60px}.hair_mustache_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1273px -546px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple{background-image:url(spritesmith-main-0.png);background-position:-1298px -561px;width:60px;height:60px}.hair_mustache_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1273px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_pumpkin{background-image:url(spritesmith-main-0.png);background-position:-1298px -470px;width:60px;height:60px}.hair_mustache_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1273px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_purple{background-image:url(spritesmith-main-0.png);background-position:-1298px -379px;width:60px;height:60px}.hair_mustache_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1273px -273px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow{background-image:url(spritesmith-main-0.png);background-position:-1298px -288px;width:60px;height:60px}.hair_mustache_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1273px -182px;width:90px;height:90px}.customize-option.hair_mustache_2_rainbow{background-image:url(spritesmith-main-0.png);background-position:-1298px -197px;width:60px;height:60px}.hair_mustache_2_red{background-image:url(spritesmith-main-0.png);background-position:-1273px -91px;width:90px;height:90px}.customize-option.hair_mustache_2_red{background-image:url(spritesmith-main-0.png);background-position:-1298px -106px;width:60px;height:60px}.hair_mustache_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1273px 0;width:90px;height:90px}.customize-option.hair_mustache_2_snowy{background-image:url(spritesmith-main-0.png);background-position:-1298px -15px;width:60px;height:60px}.hair_mustache_2_white{background-image:url(spritesmith-main-0.png);background-position:-1092px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_white{background-image:url(spritesmith-main-0.png);background-position:-1117px -1142px;width:60px;height:60px}.hair_mustache_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1001px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_winternight{background-image:url(spritesmith-main-0.png);background-position:-1026px -1142px;width:60px;height:60px}.hair_mustache_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-910px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_winterstar{background-image:url(spritesmith-main-0.png);background-position:-935px -1142px;width:60px;height:60px}.hair_mustache_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-819px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_yellow{background-image:url(spritesmith-main-0.png);background-position:-844px -1142px;width:60px;height:60px}.hair_mustache_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-728px -1127px;width:90px;height:90px}.customize-option.hair_mustache_2_zombie{background-image:url(spritesmith-main-0.png);background-position:-753px -1142px;width:60px;height:60px}.hair_flower_1{background-image:url(spritesmith-main-0.png);background-position:-637px -1127px;width:90px;height:90px}.customize-option.hair_flower_1{background-image:url(spritesmith-main-0.png);background-position:-662px -1142px;width:60px;height:60px}.hair_flower_2{background-image:url(spritesmith-main-0.png);background-position:-546px -1127px;width:90px;height:90px}.customize-option.hair_flower_2{background-image:url(spritesmith-main-0.png);background-position:-571px -1142px;width:60px;height:60px}.hair_flower_3{background-image:url(spritesmith-main-0.png);background-position:-455px -1127px;width:90px;height:90px}.customize-option.hair_flower_3{background-image:url(spritesmith-main-0.png);background-position:-480px -1142px;width:60px;height:60px}.hair_flower_4{background-image:url(spritesmith-main-0.png);background-position:-364px -1127px;width:90px;height:90px}.customize-option.hair_flower_4{background-image:url(spritesmith-main-0.png);background-position:-389px -1142px;width:60px;height:60px}.hair_flower_5{background-image:url(spritesmith-main-0.png);background-position:-273px -1127px;width:90px;height:90px}.customize-option.hair_flower_5{background-image:url(spritesmith-main-0.png);background-position:-298px -1142px;width:60px;height:60px}.hair_flower_6{background-image:url(spritesmith-main-0.png);background-position:-182px -1127px;width:90px;height:90px}.customize-option.hair_flower_6{background-image:url(spritesmith-main-0.png);background-position:-207px -1142px;width:60px;height:60px}.hair_bangs_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-91px -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_TRUred{background-image:url(spritesmith-main-0.png);background-position:-116px -1142px;width:60px;height:60px}.hair_bangs_1_aurora{background-image:url(spritesmith-main-0.png);background-position:0 -1127px;width:90px;height:90px}.customize-option.hair_bangs_1_aurora{background-image:url(spritesmith-main-0.png);background-position:-25px -1142px;width:60px;height:60px}.hair_bangs_1_black{background-image:url(spritesmith-main-0.png);background-position:-1092px -1036px;width:90px;height:90px}.customize-option.hair_bangs_1_black{background-image:url(spritesmith-main-0.png);background-position:-1117px -1051px;width:60px;height:60px}.hair_bangs_1_blond{background-image:url(spritesmith-main-0.png);background-position:-1001px -1036px;width:90px;height:90px}.customize-option.hair_bangs_1_blond{background-image:url(spritesmith-main-0.png);background-position:-1026px -1051px;width:60px;height:60px}.hair_bangs_1_blue{background-image:url(spritesmith-main-1.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_bangs_1_blue{background-image:url(spritesmith-main-1.png);background-position:-116px -15px;width:60px;height:60px}.hair_bangs_1_brown{background-image:url(spritesmith-main-1.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_bangs_1_brown{background-image:url(spritesmith-main-1.png);background-position:-753px -1107px;width:60px;height:60px}.hair_bangs_1_candycane{background-image:url(spritesmith-main-1.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_bangs_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-25px -106px;width:60px;height:60px}.hair_bangs_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-116px -106px;width:60px;height:60px}.hair_bangs_1_festive{background-image:url(spritesmith-main-1.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_bangs_1_festive{background-image:url(spritesmith-main-1.png);background-position:-207px -15px;width:60px;height:60px}.hair_bangs_1_frost{background-image:url(spritesmith-main-1.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_frost{background-image:url(spritesmith-main-1.png);background-position:-207px -106px;width:60px;height:60px}.hair_bangs_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_bangs_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-25px -197px;width:60px;height:60px}.hair_bangs_1_green{background-image:url(spritesmith-main-1.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_green{background-image:url(spritesmith-main-1.png);background-position:-116px -197px;width:60px;height:60px}.hair_bangs_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-207px -197px;width:60px;height:60px}.hair_bangs_1_holly{background-image:url(spritesmith-main-1.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_bangs_1_holly{background-image:url(spritesmith-main-1.png);background-position:-298px -15px;width:60px;height:60px}.hair_bangs_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-298px -106px;width:60px;height:60px}.hair_bangs_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-298px -197px;width:60px;height:60px}.hair_bangs_1_pblue{background-image:url(spritesmith-main-1.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-25px -288px;width:60px;height:60px}.hair_bangs_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-116px -288px;width:60px;height:60px}.hair_bangs_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-207px -288px;width:60px;height:60px}.hair_bangs_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-298px -288px;width:60px;height:60px}.hair_bangs_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_bangs_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-389px -15px;width:60px;height:60px}.hair_bangs_1_porange{background-image:url(spritesmith-main-1.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_porange{background-image:url(spritesmith-main-1.png);background-position:-389px -106px;width:60px;height:60px}.hair_bangs_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_porange2{background-image:url(spritesmith-main-1.png);background-position:-389px -197px;width:60px;height:60px}.hair_bangs_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink{background-image:url(spritesmith-main-1.png);background-position:-389px -288px;width:60px;height:60px}.hair_bangs_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_bangs_1_ppink2{background-image:url(spritesmith-main-1.png);background-position:-25px -379px;width:60px;height:60px}.hair_bangs_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple{background-image:url(spritesmith-main-1.png);background-position:-116px -379px;width:60px;height:60px}.hair_bangs_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-207px -379px;width:60px;height:60px}.hair_bangs_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-298px -379px;width:60px;height:60px}.hair_bangs_1_purple{background-image:url(spritesmith-main-1.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_purple{background-image:url(spritesmith-main-1.png);background-position:-389px -379px;width:60px;height:60px}.hair_bangs_1_pyellow{background-image:url(spritesmith-main-1.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow{background-image:url(spritesmith-main-1.png);background-position:-480px -15px;width:60px;height:60px}.hair_bangs_1_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_bangs_1_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-480px -106px;width:60px;height:60px}.hair_bangs_1_rainbow{background-image:url(spritesmith-main-1.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_bangs_1_rainbow{background-image:url(spritesmith-main-1.png);background-position:-480px -197px;width:60px;height:60px}.hair_bangs_1_red{background-image:url(spritesmith-main-1.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_bangs_1_red{background-image:url(spritesmith-main-1.png);background-position:-480px -288px;width:60px;height:60px}.hair_bangs_1_snowy{background-image:url(spritesmith-main-1.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_bangs_1_snowy{background-image:url(spritesmith-main-1.png);background-position:-480px -379px;width:60px;height:60px}.hair_bangs_1_white{background-image:url(spritesmith-main-1.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_bangs_1_white{background-image:url(spritesmith-main-1.png);background-position:-25px -470px;width:60px;height:60px}.hair_bangs_1_winternight{background-image:url(spritesmith-main-1.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_winternight{background-image:url(spritesmith-main-1.png);background-position:-116px -470px;width:60px;height:60px}.hair_bangs_1_winterstar{background-image:url(spritesmith-main-1.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_winterstar{background-image:url(spritesmith-main-1.png);background-position:-207px -470px;width:60px;height:60px}.hair_bangs_1_yellow{background-image:url(spritesmith-main-1.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_yellow{background-image:url(spritesmith-main-1.png);background-position:-298px -470px;width:60px;height:60px}.hair_bangs_1_zombie{background-image:url(spritesmith-main-1.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_bangs_1_zombie{background-image:url(spritesmith-main-1.png);background-position:-389px -470px;width:60px;height:60px}.hair_bangs_2_TRUred{background-image:url(spritesmith-main-1.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_TRUred{background-image:url(spritesmith-main-1.png);background-position:-480px -470px;width:60px;height:60px}.hair_bangs_2_aurora{background-image:url(spritesmith-main-1.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_bangs_2_aurora{background-image:url(spritesmith-main-1.png);background-position:-571px -15px;width:60px;height:60px}.hair_bangs_2_black{background-image:url(spritesmith-main-1.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_black{background-image:url(spritesmith-main-1.png);background-position:-571px -106px;width:60px;height:60px}.hair_bangs_2_blond{background-image:url(spritesmith-main-1.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_blond{background-image:url(spritesmith-main-1.png);background-position:-571px -197px;width:60px;height:60px}.hair_bangs_2_blue{background-image:url(spritesmith-main-1.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_blue{background-image:url(spritesmith-main-1.png);background-position:-571px -288px;width:60px;height:60px}.hair_bangs_2_brown{background-image:url(spritesmith-main-1.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_brown{background-image:url(spritesmith-main-1.png);background-position:-571px -379px;width:60px;height:60px}.hair_bangs_2_candycane{background-image:url(spritesmith-main-1.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_candycane{background-image:url(spritesmith-main-1.png);background-position:-571px -470px;width:60px;height:60px}.hair_bangs_2_candycorn{background-image:url(spritesmith-main-1.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_bangs_2_candycorn{background-image:url(spritesmith-main-1.png);background-position:-25px -561px;width:60px;height:60px}.hair_bangs_2_festive{background-image:url(spritesmith-main-1.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_festive{background-image:url(spritesmith-main-1.png);background-position:-116px -561px;width:60px;height:60px}.hair_bangs_2_frost{background-image:url(spritesmith-main-1.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_frost{background-image:url(spritesmith-main-1.png);background-position:-207px -561px;width:60px;height:60px}.hair_bangs_2_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-298px -561px;width:60px;height:60px}.hair_bangs_2_green{background-image:url(spritesmith-main-1.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_green{background-image:url(spritesmith-main-1.png);background-position:-389px -561px;width:60px;height:60px}.hair_bangs_2_halloween{background-image:url(spritesmith-main-1.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_halloween{background-image:url(spritesmith-main-1.png);background-position:-480px -561px;width:60px;height:60px}.hair_bangs_2_holly{background-image:url(spritesmith-main-1.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_holly{background-image:url(spritesmith-main-1.png);background-position:-571px -561px;width:60px;height:60px}.hair_bangs_2_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_bangs_2_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-662px -15px;width:60px;height:60px}.hair_bangs_2_midnight{background-image:url(spritesmith-main-1.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_midnight{background-image:url(spritesmith-main-1.png);background-position:-662px -106px;width:60px;height:60px}.hair_bangs_2_pblue{background-image:url(spritesmith-main-1.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue{background-image:url(spritesmith-main-1.png);background-position:-662px -197px;width:60px;height:60px}.hair_bangs_2_pblue2{background-image:url(spritesmith-main-1.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_pblue2{background-image:url(spritesmith-main-1.png);background-position:-662px -288px;width:60px;height:60px}.hair_bangs_2_peppermint{background-image:url(spritesmith-main-1.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_peppermint{background-image:url(spritesmith-main-1.png);background-position:-662px -379px;width:60px;height:60px}.hair_bangs_2_pgreen{background-image:url(spritesmith-main-1.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen{background-image:url(spritesmith-main-1.png);background-position:-662px -470px;width:60px;height:60px}.hair_bangs_2_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-662px -561px;width:60px;height:60px}.hair_bangs_2_porange{background-image:url(spritesmith-main-1.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_bangs_2_porange{background-image:url(spritesmith-main-1.png);background-position:-25px -652px;width:60px;height:60px}.hair_bangs_2_porange2{background-image:url(spritesmith-main-1.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_porange2{background-image:url(spritesmith-main-1.png);background-position:-116px -652px;width:60px;height:60px}.hair_bangs_2_ppink{background-image:url(spritesmith-main-1.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink{background-image:url(spritesmith-main-1.png);background-position:-207px -652px;width:60px;height:60px}.hair_bangs_2_ppink2{background-image:url(spritesmith-main-1.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_ppink2{background-image:url(spritesmith-main-1.png);background-position:-298px -652px;width:60px;height:60px}.hair_bangs_2_ppurple{background-image:url(spritesmith-main-1.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple{background-image:url(spritesmith-main-1.png);background-position:-389px -652px;width:60px;height:60px}.hair_bangs_2_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-480px -652px;width:60px;height:60px}.hair_bangs_2_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-571px -652px;width:60px;height:60px}.hair_bangs_2_purple{background-image:url(spritesmith-main-1.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_purple{background-image:url(spritesmith-main-1.png);background-position:-662px -652px;width:60px;height:60px}.hair_bangs_2_pyellow{background-image:url(spritesmith-main-1.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow{background-image:url(spritesmith-main-1.png);background-position:-753px -15px;width:60px;height:60px}.hair_bangs_2_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_bangs_2_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-753px -106px;width:60px;height:60px}.hair_bangs_2_rainbow{background-image:url(spritesmith-main-1.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_bangs_2_rainbow{background-image:url(spritesmith-main-1.png);background-position:-753px -197px;width:60px;height:60px}.hair_bangs_2_red{background-image:url(spritesmith-main-1.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_bangs_2_red{background-image:url(spritesmith-main-1.png);background-position:-753px -288px;width:60px;height:60px}.hair_bangs_2_snowy{background-image:url(spritesmith-main-1.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_bangs_2_snowy{background-image:url(spritesmith-main-1.png);background-position:-753px -379px;width:60px;height:60px}.hair_bangs_2_white{background-image:url(spritesmith-main-1.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_bangs_2_white{background-image:url(spritesmith-main-1.png);background-position:-753px -470px;width:60px;height:60px}.hair_bangs_2_winternight{background-image:url(spritesmith-main-1.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_bangs_2_winternight{background-image:url(spritesmith-main-1.png);background-position:-753px -561px;width:60px;height:60px}.hair_bangs_2_winterstar{background-image:url(spritesmith-main-1.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_bangs_2_winterstar{background-image:url(spritesmith-main-1.png);background-position:-753px -652px;width:60px;height:60px}.hair_bangs_2_yellow{background-image:url(spritesmith-main-1.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_bangs_2_yellow{background-image:url(spritesmith-main-1.png);background-position:-25px -743px;width:60px;height:60px}.hair_bangs_2_zombie{background-image:url(spritesmith-main-1.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_bangs_2_zombie{background-image:url(spritesmith-main-1.png);background-position:-116px -743px;width:60px;height:60px}.hair_bangs_3_TRUred{background-image:url(spritesmith-main-1.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_TRUred{background-image:url(spritesmith-main-1.png);background-position:-207px -743px;width:60px;height:60px}.hair_bangs_3_aurora{background-image:url(spritesmith-main-1.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_aurora{background-image:url(spritesmith-main-1.png);background-position:-298px -743px;width:60px;height:60px}.hair_bangs_3_black{background-image:url(spritesmith-main-1.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_black{background-image:url(spritesmith-main-1.png);background-position:-389px -743px;width:60px;height:60px}.hair_bangs_3_blond{background-image:url(spritesmith-main-1.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_blond{background-image:url(spritesmith-main-1.png);background-position:-480px -743px;width:60px;height:60px}.hair_bangs_3_blue{background-image:url(spritesmith-main-1.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_blue{background-image:url(spritesmith-main-1.png);background-position:-571px -743px;width:60px;height:60px}.hair_bangs_3_brown{background-image:url(spritesmith-main-1.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_brown{background-image:url(spritesmith-main-1.png);background-position:-662px -743px;width:60px;height:60px}.hair_bangs_3_candycane{background-image:url(spritesmith-main-1.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_candycane{background-image:url(spritesmith-main-1.png);background-position:-753px -743px;width:60px;height:60px}.hair_bangs_3_candycorn{background-image:url(spritesmith-main-1.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_bangs_3_candycorn{background-image:url(spritesmith-main-1.png);background-position:-844px -15px;width:60px;height:60px}.hair_bangs_3_festive{background-image:url(spritesmith-main-1.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_festive{background-image:url(spritesmith-main-1.png);background-position:-844px -106px;width:60px;height:60px}.hair_bangs_3_frost{background-image:url(spritesmith-main-1.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_frost{background-image:url(spritesmith-main-1.png);background-position:-844px -197px;width:60px;height:60px}.hair_bangs_3_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-844px -288px;width:60px;height:60px}.hair_bangs_3_green{background-image:url(spritesmith-main-1.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_green{background-image:url(spritesmith-main-1.png);background-position:-844px -379px;width:60px;height:60px}.hair_bangs_3_halloween{background-image:url(spritesmith-main-1.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_halloween{background-image:url(spritesmith-main-1.png);background-position:-844px -470px;width:60px;height:60px}.hair_bangs_3_holly{background-image:url(spritesmith-main-1.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_holly{background-image:url(spritesmith-main-1.png);background-position:-844px -561px;width:60px;height:60px}.hair_bangs_3_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-844px -652px;width:60px;height:60px}.hair_bangs_3_midnight{background-image:url(spritesmith-main-1.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_midnight{background-image:url(spritesmith-main-1.png);background-position:-844px -743px;width:60px;height:60px}.hair_bangs_3_pblue{background-image:url(spritesmith-main-1.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue{background-image:url(spritesmith-main-1.png);background-position:-25px -834px;width:60px;height:60px}.hair_bangs_3_pblue2{background-image:url(spritesmith-main-1.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pblue2{background-image:url(spritesmith-main-1.png);background-position:-116px -834px;width:60px;height:60px}.hair_bangs_3_peppermint{background-image:url(spritesmith-main-1.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_peppermint{background-image:url(spritesmith-main-1.png);background-position:-207px -834px;width:60px;height:60px}.hair_bangs_3_pgreen{background-image:url(spritesmith-main-1.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen{background-image:url(spritesmith-main-1.png);background-position:-298px -834px;width:60px;height:60px}.hair_bangs_3_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-389px -834px;width:60px;height:60px}.hair_bangs_3_porange{background-image:url(spritesmith-main-1.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_porange{background-image:url(spritesmith-main-1.png);background-position:-480px -834px;width:60px;height:60px}.hair_bangs_3_porange2{background-image:url(spritesmith-main-1.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_porange2{background-image:url(spritesmith-main-1.png);background-position:-571px -834px;width:60px;height:60px}.hair_bangs_3_ppink{background-image:url(spritesmith-main-1.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink{background-image:url(spritesmith-main-1.png);background-position:-662px -834px;width:60px;height:60px}.hair_bangs_3_ppink2{background-image:url(spritesmith-main-1.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppink2{background-image:url(spritesmith-main-1.png);background-position:-753px -834px;width:60px;height:60px}.hair_bangs_3_ppurple{background-image:url(spritesmith-main-1.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple{background-image:url(spritesmith-main-1.png);background-position:-844px -834px;width:60px;height:60px}.hair_bangs_3_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_bangs_3_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-935px -15px;width:60px;height:60px}.hair_bangs_3_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_bangs_3_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-935px -106px;width:60px;height:60px}.hair_bangs_3_purple{background-image:url(spritesmith-main-1.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_bangs_3_purple{background-image:url(spritesmith-main-1.png);background-position:-935px -197px;width:60px;height:60px}.hair_bangs_3_pyellow{background-image:url(spritesmith-main-1.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow{background-image:url(spritesmith-main-1.png);background-position:-935px -288px;width:60px;height:60px}.hair_bangs_3_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_bangs_3_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-935px -379px;width:60px;height:60px}.hair_bangs_3_rainbow{background-image:url(spritesmith-main-1.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_bangs_3_rainbow{background-image:url(spritesmith-main-1.png);background-position:-935px -470px;width:60px;height:60px}.hair_bangs_3_red{background-image:url(spritesmith-main-1.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_bangs_3_red{background-image:url(spritesmith-main-1.png);background-position:-935px -561px;width:60px;height:60px}.hair_bangs_3_snowy{background-image:url(spritesmith-main-1.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_bangs_3_snowy{background-image:url(spritesmith-main-1.png);background-position:-935px -652px;width:60px;height:60px}.hair_bangs_3_white{background-image:url(spritesmith-main-1.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_bangs_3_white{background-image:url(spritesmith-main-1.png);background-position:-935px -743px;width:60px;height:60px}.hair_bangs_3_winternight{background-image:url(spritesmith-main-1.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_bangs_3_winternight{background-image:url(spritesmith-main-1.png);background-position:-935px -834px;width:60px;height:60px}.hair_bangs_3_winterstar{background-image:url(spritesmith-main-1.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_bangs_3_winterstar{background-image:url(spritesmith-main-1.png);background-position:-25px -925px;width:60px;height:60px}.hair_bangs_3_yellow{background-image:url(spritesmith-main-1.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_bangs_3_yellow{background-image:url(spritesmith-main-1.png);background-position:-116px -925px;width:60px;height:60px}.hair_bangs_3_zombie{background-image:url(spritesmith-main-1.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_bangs_3_zombie{background-image:url(spritesmith-main-1.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_10_TRUred{background-image:url(spritesmith-main-1.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_10_TRUred{background-image:url(spritesmith-main-1.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_10_aurora{background-image:url(spritesmith-main-1.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_10_aurora{background-image:url(spritesmith-main-1.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_10_black{background-image:url(spritesmith-main-1.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_10_black{background-image:url(spritesmith-main-1.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_10_blond{background-image:url(spritesmith-main-1.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_10_blond{background-image:url(spritesmith-main-1.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_10_blue{background-image:url(spritesmith-main-1.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_10_blue{background-image:url(spritesmith-main-1.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_10_brown{background-image:url(spritesmith-main-1.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_10_brown{background-image:url(spritesmith-main-1.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_10_candycane{background-image:url(spritesmith-main-1.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_10_candycane{background-image:url(spritesmith-main-1.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_10_candycorn{background-image:url(spritesmith-main-1.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_10_candycorn{background-image:url(spritesmith-main-1.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_10_festive{background-image:url(spritesmith-main-1.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_10_festive{background-image:url(spritesmith-main-1.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_10_frost{background-image:url(spritesmith-main-1.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_10_frost{background-image:url(spritesmith-main-1.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_10_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_10_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_10_green{background-image:url(spritesmith-main-1.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_10_green{background-image:url(spritesmith-main-1.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_10_halloween{background-image:url(spritesmith-main-1.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_10_halloween{background-image:url(spritesmith-main-1.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_10_holly{background-image:url(spritesmith-main-1.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_10_holly{background-image:url(spritesmith-main-1.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_10_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_10_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_10_midnight{background-image:url(spritesmith-main-1.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_10_midnight{background-image:url(spritesmith-main-1.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_10_pblue{background-image:url(spritesmith-main-1.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_10_pblue{background-image:url(spritesmith-main-1.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_10_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_10_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_10_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_10_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_10_pgreen{background-image:url(spritesmith-main-1.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_10_pgreen{background-image:url(spritesmith-main-1.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_10_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_10_porange{background-image:url(spritesmith-main-1.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_10_porange{background-image:url(spritesmith-main-1.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_10_porange2{background-image:url(spritesmith-main-1.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_10_porange2{background-image:url(spritesmith-main-1.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_10_ppink{background-image:url(spritesmith-main-1.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppink{background-image:url(spritesmith-main-1.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_10_ppink2{background-image:url(spritesmith-main-1.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppink2{background-image:url(spritesmith-main-1.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_10_ppurple{background-image:url(spritesmith-main-1.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppurple{background-image:url(spritesmith-main-1.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_10_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_10_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_10_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_10_purple{background-image:url(spritesmith-main-1.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_10_purple{background-image:url(spritesmith-main-1.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_10_pyellow{background-image:url(spritesmith-main-1.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pyellow{background-image:url(spritesmith-main-1.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_10_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_10_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_10_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_10_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_10_red{background-image:url(spritesmith-main-1.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_10_red{background-image:url(spritesmith-main-1.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_10_snowy{background-image:url(spritesmith-main-1.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_10_snowy{background-image:url(spritesmith-main-1.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_10_white{background-image:url(spritesmith-main-1.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_10_white{background-image:url(spritesmith-main-1.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_10_winternight{background-image:url(spritesmith-main-1.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_10_winternight{background-image:url(spritesmith-main-1.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_10_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_10_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_10_yellow{background-image:url(spritesmith-main-1.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_10_yellow{background-image:url(spritesmith-main-1.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_10_zombie{background-image:url(spritesmith-main-1.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_10_zombie{background-image:url(spritesmith-main-1.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_11_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_11_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_11_aurora{background-image:url(spritesmith-main-1.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_11_aurora{background-image:url(spritesmith-main-1.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_11_black{background-image:url(spritesmith-main-1.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_11_black{background-image:url(spritesmith-main-1.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_11_blond{background-image:url(spritesmith-main-1.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_11_blond{background-image:url(spritesmith-main-1.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_11_blue{background-image:url(spritesmith-main-1.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_11_blue{background-image:url(spritesmith-main-1.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_11_brown{background-image:url(spritesmith-main-1.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_11_brown{background-image:url(spritesmith-main-1.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_11_candycane{background-image:url(spritesmith-main-1.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_11_candycane{background-image:url(spritesmith-main-1.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_11_candycorn{background-image:url(spritesmith-main-1.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_11_candycorn{background-image:url(spritesmith-main-1.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_11_festive{background-image:url(spritesmith-main-1.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_11_festive{background-image:url(spritesmith-main-1.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_11_frost{background-image:url(spritesmith-main-1.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_11_frost{background-image:url(spritesmith-main-1.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_11_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_11_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_11_green{background-image:url(spritesmith-main-1.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_11_green{background-image:url(spritesmith-main-1.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_11_halloween{background-image:url(spritesmith-main-1.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_11_halloween{background-image:url(spritesmith-main-1.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_11_holly{background-image:url(spritesmith-main-1.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_11_holly{background-image:url(spritesmith-main-1.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_11_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_11_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_11_midnight{background-image:url(spritesmith-main-1.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_11_midnight{background-image:url(spritesmith-main-1.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_11_pblue{background-image:url(spritesmith-main-1.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pblue{background-image:url(spritesmith-main-1.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_11_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_11_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_11_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_11_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_11_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_11_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_11_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_11_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_11_porange{background-image:url(spritesmith-main-1.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_11_porange{background-image:url(spritesmith-main-1.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_11_porange2{background-image:url(spritesmith-main-1.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_11_porange2{background-image:url(spritesmith-main-1.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_11_ppink{background-image:url(spritesmith-main-1.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_11_ppink{background-image:url(spritesmith-main-1.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_11_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_11_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_11_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_11_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_11_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_11_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_11_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_11_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_11_purple{background-image:url(spritesmith-main-1.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_11_purple{background-image:url(spritesmith-main-1.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_11_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_11_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_11_pyellow2{background-image:url(spritesmith-main-1.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_11_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_11_rainbow{background-image:url(spritesmith-main-1.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_11_rainbow{background-image:url(spritesmith-main-1.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_11_red{background-image:url(spritesmith-main-1.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_11_red{background-image:url(spritesmith-main-1.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_11_snowy{background-image:url(spritesmith-main-1.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_11_snowy{background-image:url(spritesmith-main-1.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_11_white{background-image:url(spritesmith-main-1.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_11_white{background-image:url(spritesmith-main-1.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_11_winternight{background-image:url(spritesmith-main-1.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_11_winternight{background-image:url(spritesmith-main-1.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_11_winterstar{background-image:url(spritesmith-main-1.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_11_winterstar{background-image:url(spritesmith-main-1.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_11_yellow{background-image:url(spritesmith-main-1.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_11_yellow{background-image:url(spritesmith-main-1.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_11_zombie{background-image:url(spritesmith-main-1.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_11_zombie{background-image:url(spritesmith-main-1.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_12_TRUred{background-image:url(spritesmith-main-1.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_12_TRUred{background-image:url(spritesmith-main-1.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_12_aurora{background-image:url(spritesmith-main-1.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_12_aurora{background-image:url(spritesmith-main-1.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_12_black{background-image:url(spritesmith-main-1.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_12_black{background-image:url(spritesmith-main-1.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_12_blond{background-image:url(spritesmith-main-1.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_12_blond{background-image:url(spritesmith-main-1.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_12_blue{background-image:url(spritesmith-main-1.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_12_blue{background-image:url(spritesmith-main-1.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_12_brown{background-image:url(spritesmith-main-1.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_12_brown{background-image:url(spritesmith-main-1.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_12_candycane{background-image:url(spritesmith-main-1.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_12_candycane{background-image:url(spritesmith-main-1.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_12_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_12_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_12_festive{background-image:url(spritesmith-main-1.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_12_festive{background-image:url(spritesmith-main-1.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_12_frost{background-image:url(spritesmith-main-1.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_12_frost{background-image:url(spritesmith-main-1.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_12_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_12_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_12_green{background-image:url(spritesmith-main-1.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_12_green{background-image:url(spritesmith-main-1.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_12_halloween{background-image:url(spritesmith-main-1.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_12_halloween{background-image:url(spritesmith-main-1.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_12_holly{background-image:url(spritesmith-main-1.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_12_holly{background-image:url(spritesmith-main-1.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_12_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_12_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_12_midnight{background-image:url(spritesmith-main-1.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_12_midnight{background-image:url(spritesmith-main-1.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_12_pblue{background-image:url(spritesmith-main-1.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_12_pblue{background-image:url(spritesmith-main-1.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_12_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_12_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_12_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_12_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_12_pgreen{background-image:url(spritesmith-main-1.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_12_pgreen{background-image:url(spritesmith-main-1.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_12_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_12_porange{background-image:url(spritesmith-main-1.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_12_porange{background-image:url(spritesmith-main-1.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_12_porange2{background-image:url(spritesmith-main-1.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_12_porange2{background-image:url(spritesmith-main-1.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_12_ppink{background-image:url(spritesmith-main-1.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppink{background-image:url(spritesmith-main-1.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_12_ppink2{background-image:url(spritesmith-main-1.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppink2{background-image:url(spritesmith-main-1.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_12_ppurple{background-image:url(spritesmith-main-1.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppurple{background-image:url(spritesmith-main-1.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_12_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_12_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_12_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_12_purple{background-image:url(spritesmith-main-1.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_12_purple{background-image:url(spritesmith-main-1.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_12_pyellow{background-image:url(spritesmith-main-1.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pyellow{background-image:url(spritesmith-main-1.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_12_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_12_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_12_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_12_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_12_red{background-image:url(spritesmith-main-1.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_12_red{background-image:url(spritesmith-main-1.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_12_snowy{background-image:url(spritesmith-main-1.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_12_snowy{background-image:url(spritesmith-main-1.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_12_white{background-image:url(spritesmith-main-1.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_12_white{background-image:url(spritesmith-main-1.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_12_winternight{background-image:url(spritesmith-main-1.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_12_winternight{background-image:url(spritesmith-main-1.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_12_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_12_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_12_yellow{background-image:url(spritesmith-main-1.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_12_yellow{background-image:url(spritesmith-main-1.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_12_zombie{background-image:url(spritesmith-main-1.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_12_zombie{background-image:url(spritesmith-main-1.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_13_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_13_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_13_aurora{background-image:url(spritesmith-main-1.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_13_aurora{background-image:url(spritesmith-main-1.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_13_black{background-image:url(spritesmith-main-1.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_13_black{background-image:url(spritesmith-main-1.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_13_blond{background-image:url(spritesmith-main-1.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_13_blond{background-image:url(spritesmith-main-1.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_13_blue{background-image:url(spritesmith-main-1.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_13_blue{background-image:url(spritesmith-main-1.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_13_brown{background-image:url(spritesmith-main-1.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_13_brown{background-image:url(spritesmith-main-1.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_13_candycane{background-image:url(spritesmith-main-1.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_13_candycane{background-image:url(spritesmith-main-1.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_13_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_13_candycorn{background-image:url(spritesmith-main-1.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_13_festive{background-image:url(spritesmith-main-1.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_13_festive{background-image:url(spritesmith-main-1.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_13_frost{background-image:url(spritesmith-main-1.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_13_frost{background-image:url(spritesmith-main-1.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_13_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_13_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_13_green{background-image:url(spritesmith-main-1.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_13_green{background-image:url(spritesmith-main-1.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_13_halloween{background-image:url(spritesmith-main-1.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_13_halloween{background-image:url(spritesmith-main-1.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_13_holly{background-image:url(spritesmith-main-1.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_13_holly{background-image:url(spritesmith-main-1.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_13_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_13_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_13_midnight{background-image:url(spritesmith-main-1.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_13_midnight{background-image:url(spritesmith-main-1.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_13_pblue{background-image:url(spritesmith-main-1.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pblue{background-image:url(spritesmith-main-1.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_13_pblue2{background-image:url(spritesmith-main-1.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pblue2{background-image:url(spritesmith-main-1.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_13_peppermint{background-image:url(spritesmith-main-1.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_13_peppermint{background-image:url(spritesmith-main-1.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_13_pgreen{background-image:url(spritesmith-main-1.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pgreen{background-image:url(spritesmith-main-1.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_13_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_13_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_13_porange{background-image:url(spritesmith-main-1.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_13_porange{background-image:url(spritesmith-main-1.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_13_porange2{background-image:url(spritesmith-main-1.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_13_porange2{background-image:url(spritesmith-main-1.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_13_ppink{background-image:url(spritesmith-main-1.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppink{background-image:url(spritesmith-main-1.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_13_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_13_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_13_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_13_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_13_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_13_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_13_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_13_purple{background-image:url(spritesmith-main-1.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_13_purple{background-image:url(spritesmith-main-1.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_13_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_13_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_13_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_13_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_13_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_13_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_13_red{background-image:url(spritesmith-main-1.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_13_red{background-image:url(spritesmith-main-1.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_13_snowy{background-image:url(spritesmith-main-1.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_13_snowy{background-image:url(spritesmith-main-1.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_13_white{background-image:url(spritesmith-main-1.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_13_white{background-image:url(spritesmith-main-1.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_13_winternight{background-image:url(spritesmith-main-1.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_13_winternight{background-image:url(spritesmith-main-1.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_13_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_13_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_13_yellow{background-image:url(spritesmith-main-1.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_13_yellow{background-image:url(spritesmith-main-1.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_13_zombie{background-image:url(spritesmith-main-1.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_13_zombie{background-image:url(spritesmith-main-1.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_14_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_14_TRUred{background-image:url(spritesmith-main-1.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_14_aurora{background-image:url(spritesmith-main-1.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_14_aurora{background-image:url(spritesmith-main-1.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_14_black{background-image:url(spritesmith-main-1.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_14_black{background-image:url(spritesmith-main-1.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_14_blond{background-image:url(spritesmith-main-1.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_14_blond{background-image:url(spritesmith-main-1.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_14_blue{background-image:url(spritesmith-main-1.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_14_blue{background-image:url(spritesmith-main-1.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_14_brown{background-image:url(spritesmith-main-1.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_14_brown{background-image:url(spritesmith-main-1.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_14_candycane{background-image:url(spritesmith-main-1.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_14_candycane{background-image:url(spritesmith-main-1.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_14_candycorn{background-image:url(spritesmith-main-1.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_14_candycorn{background-image:url(spritesmith-main-1.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_14_festive{background-image:url(spritesmith-main-1.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_14_festive{background-image:url(spritesmith-main-1.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_14_frost{background-image:url(spritesmith-main-1.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_14_frost{background-image:url(spritesmith-main-1.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_14_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_14_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_14_green{background-image:url(spritesmith-main-1.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_14_green{background-image:url(spritesmith-main-1.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_14_halloween{background-image:url(spritesmith-main-1.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_14_halloween{background-image:url(spritesmith-main-1.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_14_holly{background-image:url(spritesmith-main-1.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_14_holly{background-image:url(spritesmith-main-1.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_14_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_14_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_14_midnight{background-image:url(spritesmith-main-1.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_14_midnight{background-image:url(spritesmith-main-1.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_14_pblue{background-image:url(spritesmith-main-1.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pblue{background-image:url(spritesmith-main-1.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_14_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_14_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_14_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_14_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_14_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_14_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_14_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_14_porange{background-image:url(spritesmith-main-1.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_14_porange{background-image:url(spritesmith-main-1.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_14_porange2{background-image:url(spritesmith-main-1.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_14_porange2{background-image:url(spritesmith-main-1.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_14_ppink{background-image:url(spritesmith-main-1.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_14_ppink{background-image:url(spritesmith-main-1.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_14_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_14_ppink2{background-image:url(spritesmith-main-1.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_14_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_14_ppurple{background-image:url(spritesmith-main-1.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_14_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_14_ppurple2{background-image:url(spritesmith-main-1.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_14_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_14_pumpkin{background-image:url(spritesmith-main-1.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_14_purple{background-image:url(spritesmith-main-1.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_14_purple{background-image:url(spritesmith-main-1.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_14_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_14_pyellow{background-image:url(spritesmith-main-1.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_14_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_14_pyellow2{background-image:url(spritesmith-main-1.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_14_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_14_rainbow{background-image:url(spritesmith-main-1.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_14_red{background-image:url(spritesmith-main-1.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_14_red{background-image:url(spritesmith-main-1.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_14_snowy{background-image:url(spritesmith-main-1.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_14_snowy{background-image:url(spritesmith-main-1.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_14_white{background-image:url(spritesmith-main-1.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_14_white{background-image:url(spritesmith-main-1.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_14_winternight{background-image:url(spritesmith-main-1.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_14_winternight{background-image:url(spritesmith-main-1.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_14_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_14_winterstar{background-image:url(spritesmith-main-1.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_14_yellow{background-image:url(spritesmith-main-1.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_14_yellow{background-image:url(spritesmith-main-1.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_14_zombie{background-image:url(spritesmith-main-1.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_14_zombie{background-image:url(spritesmith-main-1.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_1_TRUred{background-image:url(spritesmith-main-1.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_1_TRUred{background-image:url(spritesmith-main-1.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_1_aurora{background-image:url(spritesmith-main-1.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_1_aurora{background-image:url(spritesmith-main-1.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_1_black{background-image:url(spritesmith-main-1.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_1_black{background-image:url(spritesmith-main-1.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_1_blond{background-image:url(spritesmith-main-1.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_1_blond{background-image:url(spritesmith-main-1.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_1_blue{background-image:url(spritesmith-main-1.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_1_blue{background-image:url(spritesmith-main-1.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_1_brown{background-image:url(spritesmith-main-1.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_1_brown{background-image:url(spritesmith-main-1.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_1_candycane{background-image:url(spritesmith-main-1.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_1_candycorn{background-image:url(spritesmith-main-1.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_1_festive{background-image:url(spritesmith-main-1.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_1_festive{background-image:url(spritesmith-main-1.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_1_frost{background-image:url(spritesmith-main-1.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_1_frost{background-image:url(spritesmith-main-1.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_1_ghostwhite{background-image:url(spritesmith-main-1.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_1_green{background-image:url(spritesmith-main-1.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_1_green{background-image:url(spritesmith-main-1.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_1_halloween{background-image:url(spritesmith-main-1.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_1_holly{background-image:url(spritesmith-main-1.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_1_holly{background-image:url(spritesmith-main-1.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_1_hollygreen{background-image:url(spritesmith-main-1.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_base_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_base_1_midnight{background-image:url(spritesmith-main-1.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_base_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_1_pblue{background-image:url(spritesmith-main-1.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_1_pblue2{background-image:url(spritesmith-main-1.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_1_peppermint{background-image:url(spritesmith-main-1.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_1_pgreen{background-image:url(spritesmith-main-1.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_1_pgreen2{background-image:url(spritesmith-main-1.png);background-position:-1663px -379px;width:60px;height:60px}.Mount_Icon_Wolf-Red{background-image:url(spritesmith-main-10.png);background-position:-82px 0;width:81px;height:99px}.Mount_Icon_Wolf-Shade{background-image:url(spritesmith-main-10.png);background-position:-82px -1100px;width:81px;height:99px}.Mount_Icon_Wolf-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-164px 0;width:81px;height:99px}.Mount_Icon_Wolf-Spooky{background-image:url(spritesmith-main-10.png);background-position:0 -100px;width:81px;height:99px}.Mount_Icon_Wolf-White{background-image:url(spritesmith-main-10.png);background-position:-82px -100px;width:81px;height:99px}.Mount_Icon_Wolf-Zombie{background-image:url(spritesmith-main-10.png);background-position:-164px -100px;width:81px;height:99px}.Pet-BearCub-Base{background-image:url(spritesmith-main-10.png);background-position:-246px 0;width:81px;height:99px}.Pet-BearCub-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-246px -100px;width:81px;height:99px}.Pet-BearCub-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:0 -200px;width:81px;height:99px}.Pet-BearCub-Desert{background-image:url(spritesmith-main-10.png);background-position:-82px -200px;width:81px;height:99px}.Pet-BearCub-Golden{background-image:url(spritesmith-main-10.png);background-position:-164px -200px;width:81px;height:99px}.Pet-BearCub-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-246px -200px;width:81px;height:99px}.Pet-BearCub-Polar{background-image:url(spritesmith-main-10.png);background-position:-328px 0;width:81px;height:99px}.Pet-BearCub-Red{background-image:url(spritesmith-main-10.png);background-position:-328px -100px;width:81px;height:99px}.Pet-BearCub-Shade{background-image:url(spritesmith-main-10.png);background-position:-328px -200px;width:81px;height:99px}.Pet-BearCub-Skeleton{background-image:url(spritesmith-main-10.png);background-position:0 -300px;width:81px;height:99px}.Pet-BearCub-Spooky{background-image:url(spritesmith-main-10.png);background-position:-82px -300px;width:81px;height:99px}.Pet-BearCub-White{background-image:url(spritesmith-main-10.png);background-position:-164px -300px;width:81px;height:99px}.Pet-BearCub-Zombie{background-image:url(spritesmith-main-10.png);background-position:-246px -300px;width:81px;height:99px}.Pet-Bunny-Base{background-image:url(spritesmith-main-10.png);background-position:-328px -300px;width:81px;height:99px}.Pet-Bunny-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-410px 0;width:81px;height:99px}.Pet-Bunny-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-410px -100px;width:81px;height:99px}.Pet-Bunny-Desert{background-image:url(spritesmith-main-10.png);background-position:-410px -200px;width:81px;height:99px}.Pet-Bunny-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -300px;width:81px;height:99px}.Pet-Bunny-Red{background-image:url(spritesmith-main-10.png);background-position:-492px 0;width:81px;height:99px}.Pet-Bunny-Shade{background-image:url(spritesmith-main-10.png);background-position:-492px -100px;width:81px;height:99px}.Pet-Bunny-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-492px -200px;width:81px;height:99px}.Pet-Bunny-White{background-image:url(spritesmith-main-10.png);background-position:-492px -300px;width:81px;height:99px}.Pet-Bunny-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -400px;width:81px;height:99px}.Pet-Cactus-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -400px;width:81px;height:99px}.Pet-Cactus-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -400px;width:81px;height:99px}.Pet-Cactus-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -400px;width:81px;height:99px}.Pet-Cactus-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -400px;width:81px;height:99px}.Pet-Cactus-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -400px;width:81px;height:99px}.Pet-Cactus-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-492px -400px;width:81px;height:99px}.Pet-Cactus-Red{background-image:url(spritesmith-main-10.png);background-position:-574px 0;width:81px;height:99px}.Pet-Cactus-Shade{background-image:url(spritesmith-main-10.png);background-position:-574px -100px;width:81px;height:99px}.Pet-Cactus-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-574px -200px;width:81px;height:99px}.Pet-Cactus-Spooky{background-image:url(spritesmith-main-10.png);background-position:-574px -300px;width:81px;height:99px}.Pet-Cactus-White{background-image:url(spritesmith-main-10.png);background-position:-574px -400px;width:81px;height:99px}.Pet-Cactus-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -500px;width:81px;height:99px}.Pet-Cheetah-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -500px;width:81px;height:99px}.Pet-Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -500px;width:81px;height:99px}.Pet-Cheetah-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -500px;width:81px;height:99px}.Pet-Cheetah-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -500px;width:81px;height:99px}.Pet-Cheetah-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -500px;width:81px;height:99px}.Pet-Cheetah-Red{background-image:url(spritesmith-main-10.png);background-position:-492px -500px;width:81px;height:99px}.Pet-Cheetah-Shade{background-image:url(spritesmith-main-10.png);background-position:-574px -500px;width:81px;height:99px}.Pet-Cheetah-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-656px 0;width:81px;height:99px}.Pet-Cheetah-White{background-image:url(spritesmith-main-10.png);background-position:-656px -100px;width:81px;height:99px}.Pet-Cheetah-Zombie{background-image:url(spritesmith-main-10.png);background-position:-656px -200px;width:81px;height:99px}.Pet-Cuttlefish-Base{background-image:url(spritesmith-main-10.png);background-position:-656px -300px;width:81px;height:99px}.Pet-Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-656px -400px;width:81px;height:99px}.Pet-Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-656px -500px;width:81px;height:99px}.Pet-Cuttlefish-Desert{background-image:url(spritesmith-main-10.png);background-position:0 -600px;width:81px;height:99px}.Pet-Cuttlefish-Golden{background-image:url(spritesmith-main-10.png);background-position:-82px -600px;width:81px;height:99px}.Pet-Cuttlefish-Red{background-image:url(spritesmith-main-10.png);background-position:-164px -600px;width:81px;height:99px}.Pet-Cuttlefish-Shade{background-image:url(spritesmith-main-10.png);background-position:-246px -600px;width:81px;height:99px}.Pet-Cuttlefish-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-328px -600px;width:81px;height:99px}.Pet-Cuttlefish-White{background-image:url(spritesmith-main-10.png);background-position:-410px -600px;width:81px;height:99px}.Pet-Cuttlefish-Zombie{background-image:url(spritesmith-main-10.png);background-position:-492px -600px;width:81px;height:99px}.Pet-Deer-Base{background-image:url(spritesmith-main-10.png);background-position:-574px -600px;width:81px;height:99px}.Pet-Deer-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-656px -600px;width:81px;height:99px}.Pet-Deer-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-738px 0;width:81px;height:99px}.Pet-Deer-Desert{background-image:url(spritesmith-main-10.png);background-position:-738px -100px;width:81px;height:99px}.Pet-Deer-Golden{background-image:url(spritesmith-main-10.png);background-position:-738px -200px;width:81px;height:99px}.Pet-Deer-Red{background-image:url(spritesmith-main-10.png);background-position:-738px -300px;width:81px;height:99px}.Pet-Deer-Shade{background-image:url(spritesmith-main-10.png);background-position:-738px -400px;width:81px;height:99px}.Pet-Deer-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-738px -500px;width:81px;height:99px}.Pet-Deer-White{background-image:url(spritesmith-main-10.png);background-position:-738px -600px;width:81px;height:99px}.Pet-Deer-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -700px;width:81px;height:99px}.Pet-Dragon-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -700px;width:81px;height:99px}.Pet-Dragon-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -700px;width:81px;height:99px}.Pet-Dragon-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -700px;width:81px;height:99px}.Pet-Dragon-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -700px;width:81px;height:99px}.Pet-Dragon-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -700px;width:81px;height:99px}.Pet-Dragon-Hydra{background-image:url(spritesmith-main-10.png);background-position:-492px -700px;width:81px;height:99px}.Pet-Dragon-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-574px -700px;width:81px;height:99px}.Pet-Dragon-Red{background-image:url(spritesmith-main-10.png);background-position:-656px -700px;width:81px;height:99px}.Pet-Dragon-Shade{background-image:url(spritesmith-main-10.png);background-position:-738px -700px;width:81px;height:99px}.Pet-Dragon-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-820px 0;width:81px;height:99px}.Pet-Dragon-Spooky{background-image:url(spritesmith-main-10.png);background-position:-820px -100px;width:81px;height:99px}.Pet-Dragon-White{background-image:url(spritesmith-main-10.png);background-position:-820px -200px;width:81px;height:99px}.Pet-Dragon-Zombie{background-image:url(spritesmith-main-10.png);background-position:-820px -300px;width:81px;height:99px}.Pet-Egg-Base{background-image:url(spritesmith-main-10.png);background-position:-820px -400px;width:81px;height:99px}.Pet-Egg-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-820px -500px;width:81px;height:99px}.Pet-Egg-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-820px -600px;width:81px;height:99px}.Pet-Egg-Desert{background-image:url(spritesmith-main-10.png);background-position:-820px -700px;width:81px;height:99px}.Pet-Egg-Golden{background-image:url(spritesmith-main-10.png);background-position:0 -800px;width:81px;height:99px}.Pet-Egg-Red{background-image:url(spritesmith-main-10.png);background-position:-82px -800px;width:81px;height:99px}.Pet-Egg-Shade{background-image:url(spritesmith-main-10.png);background-position:-164px -800px;width:81px;height:99px}.Pet-Egg-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-246px -800px;width:81px;height:99px}.Pet-Egg-White{background-image:url(spritesmith-main-10.png);background-position:-328px -800px;width:81px;height:99px}.Pet-Egg-Zombie{background-image:url(spritesmith-main-10.png);background-position:-410px -800px;width:81px;height:99px}.Pet-FlyingPig-Base{background-image:url(spritesmith-main-10.png);background-position:-492px -800px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-574px -800px;width:81px;height:99px}.Pet-FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-656px -800px;width:81px;height:99px}.Pet-FlyingPig-Desert{background-image:url(spritesmith-main-10.png);background-position:-738px -800px;width:81px;height:99px}.Pet-FlyingPig-Golden{background-image:url(spritesmith-main-10.png);background-position:-820px -800px;width:81px;height:99px}.Pet-FlyingPig-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-902px 0;width:81px;height:99px}.Pet-FlyingPig-Red{background-image:url(spritesmith-main-10.png);background-position:-902px -100px;width:81px;height:99px}.Pet-FlyingPig-Shade{background-image:url(spritesmith-main-10.png);background-position:-902px -200px;width:81px;height:99px}.Pet-FlyingPig-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-902px -300px;width:81px;height:99px}.Pet-FlyingPig-Spooky{background-image:url(spritesmith-main-10.png);background-position:-902px -400px;width:81px;height:99px}.Pet-FlyingPig-White{background-image:url(spritesmith-main-10.png);background-position:-902px -500px;width:81px;height:99px}.Pet-FlyingPig-Zombie{background-image:url(spritesmith-main-10.png);background-position:-902px -600px;width:81px;height:99px}.Pet-Fox-Base{background-image:url(spritesmith-main-10.png);background-position:-902px -700px;width:81px;height:99px}.Pet-Fox-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-902px -800px;width:81px;height:99px}.Pet-Fox-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-984px 0;width:81px;height:99px}.Pet-Fox-Desert{background-image:url(spritesmith-main-10.png);background-position:-984px -100px;width:81px;height:99px}.Pet-Fox-Golden{background-image:url(spritesmith-main-10.png);background-position:-984px -200px;width:81px;height:99px}.Pet-Fox-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-984px -300px;width:81px;height:99px}.Pet-Fox-Red{background-image:url(spritesmith-main-10.png);background-position:-984px -400px;width:81px;height:99px}.Pet-Fox-Shade{background-image:url(spritesmith-main-10.png);background-position:-984px -500px;width:81px;height:99px}.Pet-Fox-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-984px -600px;width:81px;height:99px}.Pet-Fox-Spooky{background-image:url(spritesmith-main-10.png);background-position:-984px -700px;width:81px;height:99px}.Pet-Fox-White{background-image:url(spritesmith-main-10.png);background-position:-984px -800px;width:81px;height:99px}.Pet-Fox-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -900px;width:81px;height:99px}.Pet-Frog-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -900px;width:81px;height:99px}.Pet-Frog-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -900px;width:81px;height:99px}.Pet-Frog-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -900px;width:81px;height:99px}.Pet-Frog-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -900px;width:81px;height:99px}.Pet-Frog-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -900px;width:81px;height:99px}.Pet-Frog-Red{background-image:url(spritesmith-main-10.png);background-position:-492px -900px;width:81px;height:99px}.Pet-Frog-Shade{background-image:url(spritesmith-main-10.png);background-position:-574px -900px;width:81px;height:99px}.Pet-Frog-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-656px -900px;width:81px;height:99px}.Pet-Frog-White{background-image:url(spritesmith-main-10.png);background-position:-738px -900px;width:81px;height:99px}.Pet-Frog-Zombie{background-image:url(spritesmith-main-10.png);background-position:-820px -900px;width:81px;height:99px}.Pet-Gryphon-Base{background-image:url(spritesmith-main-10.png);background-position:-902px -900px;width:81px;height:99px}.Pet-Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-984px -900px;width:81px;height:99px}.Pet-Gryphon-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1066px 0;width:81px;height:99px}.Pet-Gryphon-Desert{background-image:url(spritesmith-main-10.png);background-position:-1066px -100px;width:81px;height:99px}.Pet-Gryphon-Golden{background-image:url(spritesmith-main-10.png);background-position:-1066px -200px;width:81px;height:99px}.Pet-Gryphon-Red{background-image:url(spritesmith-main-10.png);background-position:-1066px -300px;width:81px;height:99px}.Pet-Gryphon-Shade{background-image:url(spritesmith-main-10.png);background-position:-1066px -400px;width:81px;height:99px}.Pet-Gryphon-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1066px -500px;width:81px;height:99px}.Pet-Gryphon-White{background-image:url(spritesmith-main-10.png);background-position:-1066px -600px;width:81px;height:99px}.Pet-Gryphon-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1066px -700px;width:81px;height:99px}.Pet-Hedgehog-Base{background-image:url(spritesmith-main-10.png);background-position:-1066px -800px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1066px -900px;width:81px;height:99px}.Pet-Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:0 -1000px;width:81px;height:99px}.Pet-Hedgehog-Desert{background-image:url(spritesmith-main-10.png);background-position:-82px -1000px;width:81px;height:99px}.Pet-Hedgehog-Golden{background-image:url(spritesmith-main-10.png);background-position:-164px -1000px;width:81px;height:99px}.Pet-Hedgehog-Red{background-image:url(spritesmith-main-10.png);background-position:-246px -1000px;width:81px;height:99px}.Pet-Hedgehog-Shade{background-image:url(spritesmith-main-10.png);background-position:-328px -1000px;width:81px;height:99px}.Pet-Hedgehog-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-410px -1000px;width:81px;height:99px}.Pet-Hedgehog-White{background-image:url(spritesmith-main-10.png);background-position:-492px -1000px;width:81px;height:99px}.Pet-Hedgehog-Zombie{background-image:url(spritesmith-main-10.png);background-position:-574px -1000px;width:81px;height:99px}.Pet-Horse-Base{background-image:url(spritesmith-main-10.png);background-position:-656px -1000px;width:81px;height:99px}.Pet-Horse-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-738px -1000px;width:81px;height:99px}.Pet-Horse-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-820px -1000px;width:81px;height:99px}.Pet-Horse-Desert{background-image:url(spritesmith-main-10.png);background-position:-902px -1000px;width:81px;height:99px}.Pet-Horse-Golden{background-image:url(spritesmith-main-10.png);background-position:-984px -1000px;width:81px;height:99px}.Pet-Horse-Red{background-image:url(spritesmith-main-10.png);background-position:-1066px -1000px;width:81px;height:99px}.Pet-Horse-Shade{background-image:url(spritesmith-main-10.png);background-position:-1148px 0;width:81px;height:99px}.Pet-Horse-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1148px -100px;width:81px;height:99px}.Pet-Horse-White{background-image:url(spritesmith-main-10.png);background-position:-1148px -200px;width:81px;height:99px}.Pet-Horse-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1148px -300px;width:81px;height:99px}.Pet-JackOLantern-Base{background-image:url(spritesmith-main-10.png);background-position:-1148px -400px;width:81px;height:99px}.Pet-LionCub-Base{background-image:url(spritesmith-main-10.png);background-position:-1148px -500px;width:81px;height:99px}.Pet-LionCub-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1148px -600px;width:81px;height:99px}.Pet-LionCub-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1148px -700px;width:81px;height:99px}.Pet-LionCub-Desert{background-image:url(spritesmith-main-10.png);background-position:-1148px -800px;width:81px;height:99px}.Pet-LionCub-Golden{background-image:url(spritesmith-main-10.png);background-position:-1148px -900px;width:81px;height:99px}.Pet-LionCub-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-1148px -1000px;width:81px;height:99px}.Pet-LionCub-Red{background-image:url(spritesmith-main-10.png);background-position:0 -1100px;width:81px;height:99px}.Pet-LionCub-Shade{background-image:url(spritesmith-main-10.png);background-position:0 0;width:81px;height:99px}.Pet-LionCub-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-164px -1100px;width:81px;height:99px}.Pet-LionCub-Spooky{background-image:url(spritesmith-main-10.png);background-position:-246px -1100px;width:81px;height:99px}.Pet-LionCub-White{background-image:url(spritesmith-main-10.png);background-position:-328px -1100px;width:81px;height:99px}.Pet-LionCub-Zombie{background-image:url(spritesmith-main-10.png);background-position:-410px -1100px;width:81px;height:99px}.Pet-Mammoth-Base{background-image:url(spritesmith-main-10.png);background-position:-492px -1100px;width:81px;height:99px}.Pet-MantisShrimp-Base{background-image:url(spritesmith-main-10.png);background-position:-574px -1100px;width:81px;height:99px}.Pet-Octopus-Base{background-image:url(spritesmith-main-10.png);background-position:-656px -1100px;width:81px;height:99px}.Pet-Octopus-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-738px -1100px;width:81px;height:99px}.Pet-Octopus-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-820px -1100px;width:81px;height:99px}.Pet-Octopus-Desert{background-image:url(spritesmith-main-10.png);background-position:-902px -1100px;width:81px;height:99px}.Pet-Octopus-Golden{background-image:url(spritesmith-main-10.png);background-position:-984px -1100px;width:81px;height:99px}.Pet-Octopus-Red{background-image:url(spritesmith-main-10.png);background-position:-1066px -1100px;width:81px;height:99px}.Pet-Octopus-Shade{background-image:url(spritesmith-main-10.png);background-position:-1148px -1100px;width:81px;height:99px}.Pet-Octopus-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1230px 0;width:81px;height:99px}.Pet-Octopus-White{background-image:url(spritesmith-main-10.png);background-position:-1230px -100px;width:81px;height:99px}.Pet-Octopus-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1230px -200px;width:81px;height:99px}.Pet-Owl-Base{background-image:url(spritesmith-main-10.png);background-position:-1230px -300px;width:81px;height:99px}.Pet-Owl-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1230px -400px;width:81px;height:99px}.Pet-Owl-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1230px -500px;width:81px;height:99px}.Pet-Owl-Desert{background-image:url(spritesmith-main-10.png);background-position:-1230px -600px;width:81px;height:99px}.Pet-Owl-Golden{background-image:url(spritesmith-main-10.png);background-position:-1230px -700px;width:81px;height:99px}.Pet-Owl-Red{background-image:url(spritesmith-main-10.png);background-position:-1230px -800px;width:81px;height:99px}.Pet-Owl-Shade{background-image:url(spritesmith-main-10.png);background-position:-1230px -900px;width:81px;height:99px}.Pet-Owl-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1230px -1000px;width:81px;height:99px}.Pet-Owl-White{background-image:url(spritesmith-main-10.png);background-position:-1230px -1100px;width:81px;height:99px}.Pet-Owl-Zombie{background-image:url(spritesmith-main-10.png);background-position:0 -1200px;width:81px;height:99px}.Pet-PandaCub-Base{background-image:url(spritesmith-main-10.png);background-position:-82px -1200px;width:81px;height:99px}.Pet-PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-164px -1200px;width:81px;height:99px}.Pet-PandaCub-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-246px -1200px;width:81px;height:99px}.Pet-PandaCub-Desert{background-image:url(spritesmith-main-10.png);background-position:-328px -1200px;width:81px;height:99px}.Pet-PandaCub-Golden{background-image:url(spritesmith-main-10.png);background-position:-410px -1200px;width:81px;height:99px}.Pet-PandaCub-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-492px -1200px;width:81px;height:99px}.Pet-PandaCub-Red{background-image:url(spritesmith-main-10.png);background-position:-574px -1200px;width:81px;height:99px}.Pet-PandaCub-Shade{background-image:url(spritesmith-main-10.png);background-position:-656px -1200px;width:81px;height:99px}.Pet-PandaCub-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-738px -1200px;width:81px;height:99px}.Pet-PandaCub-Spooky{background-image:url(spritesmith-main-10.png);background-position:-820px -1200px;width:81px;height:99px}.Pet-PandaCub-White{background-image:url(spritesmith-main-10.png);background-position:-902px -1200px;width:81px;height:99px}.Pet-PandaCub-Zombie{background-image:url(spritesmith-main-10.png);background-position:-984px -1200px;width:81px;height:99px}.Pet-Parrot-Base{background-image:url(spritesmith-main-10.png);background-position:-1066px -1200px;width:81px;height:99px}.Pet-Parrot-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1148px -1200px;width:81px;height:99px}.Pet-Parrot-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1230px -1200px;width:81px;height:99px}.Pet-Parrot-Desert{background-image:url(spritesmith-main-10.png);background-position:-1312px 0;width:81px;height:99px}.Pet-Parrot-Golden{background-image:url(spritesmith-main-10.png);background-position:-1312px -100px;width:81px;height:99px}.Pet-Parrot-Red{background-image:url(spritesmith-main-10.png);background-position:-1312px -200px;width:81px;height:99px}.Pet-Parrot-Shade{background-image:url(spritesmith-main-10.png);background-position:-1312px -300px;width:81px;height:99px}.Pet-Parrot-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1312px -400px;width:81px;height:99px}.Pet-Parrot-White{background-image:url(spritesmith-main-10.png);background-position:-1312px -500px;width:81px;height:99px}.Pet-Parrot-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1312px -600px;width:81px;height:99px}.Pet-Penguin-Base{background-image:url(spritesmith-main-10.png);background-position:-1312px -700px;width:81px;height:99px}.Pet-Penguin-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1312px -800px;width:81px;height:99px}.Pet-Penguin-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1312px -900px;width:81px;height:99px}.Pet-Penguin-Desert{background-image:url(spritesmith-main-10.png);background-position:-1312px -1000px;width:81px;height:99px}.Pet-Penguin-Golden{background-image:url(spritesmith-main-10.png);background-position:-1312px -1100px;width:81px;height:99px}.Pet-Penguin-Red{background-image:url(spritesmith-main-10.png);background-position:-1312px -1200px;width:81px;height:99px}.Pet-Penguin-Shade{background-image:url(spritesmith-main-10.png);background-position:-1394px 0;width:81px;height:99px}.Pet-Penguin-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1394px -100px;width:81px;height:99px}.Pet-Penguin-White{background-image:url(spritesmith-main-10.png);background-position:-1394px -200px;width:81px;height:99px}.Pet-Penguin-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1394px -300px;width:81px;height:99px}.Pet-Phoenix-Base{background-image:url(spritesmith-main-10.png);background-position:-1394px -400px;width:81px;height:99px}.Pet-Rat-Base{background-image:url(spritesmith-main-10.png);background-position:-1394px -500px;width:81px;height:99px}.Pet-Rat-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1394px -600px;width:81px;height:99px}.Pet-Rat-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1394px -700px;width:81px;height:99px}.Pet-Rat-Desert{background-image:url(spritesmith-main-10.png);background-position:-1394px -800px;width:81px;height:99px}.Pet-Rat-Golden{background-image:url(spritesmith-main-10.png);background-position:-1394px -900px;width:81px;height:99px}.Pet-Rat-Red{background-image:url(spritesmith-main-10.png);background-position:-1394px -1000px;width:81px;height:99px}.Pet-Rat-Shade{background-image:url(spritesmith-main-10.png);background-position:-1394px -1100px;width:81px;height:99px}.Pet-Rat-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1394px -1200px;width:81px;height:99px}.Pet-Rat-White{background-image:url(spritesmith-main-10.png);background-position:0 -1300px;width:81px;height:99px}.Pet-Rat-Zombie{background-image:url(spritesmith-main-10.png);background-position:-82px -1300px;width:81px;height:99px}.Pet-Rock-Base{background-image:url(spritesmith-main-10.png);background-position:-164px -1300px;width:81px;height:99px}.Pet-Rock-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-246px -1300px;width:81px;height:99px}.Pet-Rock-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-328px -1300px;width:81px;height:99px}.Pet-Rock-Desert{background-image:url(spritesmith-main-10.png);background-position:-410px -1300px;width:81px;height:99px}.Pet-Rock-Golden{background-image:url(spritesmith-main-10.png);background-position:-492px -1300px;width:81px;height:99px}.Pet-Rock-Red{background-image:url(spritesmith-main-10.png);background-position:-574px -1300px;width:81px;height:99px}.Pet-Rock-Shade{background-image:url(spritesmith-main-10.png);background-position:-656px -1300px;width:81px;height:99px}.Pet-Rock-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-738px -1300px;width:81px;height:99px}.Pet-Rock-White{background-image:url(spritesmith-main-10.png);background-position:-820px -1300px;width:81px;height:99px}.Pet-Rock-Zombie{background-image:url(spritesmith-main-10.png);background-position:-902px -1300px;width:81px;height:99px}.Pet-Rooster-Base{background-image:url(spritesmith-main-10.png);background-position:-984px -1300px;width:81px;height:99px}.Pet-Rooster-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1066px -1300px;width:81px;height:99px}.Pet-Rooster-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1148px -1300px;width:81px;height:99px}.Pet-Rooster-Desert{background-image:url(spritesmith-main-10.png);background-position:-1230px -1300px;width:81px;height:99px}.Pet-Rooster-Golden{background-image:url(spritesmith-main-10.png);background-position:-1312px -1300px;width:81px;height:99px}.Pet-Rooster-Red{background-image:url(spritesmith-main-10.png);background-position:-1394px -1300px;width:81px;height:99px}.Pet-Rooster-Shade{background-image:url(spritesmith-main-10.png);background-position:-1476px 0;width:81px;height:99px}.Pet-Rooster-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1476px -100px;width:81px;height:99px}.Pet-Rooster-White{background-image:url(spritesmith-main-10.png);background-position:-1476px -200px;width:81px;height:99px}.Pet-Rooster-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1476px -300px;width:81px;height:99px}.Pet-Seahorse-Base{background-image:url(spritesmith-main-10.png);background-position:-1476px -400px;width:81px;height:99px}.Pet-Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1476px -500px;width:81px;height:99px}.Pet-Seahorse-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1476px -600px;width:81px;height:99px}.Pet-Seahorse-Desert{background-image:url(spritesmith-main-10.png);background-position:-1476px -700px;width:81px;height:99px}.Pet-Seahorse-Golden{background-image:url(spritesmith-main-10.png);background-position:-1476px -800px;width:81px;height:99px}.Pet-Seahorse-Red{background-image:url(spritesmith-main-10.png);background-position:-1476px -900px;width:81px;height:99px}.Pet-Seahorse-Shade{background-image:url(spritesmith-main-10.png);background-position:-1476px -1000px;width:81px;height:99px}.Pet-Seahorse-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1476px -1100px;width:81px;height:99px}.Pet-Seahorse-White{background-image:url(spritesmith-main-10.png);background-position:-1476px -1200px;width:81px;height:99px}.Pet-Seahorse-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1476px -1300px;width:81px;height:99px}.Pet-Sheep-Base{background-image:url(spritesmith-main-10.png);background-position:0 -1400px;width:81px;height:99px}.Pet-Sheep-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-82px -1400px;width:81px;height:99px}.Pet-Sheep-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-164px -1400px;width:81px;height:99px}.Pet-Sheep-Desert{background-image:url(spritesmith-main-10.png);background-position:-246px -1400px;width:81px;height:99px}.Pet-Sheep-Golden{background-image:url(spritesmith-main-10.png);background-position:-328px -1400px;width:81px;height:99px}.Pet-Sheep-Red{background-image:url(spritesmith-main-10.png);background-position:-410px -1400px;width:81px;height:99px}.Pet-Sheep-Shade{background-image:url(spritesmith-main-10.png);background-position:-492px -1400px;width:81px;height:99px}.Pet-Sheep-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-574px -1400px;width:81px;height:99px}.Pet-Sheep-White{background-image:url(spritesmith-main-10.png);background-position:-656px -1400px;width:81px;height:99px}.Pet-Sheep-Zombie{background-image:url(spritesmith-main-10.png);background-position:-738px -1400px;width:81px;height:99px}.Pet-Slime-Base{background-image:url(spritesmith-main-10.png);background-position:-820px -1400px;width:81px;height:99px}.Pet-Slime-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-902px -1400px;width:81px;height:99px}.Pet-Slime-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-984px -1400px;width:81px;height:99px}.Pet-Slime-Desert{background-image:url(spritesmith-main-10.png);background-position:-1066px -1400px;width:81px;height:99px}.Pet-Slime-Golden{background-image:url(spritesmith-main-10.png);background-position:-1148px -1400px;width:81px;height:99px}.Pet-Slime-Red{background-image:url(spritesmith-main-10.png);background-position:-1230px -1400px;width:81px;height:99px}.Pet-Slime-Shade{background-image:url(spritesmith-main-10.png);background-position:-1312px -1400px;width:81px;height:99px}.Pet-Slime-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1394px -1400px;width:81px;height:99px}.Pet-Slime-White{background-image:url(spritesmith-main-10.png);background-position:-1476px -1400px;width:81px;height:99px}.Pet-Slime-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1558px 0;width:81px;height:99px}.Pet-Snake-Base{background-image:url(spritesmith-main-10.png);background-position:-1558px -100px;width:81px;height:99px}.Pet-Snake-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1558px -200px;width:81px;height:99px}.Pet-Snake-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1558px -300px;width:81px;height:99px}.Pet-Snake-Desert{background-image:url(spritesmith-main-10.png);background-position:-1558px -400px;width:81px;height:99px}.Pet-Snake-Golden{background-image:url(spritesmith-main-10.png);background-position:-1558px -500px;width:81px;height:99px}.Pet-Snake-Red{background-image:url(spritesmith-main-10.png);background-position:-1558px -600px;width:81px;height:99px}.Pet-Snake-Shade{background-image:url(spritesmith-main-10.png);background-position:-1558px -700px;width:81px;height:99px}.Pet-Snake-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1558px -800px;width:81px;height:99px}.Pet-Snake-White{background-image:url(spritesmith-main-10.png);background-position:-1558px -900px;width:81px;height:99px}.Pet-Snake-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1558px -1000px;width:81px;height:99px}.Pet-Spider-Base{background-image:url(spritesmith-main-10.png);background-position:-1558px -1100px;width:81px;height:99px}.Pet-Spider-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1558px -1200px;width:81px;height:99px}.Pet-Spider-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1558px -1300px;width:81px;height:99px}.Pet-Spider-Desert{background-image:url(spritesmith-main-10.png);background-position:-1558px -1400px;width:81px;height:99px}.Pet-Spider-Golden{background-image:url(spritesmith-main-10.png);background-position:0 -1500px;width:81px;height:99px}.Pet-Spider-Red{background-image:url(spritesmith-main-10.png);background-position:-82px -1500px;width:81px;height:99px}.Pet-Spider-Shade{background-image:url(spritesmith-main-10.png);background-position:-164px -1500px;width:81px;height:99px}.Pet-Spider-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-246px -1500px;width:81px;height:99px}.Pet-Spider-White{background-image:url(spritesmith-main-10.png);background-position:-328px -1500px;width:81px;height:99px}.Pet-Spider-Zombie{background-image:url(spritesmith-main-10.png);background-position:-410px -1500px;width:81px;height:99px}.Pet-TRex-Base{background-image:url(spritesmith-main-10.png);background-position:-492px -1500px;width:81px;height:99px}.Pet-TRex-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-574px -1500px;width:81px;height:99px}.Pet-TRex-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-656px -1500px;width:81px;height:99px}.Pet-TRex-Desert{background-image:url(spritesmith-main-10.png);background-position:-738px -1500px;width:81px;height:99px}.Pet-TRex-Golden{background-image:url(spritesmith-main-10.png);background-position:-820px -1500px;width:81px;height:99px}.Pet-TRex-Red{background-image:url(spritesmith-main-10.png);background-position:-902px -1500px;width:81px;height:99px}.Pet-TRex-Shade{background-image:url(spritesmith-main-10.png);background-position:-984px -1500px;width:81px;height:99px}.Pet-TRex-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1066px -1500px;width:81px;height:99px}.Pet-TRex-White{background-image:url(spritesmith-main-10.png);background-position:-1148px -1500px;width:81px;height:99px}.Pet-TRex-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1230px -1500px;width:81px;height:99px}.Pet-Tiger-Veteran{background-image:url(spritesmith-main-10.png);background-position:-1312px -1500px;width:81px;height:99px}.Pet-TigerCub-Base{background-image:url(spritesmith-main-10.png);background-position:-1394px -1500px;width:81px;height:99px}.Pet-TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-10.png);background-position:-1476px -1500px;width:81px;height:99px}.Pet-TigerCub-CottonCandyPink{background-image:url(spritesmith-main-10.png);background-position:-1558px -1500px;width:81px;height:99px}.Pet-TigerCub-Desert{background-image:url(spritesmith-main-10.png);background-position:-1640px 0;width:81px;height:99px}.Pet-TigerCub-Golden{background-image:url(spritesmith-main-10.png);background-position:-1640px -100px;width:81px;height:99px}.Pet-TigerCub-Peppermint{background-image:url(spritesmith-main-10.png);background-position:-1640px -200px;width:81px;height:99px}.Pet-TigerCub-Red{background-image:url(spritesmith-main-10.png);background-position:-1640px -300px;width:81px;height:99px}.Pet-TigerCub-Shade{background-image:url(spritesmith-main-10.png);background-position:-1640px -400px;width:81px;height:99px}.Pet-TigerCub-Skeleton{background-image:url(spritesmith-main-10.png);background-position:-1640px -500px;width:81px;height:99px}.Pet-TigerCub-Spooky{background-image:url(spritesmith-main-10.png);background-position:-1640px -600px;width:81px;height:99px}.Pet-TigerCub-White{background-image:url(spritesmith-main-10.png);background-position:-1640px -700px;width:81px;height:99px}.Pet-TigerCub-Zombie{background-image:url(spritesmith-main-10.png);background-position:-1640px -800px;width:81px;height:99px}.Pet-Turkey-Base{background-image:url(spritesmith-main-10.png);background-position:-1640px -900px;width:81px;height:99px}.Pet-Turkey-Gilded{background-image:url(spritesmith-main-10.png);background-position:-1640px -1000px;width:81px;height:99px}.Pet-Whale-Base{background-image:url(spritesmith-main-10.png);background-position:-1640px -1100px;width:81px;height:99px}.Pet-Whale-CottonCandyBlue{background-image:url(spritesmith-main-11.png);background-position:-82px 0;width:81px;height:99px}.Pet-Whale-CottonCandyPink{background-image:url(spritesmith-main-11.png);background-position:-164px -300px;width:81px;height:99px}.Pet-Whale-Desert{background-image:url(spritesmith-main-11.png);background-position:-164px 0;width:81px;height:99px}.Pet-Whale-Golden{background-image:url(spritesmith-main-11.png);background-position:0 -100px;width:81px;height:99px}.Pet-Whale-Red{background-image:url(spritesmith-main-11.png);background-position:-82px -100px;width:81px;height:99px}.Pet-Whale-Shade{background-image:url(spritesmith-main-11.png);background-position:-164px -100px;width:81px;height:99px}.Pet-Whale-Skeleton{background-image:url(spritesmith-main-11.png);background-position:-246px 0;width:81px;height:99px}.Pet-Whale-White{background-image:url(spritesmith-main-11.png);background-position:-246px -100px;width:81px;height:99px}.Pet-Whale-Zombie{background-image:url(spritesmith-main-11.png);background-position:0 -200px;width:81px;height:99px}.Pet-Wolf-Base{background-image:url(spritesmith-main-11.png);background-position:-82px -200px;width:81px;height:99px}.Pet-Wolf-CottonCandyBlue{background-image:url(spritesmith-main-11.png);background-position:-164px -200px;width:81px;height:99px}.Pet-Wolf-CottonCandyPink{background-image:url(spritesmith-main-11.png);background-position:-246px -200px;width:81px;height:99px}.Pet-Wolf-Desert{background-image:url(spritesmith-main-11.png);background-position:-328px 0;width:81px;height:99px}.Pet-Wolf-Golden{background-image:url(spritesmith-main-11.png);background-position:-328px -100px;width:81px;height:99px}.Pet-Wolf-Peppermint{background-image:url(spritesmith-main-11.png);background-position:-328px -200px;width:81px;height:99px}.Pet-Wolf-Red{background-image:url(spritesmith-main-11.png);background-position:0 -300px;width:81px;height:99px}.Pet-Wolf-Shade{background-image:url(spritesmith-main-11.png);background-position:-82px -300px;width:81px;height:99px}.Pet-Wolf-Skeleton{background-image:url(spritesmith-main-11.png);background-position:0 0;width:81px;height:99px}.Pet-Wolf-Spooky{background-image:url(spritesmith-main-11.png);background-position:-246px -300px;width:81px;height:99px}.Pet-Wolf-Veteran{background-image:url(spritesmith-main-11.png);background-position:-328px -300px;width:81px;height:99px}.Pet-Wolf-White{background-image:url(spritesmith-main-11.png);background-position:-410px 0;width:81px;height:99px}.Pet-Wolf-Zombie{background-image:url(spritesmith-main-11.png);background-position:-410px -100px;width:81px;height:99px}.Pet_HatchingPotion_Base{background-image:url(spritesmith-main-11.png);background-position:-410px -252px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyBlue{background-image:url(spritesmith-main-11.png);background-position:-147px -400px;width:48px;height:51px}.Pet_HatchingPotion_CottonCandyPink{background-image:url(spritesmith-main-11.png);background-position:-410px -304px;width:48px;height:51px}.Pet_HatchingPotion_Desert{background-image:url(spritesmith-main-11.png);background-position:0 -400px;width:48px;height:51px}.Pet_HatchingPotion_Golden{background-image:url(spritesmith-main-11.png);background-position:-49px -400px;width:48px;height:51px}.Pet_HatchingPotion_Peppermint{background-image:url(spritesmith-main-11.png);background-position:-98px -400px;width:48px;height:51px}.Pet_HatchingPotion_Red{background-image:url(spritesmith-main-11.png);background-position:-410px -200px;width:48px;height:51px}.Pet_HatchingPotion_Shade{background-image:url(spritesmith-main-11.png);background-position:-196px -400px;width:48px;height:51px}.Pet_HatchingPotion_Skeleton{background-image:url(spritesmith-main-11.png);background-position:-245px -400px;width:48px;height:51px}.Pet_HatchingPotion_Spooky{background-image:url(spritesmith-main-11.png);background-position:-294px -400px;width:48px;height:51px}.Pet_HatchingPotion_White{background-image:url(spritesmith-main-11.png);background-position:-343px -400px;width:48px;height:51px}.Pet_HatchingPotion_Zombie{background-image:url(spritesmith-main-11.png);background-position:-392px -400px;width:48px;height:51px}.hair_base_1_porange{background-image:url(spritesmith-main-2.png);background-position:-91px 0;width:90px;height:90px}.customize-option.hair_base_1_porange{background-image:url(spritesmith-main-2.png);background-position:-116px -15px;width:60px;height:60px}.hair_base_1_porange2{background-image:url(spritesmith-main-2.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.hair_base_1_porange2{background-image:url(spritesmith-main-2.png);background-position:-753px -1107px;width:60px;height:60px}.hair_base_1_ppink{background-image:url(spritesmith-main-2.png);background-position:0 -91px;width:90px;height:90px}.customize-option.hair_base_1_ppink{background-image:url(spritesmith-main-2.png);background-position:-25px -106px;width:60px;height:60px}.hair_base_1_ppink2{background-image:url(spritesmith-main-2.png);background-position:-91px -91px;width:90px;height:90px}.customize-option.hair_base_1_ppink2{background-image:url(spritesmith-main-2.png);background-position:-116px -106px;width:60px;height:60px}.hair_base_1_ppurple{background-image:url(spritesmith-main-2.png);background-position:-182px 0;width:90px;height:90px}.customize-option.hair_base_1_ppurple{background-image:url(spritesmith-main-2.png);background-position:-207px -15px;width:60px;height:60px}.hair_base_1_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-182px -91px;width:90px;height:90px}.customize-option.hair_base_1_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-207px -106px;width:60px;height:60px}.hair_base_1_pumpkin{background-image:url(spritesmith-main-2.png);background-position:0 -182px;width:90px;height:90px}.customize-option.hair_base_1_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-25px -197px;width:60px;height:60px}.hair_base_1_purple{background-image:url(spritesmith-main-2.png);background-position:-91px -182px;width:90px;height:90px}.customize-option.hair_base_1_purple{background-image:url(spritesmith-main-2.png);background-position:-116px -197px;width:60px;height:60px}.hair_base_1_pyellow{background-image:url(spritesmith-main-2.png);background-position:-182px -182px;width:90px;height:90px}.customize-option.hair_base_1_pyellow{background-image:url(spritesmith-main-2.png);background-position:-207px -197px;width:60px;height:60px}.hair_base_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-273px 0;width:90px;height:90px}.customize-option.hair_base_1_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-298px -15px;width:60px;height:60px}.hair_base_1_rainbow{background-image:url(spritesmith-main-2.png);background-position:-273px -91px;width:90px;height:90px}.customize-option.hair_base_1_rainbow{background-image:url(spritesmith-main-2.png);background-position:-298px -106px;width:60px;height:60px}.hair_base_1_red{background-image:url(spritesmith-main-2.png);background-position:-273px -182px;width:90px;height:90px}.customize-option.hair_base_1_red{background-image:url(spritesmith-main-2.png);background-position:-298px -197px;width:60px;height:60px}.hair_base_1_snowy{background-image:url(spritesmith-main-2.png);background-position:0 -273px;width:90px;height:90px}.customize-option.hair_base_1_snowy{background-image:url(spritesmith-main-2.png);background-position:-25px -288px;width:60px;height:60px}.hair_base_1_white{background-image:url(spritesmith-main-2.png);background-position:-91px -273px;width:90px;height:90px}.customize-option.hair_base_1_white{background-image:url(spritesmith-main-2.png);background-position:-116px -288px;width:60px;height:60px}.hair_base_1_winternight{background-image:url(spritesmith-main-2.png);background-position:-182px -273px;width:90px;height:90px}.customize-option.hair_base_1_winternight{background-image:url(spritesmith-main-2.png);background-position:-207px -288px;width:60px;height:60px}.hair_base_1_winterstar{background-image:url(spritesmith-main-2.png);background-position:-273px -273px;width:90px;height:90px}.customize-option.hair_base_1_winterstar{background-image:url(spritesmith-main-2.png);background-position:-298px -288px;width:60px;height:60px}.hair_base_1_yellow{background-image:url(spritesmith-main-2.png);background-position:-364px 0;width:90px;height:90px}.customize-option.hair_base_1_yellow{background-image:url(spritesmith-main-2.png);background-position:-389px -15px;width:60px;height:60px}.hair_base_1_zombie{background-image:url(spritesmith-main-2.png);background-position:-364px -91px;width:90px;height:90px}.customize-option.hair_base_1_zombie{background-image:url(spritesmith-main-2.png);background-position:-389px -106px;width:60px;height:60px}.hair_base_2_TRUred{background-image:url(spritesmith-main-2.png);background-position:-364px -182px;width:90px;height:90px}.customize-option.hair_base_2_TRUred{background-image:url(spritesmith-main-2.png);background-position:-389px -197px;width:60px;height:60px}.hair_base_2_aurora{background-image:url(spritesmith-main-2.png);background-position:-364px -273px;width:90px;height:90px}.customize-option.hair_base_2_aurora{background-image:url(spritesmith-main-2.png);background-position:-389px -288px;width:60px;height:60px}.hair_base_2_black{background-image:url(spritesmith-main-2.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_base_2_black{background-image:url(spritesmith-main-2.png);background-position:-25px -379px;width:60px;height:60px}.hair_base_2_blond{background-image:url(spritesmith-main-2.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_base_2_blond{background-image:url(spritesmith-main-2.png);background-position:-116px -379px;width:60px;height:60px}.hair_base_2_blue{background-image:url(spritesmith-main-2.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_base_2_blue{background-image:url(spritesmith-main-2.png);background-position:-207px -379px;width:60px;height:60px}.hair_base_2_brown{background-image:url(spritesmith-main-2.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_base_2_brown{background-image:url(spritesmith-main-2.png);background-position:-298px -379px;width:60px;height:60px}.hair_base_2_candycane{background-image:url(spritesmith-main-2.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_base_2_candycane{background-image:url(spritesmith-main-2.png);background-position:-389px -379px;width:60px;height:60px}.hair_base_2_candycorn{background-image:url(spritesmith-main-2.png);background-position:-455px 0;width:90px;height:90px}.customize-option.hair_base_2_candycorn{background-image:url(spritesmith-main-2.png);background-position:-480px -15px;width:60px;height:60px}.hair_base_2_festive{background-image:url(spritesmith-main-2.png);background-position:-455px -91px;width:90px;height:90px}.customize-option.hair_base_2_festive{background-image:url(spritesmith-main-2.png);background-position:-480px -106px;width:60px;height:60px}.hair_base_2_frost{background-image:url(spritesmith-main-2.png);background-position:-455px -182px;width:90px;height:90px}.customize-option.hair_base_2_frost{background-image:url(spritesmith-main-2.png);background-position:-480px -197px;width:60px;height:60px}.hair_base_2_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-455px -273px;width:90px;height:90px}.customize-option.hair_base_2_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-480px -288px;width:60px;height:60px}.hair_base_2_green{background-image:url(spritesmith-main-2.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_base_2_green{background-image:url(spritesmith-main-2.png);background-position:-480px -379px;width:60px;height:60px}.hair_base_2_halloween{background-image:url(spritesmith-main-2.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_base_2_halloween{background-image:url(spritesmith-main-2.png);background-position:-25px -470px;width:60px;height:60px}.hair_base_2_holly{background-image:url(spritesmith-main-2.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_base_2_holly{background-image:url(spritesmith-main-2.png);background-position:-116px -470px;width:60px;height:60px}.hair_base_2_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_base_2_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-207px -470px;width:60px;height:60px}.hair_base_2_midnight{background-image:url(spritesmith-main-2.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_base_2_midnight{background-image:url(spritesmith-main-2.png);background-position:-298px -470px;width:60px;height:60px}.hair_base_2_pblue{background-image:url(spritesmith-main-2.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_base_2_pblue{background-image:url(spritesmith-main-2.png);background-position:-389px -470px;width:60px;height:60px}.hair_base_2_pblue2{background-image:url(spritesmith-main-2.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.hair_base_2_pblue2{background-image:url(spritesmith-main-2.png);background-position:-480px -470px;width:60px;height:60px}.hair_base_2_peppermint{background-image:url(spritesmith-main-2.png);background-position:-546px 0;width:90px;height:90px}.customize-option.hair_base_2_peppermint{background-image:url(spritesmith-main-2.png);background-position:-571px -15px;width:60px;height:60px}.hair_base_2_pgreen{background-image:url(spritesmith-main-2.png);background-position:-546px -91px;width:90px;height:90px}.customize-option.hair_base_2_pgreen{background-image:url(spritesmith-main-2.png);background-position:-571px -106px;width:60px;height:60px}.hair_base_2_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-546px -182px;width:90px;height:90px}.customize-option.hair_base_2_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-571px -197px;width:60px;height:60px}.hair_base_2_porange{background-image:url(spritesmith-main-2.png);background-position:-546px -273px;width:90px;height:90px}.customize-option.hair_base_2_porange{background-image:url(spritesmith-main-2.png);background-position:-571px -288px;width:60px;height:60px}.hair_base_2_porange2{background-image:url(spritesmith-main-2.png);background-position:-546px -364px;width:90px;height:90px}.customize-option.hair_base_2_porange2{background-image:url(spritesmith-main-2.png);background-position:-571px -379px;width:60px;height:60px}.hair_base_2_ppink{background-image:url(spritesmith-main-2.png);background-position:-546px -455px;width:90px;height:90px}.customize-option.hair_base_2_ppink{background-image:url(spritesmith-main-2.png);background-position:-571px -470px;width:60px;height:60px}.hair_base_2_ppink2{background-image:url(spritesmith-main-2.png);background-position:0 -546px;width:90px;height:90px}.customize-option.hair_base_2_ppink2{background-image:url(spritesmith-main-2.png);background-position:-25px -561px;width:60px;height:60px}.hair_base_2_ppurple{background-image:url(spritesmith-main-2.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.hair_base_2_ppurple{background-image:url(spritesmith-main-2.png);background-position:-116px -561px;width:60px;height:60px}.hair_base_2_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.hair_base_2_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-207px -561px;width:60px;height:60px}.hair_base_2_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.hair_base_2_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-298px -561px;width:60px;height:60px}.hair_base_2_purple{background-image:url(spritesmith-main-2.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.hair_base_2_purple{background-image:url(spritesmith-main-2.png);background-position:-389px -561px;width:60px;height:60px}.hair_base_2_pyellow{background-image:url(spritesmith-main-2.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.hair_base_2_pyellow{background-image:url(spritesmith-main-2.png);background-position:-480px -561px;width:60px;height:60px}.hair_base_2_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.hair_base_2_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-571px -561px;width:60px;height:60px}.hair_base_2_rainbow{background-image:url(spritesmith-main-2.png);background-position:-637px 0;width:90px;height:90px}.customize-option.hair_base_2_rainbow{background-image:url(spritesmith-main-2.png);background-position:-662px -15px;width:60px;height:60px}.hair_base_2_red{background-image:url(spritesmith-main-2.png);background-position:-637px -91px;width:90px;height:90px}.customize-option.hair_base_2_red{background-image:url(spritesmith-main-2.png);background-position:-662px -106px;width:60px;height:60px}.hair_base_2_snowy{background-image:url(spritesmith-main-2.png);background-position:-637px -182px;width:90px;height:90px}.customize-option.hair_base_2_snowy{background-image:url(spritesmith-main-2.png);background-position:-662px -197px;width:60px;height:60px}.hair_base_2_white{background-image:url(spritesmith-main-2.png);background-position:-637px -273px;width:90px;height:90px}.customize-option.hair_base_2_white{background-image:url(spritesmith-main-2.png);background-position:-662px -288px;width:60px;height:60px}.hair_base_2_winternight{background-image:url(spritesmith-main-2.png);background-position:-637px -364px;width:90px;height:90px}.customize-option.hair_base_2_winternight{background-image:url(spritesmith-main-2.png);background-position:-662px -379px;width:60px;height:60px}.hair_base_2_winterstar{background-image:url(spritesmith-main-2.png);background-position:-637px -455px;width:90px;height:90px}.customize-option.hair_base_2_winterstar{background-image:url(spritesmith-main-2.png);background-position:-662px -470px;width:60px;height:60px}.hair_base_2_yellow{background-image:url(spritesmith-main-2.png);background-position:-637px -546px;width:90px;height:90px}.customize-option.hair_base_2_yellow{background-image:url(spritesmith-main-2.png);background-position:-662px -561px;width:60px;height:60px}.hair_base_2_zombie{background-image:url(spritesmith-main-2.png);background-position:0 -637px;width:90px;height:90px}.customize-option.hair_base_2_zombie{background-image:url(spritesmith-main-2.png);background-position:-25px -652px;width:60px;height:60px}.hair_base_3_TRUred{background-image:url(spritesmith-main-2.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.hair_base_3_TRUred{background-image:url(spritesmith-main-2.png);background-position:-116px -652px;width:60px;height:60px}.hair_base_3_aurora{background-image:url(spritesmith-main-2.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.hair_base_3_aurora{background-image:url(spritesmith-main-2.png);background-position:-207px -652px;width:60px;height:60px}.hair_base_3_black{background-image:url(spritesmith-main-2.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.hair_base_3_black{background-image:url(spritesmith-main-2.png);background-position:-298px -652px;width:60px;height:60px}.hair_base_3_blond{background-image:url(spritesmith-main-2.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.hair_base_3_blond{background-image:url(spritesmith-main-2.png);background-position:-389px -652px;width:60px;height:60px}.hair_base_3_blue{background-image:url(spritesmith-main-2.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.hair_base_3_blue{background-image:url(spritesmith-main-2.png);background-position:-480px -652px;width:60px;height:60px}.hair_base_3_brown{background-image:url(spritesmith-main-2.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.hair_base_3_brown{background-image:url(spritesmith-main-2.png);background-position:-571px -652px;width:60px;height:60px}.hair_base_3_candycane{background-image:url(spritesmith-main-2.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.hair_base_3_candycane{background-image:url(spritesmith-main-2.png);background-position:-662px -652px;width:60px;height:60px}.hair_base_3_candycorn{background-image:url(spritesmith-main-2.png);background-position:-728px 0;width:90px;height:90px}.customize-option.hair_base_3_candycorn{background-image:url(spritesmith-main-2.png);background-position:-753px -15px;width:60px;height:60px}.hair_base_3_festive{background-image:url(spritesmith-main-2.png);background-position:-728px -91px;width:90px;height:90px}.customize-option.hair_base_3_festive{background-image:url(spritesmith-main-2.png);background-position:-753px -106px;width:60px;height:60px}.hair_base_3_frost{background-image:url(spritesmith-main-2.png);background-position:-728px -182px;width:90px;height:90px}.customize-option.hair_base_3_frost{background-image:url(spritesmith-main-2.png);background-position:-753px -197px;width:60px;height:60px}.hair_base_3_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-728px -273px;width:90px;height:90px}.customize-option.hair_base_3_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-753px -288px;width:60px;height:60px}.hair_base_3_green{background-image:url(spritesmith-main-2.png);background-position:-728px -364px;width:90px;height:90px}.customize-option.hair_base_3_green{background-image:url(spritesmith-main-2.png);background-position:-753px -379px;width:60px;height:60px}.hair_base_3_halloween{background-image:url(spritesmith-main-2.png);background-position:-728px -455px;width:90px;height:90px}.customize-option.hair_base_3_halloween{background-image:url(spritesmith-main-2.png);background-position:-753px -470px;width:60px;height:60px}.hair_base_3_holly{background-image:url(spritesmith-main-2.png);background-position:-728px -546px;width:90px;height:90px}.customize-option.hair_base_3_holly{background-image:url(spritesmith-main-2.png);background-position:-753px -561px;width:60px;height:60px}.hair_base_3_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-728px -637px;width:90px;height:90px}.customize-option.hair_base_3_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-753px -652px;width:60px;height:60px}.hair_base_3_midnight{background-image:url(spritesmith-main-2.png);background-position:0 -728px;width:90px;height:90px}.customize-option.hair_base_3_midnight{background-image:url(spritesmith-main-2.png);background-position:-25px -743px;width:60px;height:60px}.hair_base_3_pblue{background-image:url(spritesmith-main-2.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.hair_base_3_pblue{background-image:url(spritesmith-main-2.png);background-position:-116px -743px;width:60px;height:60px}.hair_base_3_pblue2{background-image:url(spritesmith-main-2.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.hair_base_3_pblue2{background-image:url(spritesmith-main-2.png);background-position:-207px -743px;width:60px;height:60px}.hair_base_3_peppermint{background-image:url(spritesmith-main-2.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.hair_base_3_peppermint{background-image:url(spritesmith-main-2.png);background-position:-298px -743px;width:60px;height:60px}.hair_base_3_pgreen{background-image:url(spritesmith-main-2.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.hair_base_3_pgreen{background-image:url(spritesmith-main-2.png);background-position:-389px -743px;width:60px;height:60px}.hair_base_3_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.hair_base_3_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-480px -743px;width:60px;height:60px}.hair_base_3_porange{background-image:url(spritesmith-main-2.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.hair_base_3_porange{background-image:url(spritesmith-main-2.png);background-position:-571px -743px;width:60px;height:60px}.hair_base_3_porange2{background-image:url(spritesmith-main-2.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.hair_base_3_porange2{background-image:url(spritesmith-main-2.png);background-position:-662px -743px;width:60px;height:60px}.hair_base_3_ppink{background-image:url(spritesmith-main-2.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.hair_base_3_ppink{background-image:url(spritesmith-main-2.png);background-position:-753px -743px;width:60px;height:60px}.hair_base_3_ppink2{background-image:url(spritesmith-main-2.png);background-position:-819px 0;width:90px;height:90px}.customize-option.hair_base_3_ppink2{background-image:url(spritesmith-main-2.png);background-position:-844px -15px;width:60px;height:60px}.hair_base_3_ppurple{background-image:url(spritesmith-main-2.png);background-position:-819px -91px;width:90px;height:90px}.customize-option.hair_base_3_ppurple{background-image:url(spritesmith-main-2.png);background-position:-844px -106px;width:60px;height:60px}.hair_base_3_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-819px -182px;width:90px;height:90px}.customize-option.hair_base_3_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-844px -197px;width:60px;height:60px}.hair_base_3_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-819px -273px;width:90px;height:90px}.customize-option.hair_base_3_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-844px -288px;width:60px;height:60px}.hair_base_3_purple{background-image:url(spritesmith-main-2.png);background-position:-819px -364px;width:90px;height:90px}.customize-option.hair_base_3_purple{background-image:url(spritesmith-main-2.png);background-position:-844px -379px;width:60px;height:60px}.hair_base_3_pyellow{background-image:url(spritesmith-main-2.png);background-position:-819px -455px;width:90px;height:90px}.customize-option.hair_base_3_pyellow{background-image:url(spritesmith-main-2.png);background-position:-844px -470px;width:60px;height:60px}.hair_base_3_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-819px -546px;width:90px;height:90px}.customize-option.hair_base_3_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-844px -561px;width:60px;height:60px}.hair_base_3_rainbow{background-image:url(spritesmith-main-2.png);background-position:-819px -637px;width:90px;height:90px}.customize-option.hair_base_3_rainbow{background-image:url(spritesmith-main-2.png);background-position:-844px -652px;width:60px;height:60px}.hair_base_3_red{background-image:url(spritesmith-main-2.png);background-position:-819px -728px;width:90px;height:90px}.customize-option.hair_base_3_red{background-image:url(spritesmith-main-2.png);background-position:-844px -743px;width:60px;height:60px}.hair_base_3_snowy{background-image:url(spritesmith-main-2.png);background-position:0 -819px;width:90px;height:90px}.customize-option.hair_base_3_snowy{background-image:url(spritesmith-main-2.png);background-position:-25px -834px;width:60px;height:60px}.hair_base_3_white{background-image:url(spritesmith-main-2.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.hair_base_3_white{background-image:url(spritesmith-main-2.png);background-position:-116px -834px;width:60px;height:60px}.hair_base_3_winternight{background-image:url(spritesmith-main-2.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.hair_base_3_winternight{background-image:url(spritesmith-main-2.png);background-position:-207px -834px;width:60px;height:60px}.hair_base_3_winterstar{background-image:url(spritesmith-main-2.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.hair_base_3_winterstar{background-image:url(spritesmith-main-2.png);background-position:-298px -834px;width:60px;height:60px}.hair_base_3_yellow{background-image:url(spritesmith-main-2.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.hair_base_3_yellow{background-image:url(spritesmith-main-2.png);background-position:-389px -834px;width:60px;height:60px}.hair_base_3_zombie{background-image:url(spritesmith-main-2.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.hair_base_3_zombie{background-image:url(spritesmith-main-2.png);background-position:-480px -834px;width:60px;height:60px}.hair_base_4_TRUred{background-image:url(spritesmith-main-2.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.hair_base_4_TRUred{background-image:url(spritesmith-main-2.png);background-position:-571px -834px;width:60px;height:60px}.hair_base_4_aurora{background-image:url(spritesmith-main-2.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.hair_base_4_aurora{background-image:url(spritesmith-main-2.png);background-position:-662px -834px;width:60px;height:60px}.hair_base_4_black{background-image:url(spritesmith-main-2.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.hair_base_4_black{background-image:url(spritesmith-main-2.png);background-position:-753px -834px;width:60px;height:60px}.hair_base_4_blond{background-image:url(spritesmith-main-2.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.hair_base_4_blond{background-image:url(spritesmith-main-2.png);background-position:-844px -834px;width:60px;height:60px}.hair_base_4_blue{background-image:url(spritesmith-main-2.png);background-position:-910px 0;width:90px;height:90px}.customize-option.hair_base_4_blue{background-image:url(spritesmith-main-2.png);background-position:-935px -15px;width:60px;height:60px}.hair_base_4_brown{background-image:url(spritesmith-main-2.png);background-position:-910px -91px;width:90px;height:90px}.customize-option.hair_base_4_brown{background-image:url(spritesmith-main-2.png);background-position:-935px -106px;width:60px;height:60px}.hair_base_4_candycane{background-image:url(spritesmith-main-2.png);background-position:-910px -182px;width:90px;height:90px}.customize-option.hair_base_4_candycane{background-image:url(spritesmith-main-2.png);background-position:-935px -197px;width:60px;height:60px}.hair_base_4_candycorn{background-image:url(spritesmith-main-2.png);background-position:-910px -273px;width:90px;height:90px}.customize-option.hair_base_4_candycorn{background-image:url(spritesmith-main-2.png);background-position:-935px -288px;width:60px;height:60px}.hair_base_4_festive{background-image:url(spritesmith-main-2.png);background-position:-910px -364px;width:90px;height:90px}.customize-option.hair_base_4_festive{background-image:url(spritesmith-main-2.png);background-position:-935px -379px;width:60px;height:60px}.hair_base_4_frost{background-image:url(spritesmith-main-2.png);background-position:-910px -455px;width:90px;height:90px}.customize-option.hair_base_4_frost{background-image:url(spritesmith-main-2.png);background-position:-935px -470px;width:60px;height:60px}.hair_base_4_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-910px -546px;width:90px;height:90px}.customize-option.hair_base_4_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-935px -561px;width:60px;height:60px}.hair_base_4_green{background-image:url(spritesmith-main-2.png);background-position:-910px -637px;width:90px;height:90px}.customize-option.hair_base_4_green{background-image:url(spritesmith-main-2.png);background-position:-935px -652px;width:60px;height:60px}.hair_base_4_halloween{background-image:url(spritesmith-main-2.png);background-position:-910px -728px;width:90px;height:90px}.customize-option.hair_base_4_halloween{background-image:url(spritesmith-main-2.png);background-position:-935px -743px;width:60px;height:60px}.hair_base_4_holly{background-image:url(spritesmith-main-2.png);background-position:-910px -819px;width:90px;height:90px}.customize-option.hair_base_4_holly{background-image:url(spritesmith-main-2.png);background-position:-935px -834px;width:60px;height:60px}.hair_base_4_hollygreen{background-image:url(spritesmith-main-2.png);background-position:0 -910px;width:90px;height:90px}.customize-option.hair_base_4_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-25px -925px;width:60px;height:60px}.hair_base_4_midnight{background-image:url(spritesmith-main-2.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.hair_base_4_midnight{background-image:url(spritesmith-main-2.png);background-position:-116px -925px;width:60px;height:60px}.hair_base_4_pblue{background-image:url(spritesmith-main-2.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.hair_base_4_pblue{background-image:url(spritesmith-main-2.png);background-position:-207px -925px;width:60px;height:60px}.hair_base_4_pblue2{background-image:url(spritesmith-main-2.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.hair_base_4_pblue2{background-image:url(spritesmith-main-2.png);background-position:-298px -925px;width:60px;height:60px}.hair_base_4_peppermint{background-image:url(spritesmith-main-2.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.hair_base_4_peppermint{background-image:url(spritesmith-main-2.png);background-position:-389px -925px;width:60px;height:60px}.hair_base_4_pgreen{background-image:url(spritesmith-main-2.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.hair_base_4_pgreen{background-image:url(spritesmith-main-2.png);background-position:-480px -925px;width:60px;height:60px}.hair_base_4_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.hair_base_4_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-571px -925px;width:60px;height:60px}.hair_base_4_porange{background-image:url(spritesmith-main-2.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.hair_base_4_porange{background-image:url(spritesmith-main-2.png);background-position:-662px -925px;width:60px;height:60px}.hair_base_4_porange2{background-image:url(spritesmith-main-2.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.hair_base_4_porange2{background-image:url(spritesmith-main-2.png);background-position:-753px -925px;width:60px;height:60px}.hair_base_4_ppink{background-image:url(spritesmith-main-2.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppink{background-image:url(spritesmith-main-2.png);background-position:-844px -925px;width:60px;height:60px}.hair_base_4_ppink2{background-image:url(spritesmith-main-2.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.hair_base_4_ppink2{background-image:url(spritesmith-main-2.png);background-position:-935px -925px;width:60px;height:60px}.hair_base_4_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1001px 0;width:90px;height:90px}.customize-option.hair_base_4_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1026px -15px;width:60px;height:60px}.hair_base_4_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1001px -91px;width:90px;height:90px}.customize-option.hair_base_4_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1026px -106px;width:60px;height:60px}.hair_base_4_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1001px -182px;width:90px;height:90px}.customize-option.hair_base_4_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1026px -197px;width:60px;height:60px}.hair_base_4_purple{background-image:url(spritesmith-main-2.png);background-position:-1001px -273px;width:90px;height:90px}.customize-option.hair_base_4_purple{background-image:url(spritesmith-main-2.png);background-position:-1026px -288px;width:60px;height:60px}.hair_base_4_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1001px -364px;width:90px;height:90px}.customize-option.hair_base_4_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1026px -379px;width:60px;height:60px}.hair_base_4_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1001px -455px;width:90px;height:90px}.customize-option.hair_base_4_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1026px -470px;width:60px;height:60px}.hair_base_4_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1001px -546px;width:90px;height:90px}.customize-option.hair_base_4_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1026px -561px;width:60px;height:60px}.hair_base_4_red{background-image:url(spritesmith-main-2.png);background-position:-1001px -637px;width:90px;height:90px}.customize-option.hair_base_4_red{background-image:url(spritesmith-main-2.png);background-position:-1026px -652px;width:60px;height:60px}.hair_base_4_snowy{background-image:url(spritesmith-main-2.png);background-position:-1001px -728px;width:90px;height:90px}.customize-option.hair_base_4_snowy{background-image:url(spritesmith-main-2.png);background-position:-1026px -743px;width:60px;height:60px}.hair_base_4_white{background-image:url(spritesmith-main-2.png);background-position:-1001px -819px;width:90px;height:90px}.customize-option.hair_base_4_white{background-image:url(spritesmith-main-2.png);background-position:-1026px -834px;width:60px;height:60px}.hair_base_4_winternight{background-image:url(spritesmith-main-2.png);background-position:-1001px -910px;width:90px;height:90px}.customize-option.hair_base_4_winternight{background-image:url(spritesmith-main-2.png);background-position:-1026px -925px;width:60px;height:60px}.hair_base_4_winterstar{background-image:url(spritesmith-main-2.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.hair_base_4_winterstar{background-image:url(spritesmith-main-2.png);background-position:-25px -1016px;width:60px;height:60px}.hair_base_4_yellow{background-image:url(spritesmith-main-2.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.hair_base_4_yellow{background-image:url(spritesmith-main-2.png);background-position:-116px -1016px;width:60px;height:60px}.hair_base_4_zombie{background-image:url(spritesmith-main-2.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.hair_base_4_zombie{background-image:url(spritesmith-main-2.png);background-position:-207px -1016px;width:60px;height:60px}.hair_base_5_TRUred{background-image:url(spritesmith-main-2.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.hair_base_5_TRUred{background-image:url(spritesmith-main-2.png);background-position:-298px -1016px;width:60px;height:60px}.hair_base_5_aurora{background-image:url(spritesmith-main-2.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.hair_base_5_aurora{background-image:url(spritesmith-main-2.png);background-position:-389px -1016px;width:60px;height:60px}.hair_base_5_black{background-image:url(spritesmith-main-2.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.hair_base_5_black{background-image:url(spritesmith-main-2.png);background-position:-480px -1016px;width:60px;height:60px}.hair_base_5_blond{background-image:url(spritesmith-main-2.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.hair_base_5_blond{background-image:url(spritesmith-main-2.png);background-position:-571px -1016px;width:60px;height:60px}.hair_base_5_blue{background-image:url(spritesmith-main-2.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.hair_base_5_blue{background-image:url(spritesmith-main-2.png);background-position:-662px -1016px;width:60px;height:60px}.hair_base_5_brown{background-image:url(spritesmith-main-2.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.hair_base_5_brown{background-image:url(spritesmith-main-2.png);background-position:-753px -1016px;width:60px;height:60px}.hair_base_5_candycane{background-image:url(spritesmith-main-2.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.hair_base_5_candycane{background-image:url(spritesmith-main-2.png);background-position:-844px -1016px;width:60px;height:60px}.hair_base_5_candycorn{background-image:url(spritesmith-main-2.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.hair_base_5_candycorn{background-image:url(spritesmith-main-2.png);background-position:-935px -1016px;width:60px;height:60px}.hair_base_5_festive{background-image:url(spritesmith-main-2.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.hair_base_5_festive{background-image:url(spritesmith-main-2.png);background-position:-1026px -1016px;width:60px;height:60px}.hair_base_5_frost{background-image:url(spritesmith-main-2.png);background-position:-1092px 0;width:90px;height:90px}.customize-option.hair_base_5_frost{background-image:url(spritesmith-main-2.png);background-position:-1117px -15px;width:60px;height:60px}.hair_base_5_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1092px -91px;width:90px;height:90px}.customize-option.hair_base_5_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1117px -106px;width:60px;height:60px}.hair_base_5_green{background-image:url(spritesmith-main-2.png);background-position:-1092px -182px;width:90px;height:90px}.customize-option.hair_base_5_green{background-image:url(spritesmith-main-2.png);background-position:-1117px -197px;width:60px;height:60px}.hair_base_5_halloween{background-image:url(spritesmith-main-2.png);background-position:-1092px -273px;width:90px;height:90px}.customize-option.hair_base_5_halloween{background-image:url(spritesmith-main-2.png);background-position:-1117px -288px;width:60px;height:60px}.hair_base_5_holly{background-image:url(spritesmith-main-2.png);background-position:-1092px -364px;width:90px;height:90px}.customize-option.hair_base_5_holly{background-image:url(spritesmith-main-2.png);background-position:-1117px -379px;width:60px;height:60px}.hair_base_5_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1092px -455px;width:90px;height:90px}.customize-option.hair_base_5_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1117px -470px;width:60px;height:60px}.hair_base_5_midnight{background-image:url(spritesmith-main-2.png);background-position:-1092px -546px;width:90px;height:90px}.customize-option.hair_base_5_midnight{background-image:url(spritesmith-main-2.png);background-position:-1117px -561px;width:60px;height:60px}.hair_base_5_pblue{background-image:url(spritesmith-main-2.png);background-position:-1092px -637px;width:90px;height:90px}.customize-option.hair_base_5_pblue{background-image:url(spritesmith-main-2.png);background-position:-1117px -652px;width:60px;height:60px}.hair_base_5_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1092px -728px;width:90px;height:90px}.customize-option.hair_base_5_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1117px -743px;width:60px;height:60px}.hair_base_5_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1092px -819px;width:90px;height:90px}.customize-option.hair_base_5_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1117px -834px;width:60px;height:60px}.hair_base_5_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1092px -910px;width:90px;height:90px}.customize-option.hair_base_5_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1117px -925px;width:60px;height:60px}.hair_base_5_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1092px -1001px;width:90px;height:90px}.customize-option.hair_base_5_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1117px -1016px;width:60px;height:60px}.hair_base_5_porange{background-image:url(spritesmith-main-2.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.hair_base_5_porange{background-image:url(spritesmith-main-2.png);background-position:-25px -1107px;width:60px;height:60px}.hair_base_5_porange2{background-image:url(spritesmith-main-2.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.hair_base_5_porange2{background-image:url(spritesmith-main-2.png);background-position:-116px -1107px;width:60px;height:60px}.hair_base_5_ppink{background-image:url(spritesmith-main-2.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.hair_base_5_ppink{background-image:url(spritesmith-main-2.png);background-position:-207px -1107px;width:60px;height:60px}.hair_base_5_ppink2{background-image:url(spritesmith-main-2.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.hair_base_5_ppink2{background-image:url(spritesmith-main-2.png);background-position:-298px -1107px;width:60px;height:60px}.hair_base_5_ppurple{background-image:url(spritesmith-main-2.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.hair_base_5_ppurple{background-image:url(spritesmith-main-2.png);background-position:-389px -1107px;width:60px;height:60px}.hair_base_5_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.hair_base_5_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-480px -1107px;width:60px;height:60px}.hair_base_5_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-571px -1107px;width:60px;height:60px}.hair_base_5_purple{background-image:url(spritesmith-main-2.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.hair_base_5_purple{background-image:url(spritesmith-main-2.png);background-position:-662px -1107px;width:60px;height:60px}.hair_base_5_pyellow{background-image:url(spritesmith-main-2.png);background-position:0 0;width:90px;height:90px}.customize-option.hair_base_5_pyellow{background-image:url(spritesmith-main-2.png);background-position:-25px -15px;width:60px;height:60px}.hair_base_5_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.hair_base_5_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-844px -1107px;width:60px;height:60px}.hair_base_5_rainbow{background-image:url(spritesmith-main-2.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.hair_base_5_rainbow{background-image:url(spritesmith-main-2.png);background-position:-935px -1107px;width:60px;height:60px}.hair_base_5_red{background-image:url(spritesmith-main-2.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.hair_base_5_red{background-image:url(spritesmith-main-2.png);background-position:-1026px -1107px;width:60px;height:60px}.hair_base_5_snowy{background-image:url(spritesmith-main-2.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.hair_base_5_snowy{background-image:url(spritesmith-main-2.png);background-position:-1117px -1107px;width:60px;height:60px}.hair_base_5_white{background-image:url(spritesmith-main-2.png);background-position:-1183px 0;width:90px;height:90px}.customize-option.hair_base_5_white{background-image:url(spritesmith-main-2.png);background-position:-1208px -15px;width:60px;height:60px}.hair_base_5_winternight{background-image:url(spritesmith-main-2.png);background-position:-1183px -91px;width:90px;height:90px}.customize-option.hair_base_5_winternight{background-image:url(spritesmith-main-2.png);background-position:-1208px -106px;width:60px;height:60px}.hair_base_5_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1183px -182px;width:90px;height:90px}.customize-option.hair_base_5_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1208px -197px;width:60px;height:60px}.hair_base_5_yellow{background-image:url(spritesmith-main-2.png);background-position:-1183px -273px;width:90px;height:90px}.customize-option.hair_base_5_yellow{background-image:url(spritesmith-main-2.png);background-position:-1208px -288px;width:60px;height:60px}.hair_base_5_zombie{background-image:url(spritesmith-main-2.png);background-position:-1183px -364px;width:90px;height:90px}.customize-option.hair_base_5_zombie{background-image:url(spritesmith-main-2.png);background-position:-1208px -379px;width:60px;height:60px}.hair_base_6_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1183px -455px;width:90px;height:90px}.customize-option.hair_base_6_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1208px -470px;width:60px;height:60px}.hair_base_6_aurora{background-image:url(spritesmith-main-2.png);background-position:-1183px -546px;width:90px;height:90px}.customize-option.hair_base_6_aurora{background-image:url(spritesmith-main-2.png);background-position:-1208px -561px;width:60px;height:60px}.hair_base_6_black{background-image:url(spritesmith-main-2.png);background-position:-1183px -637px;width:90px;height:90px}.customize-option.hair_base_6_black{background-image:url(spritesmith-main-2.png);background-position:-1208px -652px;width:60px;height:60px}.hair_base_6_blond{background-image:url(spritesmith-main-2.png);background-position:-1183px -728px;width:90px;height:90px}.customize-option.hair_base_6_blond{background-image:url(spritesmith-main-2.png);background-position:-1208px -743px;width:60px;height:60px}.hair_base_6_blue{background-image:url(spritesmith-main-2.png);background-position:-1183px -819px;width:90px;height:90px}.customize-option.hair_base_6_blue{background-image:url(spritesmith-main-2.png);background-position:-1208px -834px;width:60px;height:60px}.hair_base_6_brown{background-image:url(spritesmith-main-2.png);background-position:-1183px -910px;width:90px;height:90px}.customize-option.hair_base_6_brown{background-image:url(spritesmith-main-2.png);background-position:-1208px -925px;width:60px;height:60px}.hair_base_6_candycane{background-image:url(spritesmith-main-2.png);background-position:-1183px -1001px;width:90px;height:90px}.customize-option.hair_base_6_candycane{background-image:url(spritesmith-main-2.png);background-position:-1208px -1016px;width:60px;height:60px}.hair_base_6_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1183px -1092px;width:90px;height:90px}.customize-option.hair_base_6_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1208px -1107px;width:60px;height:60px}.hair_base_6_festive{background-image:url(spritesmith-main-2.png);background-position:0 -1183px;width:90px;height:90px}.customize-option.hair_base_6_festive{background-image:url(spritesmith-main-2.png);background-position:-25px -1198px;width:60px;height:60px}.hair_base_6_frost{background-image:url(spritesmith-main-2.png);background-position:-91px -1183px;width:90px;height:90px}.customize-option.hair_base_6_frost{background-image:url(spritesmith-main-2.png);background-position:-116px -1198px;width:60px;height:60px}.hair_base_6_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-182px -1183px;width:90px;height:90px}.customize-option.hair_base_6_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-207px -1198px;width:60px;height:60px}.hair_base_6_green{background-image:url(spritesmith-main-2.png);background-position:-273px -1183px;width:90px;height:90px}.customize-option.hair_base_6_green{background-image:url(spritesmith-main-2.png);background-position:-298px -1198px;width:60px;height:60px}.hair_base_6_halloween{background-image:url(spritesmith-main-2.png);background-position:-364px -1183px;width:90px;height:90px}.customize-option.hair_base_6_halloween{background-image:url(spritesmith-main-2.png);background-position:-389px -1198px;width:60px;height:60px}.hair_base_6_holly{background-image:url(spritesmith-main-2.png);background-position:-455px -1183px;width:90px;height:90px}.customize-option.hair_base_6_holly{background-image:url(spritesmith-main-2.png);background-position:-480px -1198px;width:60px;height:60px}.hair_base_6_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-546px -1183px;width:90px;height:90px}.customize-option.hair_base_6_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-571px -1198px;width:60px;height:60px}.hair_base_6_midnight{background-image:url(spritesmith-main-2.png);background-position:-637px -1183px;width:90px;height:90px}.customize-option.hair_base_6_midnight{background-image:url(spritesmith-main-2.png);background-position:-662px -1198px;width:60px;height:60px}.hair_base_6_pblue{background-image:url(spritesmith-main-2.png);background-position:-728px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pblue{background-image:url(spritesmith-main-2.png);background-position:-753px -1198px;width:60px;height:60px}.hair_base_6_pblue2{background-image:url(spritesmith-main-2.png);background-position:-819px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pblue2{background-image:url(spritesmith-main-2.png);background-position:-844px -1198px;width:60px;height:60px}.hair_base_6_peppermint{background-image:url(spritesmith-main-2.png);background-position:-910px -1183px;width:90px;height:90px}.customize-option.hair_base_6_peppermint{background-image:url(spritesmith-main-2.png);background-position:-935px -1198px;width:60px;height:60px}.hair_base_6_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1001px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1026px -1198px;width:60px;height:60px}.hair_base_6_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1092px -1183px;width:90px;height:90px}.customize-option.hair_base_6_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1117px -1198px;width:60px;height:60px}.hair_base_6_porange{background-image:url(spritesmith-main-2.png);background-position:-1183px -1183px;width:90px;height:90px}.customize-option.hair_base_6_porange{background-image:url(spritesmith-main-2.png);background-position:-1208px -1198px;width:60px;height:60px}.hair_base_6_porange2{background-image:url(spritesmith-main-2.png);background-position:-1274px 0;width:90px;height:90px}.customize-option.hair_base_6_porange2{background-image:url(spritesmith-main-2.png);background-position:-1299px -15px;width:60px;height:60px}.hair_base_6_ppink{background-image:url(spritesmith-main-2.png);background-position:-1274px -91px;width:90px;height:90px}.customize-option.hair_base_6_ppink{background-image:url(spritesmith-main-2.png);background-position:-1299px -106px;width:60px;height:60px}.hair_base_6_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1274px -182px;width:90px;height:90px}.customize-option.hair_base_6_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1299px -197px;width:60px;height:60px}.hair_base_6_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1274px -273px;width:90px;height:90px}.customize-option.hair_base_6_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1299px -288px;width:60px;height:60px}.hair_base_6_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1274px -364px;width:90px;height:90px}.customize-option.hair_base_6_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1299px -379px;width:60px;height:60px}.hair_base_6_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1274px -455px;width:90px;height:90px}.customize-option.hair_base_6_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1299px -470px;width:60px;height:60px}.hair_base_6_purple{background-image:url(spritesmith-main-2.png);background-position:-1274px -546px;width:90px;height:90px}.customize-option.hair_base_6_purple{background-image:url(spritesmith-main-2.png);background-position:-1299px -561px;width:60px;height:60px}.hair_base_6_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1274px -637px;width:90px;height:90px}.customize-option.hair_base_6_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1299px -652px;width:60px;height:60px}.hair_base_6_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1274px -728px;width:90px;height:90px}.customize-option.hair_base_6_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1299px -743px;width:60px;height:60px}.hair_base_6_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1274px -819px;width:90px;height:90px}.customize-option.hair_base_6_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1299px -834px;width:60px;height:60px}.hair_base_6_red{background-image:url(spritesmith-main-2.png);background-position:-1274px -910px;width:90px;height:90px}.customize-option.hair_base_6_red{background-image:url(spritesmith-main-2.png);background-position:-1299px -925px;width:60px;height:60px}.hair_base_6_snowy{background-image:url(spritesmith-main-2.png);background-position:-1274px -1001px;width:90px;height:90px}.customize-option.hair_base_6_snowy{background-image:url(spritesmith-main-2.png);background-position:-1299px -1016px;width:60px;height:60px}.hair_base_6_white{background-image:url(spritesmith-main-2.png);background-position:-1274px -1092px;width:90px;height:90px}.customize-option.hair_base_6_white{background-image:url(spritesmith-main-2.png);background-position:-1299px -1107px;width:60px;height:60px}.hair_base_6_winternight{background-image:url(spritesmith-main-2.png);background-position:-1274px -1183px;width:90px;height:90px}.customize-option.hair_base_6_winternight{background-image:url(spritesmith-main-2.png);background-position:-1299px -1198px;width:60px;height:60px}.hair_base_6_winterstar{background-image:url(spritesmith-main-2.png);background-position:0 -1274px;width:90px;height:90px}.customize-option.hair_base_6_winterstar{background-image:url(spritesmith-main-2.png);background-position:-25px -1289px;width:60px;height:60px}.hair_base_6_yellow{background-image:url(spritesmith-main-2.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_base_6_yellow{background-image:url(spritesmith-main-2.png);background-position:-116px -1289px;width:60px;height:60px}.hair_base_6_zombie{background-image:url(spritesmith-main-2.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_base_6_zombie{background-image:url(spritesmith-main-2.png);background-position:-207px -1289px;width:60px;height:60px}.hair_base_7_TRUred{background-image:url(spritesmith-main-2.png);background-position:-273px -1274px;width:90px;height:90px}.customize-option.hair_base_7_TRUred{background-image:url(spritesmith-main-2.png);background-position:-298px -1289px;width:60px;height:60px}.hair_base_7_aurora{background-image:url(spritesmith-main-2.png);background-position:-364px -1274px;width:90px;height:90px}.customize-option.hair_base_7_aurora{background-image:url(spritesmith-main-2.png);background-position:-389px -1289px;width:60px;height:60px}.hair_base_7_black{background-image:url(spritesmith-main-2.png);background-position:-455px -1274px;width:90px;height:90px}.customize-option.hair_base_7_black{background-image:url(spritesmith-main-2.png);background-position:-480px -1289px;width:60px;height:60px}.hair_base_7_blond{background-image:url(spritesmith-main-2.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_base_7_blond{background-image:url(spritesmith-main-2.png);background-position:-571px -1289px;width:60px;height:60px}.hair_base_7_blue{background-image:url(spritesmith-main-2.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_base_7_blue{background-image:url(spritesmith-main-2.png);background-position:-662px -1289px;width:60px;height:60px}.hair_base_7_brown{background-image:url(spritesmith-main-2.png);background-position:-728px -1274px;width:90px;height:90px}.customize-option.hair_base_7_brown{background-image:url(spritesmith-main-2.png);background-position:-753px -1289px;width:60px;height:60px}.hair_base_7_candycane{background-image:url(spritesmith-main-2.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_base_7_candycane{background-image:url(spritesmith-main-2.png);background-position:-844px -1289px;width:60px;height:60px}.hair_base_7_candycorn{background-image:url(spritesmith-main-2.png);background-position:-910px -1274px;width:90px;height:90px}.customize-option.hair_base_7_candycorn{background-image:url(spritesmith-main-2.png);background-position:-935px -1289px;width:60px;height:60px}.hair_base_7_festive{background-image:url(spritesmith-main-2.png);background-position:-1001px -1274px;width:90px;height:90px}.customize-option.hair_base_7_festive{background-image:url(spritesmith-main-2.png);background-position:-1026px -1289px;width:60px;height:60px}.hair_base_7_frost{background-image:url(spritesmith-main-2.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_base_7_frost{background-image:url(spritesmith-main-2.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_base_7_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_base_7_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_base_7_green{background-image:url(spritesmith-main-2.png);background-position:-1274px -1274px;width:90px;height:90px}.customize-option.hair_base_7_green{background-image:url(spritesmith-main-2.png);background-position:-1299px -1289px;width:60px;height:60px}.hair_base_7_halloween{background-image:url(spritesmith-main-2.png);background-position:-1365px 0;width:90px;height:90px}.customize-option.hair_base_7_halloween{background-image:url(spritesmith-main-2.png);background-position:-1390px -15px;width:60px;height:60px}.hair_base_7_holly{background-image:url(spritesmith-main-2.png);background-position:-1365px -91px;width:90px;height:90px}.customize-option.hair_base_7_holly{background-image:url(spritesmith-main-2.png);background-position:-1390px -106px;width:60px;height:60px}.hair_base_7_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1365px -182px;width:90px;height:90px}.customize-option.hair_base_7_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1390px -197px;width:60px;height:60px}.hair_base_7_midnight{background-image:url(spritesmith-main-2.png);background-position:-1365px -273px;width:90px;height:90px}.customize-option.hair_base_7_midnight{background-image:url(spritesmith-main-2.png);background-position:-1390px -288px;width:60px;height:60px}.hair_base_7_pblue{background-image:url(spritesmith-main-2.png);background-position:-1365px -364px;width:90px;height:90px}.customize-option.hair_base_7_pblue{background-image:url(spritesmith-main-2.png);background-position:-1390px -379px;width:60px;height:60px}.hair_base_7_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1365px -455px;width:90px;height:90px}.customize-option.hair_base_7_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1390px -470px;width:60px;height:60px}.hair_base_7_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1365px -546px;width:90px;height:90px}.customize-option.hair_base_7_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1390px -561px;width:60px;height:60px}.hair_base_7_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1365px -637px;width:90px;height:90px}.customize-option.hair_base_7_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1390px -652px;width:60px;height:60px}.hair_base_7_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1365px -728px;width:90px;height:90px}.customize-option.hair_base_7_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-1390px -743px;width:60px;height:60px}.hair_base_7_porange{background-image:url(spritesmith-main-2.png);background-position:-1365px -819px;width:90px;height:90px}.customize-option.hair_base_7_porange{background-image:url(spritesmith-main-2.png);background-position:-1390px -834px;width:60px;height:60px}.hair_base_7_porange2{background-image:url(spritesmith-main-2.png);background-position:-1365px -910px;width:90px;height:90px}.customize-option.hair_base_7_porange2{background-image:url(spritesmith-main-2.png);background-position:-1390px -925px;width:60px;height:60px}.hair_base_7_ppink{background-image:url(spritesmith-main-2.png);background-position:-1365px -1001px;width:90px;height:90px}.customize-option.hair_base_7_ppink{background-image:url(spritesmith-main-2.png);background-position:-1390px -1016px;width:60px;height:60px}.hair_base_7_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1365px -1092px;width:90px;height:90px}.customize-option.hair_base_7_ppink2{background-image:url(spritesmith-main-2.png);background-position:-1390px -1107px;width:60px;height:60px}.hair_base_7_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1365px -1183px;width:90px;height:90px}.customize-option.hair_base_7_ppurple{background-image:url(spritesmith-main-2.png);background-position:-1390px -1198px;width:60px;height:60px}.hair_base_7_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1365px -1274px;width:90px;height:90px}.customize-option.hair_base_7_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1390px -1289px;width:60px;height:60px}.hair_base_7_pumpkin{background-image:url(spritesmith-main-2.png);background-position:0 -1365px;width:90px;height:90px}.customize-option.hair_base_7_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-25px -1380px;width:60px;height:60px}.hair_base_7_purple{background-image:url(spritesmith-main-2.png);background-position:-91px -1365px;width:90px;height:90px}.customize-option.hair_base_7_purple{background-image:url(spritesmith-main-2.png);background-position:-116px -1380px;width:60px;height:60px}.hair_base_7_pyellow{background-image:url(spritesmith-main-2.png);background-position:-182px -1365px;width:90px;height:90px}.customize-option.hair_base_7_pyellow{background-image:url(spritesmith-main-2.png);background-position:-207px -1380px;width:60px;height:60px}.hair_base_7_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-273px -1365px;width:90px;height:90px}.customize-option.hair_base_7_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-298px -1380px;width:60px;height:60px}.hair_base_7_rainbow{background-image:url(spritesmith-main-2.png);background-position:-364px -1365px;width:90px;height:90px}.customize-option.hair_base_7_rainbow{background-image:url(spritesmith-main-2.png);background-position:-389px -1380px;width:60px;height:60px}.hair_base_7_red{background-image:url(spritesmith-main-2.png);background-position:-455px -1365px;width:90px;height:90px}.customize-option.hair_base_7_red{background-image:url(spritesmith-main-2.png);background-position:-480px -1380px;width:60px;height:60px}.hair_base_7_snowy{background-image:url(spritesmith-main-2.png);background-position:-546px -1365px;width:90px;height:90px}.customize-option.hair_base_7_snowy{background-image:url(spritesmith-main-2.png);background-position:-571px -1380px;width:60px;height:60px}.hair_base_7_white{background-image:url(spritesmith-main-2.png);background-position:-637px -1365px;width:90px;height:90px}.customize-option.hair_base_7_white{background-image:url(spritesmith-main-2.png);background-position:-662px -1380px;width:60px;height:60px}.hair_base_7_winternight{background-image:url(spritesmith-main-2.png);background-position:-728px -1365px;width:90px;height:90px}.customize-option.hair_base_7_winternight{background-image:url(spritesmith-main-2.png);background-position:-753px -1380px;width:60px;height:60px}.hair_base_7_winterstar{background-image:url(spritesmith-main-2.png);background-position:-819px -1365px;width:90px;height:90px}.customize-option.hair_base_7_winterstar{background-image:url(spritesmith-main-2.png);background-position:-844px -1380px;width:60px;height:60px}.hair_base_7_yellow{background-image:url(spritesmith-main-2.png);background-position:-910px -1365px;width:90px;height:90px}.customize-option.hair_base_7_yellow{background-image:url(spritesmith-main-2.png);background-position:-935px -1380px;width:60px;height:60px}.hair_base_7_zombie{background-image:url(spritesmith-main-2.png);background-position:-1001px -1365px;width:90px;height:90px}.customize-option.hair_base_7_zombie{background-image:url(spritesmith-main-2.png);background-position:-1026px -1380px;width:60px;height:60px}.hair_base_8_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1092px -1365px;width:90px;height:90px}.customize-option.hair_base_8_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1117px -1380px;width:60px;height:60px}.hair_base_8_aurora{background-image:url(spritesmith-main-2.png);background-position:-1183px -1365px;width:90px;height:90px}.customize-option.hair_base_8_aurora{background-image:url(spritesmith-main-2.png);background-position:-1208px -1380px;width:60px;height:60px}.hair_base_8_black{background-image:url(spritesmith-main-2.png);background-position:-1274px -1365px;width:90px;height:90px}.customize-option.hair_base_8_black{background-image:url(spritesmith-main-2.png);background-position:-1299px -1380px;width:60px;height:60px}.hair_base_8_blond{background-image:url(spritesmith-main-2.png);background-position:-1365px -1365px;width:90px;height:90px}.customize-option.hair_base_8_blond{background-image:url(spritesmith-main-2.png);background-position:-1390px -1380px;width:60px;height:60px}.hair_base_8_blue{background-image:url(spritesmith-main-2.png);background-position:-1456px 0;width:90px;height:90px}.customize-option.hair_base_8_blue{background-image:url(spritesmith-main-2.png);background-position:-1481px -15px;width:60px;height:60px}.hair_base_8_brown{background-image:url(spritesmith-main-2.png);background-position:-1456px -91px;width:90px;height:90px}.customize-option.hair_base_8_brown{background-image:url(spritesmith-main-2.png);background-position:-1481px -106px;width:60px;height:60px}.hair_base_8_candycane{background-image:url(spritesmith-main-2.png);background-position:-1456px -182px;width:90px;height:90px}.customize-option.hair_base_8_candycane{background-image:url(spritesmith-main-2.png);background-position:-1481px -197px;width:60px;height:60px}.hair_base_8_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1456px -273px;width:90px;height:90px}.customize-option.hair_base_8_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1481px -288px;width:60px;height:60px}.hair_base_8_festive{background-image:url(spritesmith-main-2.png);background-position:-1456px -364px;width:90px;height:90px}.customize-option.hair_base_8_festive{background-image:url(spritesmith-main-2.png);background-position:-1481px -379px;width:60px;height:60px}.hair_base_8_frost{background-image:url(spritesmith-main-2.png);background-position:-1456px -455px;width:90px;height:90px}.customize-option.hair_base_8_frost{background-image:url(spritesmith-main-2.png);background-position:-1481px -470px;width:60px;height:60px}.hair_base_8_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1456px -546px;width:90px;height:90px}.customize-option.hair_base_8_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1481px -561px;width:60px;height:60px}.hair_base_8_green{background-image:url(spritesmith-main-2.png);background-position:-1456px -637px;width:90px;height:90px}.customize-option.hair_base_8_green{background-image:url(spritesmith-main-2.png);background-position:-1481px -652px;width:60px;height:60px}.hair_base_8_halloween{background-image:url(spritesmith-main-2.png);background-position:-1456px -728px;width:90px;height:90px}.customize-option.hair_base_8_halloween{background-image:url(spritesmith-main-2.png);background-position:-1481px -743px;width:60px;height:60px}.hair_base_8_holly{background-image:url(spritesmith-main-2.png);background-position:-1456px -819px;width:90px;height:90px}.customize-option.hair_base_8_holly{background-image:url(spritesmith-main-2.png);background-position:-1481px -834px;width:60px;height:60px}.hair_base_8_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1456px -910px;width:90px;height:90px}.customize-option.hair_base_8_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1481px -925px;width:60px;height:60px}.hair_base_8_midnight{background-image:url(spritesmith-main-2.png);background-position:-1456px -1001px;width:90px;height:90px}.customize-option.hair_base_8_midnight{background-image:url(spritesmith-main-2.png);background-position:-1481px -1016px;width:60px;height:60px}.hair_base_8_pblue{background-image:url(spritesmith-main-2.png);background-position:-1456px -1092px;width:90px;height:90px}.customize-option.hair_base_8_pblue{background-image:url(spritesmith-main-2.png);background-position:-1481px -1107px;width:60px;height:60px}.hair_base_8_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1456px -1183px;width:90px;height:90px}.customize-option.hair_base_8_pblue2{background-image:url(spritesmith-main-2.png);background-position:-1481px -1198px;width:60px;height:60px}.hair_base_8_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1456px -1274px;width:90px;height:90px}.customize-option.hair_base_8_peppermint{background-image:url(spritesmith-main-2.png);background-position:-1481px -1289px;width:60px;height:60px}.hair_base_8_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1456px -1365px;width:90px;height:90px}.customize-option.hair_base_8_pgreen{background-image:url(spritesmith-main-2.png);background-position:-1481px -1380px;width:60px;height:60px}.hair_base_8_pgreen2{background-image:url(spritesmith-main-2.png);background-position:0 -1456px;width:90px;height:90px}.customize-option.hair_base_8_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-25px -1471px;width:60px;height:60px}.hair_base_8_porange{background-image:url(spritesmith-main-2.png);background-position:-91px -1456px;width:90px;height:90px}.customize-option.hair_base_8_porange{background-image:url(spritesmith-main-2.png);background-position:-116px -1471px;width:60px;height:60px}.hair_base_8_porange2{background-image:url(spritesmith-main-2.png);background-position:-182px -1456px;width:90px;height:90px}.customize-option.hair_base_8_porange2{background-image:url(spritesmith-main-2.png);background-position:-207px -1471px;width:60px;height:60px}.hair_base_8_ppink{background-image:url(spritesmith-main-2.png);background-position:-273px -1456px;width:90px;height:90px}.customize-option.hair_base_8_ppink{background-image:url(spritesmith-main-2.png);background-position:-298px -1471px;width:60px;height:60px}.hair_base_8_ppink2{background-image:url(spritesmith-main-2.png);background-position:-364px -1456px;width:90px;height:90px}.customize-option.hair_base_8_ppink2{background-image:url(spritesmith-main-2.png);background-position:-389px -1471px;width:60px;height:60px}.hair_base_8_ppurple{background-image:url(spritesmith-main-2.png);background-position:-455px -1456px;width:90px;height:90px}.customize-option.hair_base_8_ppurple{background-image:url(spritesmith-main-2.png);background-position:-480px -1471px;width:60px;height:60px}.hair_base_8_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-546px -1456px;width:90px;height:90px}.customize-option.hair_base_8_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-571px -1471px;width:60px;height:60px}.hair_base_8_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-637px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-662px -1471px;width:60px;height:60px}.hair_base_8_purple{background-image:url(spritesmith-main-2.png);background-position:-728px -1456px;width:90px;height:90px}.customize-option.hair_base_8_purple{background-image:url(spritesmith-main-2.png);background-position:-753px -1471px;width:60px;height:60px}.hair_base_8_pyellow{background-image:url(spritesmith-main-2.png);background-position:-819px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pyellow{background-image:url(spritesmith-main-2.png);background-position:-844px -1471px;width:60px;height:60px}.hair_base_8_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-910px -1456px;width:90px;height:90px}.customize-option.hair_base_8_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-935px -1471px;width:60px;height:60px}.hair_base_8_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1001px -1456px;width:90px;height:90px}.customize-option.hair_base_8_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1026px -1471px;width:60px;height:60px}.hair_base_8_red{background-image:url(spritesmith-main-2.png);background-position:-1092px -1456px;width:90px;height:90px}.customize-option.hair_base_8_red{background-image:url(spritesmith-main-2.png);background-position:-1117px -1471px;width:60px;height:60px}.hair_base_8_snowy{background-image:url(spritesmith-main-2.png);background-position:-1183px -1456px;width:90px;height:90px}.customize-option.hair_base_8_snowy{background-image:url(spritesmith-main-2.png);background-position:-1208px -1471px;width:60px;height:60px}.hair_base_8_white{background-image:url(spritesmith-main-2.png);background-position:-1274px -1456px;width:90px;height:90px}.customize-option.hair_base_8_white{background-image:url(spritesmith-main-2.png);background-position:-1299px -1471px;width:60px;height:60px}.hair_base_8_winternight{background-image:url(spritesmith-main-2.png);background-position:-1365px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winternight{background-image:url(spritesmith-main-2.png);background-position:-1390px -1471px;width:60px;height:60px}.hair_base_8_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1456px -1456px;width:90px;height:90px}.customize-option.hair_base_8_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1481px -1471px;width:60px;height:60px}.hair_base_8_yellow{background-image:url(spritesmith-main-2.png);background-position:-1547px 0;width:90px;height:90px}.customize-option.hair_base_8_yellow{background-image:url(spritesmith-main-2.png);background-position:-1572px -15px;width:60px;height:60px}.hair_base_8_zombie{background-image:url(spritesmith-main-2.png);background-position:-1547px -91px;width:90px;height:90px}.customize-option.hair_base_8_zombie{background-image:url(spritesmith-main-2.png);background-position:-1572px -106px;width:60px;height:60px}.hair_base_9_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1547px -182px;width:90px;height:90px}.customize-option.hair_base_9_TRUred{background-image:url(spritesmith-main-2.png);background-position:-1572px -197px;width:60px;height:60px}.hair_base_9_aurora{background-image:url(spritesmith-main-2.png);background-position:-1547px -273px;width:90px;height:90px}.customize-option.hair_base_9_aurora{background-image:url(spritesmith-main-2.png);background-position:-1572px -288px;width:60px;height:60px}.hair_base_9_black{background-image:url(spritesmith-main-2.png);background-position:-1547px -364px;width:90px;height:90px}.customize-option.hair_base_9_black{background-image:url(spritesmith-main-2.png);background-position:-1572px -379px;width:60px;height:60px}.hair_base_9_blond{background-image:url(spritesmith-main-2.png);background-position:-1547px -455px;width:90px;height:90px}.customize-option.hair_base_9_blond{background-image:url(spritesmith-main-2.png);background-position:-1572px -470px;width:60px;height:60px}.hair_base_9_blue{background-image:url(spritesmith-main-2.png);background-position:-1547px -546px;width:90px;height:90px}.customize-option.hair_base_9_blue{background-image:url(spritesmith-main-2.png);background-position:-1572px -561px;width:60px;height:60px}.hair_base_9_brown{background-image:url(spritesmith-main-2.png);background-position:-1547px -637px;width:90px;height:90px}.customize-option.hair_base_9_brown{background-image:url(spritesmith-main-2.png);background-position:-1572px -652px;width:60px;height:60px}.hair_base_9_candycane{background-image:url(spritesmith-main-2.png);background-position:-1547px -728px;width:90px;height:90px}.customize-option.hair_base_9_candycane{background-image:url(spritesmith-main-2.png);background-position:-1572px -743px;width:60px;height:60px}.hair_base_9_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1547px -819px;width:90px;height:90px}.customize-option.hair_base_9_candycorn{background-image:url(spritesmith-main-2.png);background-position:-1572px -834px;width:60px;height:60px}.hair_base_9_festive{background-image:url(spritesmith-main-2.png);background-position:-1547px -910px;width:90px;height:90px}.customize-option.hair_base_9_festive{background-image:url(spritesmith-main-2.png);background-position:-1572px -925px;width:60px;height:60px}.hair_base_9_frost{background-image:url(spritesmith-main-2.png);background-position:-1547px -1001px;width:90px;height:90px}.customize-option.hair_base_9_frost{background-image:url(spritesmith-main-2.png);background-position:-1572px -1016px;width:60px;height:60px}.hair_base_9_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1547px -1092px;width:90px;height:90px}.customize-option.hair_base_9_ghostwhite{background-image:url(spritesmith-main-2.png);background-position:-1572px -1107px;width:60px;height:60px}.hair_base_9_green{background-image:url(spritesmith-main-2.png);background-position:-1547px -1183px;width:90px;height:90px}.customize-option.hair_base_9_green{background-image:url(spritesmith-main-2.png);background-position:-1572px -1198px;width:60px;height:60px}.hair_base_9_halloween{background-image:url(spritesmith-main-2.png);background-position:-1547px -1274px;width:90px;height:90px}.customize-option.hair_base_9_halloween{background-image:url(spritesmith-main-2.png);background-position:-1572px -1289px;width:60px;height:60px}.hair_base_9_holly{background-image:url(spritesmith-main-2.png);background-position:-1547px -1365px;width:90px;height:90px}.customize-option.hair_base_9_holly{background-image:url(spritesmith-main-2.png);background-position:-1572px -1380px;width:60px;height:60px}.hair_base_9_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1547px -1456px;width:90px;height:90px}.customize-option.hair_base_9_hollygreen{background-image:url(spritesmith-main-2.png);background-position:-1572px -1471px;width:60px;height:60px}.hair_base_9_midnight{background-image:url(spritesmith-main-2.png);background-position:0 -1547px;width:90px;height:90px}.customize-option.hair_base_9_midnight{background-image:url(spritesmith-main-2.png);background-position:-25px -1562px;width:60px;height:60px}.hair_base_9_pblue{background-image:url(spritesmith-main-2.png);background-position:-91px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pblue{background-image:url(spritesmith-main-2.png);background-position:-116px -1562px;width:60px;height:60px}.hair_base_9_pblue2{background-image:url(spritesmith-main-2.png);background-position:-182px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pblue2{background-image:url(spritesmith-main-2.png);background-position:-207px -1562px;width:60px;height:60px}.hair_base_9_peppermint{background-image:url(spritesmith-main-2.png);background-position:-273px -1547px;width:90px;height:90px}.customize-option.hair_base_9_peppermint{background-image:url(spritesmith-main-2.png);background-position:-298px -1562px;width:60px;height:60px}.hair_base_9_pgreen{background-image:url(spritesmith-main-2.png);background-position:-364px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pgreen{background-image:url(spritesmith-main-2.png);background-position:-389px -1562px;width:60px;height:60px}.hair_base_9_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-455px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pgreen2{background-image:url(spritesmith-main-2.png);background-position:-480px -1562px;width:60px;height:60px}.hair_base_9_porange{background-image:url(spritesmith-main-2.png);background-position:-546px -1547px;width:90px;height:90px}.customize-option.hair_base_9_porange{background-image:url(spritesmith-main-2.png);background-position:-571px -1562px;width:60px;height:60px}.hair_base_9_porange2{background-image:url(spritesmith-main-2.png);background-position:-637px -1547px;width:90px;height:90px}.customize-option.hair_base_9_porange2{background-image:url(spritesmith-main-2.png);background-position:-662px -1562px;width:60px;height:60px}.hair_base_9_ppink{background-image:url(spritesmith-main-2.png);background-position:-728px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppink{background-image:url(spritesmith-main-2.png);background-position:-753px -1562px;width:60px;height:60px}.hair_base_9_ppink2{background-image:url(spritesmith-main-2.png);background-position:-819px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppink2{background-image:url(spritesmith-main-2.png);background-position:-844px -1562px;width:60px;height:60px}.hair_base_9_ppurple{background-image:url(spritesmith-main-2.png);background-position:-910px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppurple{background-image:url(spritesmith-main-2.png);background-position:-935px -1562px;width:60px;height:60px}.hair_base_9_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1001px -1547px;width:90px;height:90px}.customize-option.hair_base_9_ppurple2{background-image:url(spritesmith-main-2.png);background-position:-1026px -1562px;width:60px;height:60px}.hair_base_9_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1092px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pumpkin{background-image:url(spritesmith-main-2.png);background-position:-1117px -1562px;width:60px;height:60px}.hair_base_9_purple{background-image:url(spritesmith-main-2.png);background-position:-1183px -1547px;width:90px;height:90px}.customize-option.hair_base_9_purple{background-image:url(spritesmith-main-2.png);background-position:-1208px -1562px;width:60px;height:60px}.hair_base_9_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1274px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pyellow{background-image:url(spritesmith-main-2.png);background-position:-1299px -1562px;width:60px;height:60px}.hair_base_9_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1365px -1547px;width:90px;height:90px}.customize-option.hair_base_9_pyellow2{background-image:url(spritesmith-main-2.png);background-position:-1390px -1562px;width:60px;height:60px}.hair_base_9_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1456px -1547px;width:90px;height:90px}.customize-option.hair_base_9_rainbow{background-image:url(spritesmith-main-2.png);background-position:-1481px -1562px;width:60px;height:60px}.hair_base_9_red{background-image:url(spritesmith-main-2.png);background-position:-1547px -1547px;width:90px;height:90px}.customize-option.hair_base_9_red{background-image:url(spritesmith-main-2.png);background-position:-1572px -1562px;width:60px;height:60px}.hair_base_9_snowy{background-image:url(spritesmith-main-2.png);background-position:-1638px 0;width:90px;height:90px}.customize-option.hair_base_9_snowy{background-image:url(spritesmith-main-2.png);background-position:-1663px -15px;width:60px;height:60px}.hair_base_9_white{background-image:url(spritesmith-main-2.png);background-position:-1638px -91px;width:90px;height:90px}.customize-option.hair_base_9_white{background-image:url(spritesmith-main-2.png);background-position:-1663px -106px;width:60px;height:60px}.hair_base_9_winternight{background-image:url(spritesmith-main-2.png);background-position:-1638px -182px;width:90px;height:90px}.customize-option.hair_base_9_winternight{background-image:url(spritesmith-main-2.png);background-position:-1663px -197px;width:60px;height:60px}.hair_base_9_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1638px -273px;width:90px;height:90px}.customize-option.hair_base_9_winterstar{background-image:url(spritesmith-main-2.png);background-position:-1663px -288px;width:60px;height:60px}.hair_base_9_yellow{background-image:url(spritesmith-main-2.png);background-position:-1638px -364px;width:90px;height:90px}.customize-option.hair_base_9_yellow{background-image:url(spritesmith-main-2.png);background-position:-1663px -379px;width:60px;height:60px}.hair_base_9_zombie{background-image:url(spritesmith-main-3.png);background-position:-1276px -1092px;width:90px;height:90px}.customize-option.hair_base_9_zombie{background-image:url(spritesmith-main-3.png);background-position:-1301px -1107px;width:60px;height:60px}.hair_beard_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1276px -728px;width:90px;height:90px}.customize-option.hair_beard_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1301px -743px;width:60px;height:60px}.hair_beard_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1276px -1183px;width:90px;height:90px}.customize-option.hair_beard_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1301px -1198px;width:60px;height:60px}.hair_beard_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-91px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-116px -1289px;width:60px;height:60px}.hair_beard_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-182px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-207px -1289px;width:60px;height:60px}.hair_beard_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-546px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-571px -1289px;width:60px;height:60px}.hair_beard_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-637px -1274px;width:90px;height:90px}.customize-option.hair_beard_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-662px -1289px;width:60px;height:60px}.hair_beard_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-819px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-844px -1289px;width:60px;height:60px}.hair_beard_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1092px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1117px -1289px;width:60px;height:60px}.hair_beard_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-1183px -1274px;width:90px;height:90px}.customize-option.hair_beard_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-1208px -1289px;width:60px;height:60px}.hair_beard_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1367px 0;width:90px;height:90px}.customize-option.hair_beard_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1392px -15px;width:60px;height:60px}.hair_beard_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1367px -91px;width:90px;height:90px}.customize-option.hair_beard_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1392px -106px;width:60px;height:60px}.hair_beard_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-1367px -455px;width:90px;height:90px}.customize-option.hair_beard_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-1392px -470px;width:60px;height:60px}.hair_beard_3_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1367px -546px;width:90px;height:90px}.customize-option.hair_beard_3_pblue2{background-image:url(spritesmith-main-3.png);background-position:-1392px -561px;width:60px;height:60px}.hair_beard_3_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1367px -728px;width:90px;height:90px}.customize-option.hair_beard_3_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-1392px -743px;width:60px;height:60px}.hair_beard_3_porange2{background-image:url(spritesmith-main-3.png);background-position:-1367px -819px;width:90px;height:90px}.customize-option.hair_beard_3_porange2{background-image:url(spritesmith-main-3.png);background-position:-1392px -834px;width:60px;height:60px}.hair_beard_3_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1367px -1183px;width:90px;height:90px}.customize-option.hair_beard_3_ppink2{background-image:url(spritesmith-main-3.png);background-position:-1392px -1198px;width:60px;height:60px}.hair_beard_3_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1367px -1274px;width:90px;height:90px}.customize-option.hair_beard_3_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-1392px -1289px;width:60px;height:60px}.hair_beard_3_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-454px -182px;width:90px;height:90px}.customize-option.hair_beard_3_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-479px -197px;width:60px;height:60px}.hair_mustache_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-454px -273px;width:90px;height:90px}.customize-option.hair_mustache_1_pblue2{background-image:url(spritesmith-main-3.png);background-position:-479px -288px;width:60px;height:60px}.hair_mustache_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:0 -364px;width:90px;height:90px}.customize-option.hair_mustache_1_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-25px -379px;width:60px;height:60px}.hair_mustache_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-91px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_porange2{background-image:url(spritesmith-main-3.png);background-position:-116px -379px;width:60px;height:60px}.hair_mustache_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-182px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_ppink2{background-image:url(spritesmith-main-3.png);background-position:-207px -379px;width:60px;height:60px}.hair_mustache_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-273px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-298px -379px;width:60px;height:60px}.hair_mustache_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-364px -364px;width:90px;height:90px}.customize-option.hair_mustache_1_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-389px -379px;width:60px;height:60px}.hair_mustache_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-455px -364px;width:90px;height:90px}.customize-option.hair_mustache_2_pblue2{background-image:url(spritesmith-main-3.png);background-position:-480px -379px;width:60px;height:60px}.hair_mustache_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:0 -455px;width:90px;height:90px}.customize-option.hair_mustache_2_pgreen2{background-image:url(spritesmith-main-3.png);background-position:-25px -470px;width:60px;height:60px}.hair_mustache_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-91px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_porange2{background-image:url(spritesmith-main-3.png);background-position:-116px -470px;width:60px;height:60px}.hair_mustache_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-182px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_ppink2{background-image:url(spritesmith-main-3.png);background-position:-207px -470px;width:60px;height:60px}.hair_mustache_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-273px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_ppurple2{background-image:url(spritesmith-main-3.png);background-position:-298px -470px;width:60px;height:60px}.hair_mustache_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-364px -455px;width:90px;height:90px}.customize-option.hair_mustache_2_pyellow2{background-image:url(spritesmith-main-3.png);background-position:-389px -470px;width:60px;height:60px}.broad_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-455px -455px;width:90px;height:90px}.customize-option.broad_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-480px -485px;width:60px;height:60px}.broad_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-548px 0;width:90px;height:90px}.customize-option.broad_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-573px -30px;width:60px;height:60px}.broad_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-548px -91px;width:90px;height:90px}.customize-option.broad_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-573px -121px;width:60px;height:60px}.broad_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-548px -182px;width:90px;height:90px}.customize-option.broad_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-573px -212px;width:60px;height:60px}.broad_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-548px -273px;width:90px;height:90px}.customize-option.broad_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-573px -303px;width:60px;height:60px}.broad_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-548px -364px;width:90px;height:90px}.customize-option.broad_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-573px -394px;width:60px;height:60px}.broad_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-548px -455px;width:90px;height:90px}.customize-option.broad_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-573px -485px;width:60px;height:60px}.broad_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:0 -546px;width:90px;height:90px}.customize-option.broad_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-25px -576px;width:60px;height:60px}.broad_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-91px -546px;width:90px;height:90px}.customize-option.broad_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-116px -576px;width:60px;height:60px}.broad_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-182px -546px;width:90px;height:90px}.customize-option.broad_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-207px -576px;width:60px;height:60px}.broad_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-273px -546px;width:90px;height:90px}.customize-option.broad_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-298px -576px;width:60px;height:60px}.broad_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-364px -546px;width:90px;height:90px}.customize-option.broad_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-389px -576px;width:60px;height:60px}.broad_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-455px -546px;width:90px;height:90px}.customize-option.broad_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-480px -576px;width:60px;height:60px}.broad_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-546px -546px;width:90px;height:90px}.customize-option.broad_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-571px -576px;width:60px;height:60px}.broad_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-639px 0;width:90px;height:90px}.customize-option.broad_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-664px -30px;width:60px;height:60px}.broad_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-639px -91px;width:90px;height:90px}.customize-option.broad_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-664px -121px;width:60px;height:60px}.broad_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-639px -182px;width:90px;height:90px}.customize-option.broad_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-664px -212px;width:60px;height:60px}.slim_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-639px -273px;width:90px;height:90px}.customize-option.slim_shirt_black{background-image:url(spritesmith-main-3.png);background-position:-664px -303px;width:60px;height:60px}.slim_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-639px -364px;width:90px;height:90px}.customize-option.slim_shirt_blue{background-image:url(spritesmith-main-3.png);background-position:-664px -394px;width:60px;height:60px}.slim_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-639px -455px;width:90px;height:90px}.customize-option.slim_shirt_convict{background-image:url(spritesmith-main-3.png);background-position:-664px -485px;width:60px;height:60px}.slim_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-639px -546px;width:90px;height:90px}.customize-option.slim_shirt_cross{background-image:url(spritesmith-main-3.png);background-position:-664px -576px;width:60px;height:60px}.slim_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:0 -637px;width:90px;height:90px}.customize-option.slim_shirt_fire{background-image:url(spritesmith-main-3.png);background-position:-25px -667px;width:60px;height:60px}.slim_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-91px -637px;width:90px;height:90px}.customize-option.slim_shirt_green{background-image:url(spritesmith-main-3.png);background-position:-116px -667px;width:60px;height:60px}.slim_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-182px -637px;width:90px;height:90px}.customize-option.slim_shirt_horizon{background-image:url(spritesmith-main-3.png);background-position:-207px -667px;width:60px;height:60px}.slim_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-273px -637px;width:90px;height:90px}.customize-option.slim_shirt_ocean{background-image:url(spritesmith-main-3.png);background-position:-298px -667px;width:60px;height:60px}.slim_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-364px -637px;width:90px;height:90px}.customize-option.slim_shirt_pink{background-image:url(spritesmith-main-3.png);background-position:-389px -667px;width:60px;height:60px}.slim_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-455px -637px;width:90px;height:90px}.customize-option.slim_shirt_purple{background-image:url(spritesmith-main-3.png);background-position:-480px -667px;width:60px;height:60px}.slim_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-546px -637px;width:90px;height:90px}.customize-option.slim_shirt_rainbow{background-image:url(spritesmith-main-3.png);background-position:-571px -667px;width:60px;height:60px}.slim_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-637px -637px;width:90px;height:90px}.customize-option.slim_shirt_redblue{background-image:url(spritesmith-main-3.png);background-position:-662px -667px;width:60px;height:60px}.slim_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-730px 0;width:90px;height:90px}.customize-option.slim_shirt_thunder{background-image:url(spritesmith-main-3.png);background-position:-755px -30px;width:60px;height:60px}.slim_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-730px -91px;width:90px;height:90px}.customize-option.slim_shirt_tropical{background-image:url(spritesmith-main-3.png);background-position:-755px -121px;width:60px;height:60px}.slim_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-730px -182px;width:90px;height:90px}.customize-option.slim_shirt_white{background-image:url(spritesmith-main-3.png);background-position:-755px -212px;width:60px;height:60px}.slim_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-730px -273px;width:90px;height:90px}.customize-option.slim_shirt_yellow{background-image:url(spritesmith-main-3.png);background-position:-755px -303px;width:60px;height:60px}.slim_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-730px -364px;width:90px;height:90px}.customize-option.slim_shirt_zombie{background-image:url(spritesmith-main-3.png);background-position:-755px -394px;width:60px;height:60px}.skin_0ff591{background-image:url(spritesmith-main-3.png);background-position:-730px -455px;width:90px;height:90px}.customize-option.skin_0ff591{background-image:url(spritesmith-main-3.png);background-position:-755px -470px;width:60px;height:60px}.skin_0ff591_sleep{background-image:url(spritesmith-main-3.png);background-position:-730px -546px;width:90px;height:90px}.customize-option.skin_0ff591_sleep{background-image:url(spritesmith-main-3.png);background-position:-755px -561px;width:60px;height:60px}.skin_2b43f6{background-image:url(spritesmith-main-3.png);background-position:-730px -637px;width:90px;height:90px}.customize-option.skin_2b43f6{background-image:url(spritesmith-main-3.png);background-position:-755px -652px;width:60px;height:60px}.skin_2b43f6_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -728px;width:90px;height:90px}.customize-option.skin_2b43f6_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -743px;width:60px;height:60px}.skin_6bd049{background-image:url(spritesmith-main-3.png);background-position:-91px -728px;width:90px;height:90px}.customize-option.skin_6bd049{background-image:url(spritesmith-main-3.png);background-position:-116px -743px;width:60px;height:60px}.skin_6bd049_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -728px;width:90px;height:90px}.customize-option.skin_6bd049_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -743px;width:60px;height:60px}.skin_800ed0{background-image:url(spritesmith-main-3.png);background-position:-273px -728px;width:90px;height:90px}.customize-option.skin_800ed0{background-image:url(spritesmith-main-3.png);background-position:-298px -743px;width:60px;height:60px}.skin_800ed0_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -728px;width:90px;height:90px}.customize-option.skin_800ed0_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -743px;width:60px;height:60px}.skin_915533{background-image:url(spritesmith-main-3.png);background-position:-455px -728px;width:90px;height:90px}.customize-option.skin_915533{background-image:url(spritesmith-main-3.png);background-position:-480px -743px;width:60px;height:60px}.skin_915533_sleep{background-image:url(spritesmith-main-3.png);background-position:-546px -728px;width:90px;height:90px}.customize-option.skin_915533_sleep{background-image:url(spritesmith-main-3.png);background-position:-571px -743px;width:60px;height:60px}.skin_98461a{background-image:url(spritesmith-main-3.png);background-position:-637px -728px;width:90px;height:90px}.customize-option.skin_98461a{background-image:url(spritesmith-main-3.png);background-position:-662px -743px;width:60px;height:60px}.skin_98461a_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -728px;width:90px;height:90px}.customize-option.skin_98461a_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -743px;width:60px;height:60px}.skin_bear{background-image:url(spritesmith-main-3.png);background-position:-821px 0;width:90px;height:90px}.customize-option.skin_bear{background-image:url(spritesmith-main-3.png);background-position:-846px -15px;width:60px;height:60px}.skin_bear_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -91px;width:90px;height:90px}.customize-option.skin_bear_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -106px;width:60px;height:60px}.skin_c06534{background-image:url(spritesmith-main-3.png);background-position:-821px -182px;width:90px;height:90px}.customize-option.skin_c06534{background-image:url(spritesmith-main-3.png);background-position:-846px -197px;width:60px;height:60px}.skin_c06534_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -273px;width:90px;height:90px}.customize-option.skin_c06534_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -288px;width:60px;height:60px}.skin_c3e1dc{background-image:url(spritesmith-main-3.png);background-position:-821px -364px;width:90px;height:90px}.customize-option.skin_c3e1dc{background-image:url(spritesmith-main-3.png);background-position:-846px -379px;width:60px;height:60px}.skin_c3e1dc_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -455px;width:90px;height:90px}.customize-option.skin_c3e1dc_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -470px;width:60px;height:60px}.skin_cactus{background-image:url(spritesmith-main-3.png);background-position:-821px -546px;width:90px;height:90px}.customize-option.skin_cactus{background-image:url(spritesmith-main-3.png);background-position:-846px -561px;width:60px;height:60px}.skin_cactus_sleep{background-image:url(spritesmith-main-3.png);background-position:-821px -637px;width:90px;height:90px}.customize-option.skin_cactus_sleep{background-image:url(spritesmith-main-3.png);background-position:-846px -652px;width:60px;height:60px}.skin_candycorn{background-image:url(spritesmith-main-3.png);background-position:-821px -728px;width:90px;height:90px}.customize-option.skin_candycorn{background-image:url(spritesmith-main-3.png);background-position:-846px -743px;width:60px;height:60px}.skin_candycorn_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -819px;width:90px;height:90px}.customize-option.skin_candycorn_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -834px;width:60px;height:60px}.skin_clownfish{background-image:url(spritesmith-main-3.png);background-position:-91px -819px;width:90px;height:90px}.customize-option.skin_clownfish{background-image:url(spritesmith-main-3.png);background-position:-116px -834px;width:60px;height:60px}.skin_clownfish_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -819px;width:90px;height:90px}.customize-option.skin_clownfish_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -834px;width:60px;height:60px}.skin_d7a9f7{background-image:url(spritesmith-main-3.png);background-position:-273px -819px;width:90px;height:90px}.customize-option.skin_d7a9f7{background-image:url(spritesmith-main-3.png);background-position:-298px -834px;width:60px;height:60px}.skin_d7a9f7_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -819px;width:90px;height:90px}.customize-option.skin_d7a9f7_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -834px;width:60px;height:60px}.skin_ddc994{background-image:url(spritesmith-main-3.png);background-position:-455px -819px;width:90px;height:90px}.customize-option.skin_ddc994{background-image:url(spritesmith-main-3.png);background-position:-480px -834px;width:60px;height:60px}.skin_ddc994_sleep{background-image:url(spritesmith-main-3.png);background-position:-546px -819px;width:90px;height:90px}.customize-option.skin_ddc994_sleep{background-image:url(spritesmith-main-3.png);background-position:-571px -834px;width:60px;height:60px}.skin_deepocean{background-image:url(spritesmith-main-3.png);background-position:-637px -819px;width:90px;height:90px}.customize-option.skin_deepocean{background-image:url(spritesmith-main-3.png);background-position:-662px -834px;width:60px;height:60px}.skin_deepocean_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -819px;width:90px;height:90px}.customize-option.skin_deepocean_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -834px;width:60px;height:60px}.skin_ea8349{background-image:url(spritesmith-main-3.png);background-position:-819px -819px;width:90px;height:90px}.customize-option.skin_ea8349{background-image:url(spritesmith-main-3.png);background-position:-844px -834px;width:60px;height:60px}.skin_ea8349_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px 0;width:90px;height:90px}.customize-option.skin_ea8349_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -15px;width:60px;height:60px}.skin_eb052b{background-image:url(spritesmith-main-3.png);background-position:-912px -91px;width:90px;height:90px}.customize-option.skin_eb052b{background-image:url(spritesmith-main-3.png);background-position:-937px -106px;width:60px;height:60px}.skin_eb052b_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -182px;width:90px;height:90px}.customize-option.skin_eb052b_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -197px;width:60px;height:60px}.skin_f5a76e{background-image:url(spritesmith-main-3.png);background-position:-912px -273px;width:90px;height:90px}.customize-option.skin_f5a76e{background-image:url(spritesmith-main-3.png);background-position:-937px -288px;width:60px;height:60px}.skin_f5a76e_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -364px;width:90px;height:90px}.customize-option.skin_f5a76e_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -379px;width:60px;height:60px}.skin_f5d70f{background-image:url(spritesmith-main-3.png);background-position:-912px -455px;width:90px;height:90px}.customize-option.skin_f5d70f{background-image:url(spritesmith-main-3.png);background-position:-937px -470px;width:60px;height:60px}.skin_f5d70f_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -546px;width:90px;height:90px}.customize-option.skin_f5d70f_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -561px;width:60px;height:60px}.skin_f69922{background-image:url(spritesmith-main-3.png);background-position:-912px -637px;width:90px;height:90px}.customize-option.skin_f69922{background-image:url(spritesmith-main-3.png);background-position:-937px -652px;width:60px;height:60px}.skin_f69922_sleep{background-image:url(spritesmith-main-3.png);background-position:-912px -728px;width:90px;height:90px}.customize-option.skin_f69922_sleep{background-image:url(spritesmith-main-3.png);background-position:-937px -743px;width:60px;height:60px}.skin_fox{background-image:url(spritesmith-main-3.png);background-position:-912px -819px;width:90px;height:90px}.customize-option.skin_fox{background-image:url(spritesmith-main-3.png);background-position:-937px -834px;width:60px;height:60px}.skin_fox_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -910px;width:90px;height:90px}.customize-option.skin_fox_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -925px;width:60px;height:60px}.skin_ghost{background-image:url(spritesmith-main-3.png);background-position:-91px -910px;width:90px;height:90px}.customize-option.skin_ghost{background-image:url(spritesmith-main-3.png);background-position:-116px -925px;width:60px;height:60px}.skin_ghost_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -910px;width:90px;height:90px}.customize-option.skin_ghost_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -925px;width:60px;height:60px}.skin_lion{background-image:url(spritesmith-main-3.png);background-position:-273px -910px;width:90px;height:90px}.customize-option.skin_lion{background-image:url(spritesmith-main-3.png);background-position:-298px -925px;width:60px;height:60px}.skin_lion_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -910px;width:90px;height:90px}.customize-option.skin_lion_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -925px;width:60px;height:60px}.skin_merblue{background-image:url(spritesmith-main-3.png);background-position:-455px -910px;width:90px;height:90px}.customize-option.skin_merblue{background-image:url(spritesmith-main-3.png);background-position:-480px -925px;width:60px;height:60px}.skin_merblue_sleep{background-image:url(spritesmith-main-3.png);background-position:-546px -910px;width:90px;height:90px}.customize-option.skin_merblue_sleep{background-image:url(spritesmith-main-3.png);background-position:-571px -925px;width:60px;height:60px}.skin_mergold{background-image:url(spritesmith-main-3.png);background-position:-637px -910px;width:90px;height:90px}.customize-option.skin_mergold{background-image:url(spritesmith-main-3.png);background-position:-662px -925px;width:60px;height:60px}.skin_mergold_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -910px;width:90px;height:90px}.customize-option.skin_mergold_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -925px;width:60px;height:60px}.skin_mergreen{background-image:url(spritesmith-main-3.png);background-position:-819px -910px;width:90px;height:90px}.customize-option.skin_mergreen{background-image:url(spritesmith-main-3.png);background-position:-844px -925px;width:60px;height:60px}.skin_mergreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-910px -910px;width:90px;height:90px}.customize-option.skin_mergreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-935px -925px;width:60px;height:60px}.skin_merruby{background-image:url(spritesmith-main-3.png);background-position:-1003px 0;width:90px;height:90px}.customize-option.skin_merruby{background-image:url(spritesmith-main-3.png);background-position:-1028px -15px;width:60px;height:60px}.skin_merruby_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -91px;width:90px;height:90px}.customize-option.skin_merruby_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -106px;width:60px;height:60px}.skin_monster{background-image:url(spritesmith-main-3.png);background-position:-1003px -182px;width:90px;height:90px}.customize-option.skin_monster{background-image:url(spritesmith-main-3.png);background-position:-1028px -197px;width:60px;height:60px}.skin_monster_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -273px;width:90px;height:90px}.customize-option.skin_monster_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -288px;width:60px;height:60px}.skin_ogre{background-image:url(spritesmith-main-3.png);background-position:-1003px -364px;width:90px;height:90px}.customize-option.skin_ogre{background-image:url(spritesmith-main-3.png);background-position:-1028px -379px;width:60px;height:60px}.skin_ogre_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -455px;width:90px;height:90px}.customize-option.skin_ogre_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -470px;width:60px;height:60px}.skin_panda{background-image:url(spritesmith-main-3.png);background-position:-1003px -546px;width:90px;height:90px}.customize-option.skin_panda{background-image:url(spritesmith-main-3.png);background-position:-1028px -561px;width:60px;height:60px}.skin_panda_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -637px;width:90px;height:90px}.customize-option.skin_panda_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -652px;width:60px;height:60px}.skin_pastelBlue{background-image:url(spritesmith-main-3.png);background-position:-1003px -728px;width:90px;height:90px}.customize-option.skin_pastelBlue{background-image:url(spritesmith-main-3.png);background-position:-1028px -743px;width:60px;height:60px}.skin_pastelBlue_sleep{background-image:url(spritesmith-main-3.png);background-position:-1003px -819px;width:90px;height:90px}.customize-option.skin_pastelBlue_sleep{background-image:url(spritesmith-main-3.png);background-position:-1028px -834px;width:60px;height:60px}.skin_pastelGreen{background-image:url(spritesmith-main-3.png);background-position:-1003px -910px;width:90px;height:90px}.customize-option.skin_pastelGreen{background-image:url(spritesmith-main-3.png);background-position:-1028px -925px;width:60px;height:60px}.skin_pastelGreen_sleep{background-image:url(spritesmith-main-3.png);background-position:0 -1001px;width:90px;height:90px}.customize-option.skin_pastelGreen_sleep{background-image:url(spritesmith-main-3.png);background-position:-25px -1016px;width:60px;height:60px}.skin_pastelOrange{background-image:url(spritesmith-main-3.png);background-position:-91px -1001px;width:90px;height:90px}.customize-option.skin_pastelOrange{background-image:url(spritesmith-main-3.png);background-position:-116px -1016px;width:60px;height:60px}.skin_pastelOrange_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -1001px;width:90px;height:90px}.customize-option.skin_pastelOrange_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -1016px;width:60px;height:60px}.skin_pastelPink{background-image:url(spritesmith-main-3.png);background-position:-273px -1001px;width:90px;height:90px}.customize-option.skin_pastelPink{background-image:url(spritesmith-main-3.png);background-position:-298px -1016px;width:60px;height:60px}.skin_pastelPink_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -1001px;width:90px;height:90px}.customize-option.skin_pastelPink_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -1016px;width:60px;height:60px}.skin_pastelPurple{background-image:url(spritesmith-main-3.png);background-position:-455px -1001px;width:90px;height:90px}.customize-option.skin_pastelPurple{background-image:url(spritesmith-main-3.png);background-position:-480px -1016px;width:60px;height:60px}.skin_pastelPurple_sleep{background-image:url(spritesmith-main-3.png);background-position:-546px -1001px;width:90px;height:90px}.customize-option.skin_pastelPurple_sleep{background-image:url(spritesmith-main-3.png);background-position:-571px -1016px;width:60px;height:60px}.skin_pastelRainbowChevron{background-image:url(spritesmith-main-3.png);background-position:-637px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron{background-image:url(spritesmith-main-3.png);background-position:-662px -1016px;width:60px;height:60px}.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowChevron_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -1016px;width:60px;height:60px}.skin_pastelRainbowDiagonal{background-image:url(spritesmith-main-3.png);background-position:-819px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal{background-image:url(spritesmith-main-3.png);background-position:-844px -1016px;width:60px;height:60px}.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith-main-3.png);background-position:-910px -1001px;width:90px;height:90px}.customize-option.skin_pastelRainbowDiagonal_sleep{background-image:url(spritesmith-main-3.png);background-position:-935px -1016px;width:60px;height:60px}.skin_pastelYellow{background-image:url(spritesmith-main-3.png);background-position:-1001px -1001px;width:90px;height:90px}.customize-option.skin_pastelYellow{background-image:url(spritesmith-main-3.png);background-position:-1026px -1016px;width:60px;height:60px}.skin_pastelYellow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px 0;width:90px;height:90px}.customize-option.skin_pastelYellow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -15px;width:60px;height:60px}.skin_pig{background-image:url(spritesmith-main-3.png);background-position:-1094px -91px;width:90px;height:90px}.customize-option.skin_pig{background-image:url(spritesmith-main-3.png);background-position:-1119px -106px;width:60px;height:60px}.skin_pig_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -182px;width:90px;height:90px}.customize-option.skin_pig_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -197px;width:60px;height:60px}.skin_pumpkin{background-image:url(spritesmith-main-3.png);background-position:-1094px -273px;width:90px;height:90px}.customize-option.skin_pumpkin{background-image:url(spritesmith-main-3.png);background-position:-1119px -288px;width:60px;height:60px}.skin_pumpkin2{background-image:url(spritesmith-main-3.png);background-position:-1094px -364px;width:90px;height:90px}.customize-option.skin_pumpkin2{background-image:url(spritesmith-main-3.png);background-position:-1119px -379px;width:60px;height:60px}.skin_pumpkin2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -455px;width:90px;height:90px}.customize-option.skin_pumpkin2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -470px;width:60px;height:60px}.skin_pumpkin_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -546px;width:90px;height:90px}.customize-option.skin_pumpkin_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -561px;width:60px;height:60px}.skin_rainbow{background-image:url(spritesmith-main-3.png);background-position:-1094px -637px;width:90px;height:90px}.customize-option.skin_rainbow{background-image:url(spritesmith-main-3.png);background-position:-1119px -652px;width:60px;height:60px}.skin_rainbow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -728px;width:90px;height:90px}.customize-option.skin_rainbow_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -743px;width:60px;height:60px}.skin_reptile{background-image:url(spritesmith-main-3.png);background-position:-1094px -819px;width:90px;height:90px}.customize-option.skin_reptile{background-image:url(spritesmith-main-3.png);background-position:-1119px -834px;width:60px;height:60px}.skin_reptile_sleep{background-image:url(spritesmith-main-3.png);background-position:-1094px -910px;width:90px;height:90px}.customize-option.skin_reptile_sleep{background-image:url(spritesmith-main-3.png);background-position:-1119px -925px;width:60px;height:60px}.skin_shadow{background-image:url(spritesmith-main-3.png);background-position:-1094px -1001px;width:90px;height:90px}.customize-option.skin_shadow{background-image:url(spritesmith-main-3.png);background-position:-1119px -1016px;width:60px;height:60px}.skin_shadow2{background-image:url(spritesmith-main-3.png);background-position:0 -1092px;width:90px;height:90px}.customize-option.skin_shadow2{background-image:url(spritesmith-main-3.png);background-position:-25px -1107px;width:60px;height:60px}.skin_shadow2_sleep{background-image:url(spritesmith-main-3.png);background-position:-91px -1092px;width:90px;height:90px}.customize-option.skin_shadow2_sleep{background-image:url(spritesmith-main-3.png);background-position:-116px -1107px;width:60px;height:60px}.skin_shadow_sleep{background-image:url(spritesmith-main-3.png);background-position:-182px -1092px;width:90px;height:90px}.customize-option.skin_shadow_sleep{background-image:url(spritesmith-main-3.png);background-position:-207px -1107px;width:60px;height:60px}.skin_shark{background-image:url(spritesmith-main-3.png);background-position:-273px -1092px;width:90px;height:90px}.customize-option.skin_shark{background-image:url(spritesmith-main-3.png);background-position:-298px -1107px;width:60px;height:60px}.skin_shark_sleep{background-image:url(spritesmith-main-3.png);background-position:-364px -1092px;width:90px;height:90px}.customize-option.skin_shark_sleep{background-image:url(spritesmith-main-3.png);background-position:-389px -1107px;width:60px;height:60px}.skin_skeleton{background-image:url(spritesmith-main-3.png);background-position:-455px -1092px;width:90px;height:90px}.customize-option.skin_skeleton{background-image:url(spritesmith-main-3.png);background-position:-480px -1107px;width:60px;height:60px}.skin_skeleton2{background-image:url(spritesmith-main-3.png);background-position:-546px -1092px;width:90px;height:90px}.customize-option.skin_skeleton2{background-image:url(spritesmith-main-3.png);background-position:-571px -1107px;width:60px;height:60px}.skin_skeleton2_sleep{background-image:url(spritesmith-main-3.png);background-position:-637px -1092px;width:90px;height:90px}.customize-option.skin_skeleton2_sleep{background-image:url(spritesmith-main-3.png);background-position:-662px -1107px;width:60px;height:60px}.skin_skeleton_sleep{background-image:url(spritesmith-main-3.png);background-position:-728px -1092px;width:90px;height:90px}.customize-option.skin_skeleton_sleep{background-image:url(spritesmith-main-3.png);background-position:-753px -1107px;width:60px;height:60px}.skin_tiger{background-image:url(spritesmith-main-3.png);background-position:-819px -1092px;width:90px;height:90px}.customize-option.skin_tiger{background-image:url(spritesmith-main-3.png);background-position:-844px -1107px;width:60px;height:60px}.skin_tiger_sleep{background-image:url(spritesmith-main-3.png);background-position:-910px -1092px;width:90px;height:90px}.customize-option.skin_tiger_sleep{background-image:url(spritesmith-main-3.png);background-position:-935px -1107px;width:60px;height:60px}.skin_transparent{background-image:url(spritesmith-main-3.png);background-position:-1001px -1092px;width:90px;height:90px}.customize-option.skin_transparent{background-image:url(spritesmith-main-3.png);background-position:-1026px -1107px;width:60px;height:60px}.skin_transparent_sleep{background-image:url(spritesmith-main-3.png);background-position:-1092px -1092px;width:90px;height:90px}.customize-option.skin_transparent_sleep{background-image:url(spritesmith-main-3.png);background-position:-1117px -1107px;width:60px;height:60px}.skin_tropicalwater{background-image:url(spritesmith-main-3.png);background-position:-1185px 0;width:90px;height:90px}.customize-option.skin_tropicalwater{background-image:url(spritesmith-main-3.png);background-position:-1210px -15px;width:60px;height:60px}.skin_tropicalwater_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px -91px;width:90px;height:90px}.customize-option.skin_tropicalwater_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -106px;width:60px;height:60px}.skin_wolf{background-image:url(spritesmith-main-3.png);background-position:-1185px -182px;width:90px;height:90px}.customize-option.skin_wolf{background-image:url(spritesmith-main-3.png);background-position:-1210px -197px;width:60px;height:60px}.skin_wolf_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px -273px;width:90px;height:90px}.customize-option.skin_wolf_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -288px;width:60px;height:60px}.skin_zombie{background-image:url(spritesmith-main-3.png);background-position:-1185px -364px;width:90px;height:90px}.customize-option.skin_zombie{background-image:url(spritesmith-main-3.png);background-position:-1210px -379px;width:60px;height:60px}.skin_zombie2{background-image:url(spritesmith-main-3.png);background-position:-1185px -455px;width:90px;height:90px}.customize-option.skin_zombie2{background-image:url(spritesmith-main-3.png);background-position:-1210px -470px;width:60px;height:60px}.skin_zombie2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px -546px;width:90px;height:90px}.customize-option.skin_zombie2_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -561px;width:60px;height:60px}.skin_zombie_sleep{background-image:url(spritesmith-main-3.png);background-position:-1185px -637px;width:90px;height:90px}.customize-option.skin_zombie_sleep{background-image:url(spritesmith-main-3.png);background-position:-1210px -652px;width:60px;height:60px}.broad_armor_armoire_crystalCrescentRobes{background-image:url(spritesmith-main-3.png);background-position:-1185px -728px;width:90px;height:90px}.broad_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -819px;width:90px;height:90px}.broad_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1185px -910px;width:90px;height:90px}.broad_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -1001px;width:90px;height:90px}.broad_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1185px -1092px;width:90px;height:90px}.broad_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:0 -1183px;width:90px;height:90px}.broad_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-91px -1183px;width:90px;height:90px}.broad_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-182px -1183px;width:90px;height:90px}.broad_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-273px -1183px;width:90px;height:90px}.eyewear_armoire_plagueDoctorMask{background-image:url(spritesmith-main-3.png);background-position:-364px -1183px;width:90px;height:90px}.head_armoire_blackCat{background-image:url(spritesmith-main-3.png);background-position:-455px -1183px;width:90px;height:90px}.head_armoire_blueFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-546px -1183px;width:90px;height:90px}.head_armoire_blueHairbow{background-image:url(spritesmith-main-3.png);background-position:-637px -1183px;width:90px;height:90px}.head_armoire_crystalCrescentHat{background-image:url(spritesmith-main-3.png);background-position:-728px -1183px;width:90px;height:90px}.head_armoire_gladiatorHelm{background-image:url(spritesmith-main-3.png);background-position:-819px -1183px;width:90px;height:90px}.head_armoire_goldenLaurels{background-image:url(spritesmith-main-3.png);background-position:-910px -1183px;width:90px;height:90px}.head_armoire_hornedIronHelm{background-image:url(spritesmith-main-3.png);background-position:-1001px -1183px;width:90px;height:90px}.head_armoire_lunarCrown{background-image:url(spritesmith-main-3.png);background-position:-1092px -1183px;width:90px;height:90px}.head_armoire_orangeCat{background-image:url(spritesmith-main-3.png);background-position:-1183px -1183px;width:90px;height:90px}.head_armoire_plagueDoctorHat{background-image:url(spritesmith-main-3.png);background-position:-1276px 0;width:90px;height:90px}.head_armoire_rancherHat{background-image:url(spritesmith-main-3.png);background-position:-1276px -91px;width:90px;height:90px}.head_armoire_redFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1276px -182px;width:90px;height:90px}.head_armoire_redHairbow{background-image:url(spritesmith-main-3.png);background-position:-1276px -273px;width:90px;height:90px}.head_armoire_royalCrown{background-image:url(spritesmith-main-3.png);background-position:-1276px -364px;width:90px;height:90px}.head_armoire_shepherdHeaddress{background-image:url(spritesmith-main-3.png);background-position:-1276px -455px;width:90px;height:90px}.head_armoire_violetFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-1276px -546px;width:90px;height:90px}.head_armoire_yellowHairbow{background-image:url(spritesmith-main-3.png);background-position:-1276px -637px;width:90px;height:90px}.shield_armoire_gladiatorShield{background-image:url(spritesmith-main-3.png);background-position:-454px -91px;width:90px;height:90px}.shield_armoire_midnightShield{background-image:url(spritesmith-main-3.png);background-position:-1276px -819px;width:90px;height:90px}.shield_armoire_royalCane{background-image:url(spritesmith-main-3.png);background-position:-1276px -910px;width:90px;height:90px}.shop_armor_armoire_crystalCrescentRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -902px;width:40px;height:40px}.shop_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -861px;width:40px;height:40px}.shop_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-1640px -820px;width:40px;height:40px}.shop_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -779px;width:40px;height:40px}.shop_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1640px -738px;width:40px;height:40px}.shop_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1640px -697px;width:40px;height:40px}.shop_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -656px;width:40px;height:40px}.shop_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -615px;width:40px;height:40px}.shop_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-1640px -574px;width:40px;height:40px}.shop_eyewear_armoire_plagueDoctorMask{background-image:url(spritesmith-main-3.png);background-position:-1640px -533px;width:40px;height:40px}.shop_head_armoire_blackCat{background-image:url(spritesmith-main-3.png);background-position:-1640px -492px;width:40px;height:40px}.shop_head_armoire_blueFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-838px -1588px;width:40px;height:40px}.shop_head_armoire_blueHairbow{background-image:url(spritesmith-main-3.png);background-position:-797px -1588px;width:40px;height:40px}.shop_head_armoire_crystalCrescentHat{background-image:url(spritesmith-main-3.png);background-position:-756px -1588px;width:40px;height:40px}.shop_head_armoire_gladiatorHelm{background-image:url(spritesmith-main-3.png);background-position:-715px -1588px;width:40px;height:40px}.shop_head_armoire_goldenLaurels{background-image:url(spritesmith-main-3.png);background-position:-674px -1588px;width:40px;height:40px}.shop_head_armoire_hornedIronHelm{background-image:url(spritesmith-main-3.png);background-position:-633px -1588px;width:40px;height:40px}.shop_head_armoire_lunarCrown{background-image:url(spritesmith-main-3.png);background-position:-1640px -943px;width:40px;height:40px}.shop_head_armoire_orangeCat{background-image:url(spritesmith-main-3.png);background-position:-551px -1588px;width:40px;height:40px}.shop_head_armoire_plagueDoctorHat{background-image:url(spritesmith-main-3.png);background-position:-510px -1588px;width:40px;height:40px}.shop_head_armoire_rancherHat{background-image:url(spritesmith-main-3.png);background-position:-469px -1588px;width:40px;height:40px}.shop_head_armoire_redFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-428px -1588px;width:40px;height:40px}.shop_head_armoire_redHairbow{background-image:url(spritesmith-main-3.png);background-position:-387px -1588px;width:40px;height:40px}.shop_head_armoire_royalCrown{background-image:url(spritesmith-main-3.png);background-position:-346px -1588px;width:40px;height:40px}.shop_head_armoire_shepherdHeaddress{background-image:url(spritesmith-main-3.png);background-position:-305px -1588px;width:40px;height:40px}.shop_head_armoire_violetFloppyHat{background-image:url(spritesmith-main-3.png);background-position:-264px -1588px;width:40px;height:40px}.shop_head_armoire_yellowHairbow{background-image:url(spritesmith-main-3.png);background-position:-223px -1588px;width:40px;height:40px}.shop_shield_armoire_gladiatorShield{background-image:url(spritesmith-main-3.png);background-position:-182px -1588px;width:40px;height:40px}.shop_shield_armoire_midnightShield{background-image:url(spritesmith-main-3.png);background-position:-1576px -1547px;width:40px;height:40px}.shop_shield_armoire_royalCane{background-image:url(spritesmith-main-3.png);background-position:-1535px -1547px;width:40px;height:40px}.shop_weapon_armoire_basicCrossbow{background-image:url(spritesmith-main-3.png);background-position:-1494px -1547px;width:40px;height:40px}.shop_weapon_armoire_batWand{background-image:url(spritesmith-main-3.png);background-position:-1453px -1547px;width:40px;height:40px}.shop_weapon_armoire_blueLongbow{background-image:url(spritesmith-main-3.png);background-position:-1412px -1547px;width:40px;height:40px}.shop_weapon_armoire_crystalCrescentStaff{background-image:url(spritesmith-main-3.png);background-position:-1371px -1547px;width:40px;height:40px}.shop_weapon_armoire_goldWingStaff{background-image:url(spritesmith-main-3.png);background-position:-1330px -1547px;width:40px;height:40px}.shop_weapon_armoire_ironCrook{background-image:url(spritesmith-main-3.png);background-position:-1207px -1547px;width:40px;height:40px}.shop_weapon_armoire_lunarSceptre{background-image:url(spritesmith-main-3.png);background-position:-1166px -1547px;width:40px;height:40px}.shop_weapon_armoire_mythmakerSword{background-image:url(spritesmith-main-3.png);background-position:-1125px -1547px;width:40px;height:40px}.shop_weapon_armoire_rancherLasso{background-image:url(spritesmith-main-3.png);background-position:-1084px -1547px;width:40px;height:40px}.shop_weapon_armoire_shepherdsCrook{background-image:url(spritesmith-main-3.png);background-position:-1043px -1547px;width:40px;height:40px}.slim_armor_armoire_crystalCrescentRobes{background-image:url(spritesmith-main-3.png);background-position:-637px -1365px;width:90px;height:90px}.slim_armor_armoire_gladiatorArmor{background-image:url(spritesmith-main-3.png);background-position:-728px -1365px;width:90px;height:90px}.slim_armor_armoire_goldenToga{background-image:url(spritesmith-main-3.png);background-position:-819px -1365px;width:90px;height:90px}.slim_armor_armoire_hornedIronArmor{background-image:url(spritesmith-main-3.png);background-position:-910px -1365px;width:90px;height:90px}.slim_armor_armoire_lunarArmor{background-image:url(spritesmith-main-3.png);background-position:-1001px -1365px;width:90px;height:90px}.slim_armor_armoire_plagueDoctorOvercoat{background-image:url(spritesmith-main-3.png);background-position:-1092px -1365px;width:90px;height:90px}.slim_armor_armoire_rancherRobes{background-image:url(spritesmith-main-3.png);background-position:-1183px -1365px;width:90px;height:90px}.slim_armor_armoire_royalRobes{background-image:url(spritesmith-main-3.png);background-position:-1274px -1365px;width:90px;height:90px}.slim_armor_armoire_shepherdRobes{background-image:url(spritesmith-main-3.png);background-position:-1365px -1365px;width:90px;height:90px}.weapon_armoire_basicCrossbow{background-image:url(spritesmith-main-3.png);background-position:-1458px 0;width:90px;height:90px}.weapon_armoire_batWand{background-image:url(spritesmith-main-3.png);background-position:-1458px -91px;width:90px;height:90px}.weapon_armoire_blueLongbow{background-image:url(spritesmith-main-3.png);background-position:-1458px -182px;width:90px;height:90px}.weapon_armoire_crystalCrescentStaff{background-image:url(spritesmith-main-3.png);background-position:-1458px -273px;width:90px;height:90px}.weapon_armoire_goldWingStaff{background-image:url(spritesmith-main-3.png);background-position:-1458px -364px;width:90px;height:90px}.weapon_armoire_ironCrook{background-image:url(spritesmith-main-3.png);background-position:-1458px -455px;width:90px;height:90px}.weapon_armoire_lunarSceptre{background-image:url(spritesmith-main-3.png);background-position:-1458px -546px;width:90px;height:90px}.weapon_armoire_mythmakerSword{background-image:url(spritesmith-main-3.png);background-position:-1458px -637px;width:90px;height:90px}.weapon_armoire_rancherLasso{background-image:url(spritesmith-main-3.png);background-position:-1458px -728px;width:90px;height:90px}.weapon_armoire_shepherdsCrook{background-image:url(spritesmith-main-3.png);background-position:-1458px -819px;width:90px;height:90px}.broad_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-1458px -910px;width:90px;height:90px}.broad_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1458px -1001px;width:90px;height:90px}.broad_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1458px -1092px;width:90px;height:90px}.broad_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1458px -1183px;width:90px;height:90px}.broad_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-1458px -1274px;width:90px;height:90px}.broad_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-1458px -1365px;width:90px;height:90px}.broad_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:0 -1456px;width:90px;height:90px}.broad_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-91px -1456px;width:90px;height:90px}.broad_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-182px -1456px;width:90px;height:90px}.broad_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-273px -1456px;width:90px;height:90px}.broad_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-364px -1456px;width:90px;height:90px}.broad_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-455px -1456px;width:90px;height:90px}.broad_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-546px -1456px;width:90px;height:90px}.broad_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-637px -1456px;width:90px;height:90px}.broad_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-728px -1456px;width:90px;height:90px}.broad_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-819px -1456px;width:90px;height:90px}.broad_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-910px -1456px;width:90px;height:90px}.broad_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-1001px -1456px;width:90px;height:90px}.broad_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-1092px -1456px;width:90px;height:90px}.broad_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-1183px -1456px;width:90px;height:90px}.broad_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-1274px -1456px;width:90px;height:90px}.broad_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-1365px -1456px;width:90px;height:90px}.shop_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:-1002px -1547px;width:40px;height:40px}.shop_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-961px -1547px;width:40px;height:40px}.shop_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-920px -1547px;width:40px;height:40px}.shop_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-879px -1547px;width:40px;height:40px}.shop_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-838px -1547px;width:40px;height:40px}.shop_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-797px -1547px;width:40px;height:40px}.shop_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-756px -1547px;width:40px;height:40px}.shop_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-715px -1547px;width:40px;height:40px}.shop_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-674px -1547px;width:40px;height:40px}.shop_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-633px -1547px;width:40px;height:40px}.shop_armor_special_0{background-image:url(spritesmith-main-3.png);background-position:-592px -1547px;width:40px;height:40px}.shop_armor_special_1{background-image:url(spritesmith-main-3.png);background-position:-551px -1547px;width:40px;height:40px}.shop_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-510px -1547px;width:40px;height:40px}.shop_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-469px -1547px;width:40px;height:40px}.shop_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-428px -1547px;width:40px;height:40px}.shop_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-387px -1547px;width:40px;height:40px}.shop_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-346px -1547px;width:40px;height:40px}.shop_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-305px -1547px;width:40px;height:40px}.shop_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-264px -1547px;width:40px;height:40px}.shop_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-376px -273px;width:40px;height:40px}.shop_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-592px -1588px;width:40px;height:40px}.shop_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-376px -314px;width:40px;height:40px}.shop_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-182px -1547px;width:40px;height:40px}.shop_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-223px -1547px;width:40px;height:40px}.slim_armor_healer_1{background-image:url(spritesmith-main-3.png);background-position:0 -1547px;width:90px;height:90px}.slim_armor_healer_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -1456px;width:90px;height:90px}.slim_armor_healer_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -1365px;width:90px;height:90px}.slim_armor_healer_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -1274px;width:90px;height:90px}.slim_armor_healer_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -1183px;width:90px;height:90px}.slim_armor_rogue_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -1092px;width:90px;height:90px}.slim_armor_rogue_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -1001px;width:90px;height:90px}.slim_armor_rogue_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -910px;width:90px;height:90px}.slim_armor_rogue_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -819px;width:90px;height:90px}.slim_armor_rogue_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -728px;width:90px;height:90px}.slim_armor_special_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -637px;width:90px;height:90px}.slim_armor_special_finnedOceanicArmor{background-image:url(spritesmith-main-3.png);background-position:-1549px -546px;width:90px;height:90px}.slim_armor_warrior_1{background-image:url(spritesmith-main-3.png);background-position:-1549px -455px;width:90px;height:90px}.slim_armor_warrior_2{background-image:url(spritesmith-main-3.png);background-position:-1549px -364px;width:90px;height:90px}.slim_armor_warrior_3{background-image:url(spritesmith-main-3.png);background-position:-1549px -273px;width:90px;height:90px}.slim_armor_warrior_4{background-image:url(spritesmith-main-3.png);background-position:-1549px -182px;width:90px;height:90px}.slim_armor_warrior_5{background-image:url(spritesmith-main-3.png);background-position:-1549px -91px;width:90px;height:90px}.slim_armor_wizard_1{background-image:url(spritesmith-main-3.png);background-position:-1549px 0;width:90px;height:90px}.slim_armor_wizard_2{background-image:url(spritesmith-main-3.png);background-position:-1456px -1456px;width:90px;height:90px}.slim_armor_wizard_3{background-image:url(spritesmith-main-3.png);background-position:-546px -1365px;width:90px;height:90px}.slim_armor_wizard_4{background-image:url(spritesmith-main-3.png);background-position:-455px -1365px;width:90px;height:90px}.slim_armor_wizard_5{background-image:url(spritesmith-main-3.png);background-position:-364px -1365px;width:90px;height:90px}.broad_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-273px -1365px;width:90px;height:90px}.broad_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-182px -1365px;width:90px;height:90px}.shop_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-1248px -1547px;width:40px;height:40px}.shop_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:-1289px -1547px;width:40px;height:40px}.slim_armor_special_birthday{background-image:url(spritesmith-main-3.png);background-position:-91px -1365px;width:90px;height:90px}.slim_armor_special_birthday2015{background-image:url(spritesmith-main-3.png);background-position:0 -1365px;width:90px;height:90px}.broad_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-282px -273px;width:93px;height:90px}.broad_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-212px -182px;width:105px;height:90px}.broad_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1367px -1092px;width:90px;height:90px}.broad_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -1001px;width:90px;height:90px}.broad_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1367px -910px;width:90px;height:90px}.broad_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:0 -91px;width:120px;height:90px}.broad_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-348px -91px;width:105px;height:90px}.broad_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -637px;width:90px;height:90px}.head_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-94px -273px;width:93px;height:90px}.head_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-348px 0;width:105px;height:90px}.head_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1367px -364px;width:90px;height:90px}.head_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1367px -273px;width:90px;height:90px}.head_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1367px -182px;width:90px;height:90px}.head_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-121px 0;width:120px;height:90px}.head_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-106px -182px;width:105px;height:90px}.head_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1274px -1274px;width:90px;height:90px}.shield_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:0 -273px;width:93px;height:90px}.shield_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-242px -91px;width:105px;height:90px}.shield_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1001px -1274px;width:90px;height:90px}.shield_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-910px -1274px;width:90px;height:90px}.shield_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-242px 0;width:105px;height:90px}.shield_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-728px -1274px;width:90px;height:90px}.shop_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-879px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-920px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-961px -1588px;width:40px;height:40px}.shop_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1002px -1588px;width:40px;height:40px}.shop_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1043px -1588px;width:40px;height:40px}.shop_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-1084px -1588px;width:40px;height:40px}.shop_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1125px -1588px;width:40px;height:40px}.shop_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1166px -1588px;width:40px;height:40px}.shop_head_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-1207px -1588px;width:40px;height:40px}.shop_head_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-1248px -1588px;width:40px;height:40px}.shop_head_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1289px -1588px;width:40px;height:40px}.shop_head_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1330px -1588px;width:40px;height:40px}.shop_head_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1371px -1588px;width:40px;height:40px}.shop_head_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-1412px -1588px;width:40px;height:40px}.shop_head_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1453px -1588px;width:40px;height:40px}.shop_head_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1494px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-1535px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1576px -1588px;width:40px;height:40px}.shop_shield_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1640px 0;width:40px;height:40px}.shop_shield_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1640px -41px;width:40px;height:40px}.shop_shield_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1640px -82px;width:40px;height:40px}.shop_shield_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1640px -123px;width:40px;height:40px}.shop_weapon_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-1640px -164px;width:40px;height:40px}.shop_weapon_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-1640px -205px;width:40px;height:40px}.shop_weapon_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1640px -246px;width:40px;height:40px}.shop_weapon_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-1640px -287px;width:40px;height:40px}.shop_weapon_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-1640px -328px;width:40px;height:40px}.shop_weapon_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:-1640px -369px;width:40px;height:40px}.shop_weapon_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:-1640px -410px;width:40px;height:40px}.shop_weapon_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:-1640px -451px;width:40px;height:40px}.slim_armor_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-454px 0;width:93px;height:90px}.slim_armor_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-348px -182px;width:105px;height:90px}.slim_armor_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-455px -1274px;width:90px;height:90px}.slim_armor_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-364px -1274px;width:90px;height:90px}.slim_armor_special_fallHealer{background-image:url(spritesmith-main-3.png);background-position:-273px -1274px;width:90px;height:90px}.slim_armor_special_fallMage{background-image:url(spritesmith-main-3.png);background-position:0 0;width:120px;height:90px}.slim_armor_special_fallRogue{background-image:url(spritesmith-main-3.png);background-position:0 -182px;width:105px;height:90px}.slim_armor_special_fallWarrior{background-image:url(spritesmith-main-3.png);background-position:0 -1274px;width:90px;height:90px}.weapon_special_fall2015Healer{background-image:url(spritesmith-main-3.png);background-position:-188px -273px;width:93px;height:90px}.weapon_special_fall2015Mage{background-image:url(spritesmith-main-3.png);background-position:-121px -91px;width:105px;height:90px}.weapon_special_fall2015Rogue{background-image:url(spritesmith-main-3.png);background-position:-1276px -1001px;width:90px;height:90px}.weapon_special_fall2015Warrior{background-image:url(spritesmith-main-3.png);background-position:-91px -1547px;width:90px;height:90px}.weapon_special_fallHealer{background-image:url(spritesmith-main-4.png);background-position:-182px -879px;width:90px;height:90px}.weapon_special_fallMage{background-image:url(spritesmith-main-4.png);background-position:0 0;width:120px;height:90px}.weapon_special_fallRogue{background-image:url(spritesmith-main-4.png);background-position:-336px -303px;width:105px;height:90px}.weapon_special_fallWarrior{background-image:url(spritesmith-main-4.png);background-position:-1033px -455px;width:90px;height:90px}.broad_armor_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-1306px -819px;width:90px;height:90px}.head_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-1306px -1092px;width:90px;height:90px}.shop_armor_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-1670px -615px;width:40px;height:40px}.shop_head_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-1670px -574px;width:40px;height:40px}.slim_armor_special_gaymerx{background-image:url(spritesmith-main-4.png);background-position:-273px -1334px;width:90px;height:90px}.back_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-364px -1334px;width:90px;height:90px}.broad_armor_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-455px -1334px;width:90px;height:90px}.head_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-910px -1334px;width:90px;height:90px}.shop_armor_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-1670px -533px;width:40px;height:40px}.shop_back_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-1670px -492px;width:40px;height:40px}.shop_head_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-1670px -451px;width:40px;height:40px}.slim_armor_mystery_201402{background-image:url(spritesmith-main-4.png);background-position:-942px -455px;width:90px;height:90px}.broad_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-942px -546px;width:90px;height:90px}.headAccessory_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:0 -879px;width:90px;height:90px}.shop_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-1670px -410px;width:40px;height:40px}.shop_headAccessory_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-1670px -369px;width:40px;height:40px}.slim_armor_mystery_201403{background-image:url(spritesmith-main-4.png);background-position:-455px -879px;width:90px;height:90px}.back_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-546px -879px;width:90px;height:90px}.headAccessory_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-819px -879px;width:90px;height:90px}.shop_back_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1670px -328px;width:40px;height:40px}.shop_headAccessory_mystery_201404{background-image:url(spritesmith-main-4.png);background-position:-1670px -287px;width:40px;height:40px}.broad_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-637px -1152px;width:90px;height:90px}.head_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1306px -91px;width:90px;height:90px}.shop_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1670px -246px;width:40px;height:40px}.shop_head_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-1670px -205px;width:40px;height:40px}.slim_armor_mystery_201405{background-image:url(spritesmith-main-4.png);background-position:-182px -1243px;width:90px;height:90px}.broad_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-757px -415px;width:90px;height:96px}.head_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-757px -318px;width:90px;height:96px}.shop_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-1670px -164px;width:40px;height:40px}.shop_head_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-1670px -123px;width:40px;height:40px}.slim_armor_mystery_201406{background-image:url(spritesmith-main-4.png);background-position:-757px -512px;width:90px;height:96px}.broad_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-728px -1334px;width:90px;height:90px}.head_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-819px -1334px;width:90px;height:90px}.shop_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1670px -82px;width:40px;height:40px}.shop_head_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1670px -41px;width:40px;height:40px}.slim_armor_mystery_201407{background-image:url(spritesmith-main-4.png);background-position:-1092px -1334px;width:90px;height:90px}.broad_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1183px -1334px;width:90px;height:90px}.head_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1274px -1334px;width:90px;height:90px}.shop_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1670px 0;width:40px;height:40px}.shop_head_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1599px -1598px;width:40px;height:40px}.slim_armor_mystery_201408{background-image:url(spritesmith-main-4.png);background-position:-1488px -273px;width:90px;height:90px}.broad_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1488px -364px;width:90px;height:90px}.headAccessory_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1488px -455px;width:90px;height:90px}.shop_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1558px -1598px;width:40px;height:40px}.shop_headAccessory_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1517px -1598px;width:40px;height:40px}.slim_armor_mystery_201409{background-image:url(spritesmith-main-4.png);background-position:-1488px -728px;width:90px;height:90px}.back_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-848px -91px;width:93px;height:90px}.broad_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-848px 0;width:93px;height:90px}.shop_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-1476px -1598px;width:40px;height:40px}.shop_back_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-1107px -1598px;width:40px;height:40px}.slim_armor_mystery_201410{background-image:url(spritesmith-main-4.png);background-position:-701px -697px;width:93px;height:90px}.head_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:0 -1425px;width:90px;height:90px}.shop_head_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1066px -1598px;width:40px;height:40px}.shop_weapon_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-1025px -1598px;width:40px;height:40px}.weapon_mystery_201411{background-image:url(spritesmith-main-4.png);background-position:-728px -1425px;width:90px;height:90px}.broad_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-819px -1425px;width:90px;height:90px}.head_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-910px -1425px;width:90px;height:90px}.shop_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-984px -1598px;width:40px;height:40px}.shop_head_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-943px -1598px;width:40px;height:40px}.slim_armor_mystery_201412{background-image:url(spritesmith-main-4.png);background-position:-1183px -1425px;width:90px;height:90px}.broad_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1456px -1425px;width:90px;height:90px}.head_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1579px 0;width:90px;height:90px}.shop_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-902px -1598px;width:40px;height:40px}.shop_head_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-861px -1598px;width:40px;height:40px}.slim_armor_mystery_201501{background-image:url(spritesmith-main-4.png);background-position:-1579px -273px;width:90px;height:90px}.headAccessory_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-1579px -364px;width:90px;height:90px}.shop_headAccessory_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-820px -1598px;width:40px;height:40px}.shop_weapon_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:-1435px -1557px;width:40px;height:40px}.weapon_mystery_201502{background-image:url(spritesmith-main-4.png);background-position:0 -788px;width:90px;height:90px}.broad_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-91px -788px;width:90px;height:90px}.eyewear_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-182px -788px;width:90px;height:90px}.shop_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-1394px -1557px;width:40px;height:40px}.shop_eyewear_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-1353px -1557px;width:40px;height:40px}.slim_armor_mystery_201503{background-image:url(spritesmith-main-4.png);background-position:-455px -788px;width:90px;height:90px}.back_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-546px -788px;width:90px;height:90px}.broad_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-637px -788px;width:90px;height:90px}.shop_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-1312px -1557px;width:40px;height:40px}.shop_back_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-1271px -1557px;width:40px;height:40px}.slim_armor_mystery_201504{background-image:url(spritesmith-main-4.png);background-position:-942px 0;width:90px;height:90px}.head_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-942px -91px;width:90px;height:90px}.shop_head_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-1230px -1557px;width:40px;height:40px}.shop_weapon_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-1189px -1557px;width:40px;height:40px}.weapon_mystery_201505{background-image:url(spritesmith-main-4.png);background-position:-942px -364px;width:90px;height:90px}.broad_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-364px -485px;width:90px;height:105px}.eyewear_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-455px -485px;width:90px;height:105px}.shop_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-1148px -1557px;width:40px;height:40px}.shop_eyewear_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-1107px -1557px;width:40px;height:40px}.slim_armor_mystery_201506{background-image:url(spritesmith-main-4.png);background-position:-666px -424px;width:90px;height:105px}.back_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:0 -591px;width:90px;height:105px}.eyewear_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-91px -591px;width:90px;height:105px}.shop_back_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-1066px -1557px;width:40px;height:40px}.shop_eyewear_mystery_201507{background-image:url(spritesmith-main-4.png);background-position:-1025px -1557px;width:40px;height:40px}.broad_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-848px -182px;width:93px;height:90px}.head_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-848px -273px;width:93px;height:90px}.shop_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-984px -1557px;width:40px;height:40px}.shop_head_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-943px -1557px;width:40px;height:40px}.slim_armor_mystery_201508{background-image:url(spritesmith-main-4.png);background-position:-848px -455px;width:93px;height:90px}.broad_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-910px -879px;width:90px;height:90px}.head_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-1033px 0;width:90px;height:90px}.shop_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-902px -1557px;width:40px;height:40px}.shop_head_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-861px -1557px;width:40px;height:40px}.slim_armor_mystery_201509{background-image:url(spritesmith-main-4.png);background-position:-1033px -273px;width:90px;height:90px}.back_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-448px -394px;width:105px;height:90px}.headAccessory_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-848px -364px;width:93px;height:90px}.shop_back_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-820px -1557px;width:40px;height:40px}.shop_headAccessory_mystery_201510{background-image:url(spritesmith-main-4.png);background-position:-779px -1557px;width:40px;height:40px}.broad_armor_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1033px -728px;width:90px;height:90px}.head_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1033px -819px;width:90px;height:90px}.shop_armor_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1622px -637px;width:42px;height:42px}.shop_head_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-1579px -637px;width:42px;height:42px}.slim_armor_mystery_201511{background-image:url(spritesmith-main-4.png);background-position:-182px -970px;width:90px;height:90px}.broad_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-273px -970px;width:90px;height:90px}.eyewear_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-364px -970px;width:90px;height:90px}.head_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-455px -970px;width:90px;height:90px}.shop_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-656px -1557px;width:40px;height:40px}.shop_eyewear_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-615px -1557px;width:40px;height:40px}.shop_head_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-574px -1557px;width:40px;height:40px}.shop_weapon_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-533px -1557px;width:40px;height:40px}.slim_armor_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-910px -970px;width:90px;height:90px}.weapon_mystery_301404{background-image:url(spritesmith-main-4.png);background-position:-1001px -970px;width:90px;height:90px}.eyewear_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1124px 0;width:90px;height:90px}.headAccessory_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1124px -91px;width:90px;height:90px}.head_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1124px -182px;width:90px;height:90px}.shield_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-1124px -273px;width:90px;height:90px}.shop_eyewear_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-205px -1557px;width:40px;height:40px}.shop_headAccessory_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-164px -1557px;width:40px;height:40px}.shop_head_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-123px -1557px;width:40px;height:40px}.shop_shield_mystery_301405{background-image:url(spritesmith-main-4.png);background-position:-82px -1557px;width:40px;height:40px}.broad_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1124px -728px;width:90px;height:90px}.broad_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1124px -819px;width:90px;height:90px}.broad_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1124px -910px;width:90px;height:90px}.broad_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:0 -1061px;width:90px;height:90px}.broad_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-91px -1061px;width:90px;height:90px}.broad_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-182px -1061px;width:90px;height:90px}.broad_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-273px -1061px;width:90px;height:90px}.broad_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-364px -1061px;width:90px;height:90px}.headAccessory_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-455px -1061px;width:90px;height:90px}.headAccessory_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-546px -1061px;width:90px;height:90px}.headAccessory_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-637px -1061px;width:90px;height:90px}.headAccessory_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-728px -1061px;width:90px;height:90px}.headAccessory_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-819px -1061px;width:90px;height:90px}.headAccessory_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-910px -1061px;width:90px;height:90px}.headAccessory_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1001px -1061px;width:90px;height:90px}.headAccessory_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1092px -1061px;width:90px;height:90px}.head_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1215px 0;width:90px;height:90px}.head_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1215px -91px;width:90px;height:90px}.head_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1215px -182px;width:90px;height:90px}.head_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1215px -273px;width:90px;height:90px}.head_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1215px -364px;width:90px;height:90px}.head_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1215px -455px;width:90px;height:90px}.head_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1215px -546px;width:90px;height:90px}.head_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1215px -637px;width:90px;height:90px}.shield_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1215px -728px;width:90px;height:90px}.shield_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1215px -819px;width:90px;height:90px}.shield_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1215px -910px;width:90px;height:90px}.shield_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1215px -1001px;width:90px;height:90px}.shield_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:0 -1152px;width:90px;height:90px}.shield_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-91px -1152px;width:90px;height:90px}.shop_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-41px -1557px;width:40px;height:40px}.shop_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:0 -1557px;width:40px;height:40px}.shop_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1599px -1516px;width:40px;height:40px}.shop_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1558px -1516px;width:40px;height:40px}.shop_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1517px -1516px;width:40px;height:40px}.shop_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -680px;width:40px;height:40px}.shop_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1435px -1516px;width:40px;height:40px}.shop_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1394px -1516px;width:40px;height:40px}.shop_headAccessory_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1353px -1516px;width:40px;height:40px}.shop_headAccessory_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1312px -1516px;width:40px;height:40px}.shop_headAccessory_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1271px -1516px;width:40px;height:40px}.shop_headAccessory_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1230px -1516px;width:40px;height:40px}.shop_headAccessory_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1189px -1516px;width:40px;height:40px}.shop_headAccessory_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1148px -1516px;width:40px;height:40px}.shop_headAccessory_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1107px -1516px;width:40px;height:40px}.shop_headAccessory_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1066px -1516px;width:40px;height:40px}.shop_head_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1025px -1516px;width:40px;height:40px}.shop_head_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-984px -1516px;width:40px;height:40px}.shop_head_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-943px -1516px;width:40px;height:40px}.shop_head_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-848px -728px;width:40px;height:40px}.shop_head_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-983px -819px;width:40px;height:40px}.shop_head_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-942px -819px;width:40px;height:40px}.shop_head_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1074px -910px;width:40px;height:40px}.shop_head_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1033px -910px;width:40px;height:40px}.shop_shield_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1165px -1001px;width:40px;height:40px}.shop_shield_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1124px -1001px;width:40px;height:40px}.shop_shield_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1256px -1092px;width:40px;height:40px}.shop_shield_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1215px -1092px;width:40px;height:40px}.shop_shield_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1347px -1183px;width:40px;height:40px}.shop_shield_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1306px -1183px;width:40px;height:40px}.shop_weapon_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1438px -1274px;width:40px;height:40px}.shop_weapon_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1397px -1274px;width:40px;height:40px}.shop_weapon_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1529px -1365px;width:40px;height:40px}.shop_weapon_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1488px -1365px;width:40px;height:40px}.shop_weapon_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1459px;width:40px;height:40px}.shop_weapon_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1459px;width:40px;height:40px}.shop_weapon_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1418px;width:40px;height:40px}.shop_weapon_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1418px;width:40px;height:40px}.slim_armor_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1183px -1243px;width:90px;height:90px}.slim_armor_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1274px -1243px;width:90px;height:90px}.slim_armor_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1397px 0;width:90px;height:90px}.slim_armor_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1397px -91px;width:90px;height:90px}.slim_armor_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1397px -182px;width:90px;height:90px}.slim_armor_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1397px -273px;width:90px;height:90px}.slim_armor_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1397px -364px;width:90px;height:90px}.slim_armor_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1397px -455px;width:90px;height:90px}.weapon_special_spring2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1397px -546px;width:90px;height:90px}.weapon_special_spring2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1397px -637px;width:90px;height:90px}.weapon_special_spring2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1397px -728px;width:90px;height:90px}.weapon_special_spring2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1397px -819px;width:90px;height:90px}.weapon_special_springHealer{background-image:url(spritesmith-main-4.png);background-position:-1397px -910px;width:90px;height:90px}.weapon_special_springMage{background-image:url(spritesmith-main-4.png);background-position:-1397px -1001px;width:90px;height:90px}.weapon_special_springRogue{background-image:url(spritesmith-main-4.png);background-position:-1397px -1092px;width:90px;height:90px}.weapon_special_springWarrior{background-image:url(spritesmith-main-4.png);background-position:-1397px -1183px;width:90px;height:90px}.body_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:0 -1334px;width:90px;height:90px}.body_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-91px -1334px;width:90px;height:90px}.body_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-206px -197px;width:102px;height:105px}.body_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-546px -485px;width:90px;height:105px}.body_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-666px 0;width:90px;height:105px}.body_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-666px -106px;width:90px;height:105px}.broad_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-546px -1334px;width:90px;height:90px}.broad_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-637px -1334px;width:90px;height:90px}.broad_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 -91px;width:102px;height:105px}.broad_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-666px -212px;width:90px;height:105px}.broad_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-666px -318px;width:90px;height:105px}.broad_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-554px -364px;width:90px;height:105px}.broad_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-112px -394px;width:111px;height:90px}.broad_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-224px -394px;width:111px;height:90px}.eyewear_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-336px -394px;width:111px;height:90px}.eyewear_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-554px 0;width:111px;height:90px}.head_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1488px 0;width:90px;height:90px}.head_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1488px -91px;width:90px;height:90px}.head_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-103px -197px;width:102px;height:105px}.head_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-455px -591px;width:90px;height:105px}.head_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-546px -591px;width:90px;height:105px}.head_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-637px -591px;width:90px;height:105px}.head_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-442px -182px;width:111px;height:90px}.head_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-554px -273px;width:111px;height:90px}.Healer_Summer{background-image:url(spritesmith-main-4.png);background-position:-757px -106px;width:90px;height:105px}.Mage_Summer{background-image:url(spritesmith-main-4.png);background-position:-757px -212px;width:90px;height:105px}.SummerRogue14{background-image:url(spritesmith-main-4.png);background-position:-554px -91px;width:111px;height:90px}.SummerWarrior14{background-image:url(spritesmith-main-4.png);background-position:0 -303px;width:111px;height:90px}.shield_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1488px -1092px;width:90px;height:90px}.shield_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-224px 0;width:102px;height:105px}.shield_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-273px -485px;width:90px;height:105px}.shield_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-182px -485px;width:90px;height:105px}.shield_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-442px -91px;width:111px;height:90px}.shield_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-442px 0;width:111px;height:90px}.shop_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1377px;width:40px;height:40px}.shop_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1377px;width:40px;height:40px}.shop_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1336px;width:40px;height:40px}.shop_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1336px;width:40px;height:40px}.shop_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1295px;width:40px;height:40px}.shop_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1295px;width:40px;height:40px}.shop_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1254px;width:40px;height:40px}.shop_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1254px;width:40px;height:40px}.shop_body_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1213px;width:40px;height:40px}.shop_body_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1213px;width:40px;height:40px}.shop_body_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1172px;width:40px;height:40px}.shop_body_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1172px;width:40px;height:40px}.shop_body_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1131px;width:40px;height:40px}.shop_body_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1131px;width:40px;height:40px}.shop_eyewear_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1090px;width:40px;height:40px}.shop_eyewear_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1090px;width:40px;height:40px}.shop_head_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -1049px;width:40px;height:40px}.shop_head_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -1049px;width:40px;height:40px}.shop_head_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -1008px;width:40px;height:40px}.shop_head_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -1008px;width:40px;height:40px}.shop_head_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -967px;width:40px;height:40px}.shop_head_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-697px -1557px;width:40px;height:40px}.shop_head_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1476px -1516px;width:40px;height:40px}.shop_head_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-738px -1557px;width:40px;height:40px}.shop_shield_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -680px;width:40px;height:40px}.shop_shield_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1579px -721px;width:40px;height:40px}.shop_shield_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1620px -721px;width:40px;height:40px}.shop_shield_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1579px -762px;width:40px;height:40px}.shop_shield_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -762px;width:40px;height:40px}.shop_shield_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -803px;width:40px;height:40px}.shop_weapon_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1620px -803px;width:40px;height:40px}.shop_weapon_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -844px;width:40px;height:40px}.shop_weapon_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -844px;width:40px;height:40px}.shop_weapon_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -885px;width:40px;height:40px}.shop_weapon_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-1620px -885px;width:40px;height:40px}.shop_weapon_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-1579px -926px;width:40px;height:40px}.shop_weapon_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-1620px -926px;width:40px;height:40px}.shop_weapon_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-1579px -967px;width:40px;height:40px}.slim_armor_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1579px -546px;width:90px;height:90px}.slim_armor_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1579px -455px;width:90px;height:90px}.slim_armor_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:0 -197px;width:102px;height:105px}.slim_armor_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:0 -485px;width:90px;height:105px}.slim_armor_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-91px -485px;width:90px;height:105px}.slim_armor_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-757px 0;width:90px;height:105px}.slim_armor_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-442px -273px;width:111px;height:90px}.slim_armor_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:0 -394px;width:111px;height:90px}.weapon_special_summer2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1365px -1425px;width:90px;height:90px}.weapon_special_summer2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1274px -1425px;width:90px;height:90px}.weapon_special_summer2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-121px 0;width:102px;height:105px}.weapon_special_summer2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-182px -591px;width:90px;height:105px}.weapon_special_summerHealer{background-image:url(spritesmith-main-4.png);background-position:-273px -591px;width:90px;height:105px}.weapon_special_summerMage{background-image:url(spritesmith-main-4.png);background-position:-364px -591px;width:90px;height:105px}.weapon_special_summerRogue{background-image:url(spritesmith-main-4.png);background-position:-112px -303px;width:111px;height:90px}.weapon_special_summerWarrior{background-image:url(spritesmith-main-4.png);background-position:-224px -303px;width:111px;height:90px}.broad_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-637px -1425px;width:90px;height:90px}.broad_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-546px -1425px;width:90px;height:90px}.broad_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-455px -1425px;width:90px;height:90px}.broad_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-364px -1425px;width:90px;height:90px}.broad_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-273px -1425px;width:90px;height:90px}.broad_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-507px -697px;width:96px;height:90px}.broad_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1001px -1243px;width:90px;height:90px}.broad_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-910px -1243px;width:90px;height:90px}.head_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-819px -1243px;width:90px;height:90px}.head_special_nye{background-image:url(spritesmith-main-4.png);background-position:-728px -1243px;width:90px;height:90px}.head_special_nye2014{background-image:url(spritesmith-main-4.png);background-position:-637px -1243px;width:90px;height:90px}.head_special_ski{background-image:url(spritesmith-main-4.png);background-position:-546px -1243px;width:90px;height:90px}.head_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-455px -1243px;width:90px;height:90px}.head_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-364px -1243px;width:90px;height:90px}.head_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-273px -1243px;width:90px;height:90px}.head_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-604px -697px;width:96px;height:90px}.head_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-91px -1243px;width:90px;height:90px}.head_special_yeti{background-image:url(spritesmith-main-4.png);background-position:0 -1243px;width:90px;height:90px}.shield_special_ski{background-image:url(spritesmith-main-4.png);background-position:0 -697px;width:104px;height:90px}.shield_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1306px -1001px;width:90px;height:90px}.shield_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1306px -910px;width:90px;height:90px}.shield_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-121px -106px;width:96px;height:90px}.shield_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1306px -728px;width:90px;height:90px}.shield_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1306px -637px;width:90px;height:90px}.shop_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-889px -728px;width:40px;height:40px}.shop_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-757px -609px;width:40px;height:40px}.shop_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-798px -609px;width:40px;height:40px}.shop_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-757px -650px;width:40px;height:40px}.shop_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-798px -650px;width:40px;height:40px}.shop_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-666px -530px;width:40px;height:40px}.shop_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-707px -530px;width:40px;height:40px}.shop_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-795px -697px;width:40px;height:40px}.shop_head_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-795px -738px;width:40px;height:40px}.shop_head_special_nye{background-image:url(spritesmith-main-4.png);background-position:0 -1516px;width:40px;height:40px}.shop_head_special_nye2014{background-image:url(spritesmith-main-4.png);background-position:-41px -1516px;width:40px;height:40px}.shop_head_special_ski{background-image:url(spritesmith-main-4.png);background-position:-82px -1516px;width:40px;height:40px}.shop_head_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-123px -1516px;width:40px;height:40px}.shop_head_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-164px -1516px;width:40px;height:40px}.shop_head_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-205px -1516px;width:40px;height:40px}.shop_head_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-246px -1516px;width:40px;height:40px}.shop_head_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-287px -1516px;width:40px;height:40px}.shop_head_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-328px -1516px;width:40px;height:40px}.shop_shield_special_ski{background-image:url(spritesmith-main-4.png);background-position:-369px -1516px;width:40px;height:40px}.shop_shield_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-410px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-451px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-492px -1516px;width:40px;height:40px}.shop_shield_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-533px -1516px;width:40px;height:40px}.shop_shield_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-574px -1516px;width:40px;height:40px}.shop_weapon_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-615px -1516px;width:40px;height:40px}.shop_weapon_special_ski{background-image:url(spritesmith-main-4.png);background-position:-656px -1516px;width:40px;height:40px}.shop_weapon_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-697px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-738px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-779px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-820px -1516px;width:40px;height:40px}.shop_weapon_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-861px -1516px;width:40px;height:40px}.shop_weapon_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-902px -1516px;width:40px;height:40px}.slim_armor_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1306px -546px;width:90px;height:90px}.slim_armor_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1306px -455px;width:90px;height:90px}.slim_armor_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-1306px -364px;width:90px;height:90px}.slim_armor_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-1306px -273px;width:90px;height:90px}.slim_armor_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-1306px -182px;width:90px;height:90px}.slim_armor_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-313px -697px;width:96px;height:90px}.slim_armor_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-1306px 0;width:90px;height:90px}.slim_armor_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-1183px -1152px;width:90px;height:90px}.weapon_special_candycane{background-image:url(spritesmith-main-4.png);background-position:-1092px -1152px;width:90px;height:90px}.weapon_special_ski{background-image:url(spritesmith-main-4.png);background-position:-1001px -1152px;width:90px;height:90px}.weapon_special_snowflake{background-image:url(spritesmith-main-4.png);background-position:-910px -1152px;width:90px;height:90px}.weapon_special_winter2015Healer{background-image:url(spritesmith-main-4.png);background-position:-819px -1152px;width:90px;height:90px}.weapon_special_winter2015Mage{background-image:url(spritesmith-main-4.png);background-position:-728px -1152px;width:90px;height:90px}.weapon_special_winter2015Rogue{background-image:url(spritesmith-main-4.png);background-position:-410px -697px;width:96px;height:90px}.weapon_special_winter2015Warrior{background-image:url(spritesmith-main-4.png);background-position:-546px -1152px;width:90px;height:90px}.weapon_special_yeti{background-image:url(spritesmith-main-4.png);background-position:-455px -1152px;width:90px;height:90px}.back_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-364px -1152px;width:90px;height:90px}.back_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-273px -1152px;width:90px;height:90px}.body_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-182px -1152px;width:90px;height:90px}.body_special_wondercon_gold{background-image:url(spritesmith-main-4.png);background-position:-1124px -637px;width:90px;height:90px}.body_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1124px -546px;width:90px;height:90px}.eyewear_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-1124px -455px;width:90px;height:90px}.eyewear_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-1124px -364px;width:90px;height:90px}.shop_back_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-246px -1557px;width:40px;height:40px}.shop_back_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-287px -1557px;width:40px;height:40px}.shop_body_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-328px -1557px;width:40px;height:40px}.shop_body_special_wondercon_gold{background-image:url(spritesmith-main-4.png);background-position:-369px -1557px;width:40px;height:40px}.shop_body_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-410px -1557px;width:40px;height:40px}.shop_eyewear_special_wondercon_black{background-image:url(spritesmith-main-4.png);background-position:-451px -1557px;width:40px;height:40px}.shop_eyewear_special_wondercon_red{background-image:url(spritesmith-main-4.png);background-position:-492px -1557px;width:40px;height:40px}.head_0{background-image:url(spritesmith-main-4.png);background-position:-819px -970px;width:90px;height:90px}.customize-option.head_0{background-image:url(spritesmith-main-4.png);background-position:-844px -985px;width:60px;height:60px}.head_healer_1{background-image:url(spritesmith-main-4.png);background-position:-728px -970px;width:90px;height:90px}.head_healer_2{background-image:url(spritesmith-main-4.png);background-position:-637px -970px;width:90px;height:90px}.head_healer_3{background-image:url(spritesmith-main-4.png);background-position:-546px -970px;width:90px;height:90px}.head_healer_4{background-image:url(spritesmith-main-4.png);background-position:-91px -970px;width:90px;height:90px}.head_healer_5{background-image:url(spritesmith-main-4.png);background-position:0 -970px;width:90px;height:90px}.head_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-1033px -637px;width:90px;height:90px}.head_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-1033px -546px;width:90px;height:90px}.head_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-1033px -182px;width:90px;height:90px}.head_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-1033px -91px;width:90px;height:90px}.head_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-728px -879px;width:90px;height:90px}.head_special_2{background-image:url(spritesmith-main-4.png);background-position:-637px -879px;width:90px;height:90px}.head_special_fireCoralCirclet{background-image:url(spritesmith-main-4.png);background-position:-364px -879px;width:90px;height:90px}.head_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-273px -879px;width:90px;height:90px}.head_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-942px -728px;width:90px;height:90px}.head_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-942px -637px;width:90px;height:90px}.head_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-942px -273px;width:90px;height:90px}.head_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-942px -182px;width:90px;height:90px}.head_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-819px -788px;width:90px;height:90px}.head_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-728px -788px;width:90px;height:90px}.head_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-364px -788px;width:90px;height:90px}.head_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-273px -788px;width:90px;height:90px}.head_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-848px -637px;width:90px;height:90px}.shop_head_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1476px -1557px;width:40px;height:40px}.shop_head_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1517px -1557px;width:40px;height:40px}.shop_head_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1558px -1557px;width:40px;height:40px}.shop_head_healer_4{background-image:url(spritesmith-main-4.png);background-position:-1599px -1557px;width:40px;height:40px}.shop_head_healer_5{background-image:url(spritesmith-main-4.png);background-position:0 -1598px;width:40px;height:40px}.shop_head_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-41px -1598px;width:40px;height:40px}.shop_head_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-82px -1598px;width:40px;height:40px}.shop_head_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-123px -1598px;width:40px;height:40px}.shop_head_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-164px -1598px;width:40px;height:40px}.shop_head_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-205px -1598px;width:40px;height:40px}.shop_head_special_0{background-image:url(spritesmith-main-4.png);background-position:-246px -1598px;width:40px;height:40px}.shop_head_special_1{background-image:url(spritesmith-main-4.png);background-position:-287px -1598px;width:40px;height:40px}.shop_head_special_2{background-image:url(spritesmith-main-4.png);background-position:-328px -1598px;width:40px;height:40px}.shop_head_special_fireCoralCirclet{background-image:url(spritesmith-main-4.png);background-position:-369px -1598px;width:40px;height:40px}.shop_head_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-410px -1598px;width:40px;height:40px}.shop_head_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-451px -1598px;width:40px;height:40px}.shop_head_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-492px -1598px;width:40px;height:40px}.shop_head_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-533px -1598px;width:40px;height:40px}.shop_head_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-574px -1598px;width:40px;height:40px}.shop_head_wizard_1{background-image:url(spritesmith-main-4.png);background-position:-615px -1598px;width:40px;height:40px}.shop_head_wizard_2{background-image:url(spritesmith-main-4.png);background-position:-656px -1598px;width:40px;height:40px}.shop_head_wizard_3{background-image:url(spritesmith-main-4.png);background-position:-697px -1598px;width:40px;height:40px}.shop_head_wizard_4{background-image:url(spritesmith-main-4.png);background-position:-738px -1598px;width:40px;height:40px}.shop_head_wizard_5{background-image:url(spritesmith-main-4.png);background-position:-779px -1598px;width:40px;height:40px}.headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-848px -546px;width:90px;height:90px}.customize-option.headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-873px -561px;width:60px;height:60px}.headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1579px -182px;width:90px;height:90px}.customize-option.headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1604px -197px;width:60px;height:60px}.headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1579px -91px;width:90px;height:90px}.customize-option.headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1604px -106px;width:60px;height:60px}.headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1092px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1117px -1440px;width:60px;height:60px}.headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1001px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1026px -1440px;width:60px;height:60px}.headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-182px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-207px -1440px;width:60px;height:60px}.headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-91px -1425px;width:90px;height:90px}.customize-option.headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-116px -1440px;width:60px;height:60px}.headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1488px -1183px;width:90px;height:90px}.customize-option.headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1513px -1198px;width:60px;height:60px}.shop_headAccessory_special_bearEars{background-image:url(spritesmith-main-4.png);background-position:-1148px -1598px;width:40px;height:40px}.shop_headAccessory_special_cactusEars{background-image:url(spritesmith-main-4.png);background-position:-1189px -1598px;width:40px;height:40px}.shop_headAccessory_special_foxEars{background-image:url(spritesmith-main-4.png);background-position:-1230px -1598px;width:40px;height:40px}.shop_headAccessory_special_lionEars{background-image:url(spritesmith-main-4.png);background-position:-1271px -1598px;width:40px;height:40px}.shop_headAccessory_special_pandaEars{background-image:url(spritesmith-main-4.png);background-position:-1312px -1598px;width:40px;height:40px}.shop_headAccessory_special_pigEars{background-image:url(spritesmith-main-4.png);background-position:-1353px -1598px;width:40px;height:40px}.shop_headAccessory_special_tigerEars{background-image:url(spritesmith-main-4.png);background-position:-1394px -1598px;width:40px;height:40px}.shop_headAccessory_special_wolfEars{background-image:url(spritesmith-main-4.png);background-position:-1435px -1598px;width:40px;height:40px}.shield_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1488px -1001px;width:90px;height:90px}.shield_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1488px -637px;width:90px;height:90px}.shield_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1488px -546px;width:90px;height:90px}.shield_healer_4{background-image:url(spritesmith-main-4.png);background-position:-1488px -182px;width:90px;height:90px}.shield_healer_5{background-image:url(spritesmith-main-4.png);background-position:-1365px -1334px;width:90px;height:90px}.shield_rogue_0{background-image:url(spritesmith-main-4.png);background-position:-1001px -1334px;width:90px;height:90px}.shield_rogue_1{background-image:url(spritesmith-main-4.png);background-position:-209px -697px;width:103px;height:90px}.shield_rogue_2{background-image:url(spritesmith-main-4.png);background-position:-105px -697px;width:103px;height:90px}.shield_rogue_3{background-image:url(spritesmith-main-4.png);background-position:-327px -91px;width:114px;height:90px}.shield_rogue_4{background-image:url(spritesmith-main-4.png);background-position:-224px -106px;width:96px;height:90px}.shield_rogue_5{background-image:url(spritesmith-main-4.png);background-position:-327px -182px;width:114px;height:90px}.shield_rogue_6{background-image:url(spritesmith-main-4.png);background-position:-327px 0;width:114px;height:90px}.shield_special_1{background-image:url(spritesmith-main-4.png);background-position:-1033px -364px;width:90px;height:90px}.shield_special_goldenknight{background-image:url(spritesmith-main-4.png);background-position:-554px -182px;width:111px;height:90px}.shield_special_moonpearlShield{background-image:url(spritesmith-main-4.png);background-position:-91px -879px;width:90px;height:90px}.shield_warrior_1{background-image:url(spritesmith-main-4.png);background-position:-1488px -1274px;width:90px;height:90px}.shield_warrior_2{background-image:url(spritesmith-main-4.png);background-position:-1488px -910px;width:90px;height:90px}.shield_warrior_3{background-image:url(spritesmith-main-4.png);background-position:-1488px -819px;width:90px;height:90px}.shield_warrior_4{background-image:url(spritesmith-main-4.png);background-position:-182px -1334px;width:90px;height:90px}.shield_warrior_5{background-image:url(spritesmith-main-4.png);background-position:-1092px -1243px;width:90px;height:90px}.shop_shield_healer_1{background-image:url(spritesmith-main-4.png);background-position:-1670px -656px;width:40px;height:40px}.shop_shield_healer_2{background-image:url(spritesmith-main-4.png);background-position:-1670px -697px;width:40px;height:40px}.shop_shield_healer_3{background-image:url(spritesmith-main-4.png);background-position:-1670px -738px;width:40px;height:40px}.shop_shield_healer_4{background-image:url(spritesmith-main-5.png);background-position:-1525px -367px;width:40px;height:40px}.shop_shield_healer_5{background-image:url(spritesmith-main-5.png);background-position:-1711px -1377px;width:40px;height:40px}.shop_shield_rogue_0{background-image:url(spritesmith-main-5.png);background-position:-1711px -1459px;width:40px;height:40px}.shop_shield_rogue_1{background-image:url(spritesmith-main-5.png);background-position:-1711px -1623px;width:40px;height:40px}.shop_shield_rogue_2{background-image:url(spritesmith-main-5.png);background-position:-1525px -326px;width:40px;height:40px}.shop_shield_rogue_3{background-image:url(spritesmith-main-5.png);background-position:-421px -1704px;width:40px;height:40px}.shop_shield_rogue_4{background-image:url(spritesmith-main-5.png);background-position:-503px -1704px;width:40px;height:40px}.shop_shield_rogue_5{background-image:url(spritesmith-main-5.png);background-position:-667px -1704px;width:40px;height:40px}.shop_shield_rogue_6{background-image:url(spritesmith-main-5.png);background-position:-708px -1704px;width:40px;height:40px}.shop_shield_special_0{background-image:url(spritesmith-main-5.png);background-position:-749px -1704px;width:40px;height:40px}.shop_shield_special_1{background-image:url(spritesmith-main-5.png);background-position:-790px -1704px;width:40px;height:40px}.shop_shield_special_goldenknight{background-image:url(spritesmith-main-5.png);background-position:-831px -1704px;width:40px;height:40px}.shop_shield_special_moonpearlShield{background-image:url(spritesmith-main-5.png);background-position:-1760px -82px;width:40px;height:40px}.shop_shield_warrior_1{background-image:url(spritesmith-main-5.png);background-position:-1760px -41px;width:40px;height:40px}.shop_shield_warrior_2{background-image:url(spritesmith-main-5.png);background-position:-1760px 0;width:40px;height:40px}.shop_shield_warrior_3{background-image:url(spritesmith-main-5.png);background-position:-1692px -1704px;width:40px;height:40px}.shop_shield_warrior_4{background-image:url(spritesmith-main-5.png);background-position:-1651px -1704px;width:40px;height:40px}.shop_shield_warrior_5{background-image:url(spritesmith-main-5.png);background-position:-1610px -1704px;width:40px;height:40px}.shop_weapon_healer_0{background-image:url(spritesmith-main-5.png);background-position:-1569px -1704px;width:40px;height:40px}.shop_weapon_healer_1{background-image:url(spritesmith-main-5.png);background-position:-1528px -1704px;width:40px;height:40px}.shop_weapon_healer_2{background-image:url(spritesmith-main-5.png);background-position:-1487px -1704px;width:40px;height:40px}.shop_weapon_healer_3{background-image:url(spritesmith-main-5.png);background-position:-1446px -1704px;width:40px;height:40px}.shop_weapon_healer_4{background-image:url(spritesmith-main-5.png);background-position:-1405px -1704px;width:40px;height:40px}.shop_weapon_healer_5{background-image:url(spritesmith-main-5.png);background-position:-1364px -1704px;width:40px;height:40px}.shop_weapon_healer_6{background-image:url(spritesmith-main-5.png);background-position:-1323px -1704px;width:40px;height:40px}.shop_weapon_rogue_0{background-image:url(spritesmith-main-5.png);background-position:-1282px -1704px;width:40px;height:40px}.shop_weapon_rogue_1{background-image:url(spritesmith-main-5.png);background-position:-1241px -1704px;width:40px;height:40px}.shop_weapon_rogue_2{background-image:url(spritesmith-main-5.png);background-position:-1200px -1704px;width:40px;height:40px}.shop_weapon_rogue_3{background-image:url(spritesmith-main-5.png);background-position:-1159px -1704px;width:40px;height:40px}.shop_weapon_rogue_4{background-image:url(spritesmith-main-5.png);background-position:-1118px -1704px;width:40px;height:40px}.shop_weapon_rogue_5{background-image:url(spritesmith-main-5.png);background-position:-1077px -1704px;width:40px;height:40px}.shop_weapon_rogue_6{background-image:url(spritesmith-main-5.png);background-position:-1036px -1704px;width:40px;height:40px}.shop_weapon_special_0{background-image:url(spritesmith-main-5.png);background-position:-995px -1704px;width:40px;height:40px}.shop_weapon_special_1{background-image:url(spritesmith-main-5.png);background-position:-954px -1704px;width:40px;height:40px}.shop_weapon_special_2{background-image:url(spritesmith-main-5.png);background-position:-913px -1704px;width:40px;height:40px}.shop_weapon_special_3{background-image:url(spritesmith-main-5.png);background-position:-872px -1704px;width:40px;height:40px}.shop_weapon_special_critical{background-image:url(spritesmith-main-5.png);background-position:-380px -1704px;width:40px;height:40px}.shop_weapon_special_tridentOfCrashingTides{background-image:url(spritesmith-main-5.png);background-position:-339px -1704px;width:40px;height:40px}.shop_weapon_warrior_0{background-image:url(spritesmith-main-5.png);background-position:-257px -1704px;width:40px;height:40px}.shop_weapon_warrior_1{background-image:url(spritesmith-main-5.png);background-position:-216px -1704px;width:40px;height:40px}.shop_weapon_warrior_2{background-image:url(spritesmith-main-5.png);background-position:-175px -1704px;width:40px;height:40px}.shop_weapon_warrior_3{background-image:url(spritesmith-main-5.png);background-position:-134px -1704px;width:40px;height:40px}.shop_weapon_warrior_4{background-image:url(spritesmith-main-5.png);background-position:-93px -1704px;width:40px;height:40px}.shop_weapon_warrior_5{background-image:url(spritesmith-main-5.png);background-position:-52px -1704px;width:40px;height:40px}.shop_weapon_warrior_6{background-image:url(spritesmith-main-5.png);background-position:-1666px -1652px;width:40px;height:40px}.shop_weapon_wizard_0{background-image:url(spritesmith-main-5.png);background-position:-1262px -811px;width:40px;height:40px}.shop_weapon_wizard_1{background-image:url(spritesmith-main-5.png);background-position:-1221px -811px;width:40px;height:40px}.shop_weapon_wizard_2{background-image:url(spritesmith-main-5.png);background-position:-1528px -770px;width:40px;height:40px}.shop_weapon_wizard_3{background-image:url(spritesmith-main-5.png);background-position:-1528px -729px;width:40px;height:40px}.shop_weapon_wizard_4{background-image:url(spritesmith-main-5.png);background-position:-1528px -688px;width:40px;height:40px}.shop_weapon_wizard_5{background-image:url(spritesmith-main-5.png);background-position:-1525px -449px;width:40px;height:40px}.shop_weapon_wizard_6{background-image:url(spritesmith-main-5.png);background-position:-1525px -408px;width:40px;height:40px}.weapon_healer_0{background-image:url(spritesmith-main-5.png);background-position:-1302px -1469px;width:90px;height:90px}.weapon_healer_1{background-image:url(spritesmith-main-5.png);background-position:-1571px -728px;width:90px;height:90px}.weapon_healer_2{background-image:url(spritesmith-main-5.png);background-position:-1571px -819px;width:90px;height:90px}.weapon_healer_3{background-image:url(spritesmith-main-5.png);background-position:-1571px -910px;width:90px;height:90px}.weapon_healer_4{background-image:url(spritesmith-main-5.png);background-position:-1571px -1001px;width:90px;height:90px}.weapon_healer_5{background-image:url(spritesmith-main-5.png);background-position:-1571px -1092px;width:90px;height:90px}.weapon_healer_6{background-image:url(spritesmith-main-5.png);background-position:-1571px -1274px;width:90px;height:90px}.weapon_rogue_0{background-image:url(spritesmith-main-5.png);background-position:-1571px -1365px;width:90px;height:90px}.weapon_rogue_1{background-image:url(spritesmith-main-5.png);background-position:-1571px -1456px;width:90px;height:90px}.weapon_rogue_2{background-image:url(spritesmith-main-5.png);background-position:0 -1561px;width:90px;height:90px}.weapon_rogue_3{background-image:url(spritesmith-main-5.png);background-position:-119px -1469px;width:90px;height:90px}.weapon_rogue_4{background-image:url(spritesmith-main-5.png);background-position:-483px -1469px;width:90px;height:90px}.weapon_rogue_5{background-image:url(spritesmith-main-5.png);background-position:-301px -1469px;width:90px;height:90px}.weapon_rogue_6{background-image:url(spritesmith-main-5.png);background-position:-392px -1469px;width:90px;height:90px}.weapon_special_1{background-image:url(spritesmith-main-5.png);background-position:-1137px -1287px;width:102px;height:90px}.weapon_special_2{background-image:url(spritesmith-main-5.png);background-position:-574px -1469px;width:90px;height:90px}.weapon_special_3{background-image:url(spritesmith-main-5.png);background-position:-665px -1469px;width:90px;height:90px}.weapon_special_tridentOfCrashingTides{background-image:url(spritesmith-main-5.png);background-position:-756px -1469px;width:90px;height:90px}.weapon_warrior_0{background-image:url(spritesmith-main-5.png);background-position:-847px -1469px;width:90px;height:90px}.weapon_warrior_1{background-image:url(spritesmith-main-5.png);background-position:-938px -1469px;width:90px;height:90px}.weapon_warrior_2{background-image:url(spritesmith-main-5.png);background-position:-1029px -1469px;width:90px;height:90px}.weapon_warrior_3{background-image:url(spritesmith-main-5.png);background-position:-1120px -1469px;width:90px;height:90px}.weapon_warrior_4{background-image:url(spritesmith-main-5.png);background-position:-1211px -1469px;width:90px;height:90px}.weapon_warrior_5{background-image:url(spritesmith-main-5.png);background-position:-182px -1561px;width:90px;height:90px}.weapon_warrior_6{background-image:url(spritesmith-main-5.png);background-position:-1393px -1469px;width:90px;height:90px}.weapon_wizard_0{background-image:url(spritesmith-main-5.png);background-position:-1571px 0;width:90px;height:90px}.weapon_wizard_1{background-image:url(spritesmith-main-5.png);background-position:-1571px -91px;width:90px;height:90px}.weapon_wizard_2{background-image:url(spritesmith-main-5.png);background-position:-1571px -182px;width:90px;height:90px}.weapon_wizard_3{background-image:url(spritesmith-main-5.png);background-position:-1571px -273px;width:90px;height:90px}.weapon_wizard_4{background-image:url(spritesmith-main-5.png);background-position:-1571px -364px;width:90px;height:90px}.weapon_wizard_5{background-image:url(spritesmith-main-5.png);background-position:-1571px -455px;width:90px;height:90px}.weapon_wizard_6{background-image:url(spritesmith-main-5.png);background-position:-1571px -546px;width:90px;height:90px}.GrimReaper{background-image:url(spritesmith-main-5.png);background-position:-1511px -504px;width:57px;height:66px}.Pet_Currency_Gem{background-image:url(spritesmith-main-5.png);background-position:-1711px -1337px;width:45px;height:39px}.Pet_Currency_Gem1x{background-image:url(spritesmith-main-5.png);background-position:-1760px -422px;width:15px;height:13px}.Pet_Currency_Gem2x{background-image:url(spritesmith-main-5.png);background-position:-1760px -326px;width:30px;height:26px}.PixelPaw-Gold{background-image:url(spritesmith-main-5.png);background-position:-1516px -966px;width:51px;height:51px}.PixelPaw{background-image:url(spritesmith-main-5.png);background-position:-1516px -879px;width:51px;height:51px}.PixelPaw002{background-image:url(spritesmith-main-5.png);background-position:-1516px -827px;width:51px;height:51px}.avatar_floral_healer{background-image:url(spritesmith-main-5.png);background-position:-837px -1287px;width:99px;height:99px}.avatar_floral_rogue{background-image:url(spritesmith-main-5.png);background-position:-937px -1287px;width:99px;height:99px}.avatar_floral_warrior{background-image:url(spritesmith-main-5.png);background-position:-1037px -1287px;width:99px;height:99px}.avatar_floral_wizard{background-image:url(spritesmith-main-5.png);background-position:-737px -1287px;width:99px;height:99px}.empty_bottles{background-image:url(spritesmith-main-5.png);background-position:-273px -1561px;width:64px;height:54px}.inventory_present{background-image:url(spritesmith-main-5.png);background-position:-1350px -1561px;width:48px;height:51px}.inventory_present_01{background-image:url(spritesmith-main-5.png);background-position:-1301px -1561px;width:48px;height:51px}.inventory_present_02{background-image:url(spritesmith-main-5.png);background-position:-1252px -1561px;width:48px;height:51px}.inventory_present_03{background-image:url(spritesmith-main-5.png);background-position:-1203px -1561px;width:48px;height:51px}.inventory_present_04{background-image:url(spritesmith-main-5.png);background-position:-1154px -1561px;width:48px;height:51px}.inventory_present_05{background-image:url(spritesmith-main-5.png);background-position:-1105px -1561px;width:48px;height:51px}.inventory_present_06{background-image:url(spritesmith-main-5.png);background-position:-1056px -1561px;width:48px;height:51px}.inventory_present_07{background-image:url(spritesmith-main-5.png);background-position:-958px -1561px;width:48px;height:51px}.inventory_present_08{background-image:url(spritesmith-main-5.png);background-position:-909px -1561px;width:48px;height:51px}.inventory_present_09{background-image:url(spritesmith-main-5.png);background-position:-860px -1561px;width:48px;height:51px}.inventory_present_10{background-image:url(spritesmith-main-5.png);background-position:-1516px -1157px;width:48px;height:51px}.inventory_present_11{background-image:url(spritesmith-main-5.png);background-position:-1516px -1105px;width:48px;height:51px}.inventory_present_12{background-image:url(spritesmith-main-5.png);background-position:-1497px -1561px;width:48px;height:51px}.inventory_quest_scroll{background-image:url(spritesmith-main-5.png);background-position:-1448px -1561px;width:48px;height:51px}.inventory_quest_scroll_locked{background-image:url(spritesmith-main-5.png);background-position:-1399px -1561px;width:48px;height:51px}.inventory_special_fortify{background-image:url(spritesmith-main-5.png);background-position:-802px -1561px;width:57px;height:54px}.inventory_special_greeting{background-image:url(spritesmith-main-5.png);background-position:-1511px -626px;width:57px;height:54px}.inventory_special_nye{background-image:url(spritesmith-main-5.png);background-position:-744px -1561px;width:57px;height:54px}.inventory_special_opaquePotion{background-image:url(spritesmith-main-5.png);background-position:-1711px -1582px;width:40px;height:40px}.inventory_special_seafoam{background-image:url(spritesmith-main-5.png);background-position:-628px -1561px;width:57px;height:54px}.inventory_special_shinySeed{background-image:url(spritesmith-main-5.png);background-position:-570px -1561px;width:57px;height:54px}.inventory_special_snowball{background-image:url(spritesmith-main-5.png);background-position:-512px -1561px;width:57px;height:54px}.inventory_special_spookDust{background-image:url(spritesmith-main-5.png);background-position:-454px -1561px;width:57px;height:54px}.inventory_special_thankyou{background-image:url(spritesmith-main-5.png);background-position:-396px -1561px;width:57px;height:54px}.inventory_special_trinket{background-image:url(spritesmith-main-5.png);background-position:-1007px -1561px;width:48px;height:51px}.inventory_special_valentine{background-image:url(spritesmith-main-5.png);background-position:-338px -1561px;width:57px;height:54px}.knockout{background-image:url(spritesmith-main-5.png);background-position:-1100px -811px;width:120px;height:47px}.pet_key{background-image:url(spritesmith-main-5.png);background-position:-1511px -571px;width:57px;height:54px}.rebirth_orb{background-image:url(spritesmith-main-5.png);background-position:-686px -1561px;width:57px;height:54px}.seafoam_star{background-image:url(spritesmith-main-5.png);background-position:-1571px -637px;width:90px;height:90px}.shop_armoire{background-image:url(spritesmith-main-5.png);background-position:-1711px -1541px;width:40px;height:40px}.snowman{background-image:url(spritesmith-main-5.png);background-position:-91px -1561px;width:90px;height:90px}.spookman{background-image:url(spritesmith-main-5.png);background-position:-1571px -1183px;width:90px;height:90px}.zzz{background-image:url(spritesmith-main-5.png);background-position:-1711px -1500px;width:40px;height:40px}.zzz_light{background-image:url(spritesmith-main-5.png);background-position:-1711px -1418px;width:40px;height:40px}.npc_alex{background-image:url(spritesmith-main-5.png);background-position:-190px -1287px;width:162px;height:138px}.npc_bailey{background-image:url(spritesmith-main-5.png);background-position:-1484px -1469px;width:60px;height:72px}.npc_daniel{background-image:url(spritesmith-main-5.png);background-position:-516px -1287px;width:135px;height:123px}.npc_justin{background-image:url(spritesmith-main-5.png);background-position:-652px -1287px;width:84px;height:120px}.npc_justin_head{background-image:url(spritesmith-main-5.png);background-position:-1760px -123px;width:36px;height:39px}.npc_matt{background-image:url(spritesmith-main-5.png);background-position:-1320px -966px;width:195px;height:138px}.npc_timetravelers{background-image:url(spritesmith-main-5.png);background-position:-1320px -1105px;width:195px;height:138px}.npc_timetravelers_active{background-image:url(spritesmith-main-5.png);background-position:-1320px -827px;width:195px;height:138px}.npc_tyler{background-image:url(spritesmith-main-5.png);background-position:-210px -1469px;width:90px;height:90px}.seasonalshop_closed{background-image:url(spritesmith-main-5.png);background-position:-353px -1287px;width:162px;height:138px}.inventory_quest_scroll_atom1{background-image:url(spritesmith-main-5.png);background-position:-1662px -416px;width:48px;height:51px}.inventory_quest_scroll_atom1_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -468px;width:48px;height:51px}.inventory_quest_scroll_atom2{background-image:url(spritesmith-main-5.png);background-position:-1662px -520px;width:48px;height:51px}.inventory_quest_scroll_atom2_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -572px;width:48px;height:51px}.inventory_quest_scroll_atom3{background-image:url(spritesmith-main-5.png);background-position:-1662px -624px;width:48px;height:51px}.inventory_quest_scroll_atom3_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -676px;width:48px;height:51px}.inventory_quest_scroll_basilist{background-image:url(spritesmith-main-5.png);background-position:-1662px -728px;width:48px;height:51px}.inventory_quest_scroll_bunny{background-image:url(spritesmith-main-5.png);background-position:-1711px -1196px;width:48px;height:51px}.inventory_quest_scroll_cheetah{background-image:url(spritesmith-main-5.png);background-position:-1662px -832px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress1{background-image:url(spritesmith-main-5.png);background-position:-1662px -884px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress2{background-image:url(spritesmith-main-5.png);background-position:-1662px -936px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress2_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -988px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress3{background-image:url(spritesmith-main-5.png);background-position:-1662px -1040px;width:48px;height:51px}.inventory_quest_scroll_dilatoryDistress3_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -1092px;width:48px;height:51px}.inventory_quest_scroll_dilatory_derby{background-image:url(spritesmith-main-5.png);background-position:-1662px -1144px;width:48px;height:51px}.inventory_quest_scroll_egg{background-image:url(spritesmith-main-5.png);background-position:-1662px -1196px;width:48px;height:51px}.inventory_quest_scroll_evilsanta{background-image:url(spritesmith-main-5.png);background-position:-1662px -1248px;width:48px;height:51px}.inventory_quest_scroll_evilsanta2{background-image:url(spritesmith-main-5.png);background-position:-1662px -1300px;width:48px;height:51px}.inventory_quest_scroll_frog{background-image:url(spritesmith-main-5.png);background-position:-1662px -1352px;width:48px;height:51px}.inventory_quest_scroll_ghost_stag{background-image:url(spritesmith-main-5.png);background-position:-1662px -1404px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1{background-image:url(spritesmith-main-5.png);background-position:-1662px -1456px;width:48px;height:51px}.inventory_quest_scroll_goldenknight1_locked{background-image:url(spritesmith-main-5.png);background-position:-1662px -1508px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2{background-image:url(spritesmith-main-5.png);background-position:-1662px -1560px;width:48px;height:51px}.inventory_quest_scroll_goldenknight2_locked{background-image:url(spritesmith-main-5.png);background-position:0 -1652px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3{background-image:url(spritesmith-main-5.png);background-position:-49px -1652px;width:48px;height:51px}.inventory_quest_scroll_goldenknight3_locked{background-image:url(spritesmith-main-5.png);background-position:-98px -1652px;width:48px;height:51px}.inventory_quest_scroll_gryphon{background-image:url(spritesmith-main-5.png);background-position:-1516px -1018px;width:48px;height:51px}.inventory_quest_scroll_harpy{background-image:url(spritesmith-main-5.png);background-position:-196px -1652px;width:48px;height:51px}.inventory_quest_scroll_hedgehog{background-image:url(spritesmith-main-5.png);background-position:-245px -1652px;width:48px;height:51px}.inventory_quest_scroll_horse{background-image:url(spritesmith-main-5.png);background-position:-294px -1652px;width:48px;height:51px}.inventory_quest_scroll_kraken{background-image:url(spritesmith-main-5.png);background-position:-343px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone1{background-image:url(spritesmith-main-5.png);background-position:-392px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone1_locked{background-image:url(spritesmith-main-5.png);background-position:-441px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone2{background-image:url(spritesmith-main-5.png);background-position:-490px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone2_locked{background-image:url(spritesmith-main-5.png);background-position:-539px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone3{background-image:url(spritesmith-main-5.png);background-position:-588px -1652px;width:48px;height:51px}.inventory_quest_scroll_moonstone3_locked{background-image:url(spritesmith-main-5.png);background-position:-637px -1652px;width:48px;height:51px}.inventory_quest_scroll_octopus{background-image:url(spritesmith-main-5.png);background-position:-686px -1652px;width:48px;height:51px}.inventory_quest_scroll_owl{background-image:url(spritesmith-main-5.png);background-position:-735px -1652px;width:48px;height:51px}.inventory_quest_scroll_penguin{background-image:url(spritesmith-main-5.png);background-position:-784px -1652px;width:48px;height:51px}.inventory_quest_scroll_rat{background-image:url(spritesmith-main-5.png);background-position:-833px -1652px;width:48px;height:51px}.inventory_quest_scroll_rock{background-image:url(spritesmith-main-5.png);background-position:-882px -1652px;width:48px;height:51px}.inventory_quest_scroll_rooster{background-image:url(spritesmith-main-5.png);background-position:-931px -1652px;width:48px;height:51px}.inventory_quest_scroll_sheep{background-image:url(spritesmith-main-5.png);background-position:-980px -1652px;width:48px;height:51px}.inventory_quest_scroll_slime{background-image:url(spritesmith-main-5.png);background-position:-1029px -1652px;width:48px;height:51px}.inventory_quest_scroll_snake{background-image:url(spritesmith-main-5.png);background-position:-1078px -1652px;width:48px;height:51px}.inventory_quest_scroll_spider{background-image:url(spritesmith-main-5.png);background-position:-1127px -1652px;width:48px;height:51px}.inventory_quest_scroll_trex{background-image:url(spritesmith-main-5.png);background-position:-1176px -1652px;width:48px;height:51px}.inventory_quest_scroll_trex_undead{background-image:url(spritesmith-main-5.png);background-position:-1225px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice1{background-image:url(spritesmith-main-5.png);background-position:-1274px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice1_locked{background-image:url(spritesmith-main-5.png);background-position:-1323px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice2{background-image:url(spritesmith-main-5.png);background-position:-1372px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice2_locked{background-image:url(spritesmith-main-5.png);background-position:-1421px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice3{background-image:url(spritesmith-main-5.png);background-position:-1470px -1652px;width:48px;height:51px}.inventory_quest_scroll_vice3_locked{background-image:url(spritesmith-main-5.png);background-position:-1519px -1652px;width:48px;height:51px}.inventory_quest_scroll_whale{background-image:url(spritesmith-main-5.png);background-position:-1568px -1652px;width:48px;height:51px}.quest_TEMPLATE_FOR_MISSING_IMAGE{background-image:url(spritesmith-main-5.png);background-position:-1240px -1287px;width:221px;height:39px}.quest_atom1{background-image:url(spritesmith-main-5.png);background-position:-902px -1106px;width:250px;height:150px}.quest_atom2{background-image:url(spritesmith-main-5.png);background-position:-1320px -688px;width:207px;height:138px}.quest_atom3{background-image:url(spritesmith-main-5.png);background-position:0 -1106px;width:216px;height:180px}.quest_basilist{background-image:url(spritesmith-main-5.png);background-position:0 -1287px;width:189px;height:141px}.quest_bunny{background-image:url(spritesmith-main-5.png);background-position:-1100px -624px;width:210px;height:186px}.quest_cheetah{background-image:url(spritesmith-main-5.png);background-position:0 -672px;width:219px;height:219px}.quest_dilatory{background-image:url(spritesmith-main-5.png);background-position:-880px -440px;width:219px;height:219px}.quest_dilatoryDistress1{background-image:url(spritesmith-main-5.png);background-position:-1320px -1244px;width:221px;height:39px}.quest_dilatoryDistress1_blueFins{background-image:url(spritesmith-main-5.png);background-position:0 -1704px;width:51px;height:48px}.quest_dilatoryDistress1_fireCoral{background-image:url(spritesmith-main-5.png);background-position:-1711px -416px;width:48px;height:51px}.quest_dilatoryDistress2{background-image:url(spritesmith-main-5.png);background-position:-1153px -1106px;width:150px;height:150px}.quest_dilatoryDistress3{background-image:url(spritesmith-main-5.png);background-position:-220px 0;width:219px;height:219px}.quest_dilatory_derby{background-image:url(spritesmith-main-5.png);background-position:-440px -452px;width:219px;height:219px}.quest_egg{background-image:url(spritesmith-main-5.png);background-position:-1240px -1327px;width:221px;height:39px}.quest_egg_plainEgg{background-image:url(spritesmith-main-5.png);background-position:-1711px -676px;width:48px;height:51px}.quest_evilsanta{background-image:url(spritesmith-main-5.png);background-position:0 -1429px;width:118px;height:131px}.quest_evilsanta2{background-image:url(spritesmith-main-5.png);background-position:-660px -220px;width:219px;height:219px}.quest_frog{background-image:url(spritesmith-main-5.png);background-position:0 -892px;width:221px;height:213px}.quest_ghost_stag{background-image:url(spritesmith-main-5.png);background-position:-440px -232px;width:219px;height:219px}.quest_goldenknight1{background-image:url(spritesmith-main-5.png);background-position:-341px -1429px;width:221px;height:39px}.quest_goldenknight1_testimony{background-image:url(spritesmith-main-5.png);background-position:-1711px -988px;width:48px;height:51px}.quest_goldenknight2{background-image:url(spritesmith-main-5.png);background-position:-651px -1106px;width:250px;height:150px}.quest_goldenknight3{background-image:url(spritesmith-main-5.png);background-position:0 0;width:219px;height:231px}.quest_gryphon{background-image:url(spritesmith-main-5.png);background-position:-879px -892px;width:216px;height:177px}.quest_harpy{background-image:url(spritesmith-main-5.png);background-position:-220px -452px;width:219px;height:219px}.quest_hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1100px -437px;width:219px;height:186px}.quest_horse{background-image:url(spritesmith-main-5.png);background-position:-440px 0;width:219px;height:219px}.quest_kraken{background-image:url(spritesmith-main-5.png);background-position:-662px -892px;width:216px;height:177px}.quest_moonstone1{background-image:url(spritesmith-main-5.png);background-position:-119px -1429px;width:221px;height:39px}.quest_moonstone1_moonstone{background-image:url(spritesmith-main-5.png);background-position:-1760px -295px;width:30px;height:30px}.quest_moonstone2{background-image:url(spritesmith-main-5.png);background-position:0 -232px;width:219px;height:219px}.quest_moonstone3{background-image:url(spritesmith-main-5.png);background-position:-660px -452px;width:219px;height:219px}.quest_octopus{background-image:url(spritesmith-main-5.png);background-position:-222px -892px;width:222px;height:177px}.quest_owl{background-image:url(spritesmith-main-5.png);background-position:-220px -232px;width:219px;height:219px}.quest_penguin{background-image:url(spritesmith-main-5.png);background-position:-1320px -504px;width:190px;height:183px}.quest_rat{background-image:url(spritesmith-main-5.png);background-position:0 -452px;width:219px;height:219px}.quest_rock{background-image:url(spritesmith-main-5.png);background-position:-1100px -220px;width:216px;height:216px}.quest_rooster{background-image:url(spritesmith-main-5.png);background-position:-1320px -151px;width:213px;height:174px}.quest_sheep{background-image:url(spritesmith-main-5.png);background-position:-880px 0;width:219px;height:219px}.quest_slime{background-image:url(spritesmith-main-5.png);background-position:-880px -220px;width:219px;height:219px}.quest_snake{background-image:url(spritesmith-main-5.png);background-position:-445px -892px;width:216px;height:177px}.quest_spider{background-image:url(spritesmith-main-5.png);background-position:-1320px 0;width:250px;height:150px}.quest_stressbeast{background-image:url(spritesmith-main-5.png);background-position:-220px -672px;width:219px;height:219px}.quest_stressbeast_bailey{background-image:url(spritesmith-main-5.png);background-position:-440px -672px;width:219px;height:219px}.quest_stressbeast_guide{background-image:url(spritesmith-main-5.png);background-position:-660px -672px;width:219px;height:219px}.quest_stressbeast_stables{background-image:url(spritesmith-main-5.png);background-position:-880px -672px;width:219px;height:219px}.quest_trex{background-image:url(spritesmith-main-5.png);background-position:-1320px -326px;width:204px;height:177px}.quest_trex_undead{background-image:url(spritesmith-main-5.png);background-position:-217px -1106px;width:216px;height:177px}.quest_vice1{background-image:url(spritesmith-main-5.png);background-position:-434px -1106px;width:216px;height:177px}.quest_vice2{background-image:url(spritesmith-main-5.png);background-position:-1100px 0;width:219px;height:219px}.quest_vice2_lightCrystal{background-image:url(spritesmith-main-5.png);background-position:-298px -1704px;width:40px;height:40px}.quest_vice3{background-image:url(spritesmith-main-5.png);background-position:-1096px -892px;width:216px;height:177px}.quest_whale{background-image:url(spritesmith-main-5.png);background-position:-660px 0;width:219px;height:219px}.shop_copper{background-image:url(spritesmith-main-5.png);background-position:-1760px -376px;width:32px;height:22px}.shop_eyes{background-image:url(spritesmith-main-5.png);background-position:-462px -1704px;width:40px;height:40px}.shop_gold{background-image:url(spritesmith-main-5.png);background-position:-1760px -399px;width:32px;height:22px}.shop_opaquePotion{background-image:url(spritesmith-main-5.png);background-position:-544px -1704px;width:40px;height:40px}.shop_potion{background-image:url(spritesmith-main-5.png);background-position:-585px -1704px;width:40px;height:40px}.shop_reroll{background-image:url(spritesmith-main-5.png);background-position:-626px -1704px;width:40px;height:40px}.shop_seafoam{background-image:url(spritesmith-main-5.png);background-position:-1760px -262px;width:32px;height:32px}.shop_shinySeed{background-image:url(spritesmith-main-5.png);background-position:-1760px -229px;width:32px;height:32px}.shop_silver{background-image:url(spritesmith-main-5.png);background-position:-1760px -353px;width:32px;height:22px}.shop_snowball{background-image:url(spritesmith-main-5.png);background-position:-1760px -196px;width:32px;height:32px}.shop_spookDust{background-image:url(spritesmith-main-5.png);background-position:-1760px -163px;width:32px;height:32px}.Pet_Egg_BearCub{background-image:url(spritesmith-main-5.png);background-position:-1546px -1561px;width:48px;height:51px}.Pet_Egg_Bunny{background-image:url(spritesmith-main-5.png);background-position:-1595px -1561px;width:48px;height:51px}.Pet_Egg_Cactus{background-image:url(spritesmith-main-5.png);background-position:-1662px 0;width:48px;height:51px}.Pet_Egg_Cheetah{background-image:url(spritesmith-main-5.png);background-position:-1662px -52px;width:48px;height:51px}.Pet_Egg_Cuttlefish{background-image:url(spritesmith-main-5.png);background-position:-1662px -104px;width:48px;height:51px}.Pet_Egg_Deer{background-image:url(spritesmith-main-5.png);background-position:-1662px -156px;width:48px;height:51px}.Pet_Egg_Dragon{background-image:url(spritesmith-main-5.png);background-position:-1662px -208px;width:48px;height:51px}.Pet_Egg_Egg{background-image:url(spritesmith-main-5.png);background-position:-1662px -260px;width:48px;height:51px}.Pet_Egg_FlyingPig{background-image:url(spritesmith-main-5.png);background-position:-1662px -312px;width:48px;height:51px}.Pet_Egg_Fox{background-image:url(spritesmith-main-5.png);background-position:-1662px -364px;width:48px;height:51px}.Pet_Egg_Frog{background-image:url(spritesmith-main-5.png);background-position:-1662px -780px;width:48px;height:51px}.Pet_Egg_Gryphon{background-image:url(spritesmith-main-5.png);background-position:-1617px -1652px;width:48px;height:51px}.Pet_Egg_Hedgehog{background-image:url(spritesmith-main-5.png);background-position:-1711px 0;width:48px;height:51px}.Pet_Egg_Horse{background-image:url(spritesmith-main-5.png);background-position:-1711px -52px;width:48px;height:51px}.Pet_Egg_LionCub{background-image:url(spritesmith-main-5.png);background-position:-1711px -104px;width:48px;height:51px}.Pet_Egg_Octopus{background-image:url(spritesmith-main-5.png);background-position:-1711px -156px;width:48px;height:51px}.Pet_Egg_Owl{background-image:url(spritesmith-main-5.png);background-position:-1711px -208px;width:48px;height:51px}.Pet_Egg_PandaCub{background-image:url(spritesmith-main-5.png);background-position:-1711px -260px;width:48px;height:51px}.Pet_Egg_Parrot{background-image:url(spritesmith-main-5.png);background-position:-1711px -312px;width:48px;height:51px}.Pet_Egg_Penguin{background-image:url(spritesmith-main-5.png);background-position:-1711px -364px;width:48px;height:51px}.Pet_Egg_PolarBear{background-image:url(spritesmith-main-5.png);background-position:-1711px -468px;width:48px;height:51px}.Pet_Egg_Rat{background-image:url(spritesmith-main-5.png);background-position:-1711px -520px;width:48px;height:51px}.Pet_Egg_Rock{background-image:url(spritesmith-main-5.png);background-position:-1711px -572px;width:48px;height:51px}.Pet_Egg_Rooster{background-image:url(spritesmith-main-5.png);background-position:-1711px -624px;width:48px;height:51px}.Pet_Egg_Seahorse{background-image:url(spritesmith-main-5.png);background-position:-1711px -728px;width:48px;height:51px}.Pet_Egg_Sheep{background-image:url(spritesmith-main-5.png);background-position:-1711px -780px;width:48px;height:51px}.Pet_Egg_Slime{background-image:url(spritesmith-main-5.png);background-position:-1711px -832px;width:48px;height:51px}.Pet_Egg_Snake{background-image:url(spritesmith-main-5.png);background-position:-1711px -884px;width:48px;height:51px}.Pet_Egg_Spider{background-image:url(spritesmith-main-5.png);background-position:-1711px -936px;width:48px;height:51px}.Pet_Egg_TRex{background-image:url(spritesmith-main-5.png);background-position:-1711px -1040px;width:48px;height:51px}.Pet_Egg_TigerCub{background-image:url(spritesmith-main-5.png);background-position:-1711px -1092px;width:48px;height:51px}.Pet_Egg_Whale{background-image:url(spritesmith-main-5.png);background-position:-1711px -1144px;width:48px;height:51px}.Pet_Egg_Wolf{background-image:url(spritesmith-main-5.png);background-position:-147px -1652px;width:48px;height:51px}.Pet_Food_Cake_Base{background-image:url(spritesmith-main-5.png);background-position:-1711px -1248px;width:43px;height:43px}.Pet_Food_Cake_CottonCandyBlue{background-image:url(spritesmith-main-5.png);background-position:-1711px -1292px;width:42px;height:44px}.Pet_Food_Cake_CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-680px -1635px;width:43px;height:45px}.Pet_Food_Cake_Desert{background-image:url(spritesmith-main-6.png);background-position:-1484px -1378px;width:43px;height:44px}.Pet_Food_Cake_Golden{background-image:url(spritesmith-main-6.png);background-position:-1422px -1272px;width:43px;height:42px}.Pet_Food_Cake_Red{background-image:url(spritesmith-main-6.png);background-position:-1378px -1272px;width:43px;height:44px}.Pet_Food_Cake_Shade{background-image:url(spritesmith-main-6.png);background-position:-1528px -1378px;width:43px;height:44px}.Pet_Food_Cake_Skeleton{background-image:url(spritesmith-main-6.png);background-position:-637px -1635px;width:42px;height:47px}.Pet_Food_Cake_White{background-image:url(spritesmith-main-6.png);background-position:-1636px -1484px;width:44px;height:44px}.Pet_Food_Cake_Zombie{background-image:url(spritesmith-main-6.png);background-position:-1590px -1484px;width:45px;height:44px}.Pet_Food_Candy_Base{background-image:url(spritesmith-main-6.png);background-position:-294px -1635px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-588px -1635px;width:48px;height:51px}.Pet_Food_Candy_CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-539px -1635px;width:48px;height:51px}.Pet_Food_Candy_Desert{background-image:url(spritesmith-main-6.png);background-position:-490px -1635px;width:48px;height:51px}.Pet_Food_Candy_Golden{background-image:url(spritesmith-main-6.png);background-position:-441px -1635px;width:48px;height:51px}.Pet_Food_Candy_Red{background-image:url(spritesmith-main-6.png);background-position:-392px -1635px;width:48px;height:51px}.Pet_Food_Candy_Shade{background-image:url(spritesmith-main-6.png);background-position:-343px -1635px;width:48px;height:51px}.Pet_Food_Candy_Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1484px -1529px;width:48px;height:51px}.Pet_Food_Candy_White{background-image:url(spritesmith-main-6.png);background-position:-245px -1635px;width:48px;height:51px}.Pet_Food_Candy_Zombie{background-image:url(spritesmith-main-6.png);background-position:-196px -1635px;width:48px;height:51px}.Pet_Food_Chocolate{background-image:url(spritesmith-main-6.png);background-position:-147px -1635px;width:48px;height:51px}.Pet_Food_CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-98px -1635px;width:48px;height:51px}.Pet_Food_CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-49px -1635px;width:48px;height:51px}.Pet_Food_Fish{background-image:url(spritesmith-main-6.png);background-position:0 -1635px;width:48px;height:51px}.Pet_Food_Honey{background-image:url(spritesmith-main-6.png);background-position:-1631px -1581px;width:48px;height:51px}.Pet_Food_Meat{background-image:url(spritesmith-main-6.png);background-position:-1582px -1581px;width:48px;height:51px}.Pet_Food_Milk{background-image:url(spritesmith-main-6.png);background-position:-1533px -1581px;width:48px;height:51px}.Pet_Food_Potatoe{background-image:url(spritesmith-main-6.png);background-position:-1484px -1581px;width:48px;height:51px}.Pet_Food_RottenMeat{background-image:url(spritesmith-main-6.png);background-position:-1631px -1529px;width:48px;height:51px}.Pet_Food_Saddle{background-image:url(spritesmith-main-6.png);background-position:-1582px -1529px;width:48px;height:51px}.Pet_Food_Strawberry{background-image:url(spritesmith-main-6.png);background-position:-1533px -1529px;width:48px;height:51px}.Mount_Body_BearCub-Base{background-image:url(spritesmith-main-6.png);background-position:-636px 0;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-636px -106px;width:105px;height:105px}.Mount_Body_BearCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-636px -212px;width:105px;height:105px}.Mount_Body_BearCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-636px -318px;width:105px;height:105px}.Mount_Body_BearCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-636px -424px;width:105px;height:105px}.Mount_Body_BearCub-Peppermint{background-image:url(spritesmith-main-6.png);background-position:0 -575px;width:105px;height:105px}.Mount_Body_BearCub-Polar{background-image:url(spritesmith-main-6.png);background-position:-106px -575px;width:105px;height:105px}.Mount_Body_BearCub-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -575px;width:105px;height:105px}.Mount_Body_BearCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px -575px;width:105px;height:105px}.Mount_Body_BearCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-424px -575px;width:105px;height:105px}.Mount_Body_BearCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-530px -575px;width:105px;height:105px}.Mount_Body_BearCub-White{background-image:url(spritesmith-main-6.png);background-position:-636px -575px;width:105px;height:105px}.Mount_Body_BearCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-742px 0;width:105px;height:105px}.Mount_Body_Bunny-Base{background-image:url(spritesmith-main-6.png);background-position:-742px -106px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-742px -212px;width:105px;height:105px}.Mount_Body_Bunny-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-742px -318px;width:105px;height:105px}.Mount_Body_Bunny-Desert{background-image:url(spritesmith-main-6.png);background-position:-742px -424px;width:105px;height:105px}.Mount_Body_Bunny-Golden{background-image:url(spritesmith-main-6.png);background-position:-742px -530px;width:105px;height:105px}.Mount_Body_Bunny-Red{background-image:url(spritesmith-main-6.png);background-position:0 -681px;width:105px;height:105px}.Mount_Body_Bunny-Shade{background-image:url(spritesmith-main-6.png);background-position:-106px -681px;width:105px;height:105px}.Mount_Body_Bunny-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-212px -681px;width:105px;height:105px}.Mount_Body_Bunny-White{background-image:url(spritesmith-main-6.png);background-position:-318px -681px;width:105px;height:105px}.Mount_Body_Bunny-Zombie{background-image:url(spritesmith-main-6.png);background-position:-424px -681px;width:105px;height:105px}.Mount_Body_Cactus-Base{background-image:url(spritesmith-main-6.png);background-position:-530px -681px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-636px -681px;width:105px;height:105px}.Mount_Body_Cactus-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-742px -681px;width:105px;height:105px}.Mount_Body_Cactus-Desert{background-image:url(spritesmith-main-6.png);background-position:-848px 0;width:105px;height:105px}.Mount_Body_Cactus-Golden{background-image:url(spritesmith-main-6.png);background-position:-848px -106px;width:105px;height:105px}.Mount_Body_Cactus-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-848px -212px;width:105px;height:105px}.Mount_Body_Cactus-Red{background-image:url(spritesmith-main-6.png);background-position:-848px -318px;width:105px;height:105px}.Mount_Body_Cactus-Shade{background-image:url(spritesmith-main-6.png);background-position:-848px -424px;width:105px;height:105px}.Mount_Body_Cactus-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-848px -530px;width:105px;height:105px}.Mount_Body_Cactus-Spooky{background-image:url(spritesmith-main-6.png);background-position:-848px -636px;width:105px;height:105px}.Mount_Body_Cactus-White{background-image:url(spritesmith-main-6.png);background-position:0 -787px;width:105px;height:105px}.Mount_Body_Cactus-Zombie{background-image:url(spritesmith-main-6.png);background-position:-106px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Base{background-image:url(spritesmith-main-6.png);background-position:-212px -787px;width:105px;height:105px}.Mount_Body_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-318px -787px;width:105px;height:105px}.Mount_Body_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-424px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Desert{background-image:url(spritesmith-main-6.png);background-position:-530px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Golden{background-image:url(spritesmith-main-6.png);background-position:-636px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Red{background-image:url(spritesmith-main-6.png);background-position:-742px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Shade{background-image:url(spritesmith-main-6.png);background-position:-848px -787px;width:105px;height:105px}.Mount_Body_Cheetah-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-954px 0;width:105px;height:105px}.Mount_Body_Cheetah-White{background-image:url(spritesmith-main-6.png);background-position:-954px -106px;width:105px;height:105px}.Mount_Body_Cheetah-Zombie{background-image:url(spritesmith-main-6.png);background-position:-954px -212px;width:105px;height:105px}.Mount_Body_Cuttlefish-Base{background-image:url(spritesmith-main-6.png);background-position:-530px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-318px -239px;width:105px;height:114px}.Mount_Body_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-212px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Golden{background-image:url(spritesmith-main-6.png);background-position:-106px -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -124px;width:105px;height:114px}.Mount_Body_Cuttlefish-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px 0;width:105px;height:114px}.Mount_Body_Cuttlefish-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-318px -115px;width:105px;height:114px}.Mount_Body_Cuttlefish-White{background-image:url(spritesmith-main-6.png);background-position:0 -239px;width:105px;height:114px}.Mount_Body_Cuttlefish-Zombie{background-image:url(spritesmith-main-6.png);background-position:-106px -239px;width:105px;height:114px}.Mount_Body_Deer-Base{background-image:url(spritesmith-main-6.png);background-position:-530px -893px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-636px -893px;width:105px;height:105px}.Mount_Body_Deer-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-742px -893px;width:105px;height:105px}.Mount_Body_Deer-Desert{background-image:url(spritesmith-main-6.png);background-position:-848px -893px;width:105px;height:105px}.Mount_Body_Deer-Golden{background-image:url(spritesmith-main-6.png);background-position:-954px -893px;width:105px;height:105px}.Mount_Body_Deer-Red{background-image:url(spritesmith-main-6.png);background-position:-1060px 0;width:105px;height:105px}.Mount_Body_Deer-Shade{background-image:url(spritesmith-main-6.png);background-position:-1060px -106px;width:105px;height:105px}.Mount_Body_Deer-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1060px -212px;width:105px;height:105px}.Mount_Body_Deer-White{background-image:url(spritesmith-main-6.png);background-position:-1060px -318px;width:105px;height:105px}.Mount_Body_Deer-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1060px -424px;width:105px;height:105px}.Mount_Body_Dragon-Base{background-image:url(spritesmith-main-6.png);background-position:-1060px -530px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1060px -636px;width:105px;height:105px}.Mount_Body_Dragon-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1060px -742px;width:105px;height:105px}.Mount_Body_Dragon-Desert{background-image:url(spritesmith-main-6.png);background-position:-1060px -848px;width:105px;height:105px}.Mount_Body_Dragon-Golden{background-image:url(spritesmith-main-6.png);background-position:0 -999px;width:105px;height:105px}.Mount_Body_Dragon-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-106px -999px;width:105px;height:105px}.Mount_Body_Dragon-Red{background-image:url(spritesmith-main-6.png);background-position:-212px -999px;width:105px;height:105px}.Mount_Body_Dragon-Shade{background-image:url(spritesmith-main-6.png);background-position:-318px -999px;width:105px;height:105px}.Mount_Body_Dragon-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-424px -999px;width:105px;height:105px}.Mount_Body_Dragon-Spooky{background-image:url(spritesmith-main-6.png);background-position:-530px -999px;width:105px;height:105px}.Mount_Body_Dragon-White{background-image:url(spritesmith-main-6.png);background-position:-636px -999px;width:105px;height:105px}.Mount_Body_Dragon-Zombie{background-image:url(spritesmith-main-6.png);background-position:-742px -999px;width:105px;height:105px}.Mount_Body_Egg-Base{background-image:url(spritesmith-main-6.png);background-position:-848px -999px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-954px -999px;width:105px;height:105px}.Mount_Body_Egg-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1060px -999px;width:105px;height:105px}.Mount_Body_Egg-Desert{background-image:url(spritesmith-main-6.png);background-position:-1166px 0;width:105px;height:105px}.Mount_Body_Egg-Golden{background-image:url(spritesmith-main-6.png);background-position:-1166px -106px;width:105px;height:105px}.Mount_Body_Egg-Red{background-image:url(spritesmith-main-6.png);background-position:-1166px -212px;width:105px;height:105px}.Mount_Body_Egg-Shade{background-image:url(spritesmith-main-6.png);background-position:-1166px -318px;width:105px;height:105px}.Mount_Body_Egg-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1166px -424px;width:105px;height:105px}.Mount_Body_Egg-White{background-image:url(spritesmith-main-6.png);background-position:-1166px -530px;width:105px;height:105px}.Mount_Body_Egg-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1166px -636px;width:105px;height:105px}.Mount_Body_FlyingPig-Base{background-image:url(spritesmith-main-6.png);background-position:-1166px -742px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1166px -848px;width:105px;height:105px}.Mount_Body_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1166px -954px;width:105px;height:105px}.Mount_Body_FlyingPig-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Golden{background-image:url(spritesmith-main-6.png);background-position:-106px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-212px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Red{background-image:url(spritesmith-main-6.png);background-position:-318px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Shade{background-image:url(spritesmith-main-6.png);background-position:-424px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-530px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Spooky{background-image:url(spritesmith-main-6.png);background-position:-636px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-White{background-image:url(spritesmith-main-6.png);background-position:-742px -1105px;width:105px;height:105px}.Mount_Body_FlyingPig-Zombie{background-image:url(spritesmith-main-6.png);background-position:-848px -1105px;width:105px;height:105px}.Mount_Body_Fox-Base{background-image:url(spritesmith-main-6.png);background-position:-954px -1105px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1060px -1105px;width:105px;height:105px}.Mount_Body_Fox-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1166px -1105px;width:105px;height:105px}.Mount_Body_Fox-Desert{background-image:url(spritesmith-main-6.png);background-position:-1272px 0;width:105px;height:105px}.Mount_Body_Fox-Golden{background-image:url(spritesmith-main-6.png);background-position:-1272px -106px;width:105px;height:105px}.Mount_Body_Fox-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-530px -115px;width:105px;height:105px}.Mount_Body_Fox-Red{background-image:url(spritesmith-main-6.png);background-position:-1272px -318px;width:105px;height:105px}.Mount_Body_Fox-Shade{background-image:url(spritesmith-main-6.png);background-position:-1272px -424px;width:105px;height:105px}.Mount_Body_Fox-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1272px -530px;width:105px;height:105px}.Mount_Body_Fox-Spooky{background-image:url(spritesmith-main-6.png);background-position:-1272px -636px;width:105px;height:105px}.Mount_Body_Fox-White{background-image:url(spritesmith-main-6.png);background-position:-1272px -742px;width:105px;height:105px}.Mount_Body_Fox-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1272px -848px;width:105px;height:105px}.Mount_Body_Frog-Base{background-image:url(spritesmith-main-6.png);background-position:-212px -239px;width:105px;height:114px}.Mount_Body_Frog-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-106px 0;width:105px;height:114px}.Mount_Body_Frog-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-424px 0;width:105px;height:114px}.Mount_Body_Frog-Desert{background-image:url(spritesmith-main-6.png);background-position:-424px -115px;width:105px;height:114px}.Mount_Body_Frog-Golden{background-image:url(spritesmith-main-6.png);background-position:-424px -230px;width:105px;height:114px}.Mount_Body_Frog-Red{background-image:url(spritesmith-main-6.png);background-position:0 -354px;width:105px;height:114px}.Mount_Body_Frog-Shade{background-image:url(spritesmith-main-6.png);background-position:-106px -354px;width:105px;height:114px}.Mount_Body_Frog-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-212px -354px;width:105px;height:114px}.Mount_Body_Frog-White{background-image:url(spritesmith-main-6.png);background-position:-318px -354px;width:105px;height:114px}.Mount_Body_Frog-Zombie{background-image:url(spritesmith-main-6.png);background-position:-424px -354px;width:105px;height:114px}.Mount_Body_Gryphon-Base{background-image:url(spritesmith-main-6.png);background-position:-848px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-954px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1060px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-Desert{background-image:url(spritesmith-main-6.png);background-position:-1166px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-Golden{background-image:url(spritesmith-main-6.png);background-position:-1272px -1211px;width:105px;height:105px}.Mount_Body_Gryphon-Red{background-image:url(spritesmith-main-6.png);background-position:-1378px 0;width:105px;height:105px}.Mount_Body_Gryphon-RoyalPurple{background-image:url(spritesmith-main-6.png);background-position:-1378px -106px;width:105px;height:105px}.Mount_Body_Gryphon-Shade{background-image:url(spritesmith-main-6.png);background-position:-1378px -212px;width:105px;height:105px}.Mount_Body_Gryphon-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1378px -318px;width:105px;height:105px}.Mount_Body_Gryphon-White{background-image:url(spritesmith-main-6.png);background-position:-1378px -424px;width:105px;height:105px}.Mount_Body_Gryphon-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1378px -530px;width:105px;height:105px}.Mount_Body_Hedgehog-Base{background-image:url(spritesmith-main-6.png);background-position:-1378px -636px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1378px -742px;width:105px;height:105px}.Mount_Body_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1378px -848px;width:105px;height:105px}.Mount_Body_Hedgehog-Desert{background-image:url(spritesmith-main-6.png);background-position:-1378px -954px;width:105px;height:105px}.Mount_Body_Hedgehog-Golden{background-image:url(spritesmith-main-6.png);background-position:-1378px -1060px;width:105px;height:105px}.Mount_Body_Hedgehog-Red{background-image:url(spritesmith-main-6.png);background-position:-1378px -1166px;width:105px;height:105px}.Mount_Body_Hedgehog-Shade{background-image:url(spritesmith-main-6.png);background-position:0 -1317px;width:105px;height:105px}.Mount_Body_Hedgehog-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-106px -1317px;width:105px;height:105px}.Mount_Body_Hedgehog-White{background-image:url(spritesmith-main-6.png);background-position:-212px -1317px;width:105px;height:105px}.Mount_Body_Hedgehog-Zombie{background-image:url(spritesmith-main-6.png);background-position:-318px -1317px;width:105px;height:105px}.Mount_Body_Horse-Base{background-image:url(spritesmith-main-6.png);background-position:-424px -1317px;width:105px;height:105px}.Mount_Body_Horse-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-530px -1317px;width:105px;height:105px}.Mount_Body_Horse-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-636px -1317px;width:105px;height:105px}.Mount_Body_Horse-Desert{background-image:url(spritesmith-main-6.png);background-position:-742px -1317px;width:105px;height:105px}.Mount_Body_Horse-Golden{background-image:url(spritesmith-main-6.png);background-position:-848px -1317px;width:105px;height:105px}.Mount_Body_Horse-Red{background-image:url(spritesmith-main-6.png);background-position:-954px -1317px;width:105px;height:105px}.Mount_Body_Horse-Shade{background-image:url(spritesmith-main-6.png);background-position:-1060px -1317px;width:105px;height:105px}.Mount_Body_Horse-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1166px -1317px;width:105px;height:105px}.Mount_Body_Horse-White{background-image:url(spritesmith-main-6.png);background-position:-1272px -1317px;width:105px;height:105px}.Mount_Body_Horse-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1378px -1317px;width:105px;height:105px}.Mount_Body_JackOLantern-Base{background-image:url(spritesmith-main-6.png);background-position:-539px -469px;width:90px;height:105px}.Mount_Body_LionCub-Base{background-image:url(spritesmith-main-6.png);background-position:-1484px -106px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1484px -212px;width:105px;height:105px}.Mount_Body_LionCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1484px -318px;width:105px;height:105px}.Mount_Body_LionCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-1484px -424px;width:105px;height:105px}.Mount_Body_LionCub-Ethereal{background-image:url(spritesmith-main-6.png);background-position:-1484px -530px;width:105px;height:105px}.Mount_Body_LionCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-1484px -636px;width:105px;height:105px}.Mount_Body_LionCub-Peppermint{background-image:url(spritesmith-main-6.png);background-position:-1484px -742px;width:105px;height:105px}.Mount_Body_LionCub-Red{background-image:url(spritesmith-main-6.png);background-position:-1484px -848px;width:105px;height:105px}.Mount_Body_LionCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-1484px -954px;width:105px;height:105px}.Mount_Body_LionCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:0 -469px;width:111px;height:105px}.Mount_Body_LionCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-1484px -1166px;width:105px;height:105px}.Mount_Body_LionCub-White{background-image:url(spritesmith-main-6.png);background-position:-1484px -1272px;width:105px;height:105px}.Mount_Body_LionCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:0 -1423px;width:105px;height:105px}.Mount_Body_Mammoth-Base{background-image:url(spritesmith-main-6.png);background-position:0 0;width:105px;height:123px}.Mount_Body_MantisShrimp-Base{background-image:url(spritesmith-main-6.png);background-position:-112px -469px;width:108px;height:105px}.Mount_Body_Octopus-Base{background-image:url(spritesmith-main-6.png);background-position:-318px -1423px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-424px -1423px;width:105px;height:105px}.Mount_Body_Octopus-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-530px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Desert{background-image:url(spritesmith-main-6.png);background-position:-636px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Golden{background-image:url(spritesmith-main-6.png);background-position:-742px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Red{background-image:url(spritesmith-main-6.png);background-position:-848px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Shade{background-image:url(spritesmith-main-6.png);background-position:-954px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1060px -1423px;width:105px;height:105px}.Mount_Body_Octopus-White{background-image:url(spritesmith-main-6.png);background-position:-1166px -1423px;width:105px;height:105px}.Mount_Body_Octopus-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1272px -1423px;width:105px;height:105px}.Mount_Body_Orca-Base{background-image:url(spritesmith-main-6.png);background-position:-1378px -1423px;width:105px;height:105px}.Mount_Body_Owl-Base{background-image:url(spritesmith-main-6.png);background-position:-1484px -1423px;width:105px;height:105px}.Mount_Body_Owl-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1590px 0;width:105px;height:105px}.Mount_Body_Owl-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1590px -106px;width:105px;height:105px}.Mount_Body_Owl-Desert{background-image:url(spritesmith-main-6.png);background-position:-1590px -212px;width:105px;height:105px}.Mount_Body_Owl-Golden{background-image:url(spritesmith-main-6.png);background-position:-1590px -318px;width:105px;height:105px}.Mount_Body_Owl-Red{background-image:url(spritesmith-main-6.png);background-position:-1590px -424px;width:105px;height:105px}.Mount_Body_Owl-Shade{background-image:url(spritesmith-main-6.png);background-position:-1590px -530px;width:105px;height:105px}.Mount_Body_Owl-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1590px -636px;width:105px;height:105px}.Mount_Body_Owl-White{background-image:url(spritesmith-main-6.png);background-position:-1590px -742px;width:105px;height:105px}.Mount_Body_Owl-Zombie{background-image:url(spritesmith-main-6.png);background-position:-1590px -848px;width:105px;height:105px}.Mount_Body_PandaCub-Base{background-image:url(spritesmith-main-6.png);background-position:-1590px -954px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-1590px -1060px;width:105px;height:105px}.Mount_Body_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-1590px -1166px;width:105px;height:105px}.Mount_Body_PandaCub-Desert{background-image:url(spritesmith-main-6.png);background-position:-1590px -1272px;width:105px;height:105px}.Mount_Body_PandaCub-Golden{background-image:url(spritesmith-main-6.png);background-position:-1590px -1378px;width:105px;height:105px}.Mount_Body_PandaCub-Peppermint{background-image:url(spritesmith-main-6.png);background-position:0 -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Red{background-image:url(spritesmith-main-6.png);background-position:-106px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Shade{background-image:url(spritesmith-main-6.png);background-position:-212px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-318px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Spooky{background-image:url(spritesmith-main-6.png);background-position:-424px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-White{background-image:url(spritesmith-main-6.png);background-position:-530px -1529px;width:105px;height:105px}.Mount_Body_PandaCub-Zombie{background-image:url(spritesmith-main-6.png);background-position:-636px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Base{background-image:url(spritesmith-main-6.png);background-position:-742px -1529px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-848px -1529px;width:105px;height:105px}.Mount_Body_Parrot-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-954px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Desert{background-image:url(spritesmith-main-6.png);background-position:-1060px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Golden{background-image:url(spritesmith-main-6.png);background-position:-1166px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Red{background-image:url(spritesmith-main-6.png);background-position:-1272px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Shade{background-image:url(spritesmith-main-6.png);background-position:-1378px -1529px;width:105px;height:105px}.Mount_Body_Parrot-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-1484px 0;width:105px;height:105px}.Mount_Body_Parrot-White{background-image:url(spritesmith-main-6.png);background-position:-1272px -212px;width:105px;height:105px}.Mount_Body_Parrot-Zombie{background-image:url(spritesmith-main-6.png);background-position:-433px -469px;width:105px;height:105px}.Mount_Body_Penguin-Base{background-image:url(spritesmith-main-6.png);background-position:-327px -469px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-221px -469px;width:105px;height:105px}.Mount_Body_Penguin-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-530px -327px;width:105px;height:105px}.Mount_Body_Penguin-Desert{background-image:url(spritesmith-main-6.png);background-position:-530px -221px;width:105px;height:105px}.Mount_Body_Penguin-Golden{background-image:url(spritesmith-main-6.png);background-position:-212px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Red{background-image:url(spritesmith-main-6.png);background-position:-106px -1423px;width:105px;height:105px}.Mount_Body_Penguin-Shade{background-image:url(spritesmith-main-6.png);background-position:-1484px -1060px;width:105px;height:105px}.Mount_Body_Penguin-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-742px -1211px;width:105px;height:105px}.Mount_Body_Penguin-White{background-image:url(spritesmith-main-6.png);background-position:-636px -1211px;width:105px;height:105px}.Mount_Body_Penguin-Zombie{background-image:url(spritesmith-main-6.png);background-position:-530px -1211px;width:105px;height:105px}.Mount_Body_Phoenix-Base{background-image:url(spritesmith-main-6.png);background-position:-424px -1211px;width:105px;height:105px}.Mount_Body_Rat-Base{background-image:url(spritesmith-main-6.png);background-position:-318px -1211px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-212px -1211px;width:105px;height:105px}.Mount_Body_Rat-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-106px -1211px;width:105px;height:105px}.Mount_Body_Rat-Desert{background-image:url(spritesmith-main-6.png);background-position:0 -1211px;width:105px;height:105px}.Mount_Body_Rat-Golden{background-image:url(spritesmith-main-6.png);background-position:-1272px -1060px;width:105px;height:105px}.Mount_Body_Rat-Red{background-image:url(spritesmith-main-6.png);background-position:-1272px -954px;width:105px;height:105px}.Mount_Body_Rat-Shade{background-image:url(spritesmith-main-6.png);background-position:-424px -893px;width:105px;height:105px}.Mount_Body_Rat-Skeleton{background-image:url(spritesmith-main-6.png);background-position:-318px -893px;width:105px;height:105px}.Mount_Body_Rat-White{background-image:url(spritesmith-main-6.png);background-position:-212px -893px;width:105px;height:105px}.Mount_Body_Rat-Zombie{background-image:url(spritesmith-main-6.png);background-position:-106px -893px;width:105px;height:105px}.Mount_Body_Rock-Base{background-image:url(spritesmith-main-6.png);background-position:0 -893px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyBlue{background-image:url(spritesmith-main-6.png);background-position:-954px -742px;width:105px;height:105px}.Mount_Body_Rock-CottonCandyPink{background-image:url(spritesmith-main-6.png);background-position:-954px -636px;width:105px;height:105px}.Mount_Body_Rock-Desert{background-image:url(spritesmith-main-6.png);background-position:-954px -530px;width:105px;height:105px}.Mount_Body_Rock-Golden{background-image:url(spritesmith-main-6.png);background-position:-954px -424px;width:105px;height:105px}.Mount_Body_Rock-Red{background-image:url(spritesmith-main-6.png);background-position:-954px -318px;width:105px;height:105px}.Mount_Body_Rock-Shade{background-image:url(spritesmith-main-7.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Body_Rock-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-954px -1113px;width:105px;height:105px}.Mount_Body_Rock-White{background-image:url(spritesmith-main-7.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Body_Rock-Zombie{background-image:url(spritesmith-main-7.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Body_Rooster-Base{background-image:url(spritesmith-main-7.png);background-position:0 -901px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-106px -901px;width:105px;height:105px}.Mount_Body_Rooster-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-212px -901px;width:105px;height:105px}.Mount_Body_Rooster-Desert{background-image:url(spritesmith-main-7.png);background-position:-318px -901px;width:105px;height:105px}.Mount_Body_Rooster-Golden{background-image:url(spritesmith-main-7.png);background-position:-424px -901px;width:105px;height:105px}.Mount_Body_Rooster-Red{background-image:url(spritesmith-main-7.png);background-position:-530px -901px;width:105px;height:105px}.Mount_Body_Rooster-Shade{background-image:url(spritesmith-main-7.png);background-position:-636px -901px;width:105px;height:105px}.Mount_Body_Rooster-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1210px 0;width:105px;height:105px}.Mount_Body_Rooster-White{background-image:url(spritesmith-main-7.png);background-position:-1210px -106px;width:105px;height:105px}.Mount_Body_Rooster-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1210px -212px;width:105px;height:105px}.Mount_Body_Seahorse-Base{background-image:url(spritesmith-main-7.png);background-position:-1210px -318px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1210px -424px;width:105px;height:105px}.Mount_Body_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1210px -530px;width:105px;height:105px}.Mount_Body_Seahorse-Desert{background-image:url(spritesmith-main-7.png);background-position:-1210px -636px;width:105px;height:105px}.Mount_Body_Seahorse-Golden{background-image:url(spritesmith-main-7.png);background-position:-1210px -742px;width:105px;height:105px}.Mount_Body_Seahorse-Red{background-image:url(spritesmith-main-7.png);background-position:-1210px -848px;width:105px;height:105px}.Mount_Body_Seahorse-Shade{background-image:url(spritesmith-main-7.png);background-position:-1210px -954px;width:105px;height:105px}.Mount_Body_Seahorse-Skeleton{background-image:url(spritesmith-main-7.png);background-position:0 -1113px;width:105px;height:105px}.Mount_Body_Seahorse-White{background-image:url(spritesmith-main-7.png);background-position:-106px -1113px;width:105px;height:105px}.Mount_Body_Seahorse-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1422px -1166px;width:105px;height:105px}.Mount_Body_Sheep-Base{background-image:url(spritesmith-main-7.png);background-position:0 -1325px;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-106px -1325px;width:105px;height:105px}.Mount_Body_Sheep-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-212px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Desert{background-image:url(spritesmith-main-7.png);background-position:-318px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Golden{background-image:url(spritesmith-main-7.png);background-position:-424px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Red{background-image:url(spritesmith-main-7.png);background-position:-530px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Shade{background-image:url(spritesmith-main-7.png);background-position:-636px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-742px -1325px;width:105px;height:105px}.Mount_Body_Sheep-White{background-image:url(spritesmith-main-7.png);background-position:-848px -1325px;width:105px;height:105px}.Mount_Body_Sheep-Zombie{background-image:url(spritesmith-main-7.png);background-position:-954px -1537px;width:105px;height:105px}.Mount_Body_Slime-Base{background-image:url(spritesmith-main-7.png);background-position:-1060px -1537px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1166px -1537px;width:105px;height:105px}.Mount_Body_Slime-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1272px -1537px;width:105px;height:105px}.Mount_Body_Slime-Desert{background-image:url(spritesmith-main-7.png);background-position:-1378px -1537px;width:105px;height:105px}.Mount_Body_Slime-Golden{background-image:url(spritesmith-main-7.png);background-position:-1484px -1537px;width:105px;height:105px}.Mount_Body_Slime-Red{background-image:url(spritesmith-main-7.png);background-position:-1590px -1537px;width:105px;height:105px}.Mount_Body_Slime-Shade{background-image:url(spritesmith-main-7.png);background-position:-1740px 0;width:105px;height:105px}.Mount_Body_Slime-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1740px -106px;width:105px;height:105px}.Mount_Body_Slime-White{background-image:url(spritesmith-main-7.png);background-position:-1740px -212px;width:105px;height:105px}.Mount_Body_Slime-Zombie{background-image:url(spritesmith-main-7.png);background-position:-892px 0;width:105px;height:105px}.Mount_Body_Snake-Base{background-image:url(spritesmith-main-7.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Body_Snake-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Body_Snake-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Body_Snake-Desert{background-image:url(spritesmith-main-7.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Body_Snake-Golden{background-image:url(spritesmith-main-7.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Body_Snake-Red{background-image:url(spritesmith-main-7.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Body_Snake-Shade{background-image:url(spritesmith-main-7.png);background-position:0 -795px;width:105px;height:105px}.Mount_Body_Snake-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-106px -795px;width:105px;height:105px}.Mount_Body_Snake-White{background-image:url(spritesmith-main-7.png);background-position:-212px -795px;width:105px;height:105px}.Mount_Body_Snake-Zombie{background-image:url(spritesmith-main-7.png);background-position:-318px -795px;width:105px;height:105px}.Mount_Body_Spider-Base{background-image:url(spritesmith-main-7.png);background-position:-424px -795px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-530px -795px;width:105px;height:105px}.Mount_Body_Spider-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-636px -795px;width:105px;height:105px}.Mount_Body_Spider-Desert{background-image:url(spritesmith-main-7.png);background-position:-742px -795px;width:105px;height:105px}.Mount_Body_Spider-Golden{background-image:url(spritesmith-main-7.png);background-position:-848px -795px;width:105px;height:105px}.Mount_Body_Spider-Red{background-image:url(spritesmith-main-7.png);background-position:-998px 0;width:105px;height:105px}.Mount_Body_Spider-Shade{background-image:url(spritesmith-main-7.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Body_Spider-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Body_Spider-White{background-image:url(spritesmith-main-7.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Body_Spider-Zombie{background-image:url(spritesmith-main-7.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Body_TRex-Base{background-image:url(spritesmith-main-7.png);background-position:0 -544px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Body_TRex-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -136px;width:135px;height:135px}.Mount_Body_TRex-Desert{background-image:url(spritesmith-main-7.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Body_TRex-Golden{background-image:url(spritesmith-main-7.png);background-position:-272px 0;width:135px;height:135px}.Mount_Body_TRex-Red{background-image:url(spritesmith-main-7.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Body_TRex-Shade{background-image:url(spritesmith-main-7.png);background-position:0 -272px;width:135px;height:135px}.Mount_Body_TRex-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Body_TRex-White{background-image:url(spritesmith-main-7.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Body_TRex-Zombie{background-image:url(spritesmith-main-7.png);background-position:-408px 0;width:135px;height:135px}.Mount_Body_TigerCub-Base{background-image:url(spritesmith-main-7.png);background-position:-742px -901px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-848px -901px;width:105px;height:105px}.Mount_Body_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-954px -901px;width:105px;height:105px}.Mount_Body_TigerCub-Desert{background-image:url(spritesmith-main-7.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Body_TigerCub-Golden{background-image:url(spritesmith-main-7.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Body_TigerCub-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Body_TigerCub-Red{background-image:url(spritesmith-main-7.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Body_TigerCub-Shade{background-image:url(spritesmith-main-7.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Body_TigerCub-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Body_TigerCub-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Body_TigerCub-White{background-image:url(spritesmith-main-7.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Body_TigerCub-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Body_Turkey-Base{background-image:url(spritesmith-main-7.png);background-position:0 -1007px;width:105px;height:105px}.Mount_Body_Whale-Base{background-image:url(spritesmith-main-7.png);background-position:-106px -1007px;width:105px;height:105px}.Mount_Body_Whale-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-212px -1007px;width:105px;height:105px}.Mount_Body_Whale-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-318px -1007px;width:105px;height:105px}.Mount_Body_Whale-Desert{background-image:url(spritesmith-main-7.png);background-position:-424px -1007px;width:105px;height:105px}.Mount_Body_Whale-Golden{background-image:url(spritesmith-main-7.png);background-position:-530px -1007px;width:105px;height:105px}.Mount_Body_Whale-Red{background-image:url(spritesmith-main-7.png);background-position:-636px -1007px;width:105px;height:105px}.Mount_Body_Whale-Shade{background-image:url(spritesmith-main-7.png);background-position:-742px -1007px;width:105px;height:105px}.Mount_Body_Whale-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-848px -1007px;width:105px;height:105px}.Mount_Body_Whale-White{background-image:url(spritesmith-main-7.png);background-position:-954px -1007px;width:105px;height:105px}.Mount_Body_Whale-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1060px -1007px;width:105px;height:105px}.Mount_Body_Wolf-Base{background-image:url(spritesmith-main-7.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:0 0;width:135px;height:135px}.Mount_Body_Wolf-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -408px;width:135px;height:135px}.Mount_Body_Wolf-Desert{background-image:url(spritesmith-main-7.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Body_Wolf-Golden{background-image:url(spritesmith-main-7.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Body_Wolf-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Body_Wolf-Red{background-image:url(spritesmith-main-7.png);background-position:-544px 0;width:135px;height:135px}.Mount_Body_Wolf-Shade{background-image:url(spritesmith-main-7.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Body_Wolf-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Body_Wolf-Spooky{background-image:url(spritesmith-main-7.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Body_Wolf-White{background-image:url(spritesmith-main-7.png);background-position:-136px 0;width:135px;height:135px}.Mount_Body_Wolf-Zombie{background-image:url(spritesmith-main-7.png);background-position:-136px -544px;width:135px;height:135px}.Mount_Head_BearCub-Base{background-image:url(spritesmith-main-7.png);background-position:-212px -1113px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-318px -1113px;width:105px;height:105px}.Mount_Head_BearCub-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-424px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Desert{background-image:url(spritesmith-main-7.png);background-position:-530px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Golden{background-image:url(spritesmith-main-7.png);background-position:-636px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-742px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Polar{background-image:url(spritesmith-main-7.png);background-position:-848px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Red{background-image:url(spritesmith-main-7.png);background-position:-742px -680px;width:105px;height:105px}.Mount_Head_BearCub-Shade{background-image:url(spritesmith-main-7.png);background-position:-1060px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1166px -1113px;width:105px;height:105px}.Mount_Head_BearCub-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1316px 0;width:105px;height:105px}.Mount_Head_BearCub-White{background-image:url(spritesmith-main-7.png);background-position:-1316px -106px;width:105px;height:105px}.Mount_Head_BearCub-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1316px -212px;width:105px;height:105px}.Mount_Head_Bunny-Base{background-image:url(spritesmith-main-7.png);background-position:-1316px -318px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1316px -424px;width:105px;height:105px}.Mount_Head_Bunny-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1316px -530px;width:105px;height:105px}.Mount_Head_Bunny-Desert{background-image:url(spritesmith-main-7.png);background-position:-1316px -636px;width:105px;height:105px}.Mount_Head_Bunny-Golden{background-image:url(spritesmith-main-7.png);background-position:-1316px -742px;width:105px;height:105px}.Mount_Head_Bunny-Red{background-image:url(spritesmith-main-7.png);background-position:-1316px -848px;width:105px;height:105px}.Mount_Head_Bunny-Shade{background-image:url(spritesmith-main-7.png);background-position:-1316px -954px;width:105px;height:105px}.Mount_Head_Bunny-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1316px -1060px;width:105px;height:105px}.Mount_Head_Bunny-White{background-image:url(spritesmith-main-7.png);background-position:0 -1219px;width:105px;height:105px}.Mount_Head_Bunny-Zombie{background-image:url(spritesmith-main-7.png);background-position:-106px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Base{background-image:url(spritesmith-main-7.png);background-position:-212px -1219px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-318px -1219px;width:105px;height:105px}.Mount_Head_Cactus-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-424px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Desert{background-image:url(spritesmith-main-7.png);background-position:-530px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Golden{background-image:url(spritesmith-main-7.png);background-position:-636px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-742px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Red{background-image:url(spritesmith-main-7.png);background-position:-848px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Shade{background-image:url(spritesmith-main-7.png);background-position:-954px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1060px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1166px -1219px;width:105px;height:105px}.Mount_Head_Cactus-White{background-image:url(spritesmith-main-7.png);background-position:-1272px -1219px;width:105px;height:105px}.Mount_Head_Cactus-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1422px 0;width:105px;height:105px}.Mount_Head_Cheetah-Base{background-image:url(spritesmith-main-7.png);background-position:-1422px -106px;width:105px;height:105px}.Mount_Head_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1422px -212px;width:105px;height:105px}.Mount_Head_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1422px -318px;width:105px;height:105px}.Mount_Head_Cheetah-Desert{background-image:url(spritesmith-main-7.png);background-position:-1422px -424px;width:105px;height:105px}.Mount_Head_Cheetah-Golden{background-image:url(spritesmith-main-7.png);background-position:-1422px -530px;width:105px;height:105px}.Mount_Head_Cheetah-Red{background-image:url(spritesmith-main-7.png);background-position:-1422px -636px;width:105px;height:105px}.Mount_Head_Cheetah-Shade{background-image:url(spritesmith-main-7.png);background-position:-1422px -742px;width:105px;height:105px}.Mount_Head_Cheetah-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1422px -848px;width:105px;height:105px}.Mount_Head_Cheetah-White{background-image:url(spritesmith-main-7.png);background-position:-1422px -954px;width:105px;height:105px}.Mount_Head_Cheetah-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1422px -1060px;width:105px;height:105px}.Mount_Head_Cuttlefish-Base{background-image:url(spritesmith-main-7.png);background-position:-378px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-484px -544px;width:105px;height:114px}.Mount_Head_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-680px 0;width:105px;height:114px}.Mount_Head_Cuttlefish-Desert{background-image:url(spritesmith-main-7.png);background-position:-680px -115px;width:105px;height:114px}.Mount_Head_Cuttlefish-Golden{background-image:url(spritesmith-main-7.png);background-position:-680px -230px;width:105px;height:114px}.Mount_Head_Cuttlefish-Red{background-image:url(spritesmith-main-7.png);background-position:-680px -345px;width:105px;height:114px}.Mount_Head_Cuttlefish-Shade{background-image:url(spritesmith-main-7.png);background-position:-680px -460px;width:105px;height:114px}.Mount_Head_Cuttlefish-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-786px 0;width:105px;height:114px}.Mount_Head_Cuttlefish-White{background-image:url(spritesmith-main-7.png);background-position:-786px -115px;width:105px;height:114px}.Mount_Head_Cuttlefish-Zombie{background-image:url(spritesmith-main-7.png);background-position:-786px -230px;width:105px;height:114px}.Mount_Head_Deer-Base{background-image:url(spritesmith-main-7.png);background-position:-954px -1325px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1060px -1325px;width:105px;height:105px}.Mount_Head_Deer-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1166px -1325px;width:105px;height:105px}.Mount_Head_Deer-Desert{background-image:url(spritesmith-main-7.png);background-position:-1272px -1325px;width:105px;height:105px}.Mount_Head_Deer-Golden{background-image:url(spritesmith-main-7.png);background-position:-1378px -1325px;width:105px;height:105px}.Mount_Head_Deer-Red{background-image:url(spritesmith-main-7.png);background-position:-1528px 0;width:105px;height:105px}.Mount_Head_Deer-Shade{background-image:url(spritesmith-main-7.png);background-position:-1528px -106px;width:105px;height:105px}.Mount_Head_Deer-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1528px -212px;width:105px;height:105px}.Mount_Head_Deer-White{background-image:url(spritesmith-main-7.png);background-position:-1528px -318px;width:105px;height:105px}.Mount_Head_Deer-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1528px -424px;width:105px;height:105px}.Mount_Head_Dragon-Base{background-image:url(spritesmith-main-7.png);background-position:-1528px -530px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1528px -636px;width:105px;height:105px}.Mount_Head_Dragon-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1528px -742px;width:105px;height:105px}.Mount_Head_Dragon-Desert{background-image:url(spritesmith-main-7.png);background-position:-1528px -848px;width:105px;height:105px}.Mount_Head_Dragon-Golden{background-image:url(spritesmith-main-7.png);background-position:-1528px -954px;width:105px;height:105px}.Mount_Head_Dragon-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-1528px -1060px;width:105px;height:105px}.Mount_Head_Dragon-Red{background-image:url(spritesmith-main-7.png);background-position:-1528px -1166px;width:105px;height:105px}.Mount_Head_Dragon-Shade{background-image:url(spritesmith-main-7.png);background-position:-1528px -1272px;width:105px;height:105px}.Mount_Head_Dragon-Skeleton{background-image:url(spritesmith-main-7.png);background-position:0 -1431px;width:105px;height:105px}.Mount_Head_Dragon-Spooky{background-image:url(spritesmith-main-7.png);background-position:-106px -1431px;width:105px;height:105px}.Mount_Head_Dragon-White{background-image:url(spritesmith-main-7.png);background-position:-212px -1431px;width:105px;height:105px}.Mount_Head_Dragon-Zombie{background-image:url(spritesmith-main-7.png);background-position:-318px -1431px;width:105px;height:105px}.Mount_Head_Egg-Base{background-image:url(spritesmith-main-7.png);background-position:-424px -1431px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-530px -1431px;width:105px;height:105px}.Mount_Head_Egg-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-636px -1431px;width:105px;height:105px}.Mount_Head_Egg-Desert{background-image:url(spritesmith-main-7.png);background-position:-742px -1431px;width:105px;height:105px}.Mount_Head_Egg-Golden{background-image:url(spritesmith-main-7.png);background-position:-848px -1431px;width:105px;height:105px}.Mount_Head_Egg-Red{background-image:url(spritesmith-main-7.png);background-position:-954px -1431px;width:105px;height:105px}.Mount_Head_Egg-Shade{background-image:url(spritesmith-main-7.png);background-position:-1060px -1431px;width:105px;height:105px}.Mount_Head_Egg-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1166px -1431px;width:105px;height:105px}.Mount_Head_Egg-White{background-image:url(spritesmith-main-7.png);background-position:-1272px -1431px;width:105px;height:105px}.Mount_Head_Egg-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1378px -1431px;width:105px;height:105px}.Mount_Head_FlyingPig-Base{background-image:url(spritesmith-main-7.png);background-position:-1484px -1431px;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1634px 0;width:105px;height:105px}.Mount_Head_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1634px -106px;width:105px;height:105px}.Mount_Head_FlyingPig-Desert{background-image:url(spritesmith-main-7.png);background-position:-1634px -212px;width:105px;height:105px}.Mount_Head_FlyingPig-Golden{background-image:url(spritesmith-main-7.png);background-position:-1634px -318px;width:105px;height:105px}.Mount_Head_FlyingPig-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-1634px -424px;width:105px;height:105px}.Mount_Head_FlyingPig-Red{background-image:url(spritesmith-main-7.png);background-position:-1634px -530px;width:105px;height:105px}.Mount_Head_FlyingPig-Shade{background-image:url(spritesmith-main-7.png);background-position:-1634px -636px;width:105px;height:105px}.Mount_Head_FlyingPig-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-1634px -742px;width:105px;height:105px}.Mount_Head_FlyingPig-Spooky{background-image:url(spritesmith-main-7.png);background-position:-1634px -848px;width:105px;height:105px}.Mount_Head_FlyingPig-White{background-image:url(spritesmith-main-7.png);background-position:-1634px -954px;width:105px;height:105px}.Mount_Head_FlyingPig-Zombie{background-image:url(spritesmith-main-7.png);background-position:-1634px -1060px;width:105px;height:105px}.Mount_Head_Fox-Base{background-image:url(spritesmith-main-7.png);background-position:-1634px -1166px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1634px -1272px;width:105px;height:105px}.Mount_Head_Fox-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:-1634px -1378px;width:105px;height:105px}.Mount_Head_Fox-Desert{background-image:url(spritesmith-main-7.png);background-position:0 -1537px;width:105px;height:105px}.Mount_Head_Fox-Golden{background-image:url(spritesmith-main-7.png);background-position:-106px -1537px;width:105px;height:105px}.Mount_Head_Fox-Peppermint{background-image:url(spritesmith-main-7.png);background-position:-212px -1537px;width:105px;height:105px}.Mount_Head_Fox-Red{background-image:url(spritesmith-main-7.png);background-position:-318px -1537px;width:105px;height:105px}.Mount_Head_Fox-Shade{background-image:url(spritesmith-main-7.png);background-position:-424px -1537px;width:105px;height:105px}.Mount_Head_Fox-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-530px -1537px;width:105px;height:105px}.Mount_Head_Fox-Spooky{background-image:url(spritesmith-main-7.png);background-position:-636px -1537px;width:105px;height:105px}.Mount_Head_Fox-White{background-image:url(spritesmith-main-7.png);background-position:-742px -1537px;width:105px;height:105px}.Mount_Head_Fox-Zombie{background-image:url(spritesmith-main-7.png);background-position:-848px -1537px;width:105px;height:105px}.Mount_Head_Frog-Base{background-image:url(spritesmith-main-7.png);background-position:-786px -345px;width:105px;height:114px}.Mount_Head_Frog-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-786px -460px;width:105px;height:114px}.Mount_Head_Frog-CottonCandyPink{background-image:url(spritesmith-main-7.png);background-position:0 -680px;width:105px;height:114px}.Mount_Head_Frog-Desert{background-image:url(spritesmith-main-7.png);background-position:-106px -680px;width:105px;height:114px}.Mount_Head_Frog-Golden{background-image:url(spritesmith-main-7.png);background-position:-212px -680px;width:105px;height:114px}.Mount_Head_Frog-Red{background-image:url(spritesmith-main-7.png);background-position:-318px -680px;width:105px;height:114px}.Mount_Head_Frog-Shade{background-image:url(spritesmith-main-7.png);background-position:-424px -680px;width:105px;height:114px}.Mount_Head_Frog-Skeleton{background-image:url(spritesmith-main-7.png);background-position:-530px -680px;width:105px;height:114px}.Mount_Head_Frog-White{background-image:url(spritesmith-main-7.png);background-position:-636px -680px;width:105px;height:114px}.Mount_Head_Frog-Zombie{background-image:url(spritesmith-main-7.png);background-position:-272px -544px;width:105px;height:114px}.Mount_Head_Gryphon-Base{background-image:url(spritesmith-main-7.png);background-position:-1740px -318px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-7.png);background-position:-1740px -424px;width:105px;height:105px}.Mount_Head_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-680px -424px;width:105px;height:105px}.Mount_Head_Gryphon-Desert{background-image:url(spritesmith-main-8.png);background-position:-1210px -954px;width:105px;height:105px}.Mount_Head_Gryphon-Golden{background-image:url(spritesmith-main-8.png);background-position:-786px -106px;width:105px;height:105px}.Mount_Head_Gryphon-Red{background-image:url(spritesmith-main-8.png);background-position:-786px -530px;width:105px;height:105px}.Mount_Head_Gryphon-RoyalPurple{background-image:url(spritesmith-main-8.png);background-position:-786px -636px;width:105px;height:105px}.Mount_Head_Gryphon-Shade{background-image:url(spritesmith-main-8.png);background-position:-848px -1422px;width:105px;height:105px}.Mount_Head_Gryphon-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-954px -1422px;width:105px;height:105px}.Mount_Head_Gryphon-White{background-image:url(spritesmith-main-8.png);background-position:-1060px -1422px;width:105px;height:105px}.Mount_Head_Gryphon-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1166px -1422px;width:105px;height:105px}.Mount_Head_Hedgehog-Base{background-image:url(spritesmith-main-8.png);background-position:-1272px -1422px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1378px -1422px;width:105px;height:105px}.Mount_Head_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1528px 0;width:105px;height:105px}.Mount_Head_Hedgehog-Desert{background-image:url(spritesmith-main-8.png);background-position:-1528px -106px;width:105px;height:105px}.Mount_Head_Hedgehog-Golden{background-image:url(spritesmith-main-8.png);background-position:-1528px -212px;width:105px;height:105px}.Mount_Head_Hedgehog-Red{background-image:url(spritesmith-main-8.png);background-position:-1528px -318px;width:105px;height:105px}.Mount_Head_Hedgehog-Shade{background-image:url(spritesmith-main-8.png);background-position:-1378px -1528px;width:105px;height:105px}.Mount_Head_Hedgehog-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1484px -1528px;width:105px;height:105px}.Mount_Head_Hedgehog-White{background-image:url(spritesmith-main-8.png);background-position:-1634px 0;width:105px;height:105px}.Mount_Head_Hedgehog-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1634px -106px;width:105px;height:105px}.Mount_Head_Horse-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -212px;width:105px;height:105px}.Mount_Head_Horse-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1634px -318px;width:105px;height:105px}.Mount_Head_Horse-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1634px -424px;width:105px;height:105px}.Mount_Head_Horse-Desert{background-image:url(spritesmith-main-8.png);background-position:-1634px -530px;width:105px;height:105px}.Mount_Head_Horse-Golden{background-image:url(spritesmith-main-8.png);background-position:-1634px -636px;width:105px;height:105px}.Mount_Head_Horse-Red{background-image:url(spritesmith-main-8.png);background-position:-1634px -742px;width:105px;height:105px}.Mount_Head_Horse-Shade{background-image:url(spritesmith-main-8.png);background-position:-1634px -848px;width:105px;height:105px}.Mount_Head_Horse-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-680px -106px;width:105px;height:105px}.Mount_Head_Horse-White{background-image:url(spritesmith-main-8.png);background-position:-680px -212px;width:105px;height:105px}.Mount_Head_Horse-Zombie{background-image:url(spritesmith-main-8.png);background-position:-680px -318px;width:105px;height:105px}.Mount_Head_JackOLantern-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -954px;width:90px;height:105px}.Mount_Head_LionCub-Base{background-image:url(spritesmith-main-8.png);background-position:-680px -530px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:0 -680px;width:105px;height:105px}.Mount_Head_LionCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-106px -680px;width:105px;height:105px}.Mount_Head_LionCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-212px -680px;width:105px;height:105px}.Mount_Head_LionCub-Ethereal{background-image:url(spritesmith-main-8.png);background-position:-318px -680px;width:105px;height:105px}.Mount_Head_LionCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -680px;width:105px;height:105px}.Mount_Head_LionCub-Peppermint{background-image:url(spritesmith-main-8.png);background-position:-530px -680px;width:105px;height:105px}.Mount_Head_LionCub-Red{background-image:url(spritesmith-main-8.png);background-position:-636px -680px;width:105px;height:105px}.Mount_Head_LionCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-786px 0;width:105px;height:105px}.Mount_Head_LionCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-378px -544px;width:105px;height:110px}.Mount_Head_LionCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-786px -212px;width:105px;height:105px}.Mount_Head_LionCub-White{background-image:url(spritesmith-main-8.png);background-position:-786px -318px;width:105px;height:105px}.Mount_Head_LionCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-786px -424px;width:105px;height:105px}.Mount_Head_Mammoth-Base{background-image:url(spritesmith-main-8.png);background-position:-272px -544px;width:105px;height:123px}.Mount_Head_MantisShrimp-Base{background-image:url(spritesmith-main-8.png);background-position:-484px -544px;width:108px;height:105px}.Mount_Head_Octopus-Base{background-image:url(spritesmith-main-8.png);background-position:0 -786px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-106px -786px;width:105px;height:105px}.Mount_Head_Octopus-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-212px -786px;width:105px;height:105px}.Mount_Head_Octopus-Desert{background-image:url(spritesmith-main-8.png);background-position:-318px -786px;width:105px;height:105px}.Mount_Head_Octopus-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -786px;width:105px;height:105px}.Mount_Head_Octopus-Red{background-image:url(spritesmith-main-8.png);background-position:-530px -786px;width:105px;height:105px}.Mount_Head_Octopus-Shade{background-image:url(spritesmith-main-8.png);background-position:-636px -786px;width:105px;height:105px}.Mount_Head_Octopus-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-742px -786px;width:105px;height:105px}.Mount_Head_Octopus-White{background-image:url(spritesmith-main-8.png);background-position:-892px 0;width:105px;height:105px}.Mount_Head_Octopus-Zombie{background-image:url(spritesmith-main-8.png);background-position:-892px -106px;width:105px;height:105px}.Mount_Head_Orca-Base{background-image:url(spritesmith-main-8.png);background-position:-892px -212px;width:105px;height:105px}.Mount_Head_Owl-Base{background-image:url(spritesmith-main-8.png);background-position:-892px -318px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-892px -424px;width:105px;height:105px}.Mount_Head_Owl-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-892px -530px;width:105px;height:105px}.Mount_Head_Owl-Desert{background-image:url(spritesmith-main-8.png);background-position:-892px -636px;width:105px;height:105px}.Mount_Head_Owl-Golden{background-image:url(spritesmith-main-8.png);background-position:-892px -742px;width:105px;height:105px}.Mount_Head_Owl-Red{background-image:url(spritesmith-main-8.png);background-position:0 -892px;width:105px;height:105px}.Mount_Head_Owl-Shade{background-image:url(spritesmith-main-8.png);background-position:-106px -892px;width:105px;height:105px}.Mount_Head_Owl-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-212px -892px;width:105px;height:105px}.Mount_Head_Owl-White{background-image:url(spritesmith-main-8.png);background-position:-318px -892px;width:105px;height:105px}.Mount_Head_Owl-Zombie{background-image:url(spritesmith-main-8.png);background-position:-424px -892px;width:105px;height:105px}.Mount_Head_PandaCub-Base{background-image:url(spritesmith-main-8.png);background-position:-530px -892px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-636px -892px;width:105px;height:105px}.Mount_Head_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-742px -892px;width:105px;height:105px}.Mount_Head_PandaCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-848px -892px;width:105px;height:105px}.Mount_Head_PandaCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-998px 0;width:105px;height:105px}.Mount_Head_PandaCub-Peppermint{background-image:url(spritesmith-main-8.png);background-position:-998px -106px;width:105px;height:105px}.Mount_Head_PandaCub-Red{background-image:url(spritesmith-main-8.png);background-position:-998px -212px;width:105px;height:105px}.Mount_Head_PandaCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-998px -318px;width:105px;height:105px}.Mount_Head_PandaCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-998px -424px;width:105px;height:105px}.Mount_Head_PandaCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-998px -530px;width:105px;height:105px}.Mount_Head_PandaCub-White{background-image:url(spritesmith-main-8.png);background-position:-998px -636px;width:105px;height:105px}.Mount_Head_PandaCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-998px -742px;width:105px;height:105px}.Mount_Head_Parrot-Base{background-image:url(spritesmith-main-8.png);background-position:-998px -848px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:0 -998px;width:105px;height:105px}.Mount_Head_Parrot-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-106px -998px;width:105px;height:105px}.Mount_Head_Parrot-Desert{background-image:url(spritesmith-main-8.png);background-position:-212px -998px;width:105px;height:105px}.Mount_Head_Parrot-Golden{background-image:url(spritesmith-main-8.png);background-position:-318px -998px;width:105px;height:105px}.Mount_Head_Parrot-Red{background-image:url(spritesmith-main-8.png);background-position:-424px -998px;width:105px;height:105px}.Mount_Head_Parrot-Shade{background-image:url(spritesmith-main-8.png);background-position:-530px -998px;width:105px;height:105px}.Mount_Head_Parrot-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-636px -998px;width:105px;height:105px}.Mount_Head_Parrot-White{background-image:url(spritesmith-main-8.png);background-position:-742px -998px;width:105px;height:105px}.Mount_Head_Parrot-Zombie{background-image:url(spritesmith-main-8.png);background-position:-848px -998px;width:105px;height:105px}.Mount_Head_Penguin-Base{background-image:url(spritesmith-main-8.png);background-position:-954px -998px;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1104px 0;width:105px;height:105px}.Mount_Head_Penguin-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1104px -106px;width:105px;height:105px}.Mount_Head_Penguin-Desert{background-image:url(spritesmith-main-8.png);background-position:-1104px -212px;width:105px;height:105px}.Mount_Head_Penguin-Golden{background-image:url(spritesmith-main-8.png);background-position:-1104px -318px;width:105px;height:105px}.Mount_Head_Penguin-Red{background-image:url(spritesmith-main-8.png);background-position:-1104px -424px;width:105px;height:105px}.Mount_Head_Penguin-Shade{background-image:url(spritesmith-main-8.png);background-position:-1104px -530px;width:105px;height:105px}.Mount_Head_Penguin-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1104px -636px;width:105px;height:105px}.Mount_Head_Penguin-White{background-image:url(spritesmith-main-8.png);background-position:-1104px -742px;width:105px;height:105px}.Mount_Head_Penguin-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1104px -848px;width:105px;height:105px}.Mount_Head_Phoenix-Base{background-image:url(spritesmith-main-8.png);background-position:-1104px -954px;width:105px;height:105px}.Mount_Head_Rat-Base{background-image:url(spritesmith-main-8.png);background-position:0 -1104px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-106px -1104px;width:105px;height:105px}.Mount_Head_Rat-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-212px -1104px;width:105px;height:105px}.Mount_Head_Rat-Desert{background-image:url(spritesmith-main-8.png);background-position:-318px -1104px;width:105px;height:105px}.Mount_Head_Rat-Golden{background-image:url(spritesmith-main-8.png);background-position:-424px -1104px;width:105px;height:105px}.Mount_Head_Rat-Red{background-image:url(spritesmith-main-8.png);background-position:-530px -1104px;width:105px;height:105px}.Mount_Head_Rat-Shade{background-image:url(spritesmith-main-8.png);background-position:-636px -1104px;width:105px;height:105px}.Mount_Head_Rat-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-742px -1104px;width:105px;height:105px}.Mount_Head_Rat-White{background-image:url(spritesmith-main-8.png);background-position:-848px -1104px;width:105px;height:105px}.Mount_Head_Rat-Zombie{background-image:url(spritesmith-main-8.png);background-position:-954px -1104px;width:105px;height:105px}.Mount_Head_Rock-Base{background-image:url(spritesmith-main-8.png);background-position:-1060px -1104px;width:105px;height:105px}.Mount_Head_Rock-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1210px 0;width:105px;height:105px}.Mount_Head_Rock-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1210px -106px;width:105px;height:105px}.Mount_Head_Rock-Desert{background-image:url(spritesmith-main-8.png);background-position:-1210px -212px;width:105px;height:105px}.Mount_Head_Rock-Golden{background-image:url(spritesmith-main-8.png);background-position:-1210px -318px;width:105px;height:105px}.Mount_Head_Rock-Red{background-image:url(spritesmith-main-8.png);background-position:-1210px -424px;width:105px;height:105px}.Mount_Head_Rock-Shade{background-image:url(spritesmith-main-8.png);background-position:-1210px -530px;width:105px;height:105px}.Mount_Head_Rock-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1210px -636px;width:105px;height:105px}.Mount_Head_Rock-White{background-image:url(spritesmith-main-8.png);background-position:-1210px -742px;width:105px;height:105px}.Mount_Head_Rock-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1210px -848px;width:105px;height:105px}.Mount_Head_Rooster-Base{background-image:url(spritesmith-main-8.png);background-position:-680px 0;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1210px -1060px;width:105px;height:105px}.Mount_Head_Rooster-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:0 -1210px;width:105px;height:105px}.Mount_Head_Rooster-Desert{background-image:url(spritesmith-main-8.png);background-position:-106px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Golden{background-image:url(spritesmith-main-8.png);background-position:-212px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Red{background-image:url(spritesmith-main-8.png);background-position:-318px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Shade{background-image:url(spritesmith-main-8.png);background-position:-424px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-530px -1210px;width:105px;height:105px}.Mount_Head_Rooster-White{background-image:url(spritesmith-main-8.png);background-position:-636px -1210px;width:105px;height:105px}.Mount_Head_Rooster-Zombie{background-image:url(spritesmith-main-8.png);background-position:-742px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-Base{background-image:url(spritesmith-main-8.png);background-position:-848px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-954px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1060px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-Desert{background-image:url(spritesmith-main-8.png);background-position:-1166px -1210px;width:105px;height:105px}.Mount_Head_Seahorse-Golden{background-image:url(spritesmith-main-8.png);background-position:-1316px 0;width:105px;height:105px}.Mount_Head_Seahorse-Red{background-image:url(spritesmith-main-8.png);background-position:-1316px -106px;width:105px;height:105px}.Mount_Head_Seahorse-Shade{background-image:url(spritesmith-main-8.png);background-position:-1316px -212px;width:105px;height:105px}.Mount_Head_Seahorse-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1316px -318px;width:105px;height:105px}.Mount_Head_Seahorse-White{background-image:url(spritesmith-main-8.png);background-position:-1316px -424px;width:105px;height:105px}.Mount_Head_Seahorse-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1316px -530px;width:105px;height:105px}.Mount_Head_Sheep-Base{background-image:url(spritesmith-main-8.png);background-position:-1316px -636px;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1316px -742px;width:105px;height:105px}.Mount_Head_Sheep-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1316px -848px;width:105px;height:105px}.Mount_Head_Sheep-Desert{background-image:url(spritesmith-main-8.png);background-position:-1316px -954px;width:105px;height:105px}.Mount_Head_Sheep-Golden{background-image:url(spritesmith-main-8.png);background-position:-1316px -1060px;width:105px;height:105px}.Mount_Head_Sheep-Red{background-image:url(spritesmith-main-8.png);background-position:-1316px -1166px;width:105px;height:105px}.Mount_Head_Sheep-Shade{background-image:url(spritesmith-main-8.png);background-position:0 -1316px;width:105px;height:105px}.Mount_Head_Sheep-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-106px -1316px;width:105px;height:105px}.Mount_Head_Sheep-White{background-image:url(spritesmith-main-8.png);background-position:-212px -1316px;width:105px;height:105px}.Mount_Head_Sheep-Zombie{background-image:url(spritesmith-main-8.png);background-position:-318px -1316px;width:105px;height:105px}.Mount_Head_Slime-Base{background-image:url(spritesmith-main-8.png);background-position:-424px -1316px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-530px -1316px;width:105px;height:105px}.Mount_Head_Slime-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-636px -1316px;width:105px;height:105px}.Mount_Head_Slime-Desert{background-image:url(spritesmith-main-8.png);background-position:-742px -1316px;width:105px;height:105px}.Mount_Head_Slime-Golden{background-image:url(spritesmith-main-8.png);background-position:-848px -1316px;width:105px;height:105px}.Mount_Head_Slime-Red{background-image:url(spritesmith-main-8.png);background-position:-954px -1316px;width:105px;height:105px}.Mount_Head_Slime-Shade{background-image:url(spritesmith-main-8.png);background-position:-1060px -1316px;width:105px;height:105px}.Mount_Head_Slime-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1166px -1316px;width:105px;height:105px}.Mount_Head_Slime-White{background-image:url(spritesmith-main-8.png);background-position:-1272px -1316px;width:105px;height:105px}.Mount_Head_Slime-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1422px 0;width:105px;height:105px}.Mount_Head_Snake-Base{background-image:url(spritesmith-main-8.png);background-position:-1422px -106px;width:105px;height:105px}.Mount_Head_Snake-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1422px -212px;width:105px;height:105px}.Mount_Head_Snake-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1422px -318px;width:105px;height:105px}.Mount_Head_Snake-Desert{background-image:url(spritesmith-main-8.png);background-position:-1422px -424px;width:105px;height:105px}.Mount_Head_Snake-Golden{background-image:url(spritesmith-main-8.png);background-position:-1422px -530px;width:105px;height:105px}.Mount_Head_Snake-Red{background-image:url(spritesmith-main-8.png);background-position:-1422px -636px;width:105px;height:105px}.Mount_Head_Snake-Shade{background-image:url(spritesmith-main-8.png);background-position:-1422px -742px;width:105px;height:105px}.Mount_Head_Snake-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1422px -848px;width:105px;height:105px}.Mount_Head_Snake-White{background-image:url(spritesmith-main-8.png);background-position:-1422px -954px;width:105px;height:105px}.Mount_Head_Snake-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1422px -1060px;width:105px;height:105px}.Mount_Head_Spider-Base{background-image:url(spritesmith-main-8.png);background-position:-1422px -1166px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1422px -1272px;width:105px;height:105px}.Mount_Head_Spider-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:0 -1422px;width:105px;height:105px}.Mount_Head_Spider-Desert{background-image:url(spritesmith-main-8.png);background-position:-106px -1422px;width:105px;height:105px}.Mount_Head_Spider-Golden{background-image:url(spritesmith-main-8.png);background-position:-212px -1422px;width:105px;height:105px}.Mount_Head_Spider-Red{background-image:url(spritesmith-main-8.png);background-position:-318px -1422px;width:105px;height:105px}.Mount_Head_Spider-Shade{background-image:url(spritesmith-main-8.png);background-position:-424px -1422px;width:105px;height:105px}.Mount_Head_Spider-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-530px -1422px;width:105px;height:105px}.Mount_Head_Spider-White{background-image:url(spritesmith-main-8.png);background-position:-636px -1422px;width:105px;height:105px}.Mount_Head_Spider-Zombie{background-image:url(spritesmith-main-8.png);background-position:-742px -1422px;width:105px;height:105px}.Mount_Head_TRex-Base{background-image:url(spritesmith-main-8.png);background-position:-272px -136px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:0 -272px;width:135px;height:135px}.Mount_Head_TRex-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-136px -272px;width:135px;height:135px}.Mount_Head_TRex-Desert{background-image:url(spritesmith-main-8.png);background-position:-272px -272px;width:135px;height:135px}.Mount_Head_TRex-Golden{background-image:url(spritesmith-main-8.png);background-position:-408px 0;width:135px;height:135px}.Mount_Head_TRex-Red{background-image:url(spritesmith-main-8.png);background-position:-408px -136px;width:135px;height:135px}.Mount_Head_TRex-Shade{background-image:url(spritesmith-main-8.png);background-position:-408px -272px;width:135px;height:135px}.Mount_Head_TRex-Skeleton{background-image:url(spritesmith-main-8.png);background-position:0 -408px;width:135px;height:135px}.Mount_Head_TRex-White{background-image:url(spritesmith-main-8.png);background-position:0 0;width:135px;height:135px}.Mount_Head_TRex-Zombie{background-image:url(spritesmith-main-8.png);background-position:-272px -408px;width:135px;height:135px}.Mount_Head_TigerCub-Base{background-image:url(spritesmith-main-8.png);background-position:-1528px -424px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1528px -530px;width:105px;height:105px}.Mount_Head_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1528px -636px;width:105px;height:105px}.Mount_Head_TigerCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-1528px -742px;width:105px;height:105px}.Mount_Head_TigerCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-1528px -848px;width:105px;height:105px}.Mount_Head_TigerCub-Peppermint{background-image:url(spritesmith-main-8.png);background-position:-1528px -954px;width:105px;height:105px}.Mount_Head_TigerCub-Red{background-image:url(spritesmith-main-8.png);background-position:-1528px -1060px;width:105px;height:105px}.Mount_Head_TigerCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-1528px -1166px;width:105px;height:105px}.Mount_Head_TigerCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1528px -1272px;width:105px;height:105px}.Mount_Head_TigerCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-1528px -1378px;width:105px;height:105px}.Mount_Head_TigerCub-White{background-image:url(spritesmith-main-8.png);background-position:0 -1528px;width:105px;height:105px}.Mount_Head_TigerCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-106px -1528px;width:105px;height:105px}.Mount_Head_Turkey-Base{background-image:url(spritesmith-main-8.png);background-position:-212px -1528px;width:105px;height:105px}.Mount_Head_Whale-Base{background-image:url(spritesmith-main-8.png);background-position:-318px -1528px;width:105px;height:105px}.Mount_Head_Whale-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-424px -1528px;width:105px;height:105px}.Mount_Head_Whale-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-530px -1528px;width:105px;height:105px}.Mount_Head_Whale-Desert{background-image:url(spritesmith-main-8.png);background-position:-636px -1528px;width:105px;height:105px}.Mount_Head_Whale-Golden{background-image:url(spritesmith-main-8.png);background-position:-742px -1528px;width:105px;height:105px}.Mount_Head_Whale-Red{background-image:url(spritesmith-main-8.png);background-position:-848px -1528px;width:105px;height:105px}.Mount_Head_Whale-Shade{background-image:url(spritesmith-main-8.png);background-position:-954px -1528px;width:105px;height:105px}.Mount_Head_Whale-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-1060px -1528px;width:105px;height:105px}.Mount_Head_Whale-White{background-image:url(spritesmith-main-8.png);background-position:-1166px -1528px;width:105px;height:105px}.Mount_Head_Whale-Zombie{background-image:url(spritesmith-main-8.png);background-position:-1272px -1528px;width:105px;height:105px}.Mount_Head_Wolf-Base{background-image:url(spritesmith-main-8.png);background-position:-408px -408px;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-544px 0;width:135px;height:135px}.Mount_Head_Wolf-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-544px -136px;width:135px;height:135px}.Mount_Head_Wolf-Desert{background-image:url(spritesmith-main-8.png);background-position:-544px -272px;width:135px;height:135px}.Mount_Head_Wolf-Golden{background-image:url(spritesmith-main-8.png);background-position:-544px -408px;width:135px;height:135px}.Mount_Head_Wolf-Peppermint{background-image:url(spritesmith-main-8.png);background-position:0 -544px;width:135px;height:135px}.Mount_Head_Wolf-Red{background-image:url(spritesmith-main-8.png);background-position:-136px -544px;width:135px;height:135px}.Mount_Head_Wolf-Shade{background-image:url(spritesmith-main-8.png);background-position:-272px 0;width:135px;height:135px}.Mount_Head_Wolf-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-136px -136px;width:135px;height:135px}.Mount_Head_Wolf-Spooky{background-image:url(spritesmith-main-8.png);background-position:0 -136px;width:135px;height:135px}.Mount_Head_Wolf-White{background-image:url(spritesmith-main-8.png);background-position:-136px 0;width:135px;height:135px}.Mount_Head_Wolf-Zombie{background-image:url(spritesmith-main-8.png);background-position:-136px -408px;width:135px;height:135px}.Mount_Icon_BearCub-Base{background-image:url(spritesmith-main-8.png);background-position:0 -1634px;width:81px;height:99px}.Mount_Icon_BearCub-CottonCandyBlue{background-image:url(spritesmith-main-8.png);background-position:-1634px -1160px;width:81px;height:99px}.Mount_Icon_BearCub-CottonCandyPink{background-image:url(spritesmith-main-8.png);background-position:-1634px -1260px;width:81px;height:99px}.Mount_Icon_BearCub-Desert{background-image:url(spritesmith-main-8.png);background-position:-1634px -1360px;width:81px;height:99px}.Mount_Icon_BearCub-Golden{background-image:url(spritesmith-main-8.png);background-position:-1634px -1460px;width:81px;height:99px}.Mount_Icon_BearCub-Peppermint{background-image:url(spritesmith-main-8.png);background-position:-593px -544px;width:81px;height:99px}.Mount_Icon_BearCub-Polar{background-image:url(spritesmith-main-8.png);background-position:-574px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Red{background-image:url(spritesmith-main-8.png);background-position:-82px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Shade{background-image:url(spritesmith-main-8.png);background-position:-164px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Skeleton{background-image:url(spritesmith-main-8.png);background-position:-246px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Spooky{background-image:url(spritesmith-main-8.png);background-position:-328px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-White{background-image:url(spritesmith-main-8.png);background-position:-410px -1634px;width:81px;height:99px}.Mount_Icon_BearCub-Zombie{background-image:url(spritesmith-main-8.png);background-position:-492px -1634px;width:81px;height:99px}.Mount_Icon_Bunny-Base{background-image:url(spritesmith-main-8.png);background-position:-1634px -1060px;width:81px;height:99px}.Mount_Icon_Bunny-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-328px -845px;width:81px;height:99px}.Mount_Icon_Bunny-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1244px -100px;width:81px;height:99px}.Mount_Icon_Bunny-Desert{background-image:url(spritesmith-main-9.png);background-position:-410px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Golden{background-image:url(spritesmith-main-9.png);background-position:-492px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Red{background-image:url(spritesmith-main-9.png);background-position:-574px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Shade{background-image:url(spritesmith-main-9.png);background-position:-656px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-738px -845px;width:81px;height:99px}.Mount_Icon_Bunny-White{background-image:url(spritesmith-main-9.png);background-position:-820px -845px;width:81px;height:99px}.Mount_Icon_Bunny-Zombie{background-image:url(spritesmith-main-9.png);background-position:-902px -845px;width:81px;height:99px}.Mount_Icon_Cactus-Base{background-image:url(spritesmith-main-9.png);background-position:-998px 0;width:81px;height:99px}.Mount_Icon_Cactus-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-998px -100px;width:81px;height:99px}.Mount_Icon_Cactus-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-82px -1045px;width:81px;height:99px}.Mount_Icon_Cactus-Desert{background-image:url(spritesmith-main-9.png);background-position:-492px -1245px;width:81px;height:99px}.Mount_Icon_Cactus-Golden{background-image:url(spritesmith-main-9.png);background-position:-424px -100px;width:81px;height:99px}.Mount_Icon_Cactus-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-424px -200px;width:81px;height:99px}.Mount_Icon_Cactus-Red{background-image:url(spritesmith-main-9.png);background-position:0 -345px;width:81px;height:99px}.Mount_Icon_Cactus-Shade{background-image:url(spritesmith-main-9.png);background-position:-82px -345px;width:81px;height:99px}.Mount_Icon_Cactus-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-164px -345px;width:81px;height:99px}.Mount_Icon_Cactus-Spooky{background-image:url(spritesmith-main-9.png);background-position:-246px -345px;width:81px;height:99px}.Mount_Icon_Cactus-White{background-image:url(spritesmith-main-9.png);background-position:-328px -345px;width:81px;height:99px}.Mount_Icon_Cactus-Zombie{background-image:url(spritesmith-main-9.png);background-position:-410px -345px;width:81px;height:99px}.Mount_Icon_Cheetah-Base{background-image:url(spritesmith-main-9.png);background-position:-506px 0;width:81px;height:99px}.Mount_Icon_Cheetah-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-506px -100px;width:81px;height:99px}.Mount_Icon_Cheetah-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-506px -200px;width:81px;height:99px}.Mount_Icon_Cheetah-Desert{background-image:url(spritesmith-main-9.png);background-position:-506px -300px;width:81px;height:99px}.Mount_Icon_Cheetah-Golden{background-image:url(spritesmith-main-9.png);background-position:0 -445px;width:81px;height:99px}.Mount_Icon_Cheetah-Red{background-image:url(spritesmith-main-9.png);background-position:-82px -445px;width:81px;height:99px}.Mount_Icon_Cheetah-Shade{background-image:url(spritesmith-main-9.png);background-position:-164px -445px;width:81px;height:99px}.Mount_Icon_Cheetah-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-246px -445px;width:81px;height:99px}.Mount_Icon_Cheetah-White{background-image:url(spritesmith-main-9.png);background-position:-328px -445px;width:81px;height:99px}.Mount_Icon_Cheetah-Zombie{background-image:url(spritesmith-main-9.png);background-position:-410px -445px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Base{background-image:url(spritesmith-main-9.png);background-position:-492px -445px;width:81px;height:99px}.Mount_Icon_Cuttlefish-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-588px 0;width:81px;height:99px}.Mount_Icon_Cuttlefish-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-588px -100px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Desert{background-image:url(spritesmith-main-9.png);background-position:-588px -200px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Golden{background-image:url(spritesmith-main-9.png);background-position:-588px -300px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Red{background-image:url(spritesmith-main-9.png);background-position:-588px -400px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Shade{background-image:url(spritesmith-main-9.png);background-position:0 -545px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-82px -545px;width:81px;height:99px}.Mount_Icon_Cuttlefish-White{background-image:url(spritesmith-main-9.png);background-position:-164px -545px;width:81px;height:99px}.Mount_Icon_Cuttlefish-Zombie{background-image:url(spritesmith-main-9.png);background-position:-246px -545px;width:81px;height:99px}.Mount_Icon_Deer-Base{background-image:url(spritesmith-main-9.png);background-position:-328px -545px;width:81px;height:99px}.Mount_Icon_Deer-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-410px -545px;width:81px;height:99px}.Mount_Icon_Deer-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-492px -545px;width:81px;height:99px}.Mount_Icon_Deer-Desert{background-image:url(spritesmith-main-9.png);background-position:-574px -545px;width:81px;height:99px}.Mount_Icon_Deer-Golden{background-image:url(spritesmith-main-9.png);background-position:-670px 0;width:81px;height:99px}.Mount_Icon_Deer-Red{background-image:url(spritesmith-main-9.png);background-position:-670px -100px;width:81px;height:99px}.Mount_Icon_Deer-Shade{background-image:url(spritesmith-main-9.png);background-position:-670px -200px;width:81px;height:99px}.Mount_Icon_Deer-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-670px -300px;width:81px;height:99px}.Mount_Icon_Deer-White{background-image:url(spritesmith-main-9.png);background-position:-670px -400px;width:81px;height:99px}.Mount_Icon_Deer-Zombie{background-image:url(spritesmith-main-9.png);background-position:-670px -500px;width:81px;height:99px}.Mount_Icon_Dragon-Base{background-image:url(spritesmith-main-9.png);background-position:0 -645px;width:81px;height:99px}.Mount_Icon_Dragon-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-82px -645px;width:81px;height:99px}.Mount_Icon_Dragon-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-164px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Desert{background-image:url(spritesmith-main-9.png);background-position:-246px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Golden{background-image:url(spritesmith-main-9.png);background-position:-328px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-410px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Red{background-image:url(spritesmith-main-9.png);background-position:-492px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Shade{background-image:url(spritesmith-main-9.png);background-position:-574px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-656px -645px;width:81px;height:99px}.Mount_Icon_Dragon-Spooky{background-image:url(spritesmith-main-9.png);background-position:-752px 0;width:81px;height:99px}.Mount_Icon_Dragon-White{background-image:url(spritesmith-main-9.png);background-position:-752px -100px;width:81px;height:99px}.Mount_Icon_Dragon-Zombie{background-image:url(spritesmith-main-9.png);background-position:-752px -200px;width:81px;height:99px}.Mount_Icon_Egg-Base{background-image:url(spritesmith-main-9.png);background-position:-752px -300px;width:81px;height:99px}.Mount_Icon_Egg-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-752px -400px;width:81px;height:99px}.Mount_Icon_Egg-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-752px -500px;width:81px;height:99px}.Mount_Icon_Egg-Desert{background-image:url(spritesmith-main-9.png);background-position:-752px -600px;width:81px;height:99px}.Mount_Icon_Egg-Golden{background-image:url(spritesmith-main-9.png);background-position:-834px 0;width:81px;height:99px}.Mount_Icon_Egg-Red{background-image:url(spritesmith-main-9.png);background-position:-834px -100px;width:81px;height:99px}.Mount_Icon_Egg-Shade{background-image:url(spritesmith-main-9.png);background-position:-834px -200px;width:81px;height:99px}.Mount_Icon_Egg-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-834px -300px;width:81px;height:99px}.Mount_Icon_Egg-White{background-image:url(spritesmith-main-9.png);background-position:-834px -400px;width:81px;height:99px}.Mount_Icon_Egg-Zombie{background-image:url(spritesmith-main-9.png);background-position:-834px -500px;width:81px;height:99px}.Mount_Icon_FlyingPig-Base{background-image:url(spritesmith-main-9.png);background-position:-834px -600px;width:81px;height:99px}.Mount_Icon_FlyingPig-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:0 -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-82px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Desert{background-image:url(spritesmith-main-9.png);background-position:-164px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Golden{background-image:url(spritesmith-main-9.png);background-position:-246px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-328px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Red{background-image:url(spritesmith-main-9.png);background-position:-410px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Shade{background-image:url(spritesmith-main-9.png);background-position:-492px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-574px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Spooky{background-image:url(spritesmith-main-9.png);background-position:-656px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-White{background-image:url(spritesmith-main-9.png);background-position:-738px -745px;width:81px;height:99px}.Mount_Icon_FlyingPig-Zombie{background-image:url(spritesmith-main-9.png);background-position:-820px -745px;width:81px;height:99px}.Mount_Icon_Fox-Base{background-image:url(spritesmith-main-9.png);background-position:-916px 0;width:81px;height:99px}.Mount_Icon_Fox-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-916px -100px;width:81px;height:99px}.Mount_Icon_Fox-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-916px -200px;width:81px;height:99px}.Mount_Icon_Fox-Desert{background-image:url(spritesmith-main-9.png);background-position:-916px -300px;width:81px;height:99px}.Mount_Icon_Fox-Golden{background-image:url(spritesmith-main-9.png);background-position:-916px -400px;width:81px;height:99px}.Mount_Icon_Fox-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-916px -500px;width:81px;height:99px}.Mount_Icon_Fox-Red{background-image:url(spritesmith-main-9.png);background-position:-916px -600px;width:81px;height:99px}.Mount_Icon_Fox-Shade{background-image:url(spritesmith-main-9.png);background-position:-916px -700px;width:81px;height:99px}.Mount_Icon_Fox-Skeleton{background-image:url(spritesmith-main-9.png);background-position:0 -845px;width:81px;height:99px}.Mount_Icon_Fox-Spooky{background-image:url(spritesmith-main-9.png);background-position:-82px -845px;width:81px;height:99px}.Mount_Icon_Fox-White{background-image:url(spritesmith-main-9.png);background-position:-164px -845px;width:81px;height:99px}.Mount_Icon_Fox-Zombie{background-image:url(spritesmith-main-9.png);background-position:-246px -845px;width:81px;height:99px}.Mount_Icon_Frog-Base{background-image:url(spritesmith-main-9.png);background-position:-212px -115px;width:105px;height:114px}.Mount_Icon_Frog-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-106px 0;width:105px;height:114px}.Mount_Icon_Frog-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-212px 0;width:105px;height:114px}.Mount_Icon_Frog-Desert{background-image:url(spritesmith-main-9.png);background-position:0 -115px;width:105px;height:114px}.Mount_Icon_Frog-Golden{background-image:url(spritesmith-main-9.png);background-position:-106px -115px;width:105px;height:114px}.Mount_Icon_Frog-Red{background-image:url(spritesmith-main-9.png);background-position:0 0;width:105px;height:114px}.Mount_Icon_Frog-Shade{background-image:url(spritesmith-main-9.png);background-position:-318px 0;width:105px;height:114px}.Mount_Icon_Frog-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-318px -115px;width:105px;height:114px}.Mount_Icon_Frog-White{background-image:url(spritesmith-main-9.png);background-position:0 -230px;width:105px;height:114px}.Mount_Icon_Frog-Zombie{background-image:url(spritesmith-main-9.png);background-position:-106px -230px;width:105px;height:114px}.Mount_Icon_Gryphon-Base{background-image:url(spritesmith-main-9.png);background-position:-998px -200px;width:81px;height:99px}.Mount_Icon_Gryphon-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-998px -300px;width:81px;height:99px}.Mount_Icon_Gryphon-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-998px -400px;width:81px;height:99px}.Mount_Icon_Gryphon-Desert{background-image:url(spritesmith-main-9.png);background-position:-998px -500px;width:81px;height:99px}.Mount_Icon_Gryphon-Golden{background-image:url(spritesmith-main-9.png);background-position:-998px -600px;width:81px;height:99px}.Mount_Icon_Gryphon-Red{background-image:url(spritesmith-main-9.png);background-position:-998px -700px;width:81px;height:99px}.Mount_Icon_Gryphon-RoyalPurple{background-image:url(spritesmith-main-9.png);background-position:-998px -800px;width:81px;height:99px}.Mount_Icon_Gryphon-Shade{background-image:url(spritesmith-main-9.png);background-position:0 -945px;width:81px;height:99px}.Mount_Icon_Gryphon-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-82px -945px;width:81px;height:99px}.Mount_Icon_Gryphon-White{background-image:url(spritesmith-main-9.png);background-position:-164px -945px;width:81px;height:99px}.Mount_Icon_Gryphon-Zombie{background-image:url(spritesmith-main-9.png);background-position:-246px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Base{background-image:url(spritesmith-main-9.png);background-position:-328px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-410px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-492px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Desert{background-image:url(spritesmith-main-9.png);background-position:-574px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Golden{background-image:url(spritesmith-main-9.png);background-position:-656px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Red{background-image:url(spritesmith-main-9.png);background-position:-738px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Shade{background-image:url(spritesmith-main-9.png);background-position:-820px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-902px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-White{background-image:url(spritesmith-main-9.png);background-position:-984px -945px;width:81px;height:99px}.Mount_Icon_Hedgehog-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1080px 0;width:81px;height:99px}.Mount_Icon_Horse-Base{background-image:url(spritesmith-main-9.png);background-position:-1080px -100px;width:81px;height:99px}.Mount_Icon_Horse-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1080px -200px;width:81px;height:99px}.Mount_Icon_Horse-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1080px -300px;width:81px;height:99px}.Mount_Icon_Horse-Desert{background-image:url(spritesmith-main-9.png);background-position:-1080px -400px;width:81px;height:99px}.Mount_Icon_Horse-Golden{background-image:url(spritesmith-main-9.png);background-position:-1080px -500px;width:81px;height:99px}.Mount_Icon_Horse-Red{background-image:url(spritesmith-main-9.png);background-position:-1080px -600px;width:81px;height:99px}.Mount_Icon_Horse-Shade{background-image:url(spritesmith-main-9.png);background-position:-1080px -700px;width:81px;height:99px}.Mount_Icon_Horse-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1080px -800px;width:81px;height:99px}.Mount_Icon_Horse-White{background-image:url(spritesmith-main-9.png);background-position:-1080px -900px;width:81px;height:99px}.Mount_Icon_Horse-Zombie{background-image:url(spritesmith-main-9.png);background-position:0 -1045px;width:81px;height:99px}.Mount_Icon_JackOLantern-Base{background-image:url(spritesmith-main-9.png);background-position:-318px -230px;width:90px;height:105px}.Mount_Icon_LionCub-Base{background-image:url(spritesmith-main-9.png);background-position:-164px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-246px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-328px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-410px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Ethereal{background-image:url(spritesmith-main-9.png);background-position:-492px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-574px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-656px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Red{background-image:url(spritesmith-main-9.png);background-position:-738px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-820px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-902px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-984px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-White{background-image:url(spritesmith-main-9.png);background-position:-1066px -1045px;width:81px;height:99px}.Mount_Icon_LionCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1162px 0;width:81px;height:99px}.Mount_Icon_Mammoth-Base{background-image:url(spritesmith-main-9.png);background-position:-1162px -100px;width:81px;height:99px}.Mount_Icon_MantisShrimp-Base{background-image:url(spritesmith-main-9.png);background-position:-1162px -200px;width:81px;height:99px}.Mount_Icon_Octopus-Base{background-image:url(spritesmith-main-9.png);background-position:-1162px -300px;width:81px;height:99px}.Mount_Icon_Octopus-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1162px -400px;width:81px;height:99px}.Mount_Icon_Octopus-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1162px -500px;width:81px;height:99px}.Mount_Icon_Octopus-Desert{background-image:url(spritesmith-main-9.png);background-position:-1162px -600px;width:81px;height:99px}.Mount_Icon_Octopus-Golden{background-image:url(spritesmith-main-9.png);background-position:-1162px -700px;width:81px;height:99px}.Mount_Icon_Octopus-Red{background-image:url(spritesmith-main-9.png);background-position:-1162px -800px;width:81px;height:99px}.Mount_Icon_Octopus-Shade{background-image:url(spritesmith-main-9.png);background-position:-1162px -900px;width:81px;height:99px}.Mount_Icon_Octopus-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1162px -1000px;width:81px;height:99px}.Mount_Icon_Octopus-White{background-image:url(spritesmith-main-9.png);background-position:-1244px 0;width:81px;height:99px}.Mount_Icon_Octopus-Zombie{background-image:url(spritesmith-main-9.png);background-position:-424px 0;width:81px;height:99px}.Mount_Icon_Orca-Base{background-image:url(spritesmith-main-9.png);background-position:-1244px -200px;width:81px;height:99px}.Mount_Icon_Owl-Base{background-image:url(spritesmith-main-9.png);background-position:-1244px -300px;width:81px;height:99px}.Mount_Icon_Owl-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1244px -400px;width:81px;height:99px}.Mount_Icon_Owl-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1244px -500px;width:81px;height:99px}.Mount_Icon_Owl-Desert{background-image:url(spritesmith-main-9.png);background-position:-1244px -600px;width:81px;height:99px}.Mount_Icon_Owl-Golden{background-image:url(spritesmith-main-9.png);background-position:-1244px -700px;width:81px;height:99px}.Mount_Icon_Owl-Red{background-image:url(spritesmith-main-9.png);background-position:-1244px -800px;width:81px;height:99px}.Mount_Icon_Owl-Shade{background-image:url(spritesmith-main-9.png);background-position:-1244px -900px;width:81px;height:99px}.Mount_Icon_Owl-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1244px -1000px;width:81px;height:99px}.Mount_Icon_Owl-White{background-image:url(spritesmith-main-9.png);background-position:0 -1145px;width:81px;height:99px}.Mount_Icon_Owl-Zombie{background-image:url(spritesmith-main-9.png);background-position:-82px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Base{background-image:url(spritesmith-main-9.png);background-position:-164px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-246px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-328px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-410px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-492px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-574px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Red{background-image:url(spritesmith-main-9.png);background-position:-656px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-738px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-820px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-902px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-White{background-image:url(spritesmith-main-9.png);background-position:-984px -1145px;width:81px;height:99px}.Mount_Icon_PandaCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1066px -1145px;width:81px;height:99px}.Mount_Icon_Parrot-Base{background-image:url(spritesmith-main-9.png);background-position:-1148px -1145px;width:81px;height:99px}.Mount_Icon_Parrot-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1230px -1145px;width:81px;height:99px}.Mount_Icon_Parrot-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1326px 0;width:81px;height:99px}.Mount_Icon_Parrot-Desert{background-image:url(spritesmith-main-9.png);background-position:-1326px -100px;width:81px;height:99px}.Mount_Icon_Parrot-Golden{background-image:url(spritesmith-main-9.png);background-position:-1326px -200px;width:81px;height:99px}.Mount_Icon_Parrot-Red{background-image:url(spritesmith-main-9.png);background-position:-1326px -300px;width:81px;height:99px}.Mount_Icon_Parrot-Shade{background-image:url(spritesmith-main-9.png);background-position:-1326px -400px;width:81px;height:99px}.Mount_Icon_Parrot-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1326px -500px;width:81px;height:99px}.Mount_Icon_Parrot-White{background-image:url(spritesmith-main-9.png);background-position:-1326px -600px;width:81px;height:99px}.Mount_Icon_Parrot-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1326px -700px;width:81px;height:99px}.Mount_Icon_Penguin-Base{background-image:url(spritesmith-main-9.png);background-position:-1326px -800px;width:81px;height:99px}.Mount_Icon_Penguin-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1326px -900px;width:81px;height:99px}.Mount_Icon_Penguin-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1326px -1000px;width:81px;height:99px}.Mount_Icon_Penguin-Desert{background-image:url(spritesmith-main-9.png);background-position:-1326px -1100px;width:81px;height:99px}.Mount_Icon_Penguin-Golden{background-image:url(spritesmith-main-9.png);background-position:0 -1245px;width:81px;height:99px}.Mount_Icon_Penguin-Red{background-image:url(spritesmith-main-9.png);background-position:-82px -1245px;width:81px;height:99px}.Mount_Icon_Penguin-Shade{background-image:url(spritesmith-main-9.png);background-position:-164px -1245px;width:81px;height:99px}.Mount_Icon_Penguin-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-246px -1245px;width:81px;height:99px}.Mount_Icon_Penguin-White{background-image:url(spritesmith-main-9.png);background-position:-328px -1245px;width:81px;height:99px}.Mount_Icon_Penguin-Zombie{background-image:url(spritesmith-main-9.png);background-position:-410px -1245px;width:81px;height:99px}.Mount_Icon_Phoenix-Base{background-image:url(spritesmith-main-9.png);background-position:-212px -230px;width:105px;height:105px}.Mount_Icon_Rat-Base{background-image:url(spritesmith-main-9.png);background-position:-574px -1245px;width:81px;height:99px}.Mount_Icon_Rat-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-656px -1245px;width:81px;height:99px}.Mount_Icon_Rat-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-738px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Desert{background-image:url(spritesmith-main-9.png);background-position:-820px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Golden{background-image:url(spritesmith-main-9.png);background-position:-902px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Red{background-image:url(spritesmith-main-9.png);background-position:-984px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Shade{background-image:url(spritesmith-main-9.png);background-position:-1066px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1148px -1245px;width:81px;height:99px}.Mount_Icon_Rat-White{background-image:url(spritesmith-main-9.png);background-position:-1230px -1245px;width:81px;height:99px}.Mount_Icon_Rat-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1312px -1245px;width:81px;height:99px}.Mount_Icon_Rock-Base{background-image:url(spritesmith-main-9.png);background-position:-1408px 0;width:81px;height:99px}.Mount_Icon_Rock-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1408px -100px;width:81px;height:99px}.Mount_Icon_Rock-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1408px -200px;width:81px;height:99px}.Mount_Icon_Rock-Desert{background-image:url(spritesmith-main-9.png);background-position:-1408px -300px;width:81px;height:99px}.Mount_Icon_Rock-Golden{background-image:url(spritesmith-main-9.png);background-position:-1408px -400px;width:81px;height:99px}.Mount_Icon_Rock-Red{background-image:url(spritesmith-main-9.png);background-position:-1408px -500px;width:81px;height:99px}.Mount_Icon_Rock-Shade{background-image:url(spritesmith-main-9.png);background-position:-1408px -600px;width:81px;height:99px}.Mount_Icon_Rock-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1408px -700px;width:81px;height:99px}.Mount_Icon_Rock-White{background-image:url(spritesmith-main-9.png);background-position:-1408px -800px;width:81px;height:99px}.Mount_Icon_Rock-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1408px -900px;width:81px;height:99px}.Mount_Icon_Rooster-Base{background-image:url(spritesmith-main-9.png);background-position:-1408px -1000px;width:81px;height:99px}.Mount_Icon_Rooster-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1408px -1100px;width:81px;height:99px}.Mount_Icon_Rooster-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1408px -1200px;width:81px;height:99px}.Mount_Icon_Rooster-Desert{background-image:url(spritesmith-main-9.png);background-position:0 -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Golden{background-image:url(spritesmith-main-9.png);background-position:-82px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Red{background-image:url(spritesmith-main-9.png);background-position:-164px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Shade{background-image:url(spritesmith-main-9.png);background-position:-246px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-328px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-White{background-image:url(spritesmith-main-9.png);background-position:-410px -1345px;width:81px;height:99px}.Mount_Icon_Rooster-Zombie{background-image:url(spritesmith-main-9.png);background-position:-492px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Base{background-image:url(spritesmith-main-9.png);background-position:-574px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-656px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-738px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Desert{background-image:url(spritesmith-main-9.png);background-position:-820px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Golden{background-image:url(spritesmith-main-9.png);background-position:-902px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Red{background-image:url(spritesmith-main-9.png);background-position:-984px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Shade{background-image:url(spritesmith-main-9.png);background-position:-1066px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1148px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-White{background-image:url(spritesmith-main-9.png);background-position:-1230px -1345px;width:81px;height:99px}.Mount_Icon_Seahorse-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1312px -1345px;width:81px;height:99px}.Mount_Icon_Sheep-Base{background-image:url(spritesmith-main-9.png);background-position:-1394px -1345px;width:81px;height:99px}.Mount_Icon_Sheep-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1490px 0;width:81px;height:99px}.Mount_Icon_Sheep-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1490px -100px;width:81px;height:99px}.Mount_Icon_Sheep-Desert{background-image:url(spritesmith-main-9.png);background-position:-1490px -200px;width:81px;height:99px}.Mount_Icon_Sheep-Golden{background-image:url(spritesmith-main-9.png);background-position:-1490px -300px;width:81px;height:99px}.Mount_Icon_Sheep-Red{background-image:url(spritesmith-main-9.png);background-position:-1490px -400px;width:81px;height:99px}.Mount_Icon_Sheep-Shade{background-image:url(spritesmith-main-9.png);background-position:-1490px -500px;width:81px;height:99px}.Mount_Icon_Sheep-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1490px -600px;width:81px;height:99px}.Mount_Icon_Sheep-White{background-image:url(spritesmith-main-9.png);background-position:-1490px -700px;width:81px;height:99px}.Mount_Icon_Sheep-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1490px -800px;width:81px;height:99px}.Mount_Icon_Slime-Base{background-image:url(spritesmith-main-9.png);background-position:-1490px -900px;width:81px;height:99px}.Mount_Icon_Slime-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1490px -1000px;width:81px;height:99px}.Mount_Icon_Slime-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1490px -1100px;width:81px;height:99px}.Mount_Icon_Slime-Desert{background-image:url(spritesmith-main-9.png);background-position:-1490px -1200px;width:81px;height:99px}.Mount_Icon_Slime-Golden{background-image:url(spritesmith-main-9.png);background-position:-1490px -1300px;width:81px;height:99px}.Mount_Icon_Slime-Red{background-image:url(spritesmith-main-9.png);background-position:0 -1445px;width:81px;height:99px}.Mount_Icon_Slime-Shade{background-image:url(spritesmith-main-9.png);background-position:-82px -1445px;width:81px;height:99px}.Mount_Icon_Slime-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-164px -1445px;width:81px;height:99px}.Mount_Icon_Slime-White{background-image:url(spritesmith-main-9.png);background-position:-246px -1445px;width:81px;height:99px}.Mount_Icon_Slime-Zombie{background-image:url(spritesmith-main-9.png);background-position:-328px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Base{background-image:url(spritesmith-main-9.png);background-position:-410px -1445px;width:81px;height:99px}.Mount_Icon_Snake-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-492px -1445px;width:81px;height:99px}.Mount_Icon_Snake-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-574px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Desert{background-image:url(spritesmith-main-9.png);background-position:-656px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Golden{background-image:url(spritesmith-main-9.png);background-position:-738px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Red{background-image:url(spritesmith-main-9.png);background-position:-820px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Shade{background-image:url(spritesmith-main-9.png);background-position:-902px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-984px -1445px;width:81px;height:99px}.Mount_Icon_Snake-White{background-image:url(spritesmith-main-9.png);background-position:-1066px -1445px;width:81px;height:99px}.Mount_Icon_Snake-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1148px -1445px;width:81px;height:99px}.Mount_Icon_Spider-Base{background-image:url(spritesmith-main-9.png);background-position:-1230px -1445px;width:81px;height:99px}.Mount_Icon_Spider-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1312px -1445px;width:81px;height:99px}.Mount_Icon_Spider-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1394px -1445px;width:81px;height:99px}.Mount_Icon_Spider-Desert{background-image:url(spritesmith-main-9.png);background-position:-1476px -1445px;width:81px;height:99px}.Mount_Icon_Spider-Golden{background-image:url(spritesmith-main-9.png);background-position:-1572px 0;width:81px;height:99px}.Mount_Icon_Spider-Red{background-image:url(spritesmith-main-9.png);background-position:-1572px -100px;width:81px;height:99px}.Mount_Icon_Spider-Shade{background-image:url(spritesmith-main-9.png);background-position:-1572px -200px;width:81px;height:99px}.Mount_Icon_Spider-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1572px -300px;width:81px;height:99px}.Mount_Icon_Spider-White{background-image:url(spritesmith-main-9.png);background-position:-1572px -400px;width:81px;height:99px}.Mount_Icon_Spider-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1572px -500px;width:81px;height:99px}.Mount_Icon_TRex-Base{background-image:url(spritesmith-main-9.png);background-position:-1572px -600px;width:81px;height:99px}.Mount_Icon_TRex-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1572px -700px;width:81px;height:99px}.Mount_Icon_TRex-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1572px -800px;width:81px;height:99px}.Mount_Icon_TRex-Desert{background-image:url(spritesmith-main-9.png);background-position:-1572px -900px;width:81px;height:99px}.Mount_Icon_TRex-Golden{background-image:url(spritesmith-main-9.png);background-position:-1572px -1000px;width:81px;height:99px}.Mount_Icon_TRex-Red{background-image:url(spritesmith-main-9.png);background-position:-1572px -1100px;width:81px;height:99px}.Mount_Icon_TRex-Shade{background-image:url(spritesmith-main-9.png);background-position:-1572px -1200px;width:81px;height:99px}.Mount_Icon_TRex-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1572px -1300px;width:81px;height:99px}.Mount_Icon_TRex-White{background-image:url(spritesmith-main-9.png);background-position:-1572px -1400px;width:81px;height:99px}.Mount_Icon_TRex-Zombie{background-image:url(spritesmith-main-9.png);background-position:0 -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Base{background-image:url(spritesmith-main-9.png);background-position:-82px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-164px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-246px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Desert{background-image:url(spritesmith-main-9.png);background-position:-328px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Golden{background-image:url(spritesmith-main-9.png);background-position:-410px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-492px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Red{background-image:url(spritesmith-main-9.png);background-position:-574px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Shade{background-image:url(spritesmith-main-9.png);background-position:-656px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-738px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Spooky{background-image:url(spritesmith-main-9.png);background-position:-820px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-White{background-image:url(spritesmith-main-9.png);background-position:-902px -1545px;width:81px;height:99px}.Mount_Icon_TigerCub-Zombie{background-image:url(spritesmith-main-9.png);background-position:-984px -1545px;width:81px;height:99px}.Mount_Icon_Turkey-Base{background-image:url(spritesmith-main-9.png);background-position:-1066px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Base{background-image:url(spritesmith-main-9.png);background-position:-1148px -1545px;width:81px;height:99px}.Mount_Icon_Whale-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1230px -1545px;width:81px;height:99px}.Mount_Icon_Whale-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1312px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Desert{background-image:url(spritesmith-main-9.png);background-position:-1394px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Golden{background-image:url(spritesmith-main-9.png);background-position:-1476px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Red{background-image:url(spritesmith-main-9.png);background-position:-1558px -1545px;width:81px;height:99px}.Mount_Icon_Whale-Shade{background-image:url(spritesmith-main-9.png);background-position:-1654px 0;width:81px;height:99px}.Mount_Icon_Whale-Skeleton{background-image:url(spritesmith-main-9.png);background-position:-1654px -100px;width:81px;height:99px}.Mount_Icon_Whale-White{background-image:url(spritesmith-main-9.png);background-position:-1654px -200px;width:81px;height:99px}.Mount_Icon_Whale-Zombie{background-image:url(spritesmith-main-9.png);background-position:-1654px -300px;width:81px;height:99px}.Mount_Icon_Wolf-Base{background-image:url(spritesmith-main-9.png);background-position:-1654px -400px;width:81px;height:99px}.Mount_Icon_Wolf-CottonCandyBlue{background-image:url(spritesmith-main-9.png);background-position:-1654px -500px;width:81px;height:99px}.Mount_Icon_Wolf-CottonCandyPink{background-image:url(spritesmith-main-9.png);background-position:-1654px -600px;width:81px;height:99px}.Mount_Icon_Wolf-Desert{background-image:url(spritesmith-main-9.png);background-position:-1654px -700px;width:81px;height:99px}.Mount_Icon_Wolf-Golden{background-image:url(spritesmith-main-9.png);background-position:-1654px -800px;width:81px;height:99px}.Mount_Icon_Wolf-Peppermint{background-image:url(spritesmith-main-9.png);background-position:-1654px -900px;width:81px;height:99px}.head_special_0,.weapon_special_0{width:105px;height:105px;margin-left:-3px;margin-top:-18px}.broad_armor_special_0,.shield_special_0,.slim_armor_special_0{width:90px;height:90px}.weapon_special_critical{background:url(/common/img/sprites/backer-only/weapon_special_critical.gif) no-repeat;width:90px;height:90px;margin-left:-12px;margin-top:12px}.weapon_special_1{margin-left:-12px}.broad_armor_special_1,.head_special_1,.slim_armor_special_1{width:90px;height:90px}.head_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Equip-ShadeHelmet.gif) no-repeat}.head_special_1{background:url(/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalHelmet.gif) no-repeat;margin-top:3px}.broad_armor_special_0,.slim_armor_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Equip-ShadeArmor.gif) no-repeat}.broad_armor_special_1,.slim_armor_special_1{background:url(/common/img/sprites/backer-only/ContributorOnly-Equip-CrystalArmor.gif) no-repeat}.shield_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Shield-TormentedSkull.gif) no-repeat}.weapon_special_0{background:url(/common/img/sprites/backer-only/BackerOnly-Weapon-DarkSoulsBlade.gif) no-repeat}.Pet-Wolf-Cerberus{width:105px;height:72px;background:url(/common/img/sprites/backer-only/BackerOnly-Pet-CerberusPup.gif) no-repeat}.npc_ian{background:url(/common/img/sprites/npc_ian.gif) no-repeat;width:78px;height:135px}.quest_burnout{background:url(/common/img/sprites/quest_burnout.gif) no-repeat;width:219px;height:249px}.Gems{display:inline-block;margin-right:5px;border-style:none;margin-left:0;margin-top:2px}.inline-gems{vertical-align:middle;margin-left:0;display:inline-block}.customize-menu .locked{background-color:#727272}.achievement{float:left;clear:right;margin-right:10px}.multi-achievement{margin:auto;padding-left:.5em;padding-right:.5em}[class*=Mount_Body_],[class*=Mount_Head_]{margin-top:18px}.Pet_Currency_Gem{margin-top:5px;margin-bottom:5px} \ No newline at end of file diff --git a/common/dist/sprites/spritesmith-largeSprites-0.css b/common/dist/sprites/spritesmith-largeSprites-0.css index cdfd478c95..2632bfb2e4 100644 --- a/common/dist/sprites/spritesmith-largeSprites-0.css +++ b/common/dist/sprites/spritesmith-largeSprites-0.css @@ -1,30 +1,36 @@ .2014_Fall_HealerPROMO2 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -822px -995px; + background-position: -943px -616px; width: 90px; height: 90px; } .2014_Fall_Mage_PROMO9 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -306px -417px; + background-position: -943px -252px; width: 120px; height: 90px; } .2014_Fall_RoguePROMO3 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -808px -621px; + background-position: -943px -343px; width: 105px; height: 90px; } .2014_Fall_Warrior_PROMO { background-image: url(spritesmith-largeSprites-0.png); - background-position: -276px -995px; + background-position: -306px -402px; width: 90px; height: 90px; } +.promo_android { + background-image: url(spritesmith-largeSprites-0.png); + background-position: -943px 0px; + width: 175px; + height: 175px; +} .promo_backtoschool { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -522px; + background-position: -1119px -251px; width: 150px; height: 150px; } @@ -48,7 +54,7 @@ } .promo_dilatoryDistress { background-image: url(spritesmith-largeSprites-0.png); - background-position: -458px -995px; + background-position: -452px -417px; width: 90px; height: 90px; } @@ -60,25 +66,25 @@ } .promo_enchanted_armoire_201507 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -673px; + background-position: -1119px -550px; width: 217px; height: 90px; } .promo_enchanted_armoire_201508 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -648px -724px; + background-position: -1119px -824px; width: 180px; height: 90px; } .promo_enchanted_armoire_201509 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -549px -995px; + background-position: -543px -417px; width: 90px; height: 90px; } .promo_enchanted_armoire_201511 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -306px -326px; + background-position: -1225px -991px; width: 122px; height: 90px; } @@ -96,151 +102,151 @@ } .promo_haunted_hair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1094px -522px; + background-position: -1260px -402px; width: 100px; height: 137px; } .customize-option.promo_haunted_hair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1119px -537px; + background-position: -1285px -417px; width: 60px; height: 60px; } .promo_item_notif { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -271px; + background-position: -1119px 0px; width: 249px; height: 102px; } .promo_mystery_201405 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1095px -995px; + background-position: -380px -1008px; width: 90px; height: 90px; } .promo_mystery_201406 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -91px -995px; + background-position: -1270px -251px; width: 90px; height: 96px; } .promo_mystery_201407 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -628px -241px; + background-position: -1037px -525px; width: 42px; height: 62px; } .promo_mystery_201408 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1161px -764px; + background-position: -1300px -824px; width: 60px; height: 71px; } .promo_mystery_201409 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -731px -995px; + background-position: -306px -311px; width: 90px; height: 90px; } .promo_mystery_201410 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1161px -673px; + background-position: -1272px -915px; width: 72px; height: 63px; } .promo_mystery_201411 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -913px -995px; + background-position: -808px -621px; width: 90px; height: 90px; } .promo_mystery_201412 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1195px -592px; + background-position: -1037px -434px; width: 42px; height: 66px; } .promo_mystery_201501 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1193px -271px; + background-position: -1318px -732px; width: 48px; height: 63px; } .promo_mystery_201502 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -367px -995px; + background-position: -943px -707px; width: 90px; height: 90px; } .promo_mystery_201503 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -91px -1101px; + background-position: -562px -1008px; width: 90px; height: 90px; } .promo_mystery_201504 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -874px -525px; + background-position: -1049px -343px; width: 60px; height: 69px; } .promo_mystery_201505 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -640px -995px; + background-position: -306px -220px; width: 90px; height: 90px; } .promo_mystery_201506 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1195px -522px; + background-position: -1064px -252px; width: 42px; height: 69px; } .promo_mystery_201507 { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -995px; + background-position: -1276px -103px; width: 90px; height: 105px; } .promo_mystery_201508 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -829px -724px; + background-position: -943px -525px; width: 93px; height: 90px; } .promo_mystery_201509 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1004px -995px; + background-position: -289px -1008px; width: 90px; height: 90px; } .promo_mystery_201510 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -182px -995px; + background-position: -943px -434px; width: 93px; height: 90px; } .promo_mystery_201511 { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -1101px; + background-position: -471px -1008px; width: 90px; height: 90px; } .promo_mystery_3014 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -764px; + background-position: -1119px -641px; width: 217px; height: 90px; } .promo_orca { background-image: url(spritesmith-largeSprites-0.png); - background-position: -306px -220px; + background-position: -1119px -991px; width: 105px; height: 105px; } .promo_partyhats { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -855px; + background-position: -662px -835px; width: 115px; height: 47px; } @@ -258,13 +264,13 @@ } .promo_pet_skins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1100px -374px; + background-position: -1119px -402px; width: 140px; height: 147px; } .customize-option.promo_pet_skins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -1125px -389px; + background-position: -1144px -417px; width: 60px; height: 60px; } @@ -282,25 +288,25 @@ } .promo_splashyskins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -452px -417px; + background-position: -1119px -732px; width: 198px; height: 91px; } .customize-option.promo_splashyskins { background-image: url(spritesmith-largeSprites-0.png); - background-position: -477px -432px; + background-position: -1144px -747px; width: 60px; height: 60px; } .promo_springclasses2014 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -180px; + background-position: -648px -724px; width: 288px; height: 90px; } .promo_springclasses2015 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -89px; + background-position: 0px -1008px; width: 288px; height: 90px; } @@ -312,19 +318,19 @@ } .promo_summer_classes_2015 { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px 0px; + background-position: 0px -919px; width: 300px; height: 88px; } .promo_updos { background-image: url(spritesmith-largeSprites-0.png); - background-position: -943px -374px; + background-position: -1119px -103px; width: 156px; height: 147px; } .promo_veteran_pets { background-image: url(spritesmith-largeSprites-0.png); - background-position: 0px -919px; + background-position: -943px -176px; width: 146px; height: 75px; } @@ -336,13 +342,13 @@ } .promo_winteryhair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -662px -835px; + background-position: -1119px -915px; width: 152px; height: 75px; } .customize-option.promo_winteryhair { background-image: url(spritesmith-largeSprites-0.png); - background-position: -687px -850px; + background-position: -1144px -930px; width: 60px; height: 60px; } diff --git a/common/dist/sprites/spritesmith-largeSprites-0.png b/common/dist/sprites/spritesmith-largeSprites-0.png index 45fab683a6..4874189df2 100644 Binary files a/common/dist/sprites/spritesmith-largeSprites-0.png and b/common/dist/sprites/spritesmith-largeSprites-0.png differ diff --git a/common/dist/sprites/spritesmith-main-10.css b/common/dist/sprites/spritesmith-main-10.css new file mode 100644 index 0000000000..309503d5ad --- /dev/null +++ b/common/dist/sprites/spritesmith-main-10.css @@ -0,0 +1,1992 @@ +.Mount_Icon_Wolf-Red { + background-image: url(spritesmith-main-10.png); + background-position: -82px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -164px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: 0px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-White { + background-image: url(spritesmith-main-10.png); + background-position: -82px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Wolf-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -164px -100px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Base { + background-image: url(spritesmith-main-10.png); + background-position: -246px 0px; + width: 81px; + height: 99px; +} +.Pet-BearCub-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -246px -100px; + width: 81px; + height: 99px; +} +.Pet-BearCub-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: 0px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -82px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -164px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -246px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Polar { + background-image: url(spritesmith-main-10.png); + background-position: -328px 0px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Red { + background-image: url(spritesmith-main-10.png); + background-position: -328px -100px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -328px -200px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: 0px -300px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -82px -300px; + width: 81px; + height: 99px; +} +.Pet-BearCub-White { + background-image: url(spritesmith-main-10.png); + background-position: -164px -300px; + width: 81px; + height: 99px; +} +.Pet-BearCub-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -246px -300px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Base { + background-image: url(spritesmith-main-10.png); + background-position: -328px -300px; + width: 81px; + height: 99px; +} +.Pet-Bunny-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -410px 0px; + width: 81px; + height: 99px; +} +.Pet-Bunny-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -410px -100px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -410px -200px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -300px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Red { + background-image: url(spritesmith-main-10.png); + background-position: -492px 0px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -492px -100px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -492px -200px; + width: 81px; + height: 99px; +} +.Pet-Bunny-White { + background-image: url(spritesmith-main-10.png); + background-position: -492px -300px; + width: 81px; + height: 99px; +} +.Pet-Bunny-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -492px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Red { + background-image: url(spritesmith-main-10.png); + background-position: -574px 0px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -574px -100px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -574px -200px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -574px -300px; + width: 81px; + height: 99px; +} +.Pet-Cactus-White { + background-image: url(spritesmith-main-10.png); + background-position: -574px -400px; + width: 81px; + height: 99px; +} +.Pet-Cactus-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Red { + background-image: url(spritesmith-main-10.png); + background-position: -492px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -574px -500px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -656px 0px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-White { + background-image: url(spritesmith-main-10.png); + background-position: -656px -100px; + width: 81px; + height: 99px; +} +.Pet-Cheetah-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -656px -200px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Base { + background-image: url(spritesmith-main-10.png); + background-position: -656px -300px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -656px -400px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -656px -500px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Desert { + background-image: url(spritesmith-main-10.png); + background-position: 0px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -82px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Red { + background-image: url(spritesmith-main-10.png); + background-position: -164px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -246px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -328px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-White { + background-image: url(spritesmith-main-10.png); + background-position: -410px -600px; + width: 81px; + height: 99px; +} +.Pet-Cuttlefish-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -492px -600px; + width: 81px; + height: 99px; +} +.Pet-Deer-Base { + background-image: url(spritesmith-main-10.png); + background-position: -574px -600px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -656px -600px; + width: 81px; + height: 99px; +} +.Pet-Deer-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -738px 0px; + width: 81px; + height: 99px; +} +.Pet-Deer-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -738px -100px; + width: 81px; + height: 99px; +} +.Pet-Deer-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -738px -200px; + width: 81px; + height: 99px; +} +.Pet-Deer-Red { + background-image: url(spritesmith-main-10.png); + background-position: -738px -300px; + width: 81px; + height: 99px; +} +.Pet-Deer-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -738px -400px; + width: 81px; + height: 99px; +} +.Pet-Deer-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -738px -500px; + width: 81px; + height: 99px; +} +.Pet-Deer-White { + background-image: url(spritesmith-main-10.png); + background-position: -738px -600px; + width: 81px; + height: 99px; +} +.Pet-Deer-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Hydra { + background-image: url(spritesmith-main-10.png); + background-position: -492px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -574px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Red { + background-image: url(spritesmith-main-10.png); + background-position: -656px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -738px -700px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -820px 0px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -820px -100px; + width: 81px; + height: 99px; +} +.Pet-Dragon-White { + background-image: url(spritesmith-main-10.png); + background-position: -820px -200px; + width: 81px; + height: 99px; +} +.Pet-Dragon-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -820px -300px; + width: 81px; + height: 99px; +} +.Pet-Egg-Base { + background-image: url(spritesmith-main-10.png); + background-position: -820px -400px; + width: 81px; + height: 99px; +} +.Pet-Egg-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -820px -500px; + width: 81px; + height: 99px; +} +.Pet-Egg-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -820px -600px; + width: 81px; + height: 99px; +} +.Pet-Egg-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -820px -700px; + width: 81px; + height: 99px; +} +.Pet-Egg-Golden { + background-image: url(spritesmith-main-10.png); + background-position: 0px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-Red { + background-image: url(spritesmith-main-10.png); + background-position: -82px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -164px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -246px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-White { + background-image: url(spritesmith-main-10.png); + background-position: -328px -800px; + width: 81px; + height: 99px; +} +.Pet-Egg-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -410px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Base { + background-image: url(spritesmith-main-10.png); + background-position: -492px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -574px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -656px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -738px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -820px -800px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -902px 0px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Red { + background-image: url(spritesmith-main-10.png); + background-position: -902px -100px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -902px -200px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -902px -300px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -902px -400px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-White { + background-image: url(spritesmith-main-10.png); + background-position: -902px -500px; + width: 81px; + height: 99px; +} +.Pet-FlyingPig-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -902px -600px; + width: 81px; + height: 99px; +} +.Pet-Fox-Base { + background-image: url(spritesmith-main-10.png); + background-position: -902px -700px; + width: 81px; + height: 99px; +} +.Pet-Fox-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -902px -800px; + width: 81px; + height: 99px; +} +.Pet-Fox-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -984px 0px; + width: 81px; + height: 99px; +} +.Pet-Fox-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -984px -100px; + width: 81px; + height: 99px; +} +.Pet-Fox-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -984px -200px; + width: 81px; + height: 99px; +} +.Pet-Fox-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -984px -300px; + width: 81px; + height: 99px; +} +.Pet-Fox-Red { + background-image: url(spritesmith-main-10.png); + background-position: -984px -400px; + width: 81px; + height: 99px; +} +.Pet-Fox-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -984px -500px; + width: 81px; + height: 99px; +} +.Pet-Fox-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -984px -600px; + width: 81px; + height: 99px; +} +.Pet-Fox-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -984px -700px; + width: 81px; + height: 99px; +} +.Pet-Fox-White { + background-image: url(spritesmith-main-10.png); + background-position: -984px -800px; + width: 81px; + height: 99px; +} +.Pet-Fox-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Red { + background-image: url(spritesmith-main-10.png); + background-position: -492px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -574px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -656px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-White { + background-image: url(spritesmith-main-10.png); + background-position: -738px -900px; + width: 81px; + height: 99px; +} +.Pet-Frog-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -820px -900px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Base { + background-image: url(spritesmith-main-10.png); + background-position: -902px -900px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -984px -900px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1066px 0px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -100px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -200px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -300px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -400px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -500px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-White { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -600px; + width: 81px; + height: 99px; +} +.Pet-Gryphon-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -700px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -800px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -900px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Red { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-White { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1000px; + width: 81px; + height: 99px; +} +.Pet-Hedgehog-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Base { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1000px; + width: 81px; + height: 99px; +} +.Pet-Horse-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1148px 0px; + width: 81px; + height: 99px; +} +.Pet-Horse-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -100px; + width: 81px; + height: 99px; +} +.Pet-Horse-White { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -200px; + width: 81px; + height: 99px; +} +.Pet-Horse-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -300px; + width: 81px; + height: 99px; +} +.Pet-JackOLantern-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -400px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -500px; + width: 81px; + height: 99px; +} +.Pet-LionCub-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -600px; + width: 81px; + height: 99px; +} +.Pet-LionCub-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -700px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -800px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -900px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1000px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Red { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Shade { + background-image: url(spritesmith-main-10.png); + background-position: 0px 0px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-White { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1100px; + width: 81px; + height: 99px; +} +.Pet-LionCub-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1100px; + width: 81px; + height: 99px; +} +.Pet-Mammoth-Base { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1100px; + width: 81px; + height: 99px; +} +.Pet-MantisShrimp-Base { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Base { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1230px 0px; + width: 81px; + height: 99px; +} +.Pet-Octopus-White { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -100px; + width: 81px; + height: 99px; +} +.Pet-Octopus-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -200px; + width: 81px; + height: 99px; +} +.Pet-Owl-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -300px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -400px; + width: 81px; + height: 99px; +} +.Pet-Owl-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -500px; + width: 81px; + height: 99px; +} +.Pet-Owl-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -600px; + width: 81px; + height: 99px; +} +.Pet-Owl-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -700px; + width: 81px; + height: 99px; +} +.Pet-Owl-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -800px; + width: 81px; + height: 99px; +} +.Pet-Owl-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -900px; + width: 81px; + height: 99px; +} +.Pet-Owl-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1000px; + width: 81px; + height: 99px; +} +.Pet-Owl-White { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1100px; + width: 81px; + height: 99px; +} +.Pet-Owl-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Base { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Red { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-White { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1200px; + width: 81px; + height: 99px; +} +.Pet-PandaCub-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1312px 0px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -100px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -200px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -300px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -400px; + width: 81px; + height: 99px; +} +.Pet-Parrot-White { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -500px; + width: 81px; + height: 99px; +} +.Pet-Parrot-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -600px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -700px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -800px; + width: 81px; + height: 99px; +} +.Pet-Penguin-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -900px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1000px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1100px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1394px 0px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -100px; + width: 81px; + height: 99px; +} +.Pet-Penguin-White { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -200px; + width: 81px; + height: 99px; +} +.Pet-Penguin-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -300px; + width: 81px; + height: 99px; +} +.Pet-Phoenix-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -400px; + width: 81px; + height: 99px; +} +.Pet-Rat-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -500px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -600px; + width: 81px; + height: 99px; +} +.Pet-Rat-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -700px; + width: 81px; + height: 99px; +} +.Pet-Rat-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -800px; + width: 81px; + height: 99px; +} +.Pet-Rat-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -900px; + width: 81px; + height: 99px; +} +.Pet-Rat-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1000px; + width: 81px; + height: 99px; +} +.Pet-Rat-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1100px; + width: 81px; + height: 99px; +} +.Pet-Rat-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1200px; + width: 81px; + height: 99px; +} +.Pet-Rat-White { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rat-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Base { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Red { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-White { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rock-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Base { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1300px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1476px 0px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -100px; + width: 81px; + height: 99px; +} +.Pet-Rooster-White { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -200px; + width: 81px; + height: 99px; +} +.Pet-Rooster-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -300px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -400px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -500px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -600px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -700px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -800px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -900px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1000px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1100px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-White { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1200px; + width: 81px; + height: 99px; +} +.Pet-Seahorse-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1300px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Base { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Red { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-White { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1400px; + width: 81px; + height: 99px; +} +.Pet-Sheep-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Base { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-White { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1400px; + width: 81px; + height: 99px; +} +.Pet-Slime-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1558px 0px; + width: 81px; + height: 99px; +} +.Pet-Snake-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -100px; + width: 81px; + height: 99px; +} +.Pet-Snake-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -200px; + width: 81px; + height: 99px; +} +.Pet-Snake-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -300px; + width: 81px; + height: 99px; +} +.Pet-Snake-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -400px; + width: 81px; + height: 99px; +} +.Pet-Snake-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -500px; + width: 81px; + height: 99px; +} +.Pet-Snake-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -600px; + width: 81px; + height: 99px; +} +.Pet-Snake-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -700px; + width: 81px; + height: 99px; +} +.Pet-Snake-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -800px; + width: 81px; + height: 99px; +} +.Pet-Snake-White { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -900px; + width: 81px; + height: 99px; +} +.Pet-Snake-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1000px; + width: 81px; + height: 99px; +} +.Pet-Spider-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1100px; + width: 81px; + height: 99px; +} +.Pet-Spider-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1200px; + width: 81px; + height: 99px; +} +.Pet-Spider-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1300px; + width: 81px; + height: 99px; +} +.Pet-Spider-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1400px; + width: 81px; + height: 99px; +} +.Pet-Spider-Golden { + background-image: url(spritesmith-main-10.png); + background-position: 0px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-Red { + background-image: url(spritesmith-main-10.png); + background-position: -82px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -164px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -246px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-White { + background-image: url(spritesmith-main-10.png); + background-position: -328px -1500px; + width: 81px; + height: 99px; +} +.Pet-Spider-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -410px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Base { + background-image: url(spritesmith-main-10.png); + background-position: -492px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -574px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -656px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -738px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -820px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Red { + background-image: url(spritesmith-main-10.png); + background-position: -902px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -984px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1066px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-White { + background-image: url(spritesmith-main-10.png); + background-position: -1148px -1500px; + width: 81px; + height: 99px; +} +.Pet-TRex-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1230px -1500px; + width: 81px; + height: 99px; +} +.Pet-Tiger-Veteran { + background-image: url(spritesmith-main-10.png); + background-position: -1312px -1500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1394px -1500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyBlue { + background-image: url(spritesmith-main-10.png); + background-position: -1476px -1500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-CottonCandyPink { + background-image: url(spritesmith-main-10.png); + background-position: -1558px -1500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Desert { + background-image: url(spritesmith-main-10.png); + background-position: -1640px 0px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Golden { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -100px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Peppermint { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -200px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Red { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -300px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Shade { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -400px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Skeleton { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -500px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Spooky { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -600px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-White { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -700px; + width: 81px; + height: 99px; +} +.Pet-TigerCub-Zombie { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -800px; + width: 81px; + height: 99px; +} +.Pet-Turkey-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -900px; + width: 81px; + height: 99px; +} +.Pet-Turkey-Gilded { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -1000px; + width: 81px; + height: 99px; +} +.Pet-Whale-Base { + background-image: url(spritesmith-main-10.png); + background-position: -1640px -1100px; + width: 81px; + height: 99px; +} diff --git a/common/dist/sprites/spritesmith-main-10.png b/common/dist/sprites/spritesmith-main-10.png new file mode 100644 index 0000000000..57d3463fb0 Binary files /dev/null and b/common/dist/sprites/spritesmith-main-10.png differ diff --git a/common/dist/sprites/spritesmith-main-11.css b/common/dist/sprites/spritesmith-main-11.css new file mode 100644 index 0000000000..ccae9f0b94 --- /dev/null +++ b/common/dist/sprites/spritesmith-main-11.css @@ -0,0 +1,204 @@ +.Pet-Whale-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -82px 0px; + width: 81px; + height: 99px; +} +.Pet-Whale-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -164px -300px; + width: 81px; + height: 99px; +} +.Pet-Whale-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -164px 0px; + width: 81px; + height: 99px; +} +.Pet-Whale-Golden { + background-image: url(spritesmith-main-11.png); + background-position: 0px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Red { + background-image: url(spritesmith-main-11.png); + background-position: -82px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -164px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -246px 0px; + width: 81px; + height: 99px; +} +.Pet-Whale-White { + background-image: url(spritesmith-main-11.png); + background-position: -246px -100px; + width: 81px; + height: 99px; +} +.Pet-Whale-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: 0px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Base { + background-image: url(spritesmith-main-11.png); + background-position: -82px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -164px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -246px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Desert { + background-image: url(spritesmith-main-11.png); + background-position: -328px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Golden { + background-image: url(spritesmith-main-11.png); + background-position: -328px -100px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Peppermint { + background-image: url(spritesmith-main-11.png); + background-position: -328px -200px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Red { + background-image: url(spritesmith-main-11.png); + background-position: 0px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Shade { + background-image: url(spritesmith-main-11.png); + background-position: -82px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: 0px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -246px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Veteran { + background-image: url(spritesmith-main-11.png); + background-position: -328px -300px; + width: 81px; + height: 99px; +} +.Pet-Wolf-White { + background-image: url(spritesmith-main-11.png); + background-position: -410px 0px; + width: 81px; + height: 99px; +} +.Pet-Wolf-Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -410px -100px; + width: 81px; + height: 99px; +} +.Pet_HatchingPotion_Base { + background-image: url(spritesmith-main-11.png); + background-position: -410px -252px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_CottonCandyBlue { + background-image: url(spritesmith-main-11.png); + background-position: -147px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_CottonCandyPink { + background-image: url(spritesmith-main-11.png); + background-position: -410px -304px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Desert { + background-image: url(spritesmith-main-11.png); + background-position: 0px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Golden { + background-image: url(spritesmith-main-11.png); + background-position: -49px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Peppermint { + background-image: url(spritesmith-main-11.png); + background-position: -98px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Red { + background-image: url(spritesmith-main-11.png); + background-position: -410px -200px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Shade { + background-image: url(spritesmith-main-11.png); + background-position: -196px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Skeleton { + background-image: url(spritesmith-main-11.png); + background-position: -245px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Spooky { + background-image: url(spritesmith-main-11.png); + background-position: -294px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_White { + background-image: url(spritesmith-main-11.png); + background-position: -343px -400px; + width: 48px; + height: 51px; +} +.Pet_HatchingPotion_Zombie { + background-image: url(spritesmith-main-11.png); + background-position: -392px -400px; + width: 48px; + height: 51px; +} diff --git a/common/dist/sprites/spritesmith-main-11.png b/common/dist/sprites/spritesmith-main-11.png new file mode 100644 index 0000000000..2b73945f0d Binary files /dev/null and b/common/dist/sprites/spritesmith-main-11.png differ diff --git a/common/dist/sprites/spritesmith-main-6.css b/common/dist/sprites/spritesmith-main-6.css index 73eb4b5adf..4674923e8c 100644 --- a/common/dist/sprites/spritesmith-main-6.css +++ b/common/dist/sprites/spritesmith-main-6.css @@ -202,234 +202,246 @@ width: 105px; height: 105px; } -.Mount_Body_BearCub-Polar { +.Mount_Body_BearCub-Peppermint { background-image: url(spritesmith-main-6.png); background-position: 0px -575px; width: 105px; height: 105px; } -.Mount_Body_BearCub-Red { +.Mount_Body_BearCub-Polar { background-image: url(spritesmith-main-6.png); background-position: -106px -575px; width: 105px; height: 105px; } -.Mount_Body_BearCub-Shade { +.Mount_Body_BearCub-Red { background-image: url(spritesmith-main-6.png); background-position: -212px -575px; width: 105px; height: 105px; } -.Mount_Body_BearCub-Skeleton { +.Mount_Body_BearCub-Shade { background-image: url(spritesmith-main-6.png); background-position: -318px -575px; width: 105px; height: 105px; } -.Mount_Body_BearCub-Spooky { +.Mount_Body_BearCub-Skeleton { background-image: url(spritesmith-main-6.png); background-position: -424px -575px; width: 105px; height: 105px; } -.Mount_Body_BearCub-White { +.Mount_Body_BearCub-Spooky { background-image: url(spritesmith-main-6.png); background-position: -530px -575px; width: 105px; height: 105px; } -.Mount_Body_BearCub-Zombie { +.Mount_Body_BearCub-White { background-image: url(spritesmith-main-6.png); background-position: -636px -575px; width: 105px; height: 105px; } -.Mount_Body_Bunny-Base { +.Mount_Body_BearCub-Zombie { background-image: url(spritesmith-main-6.png); background-position: -742px 0px; width: 105px; height: 105px; } -.Mount_Body_Bunny-CottonCandyBlue { +.Mount_Body_Bunny-Base { background-image: url(spritesmith-main-6.png); background-position: -742px -106px; width: 105px; height: 105px; } -.Mount_Body_Bunny-CottonCandyPink { +.Mount_Body_Bunny-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -742px -212px; width: 105px; height: 105px; } -.Mount_Body_Bunny-Desert { +.Mount_Body_Bunny-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -742px -318px; width: 105px; height: 105px; } -.Mount_Body_Bunny-Golden { +.Mount_Body_Bunny-Desert { background-image: url(spritesmith-main-6.png); background-position: -742px -424px; width: 105px; height: 105px; } -.Mount_Body_Bunny-Red { +.Mount_Body_Bunny-Golden { background-image: url(spritesmith-main-6.png); background-position: -742px -530px; width: 105px; height: 105px; } -.Mount_Body_Bunny-Shade { +.Mount_Body_Bunny-Red { background-image: url(spritesmith-main-6.png); background-position: 0px -681px; width: 105px; height: 105px; } -.Mount_Body_Bunny-Skeleton { +.Mount_Body_Bunny-Shade { background-image: url(spritesmith-main-6.png); background-position: -106px -681px; width: 105px; height: 105px; } -.Mount_Body_Bunny-White { +.Mount_Body_Bunny-Skeleton { background-image: url(spritesmith-main-6.png); background-position: -212px -681px; width: 105px; height: 105px; } -.Mount_Body_Bunny-Zombie { +.Mount_Body_Bunny-White { background-image: url(spritesmith-main-6.png); background-position: -318px -681px; width: 105px; height: 105px; } -.Mount_Body_Cactus-Base { +.Mount_Body_Bunny-Zombie { background-image: url(spritesmith-main-6.png); background-position: -424px -681px; width: 105px; height: 105px; } -.Mount_Body_Cactus-CottonCandyBlue { +.Mount_Body_Cactus-Base { background-image: url(spritesmith-main-6.png); background-position: -530px -681px; width: 105px; height: 105px; } -.Mount_Body_Cactus-CottonCandyPink { +.Mount_Body_Cactus-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -636px -681px; width: 105px; height: 105px; } -.Mount_Body_Cactus-Desert { +.Mount_Body_Cactus-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -742px -681px; width: 105px; height: 105px; } -.Mount_Body_Cactus-Golden { +.Mount_Body_Cactus-Desert { background-image: url(spritesmith-main-6.png); background-position: -848px 0px; width: 105px; height: 105px; } -.Mount_Body_Cactus-Red { +.Mount_Body_Cactus-Golden { background-image: url(spritesmith-main-6.png); background-position: -848px -106px; width: 105px; height: 105px; } -.Mount_Body_Cactus-Shade { +.Mount_Body_Cactus-Peppermint { background-image: url(spritesmith-main-6.png); background-position: -848px -212px; width: 105px; height: 105px; } -.Mount_Body_Cactus-Skeleton { +.Mount_Body_Cactus-Red { background-image: url(spritesmith-main-6.png); background-position: -848px -318px; width: 105px; height: 105px; } -.Mount_Body_Cactus-Spooky { +.Mount_Body_Cactus-Shade { background-image: url(spritesmith-main-6.png); background-position: -848px -424px; width: 105px; height: 105px; } -.Mount_Body_Cactus-White { +.Mount_Body_Cactus-Skeleton { background-image: url(spritesmith-main-6.png); background-position: -848px -530px; width: 105px; height: 105px; } -.Mount_Body_Cactus-Zombie { +.Mount_Body_Cactus-Spooky { background-image: url(spritesmith-main-6.png); background-position: -848px -636px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Base { +.Mount_Body_Cactus-White { background-image: url(spritesmith-main-6.png); background-position: 0px -787px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-CottonCandyBlue { +.Mount_Body_Cactus-Zombie { background-image: url(spritesmith-main-6.png); background-position: -106px -787px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-CottonCandyPink { +.Mount_Body_Cheetah-Base { background-image: url(spritesmith-main-6.png); background-position: -212px -787px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Desert { +.Mount_Body_Cheetah-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -318px -787px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Golden { +.Mount_Body_Cheetah-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -424px -787px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Red { +.Mount_Body_Cheetah-Desert { background-image: url(spritesmith-main-6.png); background-position: -530px -787px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Shade { +.Mount_Body_Cheetah-Golden { background-image: url(spritesmith-main-6.png); background-position: -636px -787px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Skeleton { +.Mount_Body_Cheetah-Red { background-image: url(spritesmith-main-6.png); background-position: -742px -787px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-White { +.Mount_Body_Cheetah-Shade { background-image: url(spritesmith-main-6.png); background-position: -848px -787px; width: 105px; height: 105px; } -.Mount_Body_Cheetah-Zombie { +.Mount_Body_Cheetah-Skeleton { background-image: url(spritesmith-main-6.png); background-position: -954px 0px; width: 105px; height: 105px; } +.Mount_Body_Cheetah-White { + background-image: url(spritesmith-main-6.png); + background-position: -954px -106px; + width: 105px; + height: 105px; +} +.Mount_Body_Cheetah-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -954px -212px; + width: 105px; + height: 105px; +} .Mount_Body_Cuttlefish-Base { background-image: url(spritesmith-main-6.png); background-position: -530px 0px; @@ -492,322 +504,340 @@ } .Mount_Body_Deer-Base { background-image: url(spritesmith-main-6.png); - background-position: -318px -893px; + background-position: -530px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -424px -893px; + background-position: -636px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -530px -893px; + background-position: -742px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-Desert { background-image: url(spritesmith-main-6.png); - background-position: -636px -893px; + background-position: -848px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-Golden { background-image: url(spritesmith-main-6.png); - background-position: -742px -893px; + background-position: -954px -893px; width: 105px; height: 105px; } .Mount_Body_Deer-Red { background-image: url(spritesmith-main-6.png); - background-position: -848px -893px; + background-position: -1060px 0px; width: 105px; height: 105px; } .Mount_Body_Deer-Shade { background-image: url(spritesmith-main-6.png); - background-position: -954px -893px; + background-position: -1060px -106px; width: 105px; height: 105px; } .Mount_Body_Deer-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1060px 0px; + background-position: -1060px -212px; width: 105px; height: 105px; } .Mount_Body_Deer-White { background-image: url(spritesmith-main-6.png); - background-position: -1060px -106px; + background-position: -1060px -318px; width: 105px; height: 105px; } .Mount_Body_Deer-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1060px -212px; + background-position: -1060px -424px; width: 105px; height: 105px; } .Mount_Body_Dragon-Base { background-image: url(spritesmith-main-6.png); - background-position: -1060px -318px; + background-position: -1060px -530px; width: 105px; height: 105px; } .Mount_Body_Dragon-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1060px -424px; + background-position: -1060px -636px; width: 105px; height: 105px; } .Mount_Body_Dragon-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1060px -530px; + background-position: -1060px -742px; width: 105px; height: 105px; } .Mount_Body_Dragon-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1060px -636px; + background-position: -1060px -848px; width: 105px; height: 105px; } .Mount_Body_Dragon-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Dragon-Red { - background-image: url(spritesmith-main-6.png); - background-position: -1060px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_Dragon-Shade { background-image: url(spritesmith-main-6.png); background-position: 0px -999px; width: 105px; height: 105px; } -.Mount_Body_Dragon-Skeleton { +.Mount_Body_Dragon-Peppermint { background-image: url(spritesmith-main-6.png); background-position: -106px -999px; width: 105px; height: 105px; } -.Mount_Body_Dragon-Spooky { +.Mount_Body_Dragon-Red { background-image: url(spritesmith-main-6.png); background-position: -212px -999px; width: 105px; height: 105px; } -.Mount_Body_Dragon-White { +.Mount_Body_Dragon-Shade { background-image: url(spritesmith-main-6.png); background-position: -318px -999px; width: 105px; height: 105px; } -.Mount_Body_Dragon-Zombie { +.Mount_Body_Dragon-Skeleton { background-image: url(spritesmith-main-6.png); background-position: -424px -999px; width: 105px; height: 105px; } -.Mount_Body_Egg-Base { +.Mount_Body_Dragon-Spooky { background-image: url(spritesmith-main-6.png); background-position: -530px -999px; width: 105px; height: 105px; } -.Mount_Body_Egg-CottonCandyBlue { +.Mount_Body_Dragon-White { background-image: url(spritesmith-main-6.png); background-position: -636px -999px; width: 105px; height: 105px; } -.Mount_Body_Egg-CottonCandyPink { +.Mount_Body_Dragon-Zombie { background-image: url(spritesmith-main-6.png); background-position: -742px -999px; width: 105px; height: 105px; } -.Mount_Body_Egg-Desert { +.Mount_Body_Egg-Base { background-image: url(spritesmith-main-6.png); background-position: -848px -999px; width: 105px; height: 105px; } -.Mount_Body_Egg-Golden { +.Mount_Body_Egg-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -954px -999px; width: 105px; height: 105px; } -.Mount_Body_Egg-Red { +.Mount_Body_Egg-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -1060px -999px; width: 105px; height: 105px; } -.Mount_Body_Egg-Shade { +.Mount_Body_Egg-Desert { background-image: url(spritesmith-main-6.png); background-position: -1166px 0px; width: 105px; height: 105px; } -.Mount_Body_Egg-Skeleton { +.Mount_Body_Egg-Golden { background-image: url(spritesmith-main-6.png); background-position: -1166px -106px; width: 105px; height: 105px; } -.Mount_Body_Egg-White { +.Mount_Body_Egg-Red { background-image: url(spritesmith-main-6.png); background-position: -1166px -212px; width: 105px; height: 105px; } -.Mount_Body_Egg-Zombie { +.Mount_Body_Egg-Shade { background-image: url(spritesmith-main-6.png); background-position: -1166px -318px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Base { +.Mount_Body_Egg-Skeleton { background-image: url(spritesmith-main-6.png); background-position: -1166px -424px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-CottonCandyBlue { +.Mount_Body_Egg-White { background-image: url(spritesmith-main-6.png); background-position: -1166px -530px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-CottonCandyPink { +.Mount_Body_Egg-Zombie { background-image: url(spritesmith-main-6.png); background-position: -1166px -636px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Desert { +.Mount_Body_FlyingPig-Base { background-image: url(spritesmith-main-6.png); background-position: -1166px -742px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Golden { +.Mount_Body_FlyingPig-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -1166px -848px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Red { +.Mount_Body_FlyingPig-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -1166px -954px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Shade { +.Mount_Body_FlyingPig-Desert { background-image: url(spritesmith-main-6.png); background-position: 0px -1105px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Skeleton { +.Mount_Body_FlyingPig-Golden { background-image: url(spritesmith-main-6.png); background-position: -106px -1105px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Spooky { +.Mount_Body_FlyingPig-Peppermint { background-image: url(spritesmith-main-6.png); background-position: -212px -1105px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-White { +.Mount_Body_FlyingPig-Red { background-image: url(spritesmith-main-6.png); background-position: -318px -1105px; width: 105px; height: 105px; } -.Mount_Body_FlyingPig-Zombie { +.Mount_Body_FlyingPig-Shade { background-image: url(spritesmith-main-6.png); background-position: -424px -1105px; width: 105px; height: 105px; } -.Mount_Body_Fox-Base { +.Mount_Body_FlyingPig-Skeleton { background-image: url(spritesmith-main-6.png); background-position: -530px -1105px; width: 105px; height: 105px; } -.Mount_Body_Fox-CottonCandyBlue { +.Mount_Body_FlyingPig-Spooky { background-image: url(spritesmith-main-6.png); background-position: -636px -1105px; width: 105px; height: 105px; } -.Mount_Body_Fox-CottonCandyPink { +.Mount_Body_FlyingPig-White { background-image: url(spritesmith-main-6.png); background-position: -742px -1105px; width: 105px; height: 105px; } -.Mount_Body_Fox-Desert { +.Mount_Body_FlyingPig-Zombie { background-image: url(spritesmith-main-6.png); background-position: -848px -1105px; width: 105px; height: 105px; } -.Mount_Body_Fox-Golden { +.Mount_Body_Fox-Base { background-image: url(spritesmith-main-6.png); background-position: -954px -1105px; width: 105px; height: 105px; } -.Mount_Body_Fox-Red { +.Mount_Body_Fox-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -1060px -1105px; width: 105px; height: 105px; } -.Mount_Body_Fox-Shade { +.Mount_Body_Fox-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -1166px -1105px; width: 105px; height: 105px; } -.Mount_Body_Fox-Skeleton { +.Mount_Body_Fox-Desert { background-image: url(spritesmith-main-6.png); background-position: -1272px 0px; width: 105px; height: 105px; } -.Mount_Body_Fox-Spooky { +.Mount_Body_Fox-Golden { background-image: url(spritesmith-main-6.png); background-position: -1272px -106px; width: 105px; height: 105px; } -.Mount_Body_Fox-White { +.Mount_Body_Fox-Peppermint { background-image: url(spritesmith-main-6.png); background-position: -530px -115px; width: 105px; height: 105px; } -.Mount_Body_Fox-Zombie { +.Mount_Body_Fox-Red { background-image: url(spritesmith-main-6.png); background-position: -1272px -318px; width: 105px; height: 105px; } +.Mount_Body_Fox-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Spooky { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-White { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Fox-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -1272px -848px; + width: 105px; + height: 105px; +} .Mount_Body_Frog-Base { background-image: url(spritesmith-main-6.png); background-position: -212px -239px; @@ -870,187 +900,187 @@ } .Mount_Body_Gryphon-Base { background-image: url(spritesmith-main-6.png); - background-position: -318px -1211px; + background-position: -848px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -424px -1211px; + background-position: -954px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -530px -1211px; + background-position: -1060px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Desert { background-image: url(spritesmith-main-6.png); - background-position: -636px -1211px; + background-position: -1166px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Golden { background-image: url(spritesmith-main-6.png); - background-position: -742px -1211px; + background-position: -1272px -1211px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Red { background-image: url(spritesmith-main-6.png); - background-position: -848px -1211px; + background-position: -1378px 0px; width: 105px; height: 105px; } .Mount_Body_Gryphon-RoyalPurple { background-image: url(spritesmith-main-6.png); - background-position: -954px -1211px; + background-position: -1378px -106px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1060px -1211px; + background-position: -1378px -212px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1166px -1211px; + background-position: -1378px -318px; width: 105px; height: 105px; } .Mount_Body_Gryphon-White { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1211px; + background-position: -1378px -424px; width: 105px; height: 105px; } .Mount_Body_Gryphon-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1378px 0px; + background-position: -1378px -530px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Base { background-image: url(spritesmith-main-6.png); - background-position: -1378px -106px; + background-position: -1378px -636px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1378px -212px; + background-position: -1378px -742px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1378px -318px; + background-position: -1378px -848px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1378px -424px; + background-position: -1378px -954px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1378px -530px; + background-position: -1378px -1060px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Red { background-image: url(spritesmith-main-6.png); - background-position: -1378px -636px; + background-position: -1378px -1166px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1378px -742px; + background-position: 0px -1317px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1378px -848px; + background-position: -106px -1317px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-White { background-image: url(spritesmith-main-6.png); - background-position: -1378px -954px; + background-position: -212px -1317px; width: 105px; height: 105px; } .Mount_Body_Hedgehog-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1378px -1060px; + background-position: -318px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Base { background-image: url(spritesmith-main-6.png); - background-position: -1378px -1166px; + background-position: -424px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: 0px -1317px; + background-position: -530px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -106px -1317px; + background-position: -636px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Desert { background-image: url(spritesmith-main-6.png); - background-position: -212px -1317px; + background-position: -742px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Golden { background-image: url(spritesmith-main-6.png); - background-position: -318px -1317px; + background-position: -848px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Red { background-image: url(spritesmith-main-6.png); - background-position: -424px -1317px; + background-position: -954px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Shade { background-image: url(spritesmith-main-6.png); - background-position: -530px -1317px; + background-position: -1060px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -636px -1317px; + background-position: -1166px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-White { background-image: url(spritesmith-main-6.png); - background-position: -742px -1317px; + background-position: -1272px -1317px; width: 105px; height: 105px; } .Mount_Body_Horse-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -848px -1317px; + background-position: -1378px -1317px; width: 105px; height: 105px; } @@ -1062,49 +1092,55 @@ } .Mount_Body_LionCub-Base { background-image: url(spritesmith-main-6.png); - background-position: -1060px -1317px; + background-position: -1484px -106px; width: 105px; height: 105px; } .Mount_Body_LionCub-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1166px -1317px; + background-position: -1484px -212px; width: 105px; height: 105px; } .Mount_Body_LionCub-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1317px; + background-position: -1484px -318px; width: 105px; height: 105px; } .Mount_Body_LionCub-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1378px -1317px; + background-position: -1484px -424px; width: 105px; height: 105px; } .Mount_Body_LionCub-Ethereal { background-image: url(spritesmith-main-6.png); - background-position: -1484px 0px; + background-position: -1484px -530px; width: 105px; height: 105px; } .Mount_Body_LionCub-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1484px -106px; + background-position: -1484px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_LionCub-Peppermint { + background-image: url(spritesmith-main-6.png); + background-position: -1484px -742px; width: 105px; height: 105px; } .Mount_Body_LionCub-Red { background-image: url(spritesmith-main-6.png); - background-position: -1484px -212px; + background-position: -1484px -848px; width: 105px; height: 105px; } .Mount_Body_LionCub-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1484px -318px; + background-position: -1484px -954px; width: 105px; height: 105px; } @@ -1116,19 +1152,19 @@ } .Mount_Body_LionCub-Spooky { background-image: url(spritesmith-main-6.png); - background-position: -1484px -530px; + background-position: -1484px -1166px; width: 105px; height: 105px; } .Mount_Body_LionCub-White { background-image: url(spritesmith-main-6.png); - background-position: -1484px -636px; + background-position: -1484px -1272px; width: 105px; height: 105px; } .Mount_Body_LionCub-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1484px -742px; + background-position: 0px -1423px; width: 105px; height: 105px; } @@ -1146,457 +1182,421 @@ } .Mount_Body_Octopus-Base { background-image: url(spritesmith-main-6.png); - background-position: -1484px -1060px; + background-position: -318px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1484px -1166px; + background-position: -424px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1484px -1272px; + background-position: -530px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Desert { background-image: url(spritesmith-main-6.png); - background-position: 0px -1423px; + background-position: -636px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Golden { background-image: url(spritesmith-main-6.png); - background-position: -106px -1423px; + background-position: -742px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Red { background-image: url(spritesmith-main-6.png); - background-position: -212px -1423px; + background-position: -848px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Shade { background-image: url(spritesmith-main-6.png); - background-position: -318px -1423px; + background-position: -954px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -424px -1423px; + background-position: -1060px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-White { background-image: url(spritesmith-main-6.png); - background-position: -530px -1423px; + background-position: -1166px -1423px; width: 105px; height: 105px; } .Mount_Body_Octopus-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -636px -1423px; + background-position: -1272px -1423px; width: 105px; height: 105px; } .Mount_Body_Orca-Base { background-image: url(spritesmith-main-6.png); - background-position: -742px -1423px; + background-position: -1378px -1423px; width: 105px; height: 105px; } .Mount_Body_Owl-Base { background-image: url(spritesmith-main-6.png); - background-position: -848px -1423px; + background-position: -1484px -1423px; width: 105px; height: 105px; } .Mount_Body_Owl-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -954px -1423px; + background-position: -1590px 0px; width: 105px; height: 105px; } .Mount_Body_Owl-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1060px -1423px; + background-position: -1590px -106px; width: 105px; height: 105px; } .Mount_Body_Owl-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1166px -1423px; + background-position: -1590px -212px; width: 105px; height: 105px; } .Mount_Body_Owl-Golden { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1423px; + background-position: -1590px -318px; width: 105px; height: 105px; } .Mount_Body_Owl-Red { background-image: url(spritesmith-main-6.png); - background-position: -1378px -1423px; + background-position: -1590px -424px; width: 105px; height: 105px; } .Mount_Body_Owl-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1484px -1423px; + background-position: -1590px -530px; width: 105px; height: 105px; } .Mount_Body_Owl-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1590px 0px; + background-position: -1590px -636px; width: 105px; height: 105px; } .Mount_Body_Owl-White { background-image: url(spritesmith-main-6.png); - background-position: -1590px -106px; + background-position: -1590px -742px; width: 105px; height: 105px; } .Mount_Body_Owl-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1590px -212px; + background-position: -1590px -848px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Base { background-image: url(spritesmith-main-6.png); - background-position: -1590px -318px; + background-position: -1590px -954px; width: 105px; height: 105px; } .Mount_Body_PandaCub-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1590px -424px; + background-position: -1590px -1060px; width: 105px; height: 105px; } .Mount_Body_PandaCub-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1590px -530px; + background-position: -1590px -1166px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Desert { background-image: url(spritesmith-main-6.png); - background-position: -1590px -636px; + background-position: -1590px -1272px; width: 105px; height: 105px; } .Mount_Body_PandaCub-Golden { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Red { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -848px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -954px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -1060px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Spooky { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -1166px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-White { - background-image: url(spritesmith-main-6.png); - background-position: -1590px -1272px; - width: 105px; - height: 105px; -} -.Mount_Body_PandaCub-Zombie { background-image: url(spritesmith-main-6.png); background-position: -1590px -1378px; width: 105px; height: 105px; } -.Mount_Body_Parrot-Base { +.Mount_Body_PandaCub-Peppermint { background-image: url(spritesmith-main-6.png); background-position: 0px -1529px; width: 105px; height: 105px; } -.Mount_Body_Parrot-CottonCandyBlue { +.Mount_Body_PandaCub-Red { background-image: url(spritesmith-main-6.png); background-position: -106px -1529px; width: 105px; height: 105px; } -.Mount_Body_Parrot-CottonCandyPink { +.Mount_Body_PandaCub-Shade { background-image: url(spritesmith-main-6.png); background-position: -212px -1529px; width: 105px; height: 105px; } -.Mount_Body_Parrot-Desert { +.Mount_Body_PandaCub-Skeleton { background-image: url(spritesmith-main-6.png); background-position: -318px -1529px; width: 105px; height: 105px; } -.Mount_Body_Parrot-Golden { +.Mount_Body_PandaCub-Spooky { background-image: url(spritesmith-main-6.png); background-position: -424px -1529px; width: 105px; height: 105px; } -.Mount_Body_Parrot-Red { +.Mount_Body_PandaCub-White { background-image: url(spritesmith-main-6.png); background-position: -530px -1529px; width: 105px; height: 105px; } -.Mount_Body_Parrot-Shade { +.Mount_Body_PandaCub-Zombie { background-image: url(spritesmith-main-6.png); background-position: -636px -1529px; width: 105px; height: 105px; } -.Mount_Body_Parrot-Skeleton { +.Mount_Body_Parrot-Base { background-image: url(spritesmith-main-6.png); background-position: -742px -1529px; width: 105px; height: 105px; } -.Mount_Body_Parrot-White { +.Mount_Body_Parrot-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -848px -1529px; width: 105px; height: 105px; } -.Mount_Body_Parrot-Zombie { +.Mount_Body_Parrot-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -954px -1529px; width: 105px; height: 105px; } -.Mount_Body_Penguin-Base { +.Mount_Body_Parrot-Desert { background-image: url(spritesmith-main-6.png); background-position: -1060px -1529px; width: 105px; height: 105px; } -.Mount_Body_Penguin-CottonCandyBlue { +.Mount_Body_Parrot-Golden { background-image: url(spritesmith-main-6.png); background-position: -1166px -1529px; width: 105px; height: 105px; } -.Mount_Body_Penguin-CottonCandyPink { +.Mount_Body_Parrot-Red { background-image: url(spritesmith-main-6.png); background-position: -1272px -1529px; width: 105px; height: 105px; } -.Mount_Body_Penguin-Desert { +.Mount_Body_Parrot-Shade { background-image: url(spritesmith-main-6.png); background-position: -1378px -1529px; width: 105px; height: 105px; } -.Mount_Body_Penguin-Golden { +.Mount_Body_Parrot-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -954px -1317px; + background-position: -1484px 0px; width: 105px; height: 105px; } -.Mount_Body_Penguin-Red { +.Mount_Body_Parrot-White { background-image: url(spritesmith-main-6.png); background-position: -1272px -212px; width: 105px; height: 105px; } -.Mount_Body_Penguin-Shade { +.Mount_Body_Parrot-Zombie { background-image: url(spritesmith-main-6.png); background-position: -433px -469px; width: 105px; height: 105px; } -.Mount_Body_Penguin-Skeleton { +.Mount_Body_Penguin-Base { background-image: url(spritesmith-main-6.png); background-position: -327px -469px; width: 105px; height: 105px; } -.Mount_Body_Penguin-White { +.Mount_Body_Penguin-CottonCandyBlue { background-image: url(spritesmith-main-6.png); background-position: -221px -469px; width: 105px; height: 105px; } -.Mount_Body_Penguin-Zombie { +.Mount_Body_Penguin-CottonCandyPink { background-image: url(spritesmith-main-6.png); background-position: -530px -327px; width: 105px; height: 105px; } -.Mount_Body_Phoenix-Base { +.Mount_Body_Penguin-Desert { background-image: url(spritesmith-main-6.png); background-position: -530px -221px; width: 105px; height: 105px; } +.Mount_Body_Penguin-Golden { + background-image: url(spritesmith-main-6.png); + background-position: -212px -1423px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Red { + background-image: url(spritesmith-main-6.png); + background-position: -106px -1423px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Shade { + background-image: url(spritesmith-main-6.png); + background-position: -1484px -1060px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Skeleton { + background-image: url(spritesmith-main-6.png); + background-position: -742px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-White { + background-image: url(spritesmith-main-6.png); + background-position: -636px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Penguin-Zombie { + background-image: url(spritesmith-main-6.png); + background-position: -530px -1211px; + width: 105px; + height: 105px; +} +.Mount_Body_Phoenix-Base { + background-image: url(spritesmith-main-6.png); + background-position: -424px -1211px; + width: 105px; + height: 105px; +} .Mount_Body_Rat-Base { background-image: url(spritesmith-main-6.png); - background-position: -1484px -954px; + background-position: -318px -1211px; width: 105px; height: 105px; } .Mount_Body_Rat-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1484px -848px; + background-position: -212px -1211px; width: 105px; height: 105px; } .Mount_Body_Rat-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1484px -424px; + background-position: -106px -1211px; width: 105px; height: 105px; } .Mount_Body_Rat-Desert { background-image: url(spritesmith-main-6.png); - background-position: -212px -1211px; + background-position: 0px -1211px; width: 105px; height: 105px; } .Mount_Body_Rat-Golden { background-image: url(spritesmith-main-6.png); - background-position: -106px -1211px; + background-position: -1272px -1060px; width: 105px; height: 105px; } .Mount_Body_Rat-Red { background-image: url(spritesmith-main-6.png); - background-position: 0px -1211px; + background-position: -1272px -954px; width: 105px; height: 105px; } .Mount_Body_Rat-Shade { background-image: url(spritesmith-main-6.png); - background-position: -1272px -1060px; + background-position: -424px -893px; width: 105px; height: 105px; } .Mount_Body_Rat-Skeleton { background-image: url(spritesmith-main-6.png); - background-position: -1272px -954px; + background-position: -318px -893px; width: 105px; height: 105px; } .Mount_Body_Rat-White { background-image: url(spritesmith-main-6.png); - background-position: -1272px -848px; + background-position: -212px -893px; width: 105px; height: 105px; } .Mount_Body_Rat-Zombie { background-image: url(spritesmith-main-6.png); - background-position: -1272px -742px; + background-position: -106px -893px; width: 105px; height: 105px; } .Mount_Body_Rock-Base { background-image: url(spritesmith-main-6.png); - background-position: -1272px -636px; + background-position: 0px -893px; width: 105px; height: 105px; } .Mount_Body_Rock-CottonCandyBlue { background-image: url(spritesmith-main-6.png); - background-position: -1272px -530px; + background-position: -954px -742px; width: 105px; height: 105px; } .Mount_Body_Rock-CottonCandyPink { background-image: url(spritesmith-main-6.png); - background-position: -1272px -424px; + background-position: -954px -636px; width: 105px; height: 105px; } .Mount_Body_Rock-Desert { background-image: url(spritesmith-main-6.png); - background-position: -212px -893px; + background-position: -954px -530px; width: 105px; height: 105px; } .Mount_Body_Rock-Golden { background-image: url(spritesmith-main-6.png); - background-position: -106px -893px; + background-position: -954px -424px; width: 105px; height: 105px; } .Mount_Body_Rock-Red { - background-image: url(spritesmith-main-6.png); - background-position: 0px -893px; - width: 105px; - height: 105px; -} -.Mount_Body_Rock-Shade { - background-image: url(spritesmith-main-6.png); - background-position: -954px -742px; - width: 105px; - height: 105px; -} -.Mount_Body_Rock-Skeleton { - background-image: url(spritesmith-main-6.png); - background-position: -954px -636px; - width: 105px; - height: 105px; -} -.Mount_Body_Rock-White { - background-image: url(spritesmith-main-6.png); - background-position: -954px -530px; - width: 105px; - height: 105px; -} -.Mount_Body_Rock-Zombie { - background-image: url(spritesmith-main-6.png); - background-position: -954px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Base { background-image: url(spritesmith-main-6.png); background-position: -954px -318px; width: 105px; height: 105px; } -.Mount_Body_Rooster-CottonCandyBlue { - background-image: url(spritesmith-main-6.png); - background-position: -954px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-CottonCandyPink { - background-image: url(spritesmith-main-6.png); - background-position: -954px -106px; - width: 105px; - height: 105px; -} diff --git a/common/dist/sprites/spritesmith-main-6.png b/common/dist/sprites/spritesmith-main-6.png index c4b49d3c13..e0d6bf563a 100644 Binary files a/common/dist/sprites/spritesmith-main-6.png and b/common/dist/sprites/spritesmith-main-6.png differ diff --git a/common/dist/sprites/spritesmith-main-7.css b/common/dist/sprites/spritesmith-main-7.css index a293e37d05..962608e9e1 100644 --- a/common/dist/sprites/spritesmith-main-7.css +++ b/common/dist/sprites/spritesmith-main-7.css @@ -1,342 +1,384 @@ -.Mount_Body_Rooster-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -636px -795px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -848px -1113px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Red { - background-image: url(spritesmith-main-7.png); - background-position: -742px -795px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -848px -795px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -998px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-White { - background-image: url(spritesmith-main-7.png); - background-position: -998px -106px; - width: 105px; - height: 105px; -} -.Mount_Body_Rooster-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -998px -212px; - width: 105px; - height: 105px; -} -.Mount_Body_Seahorse-Base { - background-image: url(spritesmith-main-7.png); - background-position: -998px -318px; - width: 105px; - height: 105px; -} -.Mount_Body_Seahorse-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -998px -424px; - width: 105px; - height: 105px; -} -.Mount_Body_Seahorse-CottonCandyPink { +.Mount_Body_Rock-Shade { background-image: url(spritesmith-main-7.png); background-position: -998px -530px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Desert { +.Mount_Body_Rock-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -954px -1113px; + width: 105px; + height: 105px; +} +.Mount_Body_Rock-White { background-image: url(spritesmith-main-7.png); background-position: -998px -636px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Golden { +.Mount_Body_Rock-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -212px -1007px; + background-position: -998px -742px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Red { +.Mount_Body_Rooster-Base { background-image: url(spritesmith-main-7.png); - background-position: -318px -1007px; + background-position: 0px -901px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Shade { +.Mount_Body_Rooster-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -424px -1007px; + background-position: -106px -901px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Skeleton { +.Mount_Body_Rooster-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -530px -1007px; + background-position: -212px -901px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-White { +.Mount_Body_Rooster-Desert { background-image: url(spritesmith-main-7.png); - background-position: -636px -1007px; + background-position: -318px -901px; width: 105px; height: 105px; } -.Mount_Body_Seahorse-Zombie { +.Mount_Body_Rooster-Golden { background-image: url(spritesmith-main-7.png); - background-position: -742px -1007px; + background-position: -424px -901px; width: 105px; height: 105px; } -.Mount_Body_Sheep-Base { +.Mount_Body_Rooster-Red { background-image: url(spritesmith-main-7.png); - background-position: -848px -1007px; + background-position: -530px -901px; width: 105px; height: 105px; } -.Mount_Body_Sheep-CottonCandyBlue { +.Mount_Body_Rooster-Shade { background-image: url(spritesmith-main-7.png); - background-position: -954px -1007px; + background-position: -636px -901px; width: 105px; height: 105px; } -.Mount_Body_Sheep-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1060px -1007px; - width: 105px; - height: 105px; -} -.Mount_Body_Sheep-Desert { +.Mount_Body_Rooster-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1210px 0px; width: 105px; height: 105px; } -.Mount_Body_Sheep-Golden { +.Mount_Body_Rooster-White { background-image: url(spritesmith-main-7.png); background-position: -1210px -106px; width: 105px; height: 105px; } +.Mount_Body_Rooster-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -212px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Base { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -318px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -424px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -530px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -636px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -742px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Red { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -848px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -1210px -954px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: 0px -1113px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-White { + background-image: url(spritesmith-main-7.png); + background-position: -106px -1113px; + width: 105px; + height: 105px; +} +.Mount_Body_Seahorse-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1422px -1166px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Base { + background-image: url(spritesmith-main-7.png); + background-position: 0px -1325px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -106px -1325px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -212px -1325px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -318px -1325px; + width: 105px; + height: 105px; +} +.Mount_Body_Sheep-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -424px -1325px; + width: 105px; + height: 105px; +} .Mount_Body_Sheep-Red { background-image: url(spritesmith-main-7.png); - background-position: -1272px -1219px; + background-position: -530px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1422px 0px; + background-position: -636px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1422px -106px; + background-position: -742px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-White { background-image: url(spritesmith-main-7.png); - background-position: -1422px -212px; + background-position: -848px -1325px; width: 105px; height: 105px; } .Mount_Body_Sheep-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1422px -318px; + background-position: -954px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Base { background-image: url(spritesmith-main-7.png); - background-position: -1422px -424px; + background-position: -1060px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -1422px -530px; + background-position: -1166px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -1422px -636px; + background-position: -1272px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1422px -742px; + background-position: -1378px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1422px -848px; + background-position: -1484px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Red { background-image: url(spritesmith-main-7.png); - background-position: -1634px -848px; + background-position: -1590px -1537px; width: 105px; height: 105px; } .Mount_Body_Slime-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1634px -954px; + background-position: -1740px 0px; width: 105px; height: 105px; } .Mount_Body_Slime-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1634px -1060px; + background-position: -1740px -106px; width: 105px; height: 105px; } .Mount_Body_Slime-White { background-image: url(spritesmith-main-7.png); - background-position: -1634px -1166px; + background-position: -1740px -212px; width: 105px; height: 105px; } .Mount_Body_Slime-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1634px -1272px; + background-position: -892px 0px; width: 105px; height: 105px; } .Mount_Body_Snake-Base { background-image: url(spritesmith-main-7.png); - background-position: -1634px -1378px; + background-position: -892px -106px; width: 105px; height: 105px; } .Mount_Body_Snake-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: 0px -1537px; + background-position: -892px -212px; width: 105px; height: 105px; } .Mount_Body_Snake-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -106px -1537px; + background-position: -892px -318px; width: 105px; height: 105px; } .Mount_Body_Snake-Desert { background-image: url(spritesmith-main-7.png); - background-position: -212px -1537px; + background-position: -892px -424px; width: 105px; height: 105px; } .Mount_Body_Snake-Golden { background-image: url(spritesmith-main-7.png); - background-position: -318px -1537px; + background-position: -892px -530px; width: 105px; height: 105px; } .Mount_Body_Snake-Red { background-image: url(spritesmith-main-7.png); - background-position: -636px -680px; + background-position: -892px -636px; width: 105px; height: 105px; } .Mount_Body_Snake-Shade { background-image: url(spritesmith-main-7.png); - background-position: -742px -680px; + background-position: 0px -795px; width: 105px; height: 105px; } .Mount_Body_Snake-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -892px 0px; + background-position: -106px -795px; width: 105px; height: 105px; } .Mount_Body_Snake-White { background-image: url(spritesmith-main-7.png); - background-position: -892px -106px; + background-position: -212px -795px; width: 105px; height: 105px; } .Mount_Body_Snake-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -892px -212px; + background-position: -318px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-Base { background-image: url(spritesmith-main-7.png); - background-position: -892px -318px; + background-position: -424px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -892px -424px; + background-position: -530px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -892px -530px; + background-position: -636px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-Desert { background-image: url(spritesmith-main-7.png); - background-position: -892px -636px; + background-position: -742px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-Golden { background-image: url(spritesmith-main-7.png); - background-position: 0px -795px; + background-position: -848px -795px; width: 105px; height: 105px; } .Mount_Body_Spider-Red { background-image: url(spritesmith-main-7.png); - background-position: -106px -795px; + background-position: -998px 0px; width: 105px; height: 105px; } .Mount_Body_Spider-Shade { background-image: url(spritesmith-main-7.png); - background-position: -212px -795px; + background-position: -998px -106px; width: 105px; height: 105px; } .Mount_Body_Spider-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -318px -795px; + background-position: -998px -212px; width: 105px; height: 105px; } .Mount_Body_Spider-White { background-image: url(spritesmith-main-7.png); - background-position: -424px -795px; + background-position: -998px -318px; width: 105px; height: 105px; } .Mount_Body_Spider-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -530px -795px; + background-position: -998px -424px; width: 105px; height: 105px; } @@ -348,7 +390,7 @@ } .Mount_Body_TRex-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -408px -136px; + background-position: -408px -272px; width: 135px; height: 135px; } @@ -402,145 +444,151 @@ } .Mount_Body_TigerCub-Base { background-image: url(spritesmith-main-7.png); - background-position: -998px -742px; + background-position: -742px -901px; width: 105px; height: 105px; } .Mount_Body_TigerCub-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: 0px -901px; + background-position: -848px -901px; width: 105px; height: 105px; } .Mount_Body_TigerCub-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -106px -901px; + background-position: -954px -901px; width: 105px; height: 105px; } .Mount_Body_TigerCub-Desert { background-image: url(spritesmith-main-7.png); - background-position: -212px -901px; + background-position: -1104px 0px; width: 105px; height: 105px; } .Mount_Body_TigerCub-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -318px -901px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Red { - background-image: url(spritesmith-main-7.png); - background-position: -424px -901px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -530px -901px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -636px -901px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -742px -901px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-White { - background-image: url(spritesmith-main-7.png); - background-position: -848px -901px; - width: 105px; - height: 105px; -} -.Mount_Body_TigerCub-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -954px -901px; - width: 105px; - height: 105px; -} -.Mount_Body_Turkey-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1104px 0px; - width: 105px; - height: 105px; -} -.Mount_Body_Whale-Base { background-image: url(spritesmith-main-7.png); background-position: -1104px -106px; width: 105px; height: 105px; } -.Mount_Body_Whale-CottonCandyBlue { +.Mount_Body_TigerCub-Peppermint { background-image: url(spritesmith-main-7.png); background-position: -1104px -212px; width: 105px; height: 105px; } -.Mount_Body_Whale-CottonCandyPink { +.Mount_Body_TigerCub-Red { background-image: url(spritesmith-main-7.png); background-position: -1104px -318px; width: 105px; height: 105px; } -.Mount_Body_Whale-Desert { +.Mount_Body_TigerCub-Shade { background-image: url(spritesmith-main-7.png); background-position: -1104px -424px; width: 105px; height: 105px; } -.Mount_Body_Whale-Golden { +.Mount_Body_TigerCub-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1104px -530px; width: 105px; height: 105px; } -.Mount_Body_Whale-Red { +.Mount_Body_TigerCub-Spooky { background-image: url(spritesmith-main-7.png); background-position: -1104px -636px; width: 105px; height: 105px; } -.Mount_Body_Whale-Shade { +.Mount_Body_TigerCub-White { background-image: url(spritesmith-main-7.png); background-position: -1104px -742px; width: 105px; height: 105px; } -.Mount_Body_Whale-Skeleton { +.Mount_Body_TigerCub-Zombie { background-image: url(spritesmith-main-7.png); background-position: -1104px -848px; width: 105px; height: 105px; } -.Mount_Body_Whale-White { +.Mount_Body_Turkey-Base { background-image: url(spritesmith-main-7.png); background-position: 0px -1007px; width: 105px; height: 105px; } -.Mount_Body_Whale-Zombie { +.Mount_Body_Whale-Base { background-image: url(spritesmith-main-7.png); background-position: -106px -1007px; width: 105px; height: 105px; } +.Mount_Body_Whale-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -212px -1007px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -318px -1007px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -424px -1007px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -530px -1007px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Red { + background-image: url(spritesmith-main-7.png); + background-position: -636px -1007px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -742px -1007px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -848px -1007px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-White { + background-image: url(spritesmith-main-7.png); + background-position: -954px -1007px; + width: 105px; + height: 105px; +} +.Mount_Body_Whale-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1060px -1007px; + width: 105px; + height: 105px; +} .Mount_Body_Wolf-Base { background-image: url(spritesmith-main-7.png); - background-position: 0px 0px; + background-position: -408px -136px; width: 135px; height: 135px; } .Mount_Body_Wolf-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -408px -272px; + background-position: 0px 0px; width: 135px; height: 135px; } @@ -562,835 +610,781 @@ width: 135px; height: 135px; } -.Mount_Body_Wolf-Red { +.Mount_Body_Wolf-Peppermint { background-image: url(spritesmith-main-7.png); background-position: -408px -408px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Shade { +.Mount_Body_Wolf-Red { background-image: url(spritesmith-main-7.png); background-position: -544px 0px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Skeleton { +.Mount_Body_Wolf-Shade { background-image: url(spritesmith-main-7.png); background-position: -544px -136px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Spooky { +.Mount_Body_Wolf-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -544px -272px; width: 135px; height: 135px; } -.Mount_Body_Wolf-White { +.Mount_Body_Wolf-Spooky { background-image: url(spritesmith-main-7.png); background-position: -544px -408px; width: 135px; height: 135px; } -.Mount_Body_Wolf-Zombie { +.Mount_Body_Wolf-White { background-image: url(spritesmith-main-7.png); background-position: -136px 0px; width: 135px; height: 135px; } +.Mount_Body_Wolf-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -136px -544px; + width: 135px; + height: 135px; +} .Mount_Head_BearCub-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Polar { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1210px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: 0px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -106px -1113px; - width: 105px; - height: 105px; -} -.Mount_Head_BearCub-White { background-image: url(spritesmith-main-7.png); background-position: -212px -1113px; width: 105px; height: 105px; } -.Mount_Head_BearCub-Zombie { +.Mount_Head_BearCub-CottonCandyBlue { background-image: url(spritesmith-main-7.png); background-position: -318px -1113px; width: 105px; height: 105px; } -.Mount_Head_Bunny-Base { +.Mount_Head_BearCub-CottonCandyPink { background-image: url(spritesmith-main-7.png); background-position: -424px -1113px; width: 105px; height: 105px; } -.Mount_Head_Bunny-CottonCandyBlue { +.Mount_Head_BearCub-Desert { background-image: url(spritesmith-main-7.png); background-position: -530px -1113px; width: 105px; height: 105px; } -.Mount_Head_Bunny-CottonCandyPink { +.Mount_Head_BearCub-Golden { background-image: url(spritesmith-main-7.png); background-position: -636px -1113px; width: 105px; height: 105px; } -.Mount_Head_Bunny-Desert { +.Mount_Head_BearCub-Peppermint { background-image: url(spritesmith-main-7.png); background-position: -742px -1113px; width: 105px; height: 105px; } -.Mount_Head_Bunny-Golden { +.Mount_Head_BearCub-Polar { background-image: url(spritesmith-main-7.png); - background-position: -530px -680px; + background-position: -848px -1113px; width: 105px; height: 105px; } -.Mount_Head_Bunny-Red { +.Mount_Head_BearCub-Red { background-image: url(spritesmith-main-7.png); - background-position: -954px -1113px; + background-position: -742px -680px; width: 105px; height: 105px; } -.Mount_Head_Bunny-Shade { +.Mount_Head_BearCub-Shade { background-image: url(spritesmith-main-7.png); background-position: -1060px -1113px; width: 105px; height: 105px; } -.Mount_Head_Bunny-Skeleton { +.Mount_Head_BearCub-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1166px -1113px; width: 105px; height: 105px; } -.Mount_Head_Bunny-White { +.Mount_Head_BearCub-Spooky { background-image: url(spritesmith-main-7.png); background-position: -1316px 0px; width: 105px; height: 105px; } -.Mount_Head_Bunny-Zombie { +.Mount_Head_BearCub-White { background-image: url(spritesmith-main-7.png); background-position: -1316px -106px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Base { +.Mount_Head_BearCub-Zombie { background-image: url(spritesmith-main-7.png); background-position: -1316px -212px; width: 105px; height: 105px; } -.Mount_Head_Cactus-CottonCandyBlue { +.Mount_Head_Bunny-Base { background-image: url(spritesmith-main-7.png); background-position: -1316px -318px; width: 105px; height: 105px; } -.Mount_Head_Cactus-CottonCandyPink { +.Mount_Head_Bunny-CottonCandyBlue { background-image: url(spritesmith-main-7.png); background-position: -1316px -424px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Desert { +.Mount_Head_Bunny-CottonCandyPink { background-image: url(spritesmith-main-7.png); background-position: -1316px -530px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Golden { +.Mount_Head_Bunny-Desert { background-image: url(spritesmith-main-7.png); background-position: -1316px -636px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Red { +.Mount_Head_Bunny-Golden { background-image: url(spritesmith-main-7.png); background-position: -1316px -742px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Shade { +.Mount_Head_Bunny-Red { background-image: url(spritesmith-main-7.png); background-position: -1316px -848px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Skeleton { +.Mount_Head_Bunny-Shade { background-image: url(spritesmith-main-7.png); background-position: -1316px -954px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Spooky { +.Mount_Head_Bunny-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1316px -1060px; width: 105px; height: 105px; } -.Mount_Head_Cactus-White { +.Mount_Head_Bunny-White { background-image: url(spritesmith-main-7.png); background-position: 0px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cactus-Zombie { +.Mount_Head_Bunny-Zombie { background-image: url(spritesmith-main-7.png); background-position: -106px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Base { +.Mount_Head_Cactus-Base { background-image: url(spritesmith-main-7.png); background-position: -212px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-CottonCandyBlue { +.Mount_Head_Cactus-CottonCandyBlue { background-image: url(spritesmith-main-7.png); background-position: -318px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-CottonCandyPink { +.Mount_Head_Cactus-CottonCandyPink { background-image: url(spritesmith-main-7.png); background-position: -424px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Desert { +.Mount_Head_Cactus-Desert { background-image: url(spritesmith-main-7.png); background-position: -530px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Golden { +.Mount_Head_Cactus-Golden { background-image: url(spritesmith-main-7.png); background-position: -636px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Red { +.Mount_Head_Cactus-Peppermint { background-image: url(spritesmith-main-7.png); background-position: -742px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Shade { +.Mount_Head_Cactus-Red { background-image: url(spritesmith-main-7.png); background-position: -848px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Skeleton { +.Mount_Head_Cactus-Shade { background-image: url(spritesmith-main-7.png); background-position: -954px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-White { +.Mount_Head_Cactus-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -1060px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cheetah-Zombie { +.Mount_Head_Cactus-Spooky { background-image: url(spritesmith-main-7.png); background-position: -1166px -1219px; width: 105px; height: 105px; } -.Mount_Head_Cuttlefish-Base { +.Mount_Head_Cactus-White { background-image: url(spritesmith-main-7.png); - background-position: -242px -544px; + background-position: -1272px -1219px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-CottonCandyBlue { +.Mount_Head_Cactus-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -348px -544px; + background-position: -1422px 0px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-CottonCandyPink { +.Mount_Head_Cheetah-Base { background-image: url(spritesmith-main-7.png); - background-position: -454px -544px; + background-position: -1422px -106px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Desert { +.Mount_Head_Cheetah-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -560px -544px; + background-position: -1422px -212px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Golden { +.Mount_Head_Cheetah-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -680px 0px; + background-position: -1422px -318px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Red { +.Mount_Head_Cheetah-Desert { background-image: url(spritesmith-main-7.png); - background-position: -680px -115px; + background-position: -1422px -424px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Shade { +.Mount_Head_Cheetah-Golden { background-image: url(spritesmith-main-7.png); - background-position: -680px -230px; + background-position: -1422px -530px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Skeleton { +.Mount_Head_Cheetah-Red { background-image: url(spritesmith-main-7.png); - background-position: -680px -345px; + background-position: -1422px -636px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-White { +.Mount_Head_Cheetah-Shade { background-image: url(spritesmith-main-7.png); - background-position: -680px -460px; + background-position: -1422px -742px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Cuttlefish-Zombie { +.Mount_Head_Cheetah-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -786px 0px; + background-position: -1422px -848px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Deer-Base { +.Mount_Head_Cheetah-White { background-image: url(spritesmith-main-7.png); background-position: -1422px -954px; width: 105px; height: 105px; } -.Mount_Head_Deer-CottonCandyBlue { +.Mount_Head_Cheetah-Zombie { background-image: url(spritesmith-main-7.png); background-position: -1422px -1060px; width: 105px; height: 105px; } -.Mount_Head_Deer-CottonCandyPink { +.Mount_Head_Cuttlefish-Base { background-image: url(spritesmith-main-7.png); - background-position: -1422px -1166px; + background-position: -378px -544px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Deer-Desert { +.Mount_Head_Cuttlefish-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: 0px -1325px; + background-position: -484px -544px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Deer-Golden { +.Mount_Head_Cuttlefish-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -106px -1325px; + background-position: -680px 0px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Deer-Red { +.Mount_Head_Cuttlefish-Desert { background-image: url(spritesmith-main-7.png); - background-position: -212px -1325px; + background-position: -680px -115px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Deer-Shade { +.Mount_Head_Cuttlefish-Golden { background-image: url(spritesmith-main-7.png); - background-position: -318px -1325px; + background-position: -680px -230px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Deer-Skeleton { +.Mount_Head_Cuttlefish-Red { background-image: url(spritesmith-main-7.png); - background-position: -424px -1325px; + background-position: -680px -345px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Deer-White { +.Mount_Head_Cuttlefish-Shade { background-image: url(spritesmith-main-7.png); - background-position: -530px -1325px; + background-position: -680px -460px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Deer-Zombie { +.Mount_Head_Cuttlefish-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -636px -1325px; + background-position: -786px 0px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Dragon-Base { - background-image: url(spritesmith-main-7.png); - background-position: -742px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -848px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -954px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1060px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1166px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1272px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1378px -1325px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1528px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-White { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Dragon-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-White { - background-image: url(spritesmith-main-7.png); - background-position: -1528px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Egg-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: 0px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Base { - background-image: url(spritesmith-main-7.png); - background-position: -106px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -212px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -318px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -424px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -530px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Red { - background-image: url(spritesmith-main-7.png); - background-position: -636px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -742px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -848px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -954px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-White { - background-image: url(spritesmith-main-7.png); - background-position: -1060px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_FlyingPig-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1166px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Base { - background-image: url(spritesmith-main-7.png); - background-position: -1272px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-CottonCandyBlue { - background-image: url(spritesmith-main-7.png); - background-position: -1378px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-CottonCandyPink { - background-image: url(spritesmith-main-7.png); - background-position: -1484px -1431px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Desert { - background-image: url(spritesmith-main-7.png); - background-position: -1634px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Golden { - background-image: url(spritesmith-main-7.png); - background-position: -1634px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Red { - background-image: url(spritesmith-main-7.png); - background-position: -1634px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Shade { - background-image: url(spritesmith-main-7.png); - background-position: -1634px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Skeleton { - background-image: url(spritesmith-main-7.png); - background-position: -1634px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Spooky { - background-image: url(spritesmith-main-7.png); - background-position: -1634px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-White { - background-image: url(spritesmith-main-7.png); - background-position: -1634px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Fox-Zombie { - background-image: url(spritesmith-main-7.png); - background-position: -1634px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Frog-Base { +.Mount_Head_Cuttlefish-White { background-image: url(spritesmith-main-7.png); background-position: -786px -115px; width: 105px; height: 114px; } -.Mount_Head_Frog-CottonCandyBlue { +.Mount_Head_Cuttlefish-Zombie { background-image: url(spritesmith-main-7.png); background-position: -786px -230px; width: 105px; height: 114px; } -.Mount_Head_Frog-CottonCandyPink { +.Mount_Head_Deer-Base { background-image: url(spritesmith-main-7.png); - background-position: -786px -345px; + background-position: -954px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Desert { +.Mount_Head_Deer-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -786px -460px; + background-position: -1060px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Golden { +.Mount_Head_Deer-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: 0px -680px; + background-position: -1166px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Red { +.Mount_Head_Deer-Desert { background-image: url(spritesmith-main-7.png); - background-position: -106px -680px; + background-position: -1272px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Shade { +.Mount_Head_Deer-Golden { background-image: url(spritesmith-main-7.png); - background-position: -212px -680px; + background-position: -1378px -1325px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Skeleton { +.Mount_Head_Deer-Red { background-image: url(spritesmith-main-7.png); - background-position: -318px -680px; + background-position: -1528px 0px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-White { +.Mount_Head_Deer-Shade { background-image: url(spritesmith-main-7.png); - background-position: -424px -680px; + background-position: -1528px -106px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Frog-Zombie { +.Mount_Head_Deer-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -136px -544px; + background-position: -1528px -212px; width: 105px; - height: 114px; + height: 105px; } -.Mount_Head_Gryphon-Base { +.Mount_Head_Deer-White { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Deer-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Base { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Peppermint { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Red { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -1528px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: 0px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Spooky { + background-image: url(spritesmith-main-7.png); + background-position: -106px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-White { + background-image: url(spritesmith-main-7.png); + background-position: -212px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Dragon-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -318px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Base { + background-image: url(spritesmith-main-7.png); + background-position: -424px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -530px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -636px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -742px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -848px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Red { + background-image: url(spritesmith-main-7.png); + background-position: -954px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -1060px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -1166px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-White { + background-image: url(spritesmith-main-7.png); + background-position: -1272px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_Egg-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1378px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Base { + background-image: url(spritesmith-main-7.png); + background-position: -1484px -1431px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -1634px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Desert { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Peppermint { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Red { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Shade { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Skeleton { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Spooky { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-White { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_FlyingPig-Zombie { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Base { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-CottonCandyBlue { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-CottonCandyPink { + background-image: url(spritesmith-main-7.png); + background-position: -1634px -1378px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Desert { + background-image: url(spritesmith-main-7.png); + background-position: 0px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Golden { + background-image: url(spritesmith-main-7.png); + background-position: -106px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Peppermint { + background-image: url(spritesmith-main-7.png); + background-position: -212px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Red { + background-image: url(spritesmith-main-7.png); + background-position: -318px -1537px; + width: 105px; + height: 105px; +} +.Mount_Head_Fox-Shade { background-image: url(spritesmith-main-7.png); background-position: -424px -1537px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-CottonCandyBlue { +.Mount_Head_Fox-Skeleton { background-image: url(spritesmith-main-7.png); background-position: -530px -1537px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-CottonCandyPink { +.Mount_Head_Fox-Spooky { background-image: url(spritesmith-main-7.png); background-position: -636px -1537px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-Desert { +.Mount_Head_Fox-White { background-image: url(spritesmith-main-7.png); background-position: -742px -1537px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-Golden { +.Mount_Head_Fox-Zombie { background-image: url(spritesmith-main-7.png); background-position: -848px -1537px; width: 105px; height: 105px; } -.Mount_Head_Gryphon-Red { +.Mount_Head_Frog-Base { background-image: url(spritesmith-main-7.png); - background-position: -954px -1537px; + background-position: -786px -345px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Gryphon-RoyalPurple { +.Mount_Head_Frog-CottonCandyBlue { background-image: url(spritesmith-main-7.png); - background-position: -1060px -1537px; + background-position: -786px -460px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Gryphon-Shade { +.Mount_Head_Frog-CottonCandyPink { background-image: url(spritesmith-main-7.png); - background-position: -1166px -1537px; + background-position: 0px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Gryphon-Skeleton { +.Mount_Head_Frog-Desert { background-image: url(spritesmith-main-7.png); - background-position: -1272px -1537px; + background-position: -106px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Gryphon-White { +.Mount_Head_Frog-Golden { background-image: url(spritesmith-main-7.png); - background-position: -1378px -1537px; + background-position: -212px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Gryphon-Zombie { +.Mount_Head_Frog-Red { background-image: url(spritesmith-main-7.png); - background-position: -1484px -1537px; + background-position: -318px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Hedgehog-Base { +.Mount_Head_Frog-Shade { background-image: url(spritesmith-main-7.png); - background-position: -1590px -1537px; + background-position: -424px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Hedgehog-CottonCandyBlue { +.Mount_Head_Frog-Skeleton { background-image: url(spritesmith-main-7.png); - background-position: -1740px 0px; + background-position: -530px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Hedgehog-CottonCandyPink { +.Mount_Head_Frog-White { background-image: url(spritesmith-main-7.png); - background-position: -1740px -106px; + background-position: -636px -680px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Hedgehog-Desert { +.Mount_Head_Frog-Zombie { background-image: url(spritesmith-main-7.png); - background-position: -1740px -212px; + background-position: -272px -544px; width: 105px; - height: 105px; + height: 114px; } -.Mount_Head_Hedgehog-Golden { +.Mount_Head_Gryphon-Base { background-image: url(spritesmith-main-7.png); background-position: -1740px -318px; width: 105px; height: 105px; } -.Mount_Head_Hedgehog-Red { +.Mount_Head_Gryphon-CottonCandyBlue { background-image: url(spritesmith-main-7.png); background-position: -1740px -424px; width: 105px; diff --git a/common/dist/sprites/spritesmith-main-7.png b/common/dist/sprites/spritesmith-main-7.png index 27ad7891dc..5957f4c8aa 100644 Binary files a/common/dist/sprites/spritesmith-main-7.png and b/common/dist/sprites/spritesmith-main-7.png differ diff --git a/common/dist/sprites/spritesmith-main-8.css b/common/dist/sprites/spritesmith-main-8.css index 6bdca808c9..373d862b7f 100644 --- a/common/dist/sprites/spritesmith-main-8.css +++ b/common/dist/sprites/spritesmith-main-8.css @@ -1,975 +1,1077 @@ -.Mount_Head_Hedgehog-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1210px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-White { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1528px; - width: 105px; - height: 105px; -} -.Mount_Head_Hedgehog-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -680px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Base { - background-image: url(spritesmith-main-8.png); - background-position: -680px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-White { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_Horse-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1422px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_JackOLantern-Base { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1528px; - width: 90px; - height: 105px; -} -.Mount_Head_LionCub-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -1060px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -1166px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Ethereal { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -1272px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1528px -1378px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Red { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1528px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -106px -1528px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -242px -544px; - width: 105px; - height: 110px; -} -.Mount_Head_LionCub-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -318px -1528px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-White { - background-image: url(spritesmith-main-8.png); - background-position: -563px -544px; - width: 105px; - height: 105px; -} -.Mount_Head_LionCub-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -680px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Mammoth-Base { - background-image: url(spritesmith-main-8.png); - background-position: -136px -544px; - width: 105px; - height: 123px; -} -.Mount_Head_MantisShrimp-Base { - background-image: url(spritesmith-main-8.png); - background-position: -348px -544px; - width: 108px; - height: 105px; -} -.Mount_Head_Octopus-Base { - background-image: url(spritesmith-main-8.png); - background-position: -680px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-CottonCandyBlue { +.Mount_Head_Gryphon-CottonCandyPink { background-image: url(spritesmith-main-8.png); background-position: -680px -424px; width: 105px; height: 105px; } -.Mount_Head_Octopus-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -680px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Desert { - background-image: url(spritesmith-main-8.png); - background-position: 0px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -106px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Red { - background-image: url(spritesmith-main-8.png); - background-position: -212px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -318px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -424px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-White { - background-image: url(spritesmith-main-8.png); - background-position: -530px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Octopus-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -636px -680px; - width: 105px; - height: 105px; -} -.Mount_Head_Orca-Base { - background-image: url(spritesmith-main-8.png); - background-position: -786px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Base { - background-image: url(spritesmith-main-8.png); - background-position: -786px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -786px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -786px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -786px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -786px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Red { - background-image: url(spritesmith-main-8.png); - background-position: -786px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Shade { - background-image: url(spritesmith-main-8.png); - background-position: 0px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -106px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-White { - background-image: url(spritesmith-main-8.png); - background-position: -212px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_Owl-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -318px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Base { - background-image: url(spritesmith-main-8.png); - background-position: -424px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -530px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -636px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -742px -786px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -892px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Red { - background-image: url(spritesmith-main-8.png); - background-position: -892px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -892px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -892px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -892px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-White { - background-image: url(spritesmith-main-8.png); - background-position: -892px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_PandaCub-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -892px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Base { - background-image: url(spritesmith-main-8.png); - background-position: -892px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: 0px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -106px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -212px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -318px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Red { - background-image: url(spritesmith-main-8.png); - background-position: -424px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -530px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -636px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-White { - background-image: url(spritesmith-main-8.png); - background-position: -742px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Parrot-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -848px -892px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Base { - background-image: url(spritesmith-main-8.png); - background-position: -998px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -998px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -998px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -998px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -998px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Red { - background-image: url(spritesmith-main-8.png); - background-position: -998px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -998px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -998px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-White { - background-image: url(spritesmith-main-8.png); - background-position: -998px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Penguin-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: 0px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Phoenix-Base { - background-image: url(spritesmith-main-8.png); - background-position: -106px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Base { - background-image: url(spritesmith-main-8.png); - background-position: -212px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -318px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -424px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -530px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -636px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Red { - background-image: url(spritesmith-main-8.png); - background-position: -742px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -848px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -954px -998px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-White { - background-image: url(spritesmith-main-8.png); - background-position: -1104px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Rat-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1104px -954px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-White { - background-image: url(spritesmith-main-8.png); - background-position: 0px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rock-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -106px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Base { - background-image: url(spritesmith-main-8.png); - background-position: -212px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -318px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -424px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -530px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -636px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Red { - background-image: url(spritesmith-main-8.png); - background-position: -742px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -848px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -954px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-White { - background-image: url(spritesmith-main-8.png); - background-position: -1060px -1104px; - width: 105px; - height: 105px; -} -.Mount_Head_Rooster-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1210px 0px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -106px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -212px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -318px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -424px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -530px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -636px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -742px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1210px -848px; - width: 105px; - height: 105px; -} -.Mount_Head_Seahorse-White { +.Mount_Head_Gryphon-Desert { background-image: url(spritesmith-main-8.png); background-position: -1210px -954px; width: 105px; height: 105px; } -.Mount_Head_Seahorse-Zombie { +.Mount_Head_Gryphon-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -786px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Red { + background-image: url(spritesmith-main-8.png); + background-position: -786px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-RoyalPurple { + background-image: url(spritesmith-main-8.png); + background-position: -786px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-White { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Gryphon-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1166px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1272px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1378px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1528px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1378px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1484px -1528px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-White { + background-image: url(spritesmith-main-8.png); + background-position: -1634px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Hedgehog-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -680px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-White { + background-image: url(spritesmith-main-8.png); + background-position: -680px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Horse-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -680px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_JackOLantern-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1634px -954px; + width: 90px; + height: 105px; +} +.Mount_Head_LionCub-Base { + background-image: url(spritesmith-main-8.png); + background-position: -680px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: 0px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -106px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -212px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Ethereal { + background-image: url(spritesmith-main-8.png); + background-position: -318px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -424px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -530px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Red { + background-image: url(spritesmith-main-8.png); + background-position: -636px -680px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -786px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -378px -544px; + width: 105px; + height: 110px; +} +.Mount_Head_LionCub-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -786px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-White { + background-image: url(spritesmith-main-8.png); + background-position: -786px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_LionCub-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -786px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Mammoth-Base { + background-image: url(spritesmith-main-8.png); + background-position: -272px -544px; + width: 105px; + height: 123px; +} +.Mount_Head_MantisShrimp-Base { + background-image: url(spritesmith-main-8.png); + background-position: -484px -544px; + width: 108px; + height: 105px; +} +.Mount_Head_Octopus-Base { + background-image: url(spritesmith-main-8.png); + background-position: 0px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -106px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -212px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -318px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -424px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Red { + background-image: url(spritesmith-main-8.png); + background-position: -530px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -636px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -742px -786px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-White { + background-image: url(spritesmith-main-8.png); + background-position: -892px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Octopus-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -892px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Orca-Base { + background-image: url(spritesmith-main-8.png); + background-position: -892px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Base { + background-image: url(spritesmith-main-8.png); + background-position: -892px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -892px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -892px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -892px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -892px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Red { + background-image: url(spritesmith-main-8.png); + background-position: 0px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -106px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -212px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-White { + background-image: url(spritesmith-main-8.png); + background-position: -318px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_Owl-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -424px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Base { + background-image: url(spritesmith-main-8.png); + background-position: -530px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -636px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -742px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -848px -892px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -998px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -998px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Red { + background-image: url(spritesmith-main-8.png); + background-position: -998px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -998px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -998px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Spooky { + background-image: url(spritesmith-main-8.png); + background-position: -998px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-White { + background-image: url(spritesmith-main-8.png); + background-position: -998px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_PandaCub-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -998px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Base { + background-image: url(spritesmith-main-8.png); + background-position: -998px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: 0px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -106px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -212px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -318px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Red { + background-image: url(spritesmith-main-8.png); + background-position: -424px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -530px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -636px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-White { + background-image: url(spritesmith-main-8.png); + background-position: -742px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Parrot-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -848px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Base { + background-image: url(spritesmith-main-8.png); + background-position: -954px -998px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1104px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-White { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Penguin-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Phoenix-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1104px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Base { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Red { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-White { + background-image: url(spritesmith-main-8.png); + background-position: -848px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rat-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -954px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1060px -1104px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1210px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -106px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -212px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-White { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Rock-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1210px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-Base { + background-image: url(spritesmith-main-8.png); + background-position: -680px 0px; + width: 105px; + height: 105px; +} +.Mount_Head_Rooster-CottonCandyBlue { background-image: url(spritesmith-main-8.png); background-position: -1210px -1060px; width: 105px; height: 105px; } -.Mount_Head_Sheep-Base { +.Mount_Head_Rooster-CottonCandyPink { background-image: url(spritesmith-main-8.png); - background-position: -457px -544px; + background-position: 0px -1210px; width: 105px; height: 105px; } -.Mount_Head_Sheep-CottonCandyBlue { +.Mount_Head_Rooster-Desert { background-image: url(spritesmith-main-8.png); background-position: -106px -1210px; width: 105px; height: 105px; } -.Mount_Head_Sheep-CottonCandyPink { +.Mount_Head_Rooster-Golden { background-image: url(spritesmith-main-8.png); background-position: -212px -1210px; width: 105px; height: 105px; } -.Mount_Head_Sheep-Desert { +.Mount_Head_Rooster-Red { background-image: url(spritesmith-main-8.png); background-position: -318px -1210px; width: 105px; height: 105px; } -.Mount_Head_Sheep-Golden { +.Mount_Head_Rooster-Shade { background-image: url(spritesmith-main-8.png); background-position: -424px -1210px; width: 105px; height: 105px; } -.Mount_Head_Sheep-Red { +.Mount_Head_Rooster-Skeleton { background-image: url(spritesmith-main-8.png); background-position: -530px -1210px; width: 105px; height: 105px; } -.Mount_Head_Sheep-Shade { +.Mount_Head_Rooster-White { background-image: url(spritesmith-main-8.png); background-position: -636px -1210px; width: 105px; height: 105px; } -.Mount_Head_Sheep-Skeleton { +.Mount_Head_Rooster-Zombie { background-image: url(spritesmith-main-8.png); background-position: -742px -1210px; width: 105px; height: 105px; } -.Mount_Head_Sheep-White { +.Mount_Head_Seahorse-Base { background-image: url(spritesmith-main-8.png); background-position: -848px -1210px; width: 105px; height: 105px; } -.Mount_Head_Sheep-Zombie { +.Mount_Head_Seahorse-CottonCandyBlue { background-image: url(spritesmith-main-8.png); background-position: -954px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-Base { +.Mount_Head_Seahorse-CottonCandyPink { background-image: url(spritesmith-main-8.png); background-position: -1060px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-CottonCandyBlue { +.Mount_Head_Seahorse-Desert { background-image: url(spritesmith-main-8.png); background-position: -1166px -1210px; width: 105px; height: 105px; } -.Mount_Head_Slime-CottonCandyPink { +.Mount_Head_Seahorse-Golden { background-image: url(spritesmith-main-8.png); background-position: -1316px 0px; width: 105px; height: 105px; } -.Mount_Head_Slime-Desert { +.Mount_Head_Seahorse-Red { background-image: url(spritesmith-main-8.png); background-position: -1316px -106px; width: 105px; height: 105px; } -.Mount_Head_Slime-Golden { +.Mount_Head_Seahorse-Shade { background-image: url(spritesmith-main-8.png); background-position: -1316px -212px; width: 105px; height: 105px; } -.Mount_Head_Slime-Red { +.Mount_Head_Seahorse-Skeleton { background-image: url(spritesmith-main-8.png); background-position: -1316px -318px; width: 105px; height: 105px; } -.Mount_Head_Slime-Shade { +.Mount_Head_Seahorse-White { background-image: url(spritesmith-main-8.png); background-position: -1316px -424px; width: 105px; height: 105px; } -.Mount_Head_Slime-Skeleton { +.Mount_Head_Seahorse-Zombie { background-image: url(spritesmith-main-8.png); background-position: -1316px -530px; width: 105px; height: 105px; } -.Mount_Head_Slime-White { +.Mount_Head_Sheep-Base { background-image: url(spritesmith-main-8.png); background-position: -1316px -636px; width: 105px; height: 105px; } -.Mount_Head_Slime-Zombie { +.Mount_Head_Sheep-CottonCandyBlue { background-image: url(spritesmith-main-8.png); background-position: -1316px -742px; width: 105px; height: 105px; } -.Mount_Head_Snake-Base { +.Mount_Head_Sheep-CottonCandyPink { background-image: url(spritesmith-main-8.png); background-position: -1316px -848px; width: 105px; height: 105px; } -.Mount_Head_Snake-CottonCandyBlue { +.Mount_Head_Sheep-Desert { background-image: url(spritesmith-main-8.png); background-position: -1316px -954px; width: 105px; height: 105px; } -.Mount_Head_Snake-CottonCandyPink { +.Mount_Head_Sheep-Golden { background-image: url(spritesmith-main-8.png); background-position: -1316px -1060px; width: 105px; height: 105px; } -.Mount_Head_Snake-Desert { +.Mount_Head_Sheep-Red { background-image: url(spritesmith-main-8.png); background-position: -1316px -1166px; width: 105px; height: 105px; } -.Mount_Head_Snake-Golden { +.Mount_Head_Sheep-Shade { background-image: url(spritesmith-main-8.png); background-position: 0px -1316px; width: 105px; height: 105px; } -.Mount_Head_Snake-Red { +.Mount_Head_Sheep-Skeleton { background-image: url(spritesmith-main-8.png); background-position: -106px -1316px; width: 105px; height: 105px; } -.Mount_Head_Snake-Shade { +.Mount_Head_Sheep-White { background-image: url(spritesmith-main-8.png); background-position: -212px -1316px; width: 105px; height: 105px; } -.Mount_Head_Snake-Skeleton { +.Mount_Head_Sheep-Zombie { background-image: url(spritesmith-main-8.png); background-position: -318px -1316px; width: 105px; height: 105px; } -.Mount_Head_Snake-White { +.Mount_Head_Slime-Base { background-image: url(spritesmith-main-8.png); background-position: -424px -1316px; width: 105px; height: 105px; } -.Mount_Head_Snake-Zombie { +.Mount_Head_Slime-CottonCandyBlue { background-image: url(spritesmith-main-8.png); background-position: -530px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-Base { +.Mount_Head_Slime-CottonCandyPink { background-image: url(spritesmith-main-8.png); background-position: -636px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-CottonCandyBlue { +.Mount_Head_Slime-Desert { background-image: url(spritesmith-main-8.png); background-position: -742px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-CottonCandyPink { +.Mount_Head_Slime-Golden { background-image: url(spritesmith-main-8.png); background-position: -848px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-Desert { +.Mount_Head_Slime-Red { background-image: url(spritesmith-main-8.png); background-position: -954px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-Golden { +.Mount_Head_Slime-Shade { background-image: url(spritesmith-main-8.png); background-position: -1060px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-Red { +.Mount_Head_Slime-Skeleton { background-image: url(spritesmith-main-8.png); background-position: -1166px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-Shade { +.Mount_Head_Slime-White { background-image: url(spritesmith-main-8.png); background-position: -1272px -1316px; width: 105px; height: 105px; } -.Mount_Head_Spider-Skeleton { +.Mount_Head_Slime-Zombie { background-image: url(spritesmith-main-8.png); background-position: -1422px 0px; width: 105px; height: 105px; } -.Mount_Head_Spider-White { +.Mount_Head_Snake-Base { background-image: url(spritesmith-main-8.png); background-position: -1422px -106px; width: 105px; height: 105px; } -.Mount_Head_Spider-Zombie { +.Mount_Head_Snake-CottonCandyBlue { background-image: url(spritesmith-main-8.png); background-position: -1422px -212px; width: 105px; height: 105px; } +.Mount_Head_Snake-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -318px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -424px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -530px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Red { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -636px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -742px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-White { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -954px; + width: 105px; + height: 105px; +} +.Mount_Head_Snake-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -1060px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Base { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -1166px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyBlue { + background-image: url(spritesmith-main-8.png); + background-position: -1422px -1272px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-CottonCandyPink { + background-image: url(spritesmith-main-8.png); + background-position: 0px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Desert { + background-image: url(spritesmith-main-8.png); + background-position: -106px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Golden { + background-image: url(spritesmith-main-8.png); + background-position: -212px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Red { + background-image: url(spritesmith-main-8.png); + background-position: -318px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Shade { + background-image: url(spritesmith-main-8.png); + background-position: -424px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Skeleton { + background-image: url(spritesmith-main-8.png); + background-position: -530px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-White { + background-image: url(spritesmith-main-8.png); + background-position: -636px -1422px; + width: 105px; + height: 105px; +} +.Mount_Head_Spider-Zombie { + background-image: url(spritesmith-main-8.png); + background-position: -742px -1422px; + width: 105px; + height: 105px; +} .Mount_Head_TRex-Base { background-image: url(spritesmith-main-8.png); background-position: -272px -136px; @@ -1014,13 +1116,13 @@ } .Mount_Head_TRex-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: 0px 0px; + background-position: 0px -408px; width: 135px; height: 135px; } .Mount_Head_TRex-White { background-image: url(spritesmith-main-8.png); - background-position: -136px -408px; + background-position: 0px 0px; width: 135px; height: 135px; } @@ -1032,133 +1134,139 @@ } .Mount_Head_TigerCub-Base { background-image: url(spritesmith-main-8.png); - background-position: 0px -1422px; + background-position: -1528px -424px; width: 105px; height: 105px; } .Mount_Head_TigerCub-CottonCandyBlue { background-image: url(spritesmith-main-8.png); - background-position: -106px -1422px; + background-position: -1528px -530px; width: 105px; height: 105px; } .Mount_Head_TigerCub-CottonCandyPink { background-image: url(spritesmith-main-8.png); - background-position: -212px -1422px; + background-position: -1528px -636px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Desert { background-image: url(spritesmith-main-8.png); - background-position: -318px -1422px; + background-position: -1528px -742px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Golden { background-image: url(spritesmith-main-8.png); - background-position: -424px -1422px; + background-position: -1528px -848px; + width: 105px; + height: 105px; +} +.Mount_Head_TigerCub-Peppermint { + background-image: url(spritesmith-main-8.png); + background-position: -1528px -954px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Red { background-image: url(spritesmith-main-8.png); - background-position: -530px -1422px; + background-position: -1528px -1060px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Shade { background-image: url(spritesmith-main-8.png); - background-position: -636px -1422px; + background-position: -1528px -1166px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: -742px -1422px; + background-position: -1528px -1272px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Spooky { background-image: url(spritesmith-main-8.png); - background-position: -848px -1422px; + background-position: -1528px -1378px; width: 105px; height: 105px; } .Mount_Head_TigerCub-White { background-image: url(spritesmith-main-8.png); - background-position: -954px -1422px; + background-position: 0px -1528px; width: 105px; height: 105px; } .Mount_Head_TigerCub-Zombie { background-image: url(spritesmith-main-8.png); - background-position: -1060px -1422px; + background-position: -106px -1528px; width: 105px; height: 105px; } .Mount_Head_Turkey-Base { background-image: url(spritesmith-main-8.png); - background-position: -1166px -1422px; + background-position: -212px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Base { background-image: url(spritesmith-main-8.png); - background-position: -1272px -1422px; + background-position: -318px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-CottonCandyBlue { background-image: url(spritesmith-main-8.png); - background-position: -1378px -1422px; + background-position: -424px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-CottonCandyPink { background-image: url(spritesmith-main-8.png); - background-position: -1528px 0px; + background-position: -530px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Desert { background-image: url(spritesmith-main-8.png); - background-position: -1528px -106px; + background-position: -636px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Golden { background-image: url(spritesmith-main-8.png); - background-position: -1528px -212px; + background-position: -742px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Red { background-image: url(spritesmith-main-8.png); - background-position: -1528px -318px; + background-position: -848px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Shade { background-image: url(spritesmith-main-8.png); - background-position: -1528px -424px; + background-position: -954px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: -1528px -530px; + background-position: -1060px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-White { background-image: url(spritesmith-main-8.png); - background-position: -1528px -636px; + background-position: -1166px -1528px; width: 105px; height: 105px; } .Mount_Head_Whale-Zombie { background-image: url(spritesmith-main-8.png); - background-position: -1528px -742px; + background-position: -1272px -1528px; width: 105px; height: 105px; } @@ -1192,12 +1300,18 @@ width: 135px; height: 135px; } -.Mount_Head_Wolf-Red { +.Mount_Head_Wolf-Peppermint { background-image: url(spritesmith-main-8.png); background-position: 0px -544px; width: 135px; height: 135px; } +.Mount_Head_Wolf-Red { + background-image: url(spritesmith-main-8.png); + background-position: -136px -544px; + width: 135px; + height: 135px; +} .Mount_Head_Wolf-Shade { background-image: url(spritesmith-main-8.png); background-position: -272px 0px; @@ -1224,247 +1338,91 @@ } .Mount_Head_Wolf-Zombie { background-image: url(spritesmith-main-8.png); - background-position: 0px -408px; + background-position: -136px -408px; width: 135px; height: 135px; } -.Pet-BearCub-Base { +.Mount_Icon_BearCub-Base { background-image: url(spritesmith-main-8.png); - background-position: -1634px -600px; + background-position: 0px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-CottonCandyBlue { +.Mount_Icon_BearCub-CottonCandyBlue { background-image: url(spritesmith-main-8.png); - background-position: -597px -1528px; + background-position: -1634px -1160px; width: 81px; height: 99px; } -.Pet-BearCub-CottonCandyPink { +.Mount_Icon_BearCub-CottonCandyPink { background-image: url(spritesmith-main-8.png); - background-position: -679px -1528px; + background-position: -1634px -1260px; width: 81px; height: 99px; } -.Pet-BearCub-Desert { +.Mount_Icon_BearCub-Desert { background-image: url(spritesmith-main-8.png); - background-position: -761px -1528px; + background-position: -1634px -1360px; width: 81px; height: 99px; } -.Pet-BearCub-Golden { +.Mount_Icon_BearCub-Golden { background-image: url(spritesmith-main-8.png); - background-position: -843px -1528px; + background-position: -1634px -1460px; width: 81px; height: 99px; } -.Pet-BearCub-Polar { +.Mount_Icon_BearCub-Peppermint { background-image: url(spritesmith-main-8.png); - background-position: -925px -1528px; + background-position: -593px -544px; width: 81px; height: 99px; } -.Pet-BearCub-Red { +.Mount_Icon_BearCub-Polar { background-image: url(spritesmith-main-8.png); - background-position: -1007px -1528px; + background-position: -574px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-Shade { +.Mount_Icon_BearCub-Red { background-image: url(spritesmith-main-8.png); - background-position: -1089px -1528px; + background-position: -82px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-Skeleton { +.Mount_Icon_BearCub-Shade { background-image: url(spritesmith-main-8.png); - background-position: -1171px -1528px; + background-position: -164px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-Spooky { +.Mount_Icon_BearCub-Skeleton { background-image: url(spritesmith-main-8.png); - background-position: -1253px -1528px; + background-position: -246px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-White { +.Mount_Icon_BearCub-Spooky { background-image: url(spritesmith-main-8.png); - background-position: -1335px -1528px; + background-position: -328px -1634px; width: 81px; height: 99px; } -.Pet-BearCub-Zombie { +.Mount_Icon_BearCub-White { background-image: url(spritesmith-main-8.png); - background-position: -1417px -1528px; + background-position: -410px -1634px; width: 81px; height: 99px; } -.Pet-Bunny-Base { +.Mount_Icon_BearCub-Zombie { background-image: url(spritesmith-main-8.png); - background-position: -1499px -1528px; + background-position: -492px -1634px; width: 81px; height: 99px; } -.Pet-Bunny-CottonCandyBlue { +.Mount_Icon_Bunny-Base { background-image: url(spritesmith-main-8.png); - background-position: -1634px 0px; - width: 81px; - height: 99px; -} -.Pet-Bunny-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -100px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -200px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -300px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -400px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -500px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -1000px; - width: 81px; - height: 99px; -} -.Pet-Bunny-White { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -700px; - width: 81px; - height: 99px; -} -.Pet-Bunny-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -800px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -900px; - width: 81px; - height: 99px; -} -.Pet-Cactus-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1000px; - width: 81px; - height: 99px; -} -.Pet-Cactus-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1100px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1200px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1300px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1400px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -1634px -1500px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Skeleton { - background-image: url(spritesmith-main-8.png); - background-position: -1716px 0px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Spooky { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -100px; - width: 81px; - height: 99px; -} -.Pet-Cactus-White { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -200px; - width: 81px; - height: 99px; -} -.Pet-Cactus-Zombie { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -300px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Base { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -400px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-CottonCandyBlue { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -500px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-CottonCandyPink { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -600px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Desert { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -700px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Golden { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -800px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Red { - background-image: url(spritesmith-main-8.png); - background-position: -1716px -900px; - width: 81px; - height: 99px; -} -.Pet-Cheetah-Shade { - background-image: url(spritesmith-main-8.png); - background-position: -515px -1528px; + background-position: -1634px -1060px; width: 81px; height: 99px; } diff --git a/common/dist/sprites/spritesmith-main-8.png b/common/dist/sprites/spritesmith-main-8.png index c842ec84f8..f1557707c2 100644 Binary files a/common/dist/sprites/spritesmith-main-8.png and b/common/dist/sprites/spritesmith-main-8.png differ diff --git a/common/dist/sprites/spritesmith-main-9.css b/common/dist/sprites/spritesmith-main-9.css index 94884d04a1..14f680f091 100644 --- a/common/dist/sprites/spritesmith-main-9.css +++ b/common/dist/sprites/spritesmith-main-9.css @@ -1,1860 +1,1962 @@ -.Pet-Cheetah-Skeleton { +.Mount_Icon_Bunny-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -82px 0px; + background-position: -328px -845px; width: 81px; height: 99px; } -.Pet-Cheetah-White { +.Mount_Icon_Bunny-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1148px -100px; + background-position: -1244px -100px; width: 81px; height: 99px; } -.Pet-Cheetah-Zombie { +.Mount_Icon_Bunny-Desert { background-image: url(spritesmith-main-9.png); - background-position: -164px 0px; + background-position: -410px -845px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Base { +.Mount_Icon_Bunny-Golden { background-image: url(spritesmith-main-9.png); - background-position: 0px -100px; + background-position: -492px -845px; width: 81px; height: 99px; } -.Pet-Cuttlefish-CottonCandyBlue { +.Mount_Icon_Bunny-Red { background-image: url(spritesmith-main-9.png); - background-position: -82px -100px; + background-position: -574px -845px; width: 81px; height: 99px; } -.Pet-Cuttlefish-CottonCandyPink { +.Mount_Icon_Bunny-Shade { background-image: url(spritesmith-main-9.png); - background-position: -164px -100px; + background-position: -656px -845px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Desert { +.Mount_Icon_Bunny-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -246px 0px; + background-position: -738px -845px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Golden { +.Mount_Icon_Bunny-White { background-image: url(spritesmith-main-9.png); - background-position: -246px -100px; + background-position: -820px -845px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Red { +.Mount_Icon_Bunny-Zombie { background-image: url(spritesmith-main-9.png); - background-position: 0px -200px; + background-position: -902px -845px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Shade { +.Mount_Icon_Cactus-Base { background-image: url(spritesmith-main-9.png); - background-position: -82px -200px; + background-position: -998px 0px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Skeleton { +.Mount_Icon_Cactus-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -164px -200px; + background-position: -998px -100px; width: 81px; height: 99px; } -.Pet-Cuttlefish-White { +.Mount_Icon_Cactus-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -246px -200px; + background-position: -82px -1045px; width: 81px; height: 99px; } -.Pet-Cuttlefish-Zombie { +.Mount_Icon_Cactus-Desert { background-image: url(spritesmith-main-9.png); - background-position: -328px 0px; + background-position: -492px -1245px; width: 81px; height: 99px; } -.Pet-Deer-Base { +.Mount_Icon_Cactus-Golden { background-image: url(spritesmith-main-9.png); - background-position: -328px -100px; + background-position: -424px -100px; width: 81px; height: 99px; } -.Pet-Deer-CottonCandyBlue { +.Mount_Icon_Cactus-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -328px -200px; + background-position: -424px -200px; width: 81px; height: 99px; } -.Pet-Deer-CottonCandyPink { +.Mount_Icon_Cactus-Red { background-image: url(spritesmith-main-9.png); - background-position: 0px -300px; + background-position: 0px -345px; width: 81px; height: 99px; } -.Pet-Deer-Desert { +.Mount_Icon_Cactus-Shade { background-image: url(spritesmith-main-9.png); - background-position: -82px -300px; + background-position: -82px -345px; width: 81px; height: 99px; } -.Pet-Deer-Golden { +.Mount_Icon_Cactus-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -164px -300px; + background-position: -164px -345px; width: 81px; height: 99px; } -.Pet-Deer-Red { +.Mount_Icon_Cactus-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -246px -300px; + background-position: -246px -345px; width: 81px; height: 99px; } -.Pet-Deer-Shade { +.Mount_Icon_Cactus-White { background-image: url(spritesmith-main-9.png); - background-position: -328px -300px; + background-position: -328px -345px; width: 81px; height: 99px; } -.Pet-Deer-Skeleton { +.Mount_Icon_Cactus-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -410px 0px; + background-position: -410px -345px; width: 81px; height: 99px; } -.Pet-Deer-White { +.Mount_Icon_Cheetah-Base { background-image: url(spritesmith-main-9.png); - background-position: -410px -100px; + background-position: -506px 0px; width: 81px; height: 99px; } -.Pet-Deer-Zombie { +.Mount_Icon_Cheetah-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -410px -200px; + background-position: -506px -100px; width: 81px; height: 99px; } -.Pet-Dragon-Base { +.Mount_Icon_Cheetah-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -410px -300px; + background-position: -506px -200px; width: 81px; height: 99px; } -.Pet-Dragon-CottonCandyBlue { +.Mount_Icon_Cheetah-Desert { background-image: url(spritesmith-main-9.png); - background-position: -492px 0px; + background-position: -506px -300px; width: 81px; height: 99px; } -.Pet-Dragon-CottonCandyPink { +.Mount_Icon_Cheetah-Golden { background-image: url(spritesmith-main-9.png); - background-position: -492px -100px; + background-position: 0px -445px; width: 81px; height: 99px; } -.Pet-Dragon-Desert { +.Mount_Icon_Cheetah-Red { background-image: url(spritesmith-main-9.png); - background-position: -492px -200px; + background-position: -82px -445px; width: 81px; height: 99px; } -.Pet-Dragon-Golden { +.Mount_Icon_Cheetah-Shade { background-image: url(spritesmith-main-9.png); - background-position: -492px -300px; + background-position: -164px -445px; width: 81px; height: 99px; } -.Pet-Dragon-Hydra { +.Mount_Icon_Cheetah-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: 0px -400px; + background-position: -246px -445px; width: 81px; height: 99px; } -.Pet-Dragon-Red { +.Mount_Icon_Cheetah-White { background-image: url(spritesmith-main-9.png); - background-position: -82px -400px; + background-position: -328px -445px; width: 81px; height: 99px; } -.Pet-Dragon-Shade { +.Mount_Icon_Cheetah-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -164px -400px; + background-position: -410px -445px; width: 81px; height: 99px; } -.Pet-Dragon-Skeleton { +.Mount_Icon_Cuttlefish-Base { background-image: url(spritesmith-main-9.png); - background-position: -246px -400px; + background-position: -492px -445px; width: 81px; height: 99px; } -.Pet-Dragon-Spooky { +.Mount_Icon_Cuttlefish-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -328px -400px; + background-position: -588px 0px; width: 81px; height: 99px; } -.Pet-Dragon-White { +.Mount_Icon_Cuttlefish-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -410px -400px; + background-position: -588px -100px; width: 81px; height: 99px; } -.Pet-Dragon-Zombie { +.Mount_Icon_Cuttlefish-Desert { background-image: url(spritesmith-main-9.png); - background-position: -492px -400px; + background-position: -588px -200px; width: 81px; height: 99px; } -.Pet-Egg-Base { +.Mount_Icon_Cuttlefish-Golden { background-image: url(spritesmith-main-9.png); - background-position: -574px 0px; + background-position: -588px -300px; width: 81px; height: 99px; } -.Pet-Egg-CottonCandyBlue { +.Mount_Icon_Cuttlefish-Red { background-image: url(spritesmith-main-9.png); - background-position: -574px -100px; + background-position: -588px -400px; width: 81px; height: 99px; } -.Pet-Egg-CottonCandyPink { +.Mount_Icon_Cuttlefish-Shade { background-image: url(spritesmith-main-9.png); - background-position: -574px -200px; + background-position: 0px -545px; width: 81px; height: 99px; } -.Pet-Egg-Desert { +.Mount_Icon_Cuttlefish-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -574px -300px; + background-position: -82px -545px; width: 81px; height: 99px; } -.Pet-Egg-Golden { +.Mount_Icon_Cuttlefish-White { background-image: url(spritesmith-main-9.png); - background-position: -574px -400px; + background-position: -164px -545px; width: 81px; height: 99px; } -.Pet-Egg-Red { +.Mount_Icon_Cuttlefish-Zombie { background-image: url(spritesmith-main-9.png); - background-position: 0px -500px; + background-position: -246px -545px; width: 81px; height: 99px; } -.Pet-Egg-Shade { +.Mount_Icon_Deer-Base { background-image: url(spritesmith-main-9.png); - background-position: -82px -500px; + background-position: -328px -545px; width: 81px; height: 99px; } -.Pet-Egg-Skeleton { +.Mount_Icon_Deer-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -164px -500px; + background-position: -410px -545px; width: 81px; height: 99px; } -.Pet-Egg-White { +.Mount_Icon_Deer-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -246px -500px; + background-position: -492px -545px; width: 81px; height: 99px; } -.Pet-Egg-Zombie { +.Mount_Icon_Deer-Desert { background-image: url(spritesmith-main-9.png); - background-position: -328px -500px; + background-position: -574px -545px; width: 81px; height: 99px; } -.Pet-FlyingPig-Base { +.Mount_Icon_Deer-Golden { background-image: url(spritesmith-main-9.png); - background-position: -410px -500px; + background-position: -670px 0px; width: 81px; height: 99px; } -.Pet-FlyingPig-CottonCandyBlue { +.Mount_Icon_Deer-Red { background-image: url(spritesmith-main-9.png); - background-position: -492px -500px; + background-position: -670px -100px; width: 81px; height: 99px; } -.Pet-FlyingPig-CottonCandyPink { +.Mount_Icon_Deer-Shade { background-image: url(spritesmith-main-9.png); - background-position: -574px -500px; + background-position: -670px -200px; width: 81px; height: 99px; } -.Pet-FlyingPig-Desert { +.Mount_Icon_Deer-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -656px 0px; + background-position: -670px -300px; width: 81px; height: 99px; } -.Pet-FlyingPig-Golden { +.Mount_Icon_Deer-White { background-image: url(spritesmith-main-9.png); - background-position: -656px -100px; + background-position: -670px -400px; width: 81px; height: 99px; } -.Pet-FlyingPig-Red { +.Mount_Icon_Deer-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -656px -200px; + background-position: -670px -500px; width: 81px; height: 99px; } -.Pet-FlyingPig-Shade { +.Mount_Icon_Dragon-Base { background-image: url(spritesmith-main-9.png); - background-position: -656px -300px; + background-position: 0px -645px; width: 81px; height: 99px; } -.Pet-FlyingPig-Skeleton { +.Mount_Icon_Dragon-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -656px -400px; + background-position: -82px -645px; width: 81px; height: 99px; } -.Pet-FlyingPig-Spooky { +.Mount_Icon_Dragon-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -656px -500px; + background-position: -164px -645px; width: 81px; height: 99px; } -.Pet-FlyingPig-White { +.Mount_Icon_Dragon-Desert { background-image: url(spritesmith-main-9.png); - background-position: 0px -600px; + background-position: -246px -645px; width: 81px; height: 99px; } -.Pet-FlyingPig-Zombie { +.Mount_Icon_Dragon-Golden { background-image: url(spritesmith-main-9.png); - background-position: -82px -600px; + background-position: -328px -645px; width: 81px; height: 99px; } -.Pet-Fox-Base { +.Mount_Icon_Dragon-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -164px -600px; + background-position: -410px -645px; width: 81px; height: 99px; } -.Pet-Fox-CottonCandyBlue { +.Mount_Icon_Dragon-Red { background-image: url(spritesmith-main-9.png); - background-position: -246px -600px; + background-position: -492px -645px; width: 81px; height: 99px; } -.Pet-Fox-CottonCandyPink { +.Mount_Icon_Dragon-Shade { background-image: url(spritesmith-main-9.png); - background-position: -328px -600px; + background-position: -574px -645px; width: 81px; height: 99px; } -.Pet-Fox-Desert { +.Mount_Icon_Dragon-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -410px -600px; + background-position: -656px -645px; width: 81px; height: 99px; } -.Pet-Fox-Golden { +.Mount_Icon_Dragon-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -492px -600px; + background-position: -752px 0px; width: 81px; height: 99px; } -.Pet-Fox-Red { +.Mount_Icon_Dragon-White { background-image: url(spritesmith-main-9.png); - background-position: -574px -600px; + background-position: -752px -100px; width: 81px; height: 99px; } -.Pet-Fox-Shade { +.Mount_Icon_Dragon-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -656px -600px; + background-position: -752px -200px; width: 81px; height: 99px; } -.Pet-Fox-Skeleton { +.Mount_Icon_Egg-Base { background-image: url(spritesmith-main-9.png); - background-position: -738px 0px; + background-position: -752px -300px; width: 81px; height: 99px; } -.Pet-Fox-Spooky { +.Mount_Icon_Egg-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -738px -100px; + background-position: -752px -400px; width: 81px; height: 99px; } -.Pet-Fox-White { +.Mount_Icon_Egg-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -738px -200px; + background-position: -752px -500px; width: 81px; height: 99px; } -.Pet-Fox-Zombie { +.Mount_Icon_Egg-Desert { background-image: url(spritesmith-main-9.png); - background-position: -738px -300px; + background-position: -752px -600px; width: 81px; height: 99px; } -.Pet-Frog-Base { +.Mount_Icon_Egg-Golden { background-image: url(spritesmith-main-9.png); - background-position: -738px -400px; + background-position: -834px 0px; width: 81px; height: 99px; } -.Pet-Frog-CottonCandyBlue { +.Mount_Icon_Egg-Red { background-image: url(spritesmith-main-9.png); - background-position: -738px -500px; + background-position: -834px -100px; width: 81px; height: 99px; } -.Pet-Frog-CottonCandyPink { +.Mount_Icon_Egg-Shade { background-image: url(spritesmith-main-9.png); - background-position: -738px -600px; + background-position: -834px -200px; width: 81px; height: 99px; } -.Pet-Frog-Desert { +.Mount_Icon_Egg-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: 0px -700px; + background-position: -834px -300px; width: 81px; height: 99px; } -.Pet-Frog-Golden { +.Mount_Icon_Egg-White { background-image: url(spritesmith-main-9.png); - background-position: -82px -700px; + background-position: -834px -400px; width: 81px; height: 99px; } -.Pet-Frog-Red { +.Mount_Icon_Egg-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -164px -700px; + background-position: -834px -500px; width: 81px; height: 99px; } -.Pet-Frog-Shade { +.Mount_Icon_FlyingPig-Base { background-image: url(spritesmith-main-9.png); - background-position: -246px -700px; + background-position: -834px -600px; width: 81px; height: 99px; } -.Pet-Frog-Skeleton { +.Mount_Icon_FlyingPig-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -328px -700px; + background-position: 0px -745px; width: 81px; height: 99px; } -.Pet-Frog-White { +.Mount_Icon_FlyingPig-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -410px -700px; + background-position: -82px -745px; width: 81px; height: 99px; } -.Pet-Frog-Zombie { +.Mount_Icon_FlyingPig-Desert { background-image: url(spritesmith-main-9.png); - background-position: -492px -700px; + background-position: -164px -745px; width: 81px; height: 99px; } -.Pet-Gryphon-Base { +.Mount_Icon_FlyingPig-Golden { background-image: url(spritesmith-main-9.png); - background-position: -574px -700px; + background-position: -246px -745px; width: 81px; height: 99px; } -.Pet-Gryphon-CottonCandyBlue { +.Mount_Icon_FlyingPig-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -656px -700px; + background-position: -328px -745px; width: 81px; height: 99px; } -.Pet-Gryphon-CottonCandyPink { +.Mount_Icon_FlyingPig-Red { background-image: url(spritesmith-main-9.png); - background-position: -738px -700px; + background-position: -410px -745px; width: 81px; height: 99px; } -.Pet-Gryphon-Desert { +.Mount_Icon_FlyingPig-Shade { background-image: url(spritesmith-main-9.png); - background-position: -820px 0px; + background-position: -492px -745px; width: 81px; height: 99px; } -.Pet-Gryphon-Golden { +.Mount_Icon_FlyingPig-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -820px -100px; + background-position: -574px -745px; width: 81px; height: 99px; } -.Pet-Gryphon-Red { +.Mount_Icon_FlyingPig-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -820px -200px; + background-position: -656px -745px; width: 81px; height: 99px; } -.Pet-Gryphon-Shade { +.Mount_Icon_FlyingPig-White { background-image: url(spritesmith-main-9.png); - background-position: -820px -300px; + background-position: -738px -745px; width: 81px; height: 99px; } -.Pet-Gryphon-Skeleton { +.Mount_Icon_FlyingPig-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -820px -400px; + background-position: -820px -745px; width: 81px; height: 99px; } -.Pet-Gryphon-White { +.Mount_Icon_Fox-Base { background-image: url(spritesmith-main-9.png); - background-position: -820px -500px; + background-position: -916px 0px; width: 81px; height: 99px; } -.Pet-Gryphon-Zombie { +.Mount_Icon_Fox-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -820px -600px; + background-position: -916px -100px; width: 81px; height: 99px; } -.Pet-Hedgehog-Base { +.Mount_Icon_Fox-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -820px -700px; + background-position: -916px -200px; width: 81px; height: 99px; } -.Pet-Hedgehog-CottonCandyBlue { +.Mount_Icon_Fox-Desert { background-image: url(spritesmith-main-9.png); - background-position: 0px -800px; + background-position: -916px -300px; width: 81px; height: 99px; } -.Pet-Hedgehog-CottonCandyPink { +.Mount_Icon_Fox-Golden { background-image: url(spritesmith-main-9.png); - background-position: -82px -800px; + background-position: -916px -400px; width: 81px; height: 99px; } -.Pet-Hedgehog-Desert { +.Mount_Icon_Fox-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -164px -800px; + background-position: -916px -500px; width: 81px; height: 99px; } -.Pet-Hedgehog-Golden { +.Mount_Icon_Fox-Red { background-image: url(spritesmith-main-9.png); - background-position: -246px -800px; + background-position: -916px -600px; width: 81px; height: 99px; } -.Pet-Hedgehog-Red { +.Mount_Icon_Fox-Shade { background-image: url(spritesmith-main-9.png); - background-position: -328px -800px; + background-position: -916px -700px; width: 81px; height: 99px; } -.Pet-Hedgehog-Shade { +.Mount_Icon_Fox-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -410px -800px; + background-position: 0px -845px; width: 81px; height: 99px; } -.Pet-Hedgehog-Skeleton { +.Mount_Icon_Fox-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -492px -800px; + background-position: -82px -845px; width: 81px; height: 99px; } -.Pet-Hedgehog-White { +.Mount_Icon_Fox-White { background-image: url(spritesmith-main-9.png); - background-position: -574px -800px; + background-position: -164px -845px; width: 81px; height: 99px; } -.Pet-Hedgehog-Zombie { +.Mount_Icon_Fox-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -656px -800px; + background-position: -246px -845px; width: 81px; height: 99px; } -.Pet-Horse-Base { +.Mount_Icon_Frog-Base { background-image: url(spritesmith-main-9.png); - background-position: -738px -800px; - width: 81px; - height: 99px; -} -.Pet-Horse-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -820px -800px; - width: 81px; - height: 99px; -} -.Pet-Horse-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -902px 0px; - width: 81px; - height: 99px; -} -.Pet-Horse-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -902px -100px; - width: 81px; - height: 99px; -} -.Pet-Horse-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -902px -200px; - width: 81px; - height: 99px; -} -.Pet-Horse-Red { - background-image: url(spritesmith-main-9.png); - background-position: -902px -300px; - width: 81px; - height: 99px; -} -.Pet-Horse-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -902px -400px; - width: 81px; - height: 99px; -} -.Pet-Horse-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -902px -500px; - width: 81px; - height: 99px; -} -.Pet-Horse-White { - background-image: url(spritesmith-main-9.png); - background-position: -902px -600px; - width: 81px; - height: 99px; -} -.Pet-Horse-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -902px -700px; - width: 81px; - height: 99px; -} -.Pet-JackOLantern-Base { - background-image: url(spritesmith-main-9.png); - background-position: -902px -800px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Base { - background-image: url(spritesmith-main-9.png); - background-position: -984px 0px; - width: 81px; - height: 99px; -} -.Pet-LionCub-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -984px -100px; - width: 81px; - height: 99px; -} -.Pet-LionCub-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -984px -200px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -984px -300px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -984px -400px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Red { - background-image: url(spritesmith-main-9.png); - background-position: -984px -500px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -984px -600px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -984px -700px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Spooky { - background-image: url(spritesmith-main-9.png); - background-position: -984px -800px; - width: 81px; - height: 99px; -} -.Pet-LionCub-White { - background-image: url(spritesmith-main-9.png); - background-position: 0px -900px; - width: 81px; - height: 99px; -} -.Pet-LionCub-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -82px -900px; - width: 81px; - height: 99px; -} -.Pet-Mammoth-Base { - background-image: url(spritesmith-main-9.png); - background-position: -164px -900px; - width: 81px; - height: 99px; -} -.Pet-MantisShrimp-Base { - background-image: url(spritesmith-main-9.png); - background-position: -246px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Base { - background-image: url(spritesmith-main-9.png); - background-position: -328px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -410px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -492px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -574px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -656px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Red { - background-image: url(spritesmith-main-9.png); - background-position: -738px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -820px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -902px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-White { - background-image: url(spritesmith-main-9.png); - background-position: -984px -900px; - width: 81px; - height: 99px; -} -.Pet-Octopus-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -1066px 0px; - width: 81px; - height: 99px; -} -.Pet-Owl-Base { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -100px; - width: 81px; - height: 99px; -} -.Pet-Owl-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -200px; - width: 81px; - height: 99px; -} -.Pet-Owl-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -300px; - width: 81px; - height: 99px; -} -.Pet-Owl-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -400px; - width: 81px; - height: 99px; -} -.Pet-Owl-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -500px; - width: 81px; - height: 99px; + background-position: -212px -115px; + width: 105px; + height: 114px; } -.Pet-Owl-Red { +.Mount_Icon_Frog-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1066px -600px; - width: 81px; - height: 99px; -} -.Pet-Owl-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -700px; - width: 81px; - height: 99px; + background-position: -106px 0px; + width: 105px; + height: 114px; } -.Pet-Owl-Skeleton { +.Mount_Icon_Frog-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1066px -800px; - width: 81px; - height: 99px; + background-position: -212px 0px; + width: 105px; + height: 114px; } -.Pet-Owl-White { +.Mount_Icon_Frog-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1066px -900px; - width: 81px; - height: 99px; + background-position: 0px -115px; + width: 105px; + height: 114px; } -.Pet-Owl-Zombie { +.Mount_Icon_Frog-Golden { background-image: url(spritesmith-main-9.png); - background-position: 0px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Base { - background-image: url(spritesmith-main-9.png); - background-position: -82px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -164px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -246px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Desert { - background-image: url(spritesmith-main-9.png); - background-position: -328px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Golden { - background-image: url(spritesmith-main-9.png); - background-position: -410px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Red { - background-image: url(spritesmith-main-9.png); - background-position: -492px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Shade { - background-image: url(spritesmith-main-9.png); - background-position: -574px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Skeleton { - background-image: url(spritesmith-main-9.png); - background-position: -656px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Spooky { - background-image: url(spritesmith-main-9.png); - background-position: -738px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-White { - background-image: url(spritesmith-main-9.png); - background-position: -820px -1000px; - width: 81px; - height: 99px; -} -.Pet-PandaCub-Zombie { - background-image: url(spritesmith-main-9.png); - background-position: -902px -1000px; - width: 81px; - height: 99px; -} -.Pet-Parrot-Base { - background-image: url(spritesmith-main-9.png); - background-position: -984px -1000px; - width: 81px; - height: 99px; -} -.Pet-Parrot-CottonCandyBlue { - background-image: url(spritesmith-main-9.png); - background-position: -1066px -1000px; - width: 81px; - height: 99px; -} -.Pet-Parrot-CottonCandyPink { - background-image: url(spritesmith-main-9.png); - background-position: -1148px 0px; - width: 81px; - height: 99px; + background-position: -106px -115px; + width: 105px; + height: 114px; } -.Pet-Parrot-Desert { +.Mount_Icon_Frog-Red { background-image: url(spritesmith-main-9.png); background-position: 0px 0px; + width: 105px; + height: 114px; +} +.Mount_Icon_Frog-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -318px 0px; + width: 105px; + height: 114px; +} +.Mount_Icon_Frog-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -318px -115px; + width: 105px; + height: 114px; +} +.Mount_Icon_Frog-White { + background-image: url(spritesmith-main-9.png); + background-position: 0px -230px; + width: 105px; + height: 114px; +} +.Mount_Icon_Frog-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -106px -230px; + width: 105px; + height: 114px; +} +.Mount_Icon_Gryphon-Base { + background-image: url(spritesmith-main-9.png); + background-position: -998px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -998px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -998px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -998px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -998px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Red { + background-image: url(spritesmith-main-9.png); + background-position: -998px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-RoyalPurple { + background-image: url(spritesmith-main-9.png); + background-position: -998px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Shade { + background-image: url(spritesmith-main-9.png); + background-position: 0px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -82px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-White { + background-image: url(spritesmith-main-9.png); + background-position: -164px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Gryphon-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -246px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Base { + background-image: url(spritesmith-main-9.png); + background-position: -328px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -410px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -492px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -574px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -656px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Red { + background-image: url(spritesmith-main-9.png); + background-position: -738px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -820px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -902px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-White { + background-image: url(spritesmith-main-9.png); + background-position: -984px -945px; + width: 81px; + height: 99px; +} +.Mount_Icon_Hedgehog-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1080px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-White { + background-image: url(spritesmith-main-9.png); + background-position: -1080px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Horse-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: 0px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_JackOLantern-Base { + background-image: url(spritesmith-main-9.png); + background-position: -318px -230px; + width: 90px; + height: 105px; +} +.Mount_Icon_LionCub-Base { + background-image: url(spritesmith-main-9.png); + background-position: -164px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -246px -1045px; + width: 81px; + height: 99px; +} +.Mount_Icon_LionCub-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -328px -1045px; width: 81px; height: 99px; } -.Pet-Parrot-Golden { +.Mount_Icon_LionCub-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1148px -200px; + background-position: -410px -1045px; width: 81px; height: 99px; } -.Pet-Parrot-Red { +.Mount_Icon_LionCub-Ethereal { background-image: url(spritesmith-main-9.png); - background-position: -1148px -300px; + background-position: -492px -1045px; width: 81px; height: 99px; } -.Pet-Parrot-Shade { +.Mount_Icon_LionCub-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1148px -400px; + background-position: -574px -1045px; width: 81px; height: 99px; } -.Pet-Parrot-Skeleton { +.Mount_Icon_LionCub-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -1148px -500px; + background-position: -656px -1045px; width: 81px; height: 99px; } -.Pet-Parrot-White { +.Mount_Icon_LionCub-Red { background-image: url(spritesmith-main-9.png); - background-position: -1148px -600px; + background-position: -738px -1045px; width: 81px; height: 99px; } -.Pet-Parrot-Zombie { +.Mount_Icon_LionCub-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1148px -700px; + background-position: -820px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-Base { +.Mount_Icon_LionCub-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1148px -800px; + background-position: -902px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-CottonCandyBlue { +.Mount_Icon_LionCub-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -1148px -900px; + background-position: -984px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-CottonCandyPink { +.Mount_Icon_LionCub-White { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1000px; + background-position: -1066px -1045px; width: 81px; height: 99px; } -.Pet-Penguin-Desert { +.Mount_Icon_LionCub-Zombie { background-image: url(spritesmith-main-9.png); - background-position: 0px -1100px; + background-position: -1162px 0px; width: 81px; height: 99px; } -.Pet-Penguin-Golden { +.Mount_Icon_Mammoth-Base { background-image: url(spritesmith-main-9.png); - background-position: -82px -1100px; + background-position: -1162px -100px; width: 81px; height: 99px; } -.Pet-Penguin-Red { +.Mount_Icon_MantisShrimp-Base { background-image: url(spritesmith-main-9.png); - background-position: -164px -1100px; + background-position: -1162px -200px; width: 81px; height: 99px; } -.Pet-Penguin-Shade { +.Mount_Icon_Octopus-Base { background-image: url(spritesmith-main-9.png); - background-position: -246px -1100px; + background-position: -1162px -300px; width: 81px; height: 99px; } -.Pet-Penguin-Skeleton { +.Mount_Icon_Octopus-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -328px -1100px; + background-position: -1162px -400px; width: 81px; height: 99px; } -.Pet-Penguin-White { +.Mount_Icon_Octopus-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -410px -1100px; + background-position: -1162px -500px; width: 81px; height: 99px; } -.Pet-Penguin-Zombie { +.Mount_Icon_Octopus-Desert { background-image: url(spritesmith-main-9.png); - background-position: -492px -1100px; + background-position: -1162px -600px; width: 81px; height: 99px; } -.Pet-Phoenix-Base { +.Mount_Icon_Octopus-Golden { background-image: url(spritesmith-main-9.png); - background-position: -574px -1100px; + background-position: -1162px -700px; width: 81px; height: 99px; } -.Pet-Rat-Base { +.Mount_Icon_Octopus-Red { background-image: url(spritesmith-main-9.png); - background-position: -656px -1100px; + background-position: -1162px -800px; width: 81px; height: 99px; } -.Pet-Rat-CottonCandyBlue { +.Mount_Icon_Octopus-Shade { background-image: url(spritesmith-main-9.png); - background-position: -738px -1100px; + background-position: -1162px -900px; width: 81px; height: 99px; } -.Pet-Rat-CottonCandyPink { +.Mount_Icon_Octopus-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -820px -1100px; + background-position: -1162px -1000px; width: 81px; height: 99px; } -.Pet-Rat-Desert { +.Mount_Icon_Octopus-White { background-image: url(spritesmith-main-9.png); - background-position: -902px -1100px; + background-position: -1244px 0px; width: 81px; height: 99px; } -.Pet-Rat-Golden { +.Mount_Icon_Octopus-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -984px -1100px; + background-position: -424px 0px; width: 81px; height: 99px; } -.Pet-Rat-Red { +.Mount_Icon_Orca-Base { background-image: url(spritesmith-main-9.png); - background-position: -1066px -1100px; + background-position: -1244px -200px; width: 81px; height: 99px; } -.Pet-Rat-Shade { +.Mount_Icon_Owl-Base { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1100px; + background-position: -1244px -300px; width: 81px; height: 99px; } -.Pet-Rat-Skeleton { +.Mount_Icon_Owl-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1230px 0px; + background-position: -1244px -400px; width: 81px; height: 99px; } -.Pet-Rat-White { +.Mount_Icon_Owl-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1230px -100px; + background-position: -1244px -500px; width: 81px; height: 99px; } -.Pet-Rat-Zombie { +.Mount_Icon_Owl-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1230px -200px; + background-position: -1244px -600px; width: 81px; height: 99px; } -.Pet-Rock-Base { +.Mount_Icon_Owl-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1230px -300px; + background-position: -1244px -700px; width: 81px; height: 99px; } -.Pet-Rock-CottonCandyBlue { +.Mount_Icon_Owl-Red { background-image: url(spritesmith-main-9.png); - background-position: -1230px -400px; + background-position: -1244px -800px; width: 81px; height: 99px; } -.Pet-Rock-CottonCandyPink { +.Mount_Icon_Owl-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1230px -500px; + background-position: -1244px -900px; width: 81px; height: 99px; } -.Pet-Rock-Desert { +.Mount_Icon_Owl-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1230px -600px; + background-position: -1244px -1000px; width: 81px; height: 99px; } -.Pet-Rock-Golden { +.Mount_Icon_Owl-White { background-image: url(spritesmith-main-9.png); - background-position: -1230px -700px; + background-position: 0px -1145px; width: 81px; height: 99px; } -.Pet-Rock-Red { +.Mount_Icon_Owl-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1230px -800px; + background-position: -82px -1145px; width: 81px; height: 99px; } -.Pet-Rock-Shade { +.Mount_Icon_PandaCub-Base { background-image: url(spritesmith-main-9.png); - background-position: -1230px -900px; + background-position: -164px -1145px; width: 81px; height: 99px; } -.Pet-Rock-Skeleton { +.Mount_Icon_PandaCub-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1000px; + background-position: -246px -1145px; width: 81px; height: 99px; } -.Pet-Rock-White { +.Mount_Icon_PandaCub-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1100px; + background-position: -328px -1145px; width: 81px; height: 99px; } -.Pet-Rock-Zombie { +.Mount_Icon_PandaCub-Desert { background-image: url(spritesmith-main-9.png); - background-position: 0px -1200px; + background-position: -410px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Base { +.Mount_Icon_PandaCub-Golden { background-image: url(spritesmith-main-9.png); - background-position: -82px -1200px; + background-position: -492px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-CottonCandyBlue { +.Mount_Icon_PandaCub-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -164px -1200px; + background-position: -574px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-CottonCandyPink { +.Mount_Icon_PandaCub-Red { background-image: url(spritesmith-main-9.png); - background-position: -246px -1200px; + background-position: -656px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Desert { +.Mount_Icon_PandaCub-Shade { background-image: url(spritesmith-main-9.png); - background-position: -328px -1200px; + background-position: -738px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Golden { +.Mount_Icon_PandaCub-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -410px -1200px; + background-position: -820px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Red { +.Mount_Icon_PandaCub-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -492px -1200px; + background-position: -902px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Shade { +.Mount_Icon_PandaCub-White { background-image: url(spritesmith-main-9.png); - background-position: -574px -1200px; + background-position: -984px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Skeleton { +.Mount_Icon_PandaCub-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -656px -1200px; + background-position: -1066px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-White { +.Mount_Icon_Parrot-Base { background-image: url(spritesmith-main-9.png); - background-position: -738px -1200px; + background-position: -1148px -1145px; width: 81px; height: 99px; } -.Pet-Rooster-Zombie { +.Mount_Icon_Parrot-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -820px -1200px; + background-position: -1230px -1145px; width: 81px; height: 99px; } -.Pet-Seahorse-Base { +.Mount_Icon_Parrot-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -902px -1200px; + background-position: -1326px 0px; width: 81px; height: 99px; } -.Pet-Seahorse-CottonCandyBlue { +.Mount_Icon_Parrot-Desert { background-image: url(spritesmith-main-9.png); - background-position: -984px -1200px; + background-position: -1326px -100px; width: 81px; height: 99px; } -.Pet-Seahorse-CottonCandyPink { +.Mount_Icon_Parrot-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1066px -1200px; + background-position: -1326px -200px; width: 81px; height: 99px; } -.Pet-Seahorse-Desert { +.Mount_Icon_Parrot-Red { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1200px; + background-position: -1326px -300px; width: 81px; height: 99px; } -.Pet-Seahorse-Golden { +.Mount_Icon_Parrot-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1200px; + background-position: -1326px -400px; width: 81px; height: 99px; } -.Pet-Seahorse-Red { +.Mount_Icon_Parrot-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1312px 0px; + background-position: -1326px -500px; width: 81px; height: 99px; } -.Pet-Seahorse-Shade { +.Mount_Icon_Parrot-White { background-image: url(spritesmith-main-9.png); - background-position: -1312px -100px; + background-position: -1326px -600px; width: 81px; height: 99px; } -.Pet-Seahorse-Skeleton { +.Mount_Icon_Parrot-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1312px -200px; + background-position: -1326px -700px; width: 81px; height: 99px; } -.Pet-Seahorse-White { +.Mount_Icon_Penguin-Base { background-image: url(spritesmith-main-9.png); - background-position: -1312px -300px; + background-position: -1326px -800px; width: 81px; height: 99px; } -.Pet-Seahorse-Zombie { +.Mount_Icon_Penguin-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1312px -400px; + background-position: -1326px -900px; width: 81px; height: 99px; } -.Pet-Sheep-Base { +.Mount_Icon_Penguin-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1312px -500px; + background-position: -1326px -1000px; width: 81px; height: 99px; } -.Pet-Sheep-CottonCandyBlue { +.Mount_Icon_Penguin-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1312px -600px; + background-position: -1326px -1100px; width: 81px; height: 99px; } -.Pet-Sheep-CottonCandyPink { +.Mount_Icon_Penguin-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1312px -700px; + background-position: 0px -1245px; width: 81px; height: 99px; } -.Pet-Sheep-Desert { +.Mount_Icon_Penguin-Red { background-image: url(spritesmith-main-9.png); - background-position: -1312px -800px; + background-position: -82px -1245px; width: 81px; height: 99px; } -.Pet-Sheep-Golden { +.Mount_Icon_Penguin-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1312px -900px; + background-position: -164px -1245px; width: 81px; height: 99px; } -.Pet-Sheep-Red { +.Mount_Icon_Penguin-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1000px; + background-position: -246px -1245px; width: 81px; height: 99px; } -.Pet-Sheep-Shade { +.Mount_Icon_Penguin-White { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1100px; + background-position: -328px -1245px; width: 81px; height: 99px; } -.Pet-Sheep-Skeleton { +.Mount_Icon_Penguin-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1200px; + background-position: -410px -1245px; width: 81px; height: 99px; } -.Pet-Sheep-White { +.Mount_Icon_Phoenix-Base { background-image: url(spritesmith-main-9.png); - background-position: -1394px 0px; + background-position: -212px -230px; + width: 105px; + height: 105px; +} +.Mount_Icon_Rat-Base { + background-image: url(spritesmith-main-9.png); + background-position: -574px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -656px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -738px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -820px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -902px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Red { + background-image: url(spritesmith-main-9.png); + background-position: -984px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1066px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1148px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-White { + background-image: url(spritesmith-main-9.png); + background-position: -1230px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rat-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1312px -1245px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1408px 0px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Desert { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -300px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -400px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Red { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -500px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -600px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -700px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-White { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -800px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rock-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -900px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Base { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -1000px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-CottonCandyBlue { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -1100px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-CottonCandyPink { + background-image: url(spritesmith-main-9.png); + background-position: -1408px -1200px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Desert { + background-image: url(spritesmith-main-9.png); + background-position: 0px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Golden { + background-image: url(spritesmith-main-9.png); + background-position: -82px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Red { + background-image: url(spritesmith-main-9.png); + background-position: -164px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -246px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Skeleton { + background-image: url(spritesmith-main-9.png); + background-position: -328px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-White { + background-image: url(spritesmith-main-9.png); + background-position: -410px -1345px; + width: 81px; + height: 99px; +} +.Mount_Icon_Rooster-Zombie { + background-image: url(spritesmith-main-9.png); + background-position: -492px -1345px; width: 81px; height: 99px; } -.Pet-Sheep-Zombie { +.Mount_Icon_Seahorse-Base { background-image: url(spritesmith-main-9.png); - background-position: -1394px -100px; + background-position: -574px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Base { +.Mount_Icon_Seahorse-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1394px -200px; + background-position: -656px -1345px; width: 81px; height: 99px; } -.Pet-Slime-CottonCandyBlue { +.Mount_Icon_Seahorse-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1394px -300px; + background-position: -738px -1345px; width: 81px; height: 99px; } -.Pet-Slime-CottonCandyPink { +.Mount_Icon_Seahorse-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1394px -400px; + background-position: -820px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Desert { +.Mount_Icon_Seahorse-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1394px -500px; + background-position: -902px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Golden { +.Mount_Icon_Seahorse-Red { background-image: url(spritesmith-main-9.png); - background-position: -1394px -600px; + background-position: -984px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Red { +.Mount_Icon_Seahorse-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1394px -700px; + background-position: -1066px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Shade { +.Mount_Icon_Seahorse-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1394px -800px; + background-position: -1148px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Skeleton { +.Mount_Icon_Seahorse-White { background-image: url(spritesmith-main-9.png); - background-position: -1394px -900px; + background-position: -1230px -1345px; width: 81px; height: 99px; } -.Pet-Slime-White { +.Mount_Icon_Seahorse-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1000px; + background-position: -1312px -1345px; width: 81px; height: 99px; } -.Pet-Slime-Zombie { +.Mount_Icon_Sheep-Base { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1100px; + background-position: -1394px -1345px; width: 81px; height: 99px; } -.Pet-Snake-Base { +.Mount_Icon_Sheep-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1200px; + background-position: -1490px 0px; width: 81px; height: 99px; } -.Pet-Snake-CottonCandyBlue { +.Mount_Icon_Sheep-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: 0px -1300px; + background-position: -1490px -100px; width: 81px; height: 99px; } -.Pet-Snake-CottonCandyPink { +.Mount_Icon_Sheep-Desert { background-image: url(spritesmith-main-9.png); - background-position: -82px -1300px; + background-position: -1490px -200px; width: 81px; height: 99px; } -.Pet-Snake-Desert { +.Mount_Icon_Sheep-Golden { background-image: url(spritesmith-main-9.png); - background-position: -164px -1300px; + background-position: -1490px -300px; width: 81px; height: 99px; } -.Pet-Snake-Golden { +.Mount_Icon_Sheep-Red { background-image: url(spritesmith-main-9.png); - background-position: -246px -1300px; + background-position: -1490px -400px; width: 81px; height: 99px; } -.Pet-Snake-Red { +.Mount_Icon_Sheep-Shade { background-image: url(spritesmith-main-9.png); - background-position: -328px -1300px; + background-position: -1490px -500px; width: 81px; height: 99px; } -.Pet-Snake-Shade { +.Mount_Icon_Sheep-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -410px -1300px; + background-position: -1490px -600px; width: 81px; height: 99px; } -.Pet-Snake-Skeleton { +.Mount_Icon_Sheep-White { background-image: url(spritesmith-main-9.png); - background-position: -492px -1300px; + background-position: -1490px -700px; width: 81px; height: 99px; } -.Pet-Snake-White { +.Mount_Icon_Sheep-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -574px -1300px; + background-position: -1490px -800px; width: 81px; height: 99px; } -.Pet-Snake-Zombie { +.Mount_Icon_Slime-Base { background-image: url(spritesmith-main-9.png); - background-position: -656px -1300px; + background-position: -1490px -900px; width: 81px; height: 99px; } -.Pet-Spider-Base { +.Mount_Icon_Slime-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -738px -1300px; + background-position: -1490px -1000px; width: 81px; height: 99px; } -.Pet-Spider-CottonCandyBlue { +.Mount_Icon_Slime-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -820px -1300px; + background-position: -1490px -1100px; width: 81px; height: 99px; } -.Pet-Spider-CottonCandyPink { +.Mount_Icon_Slime-Desert { background-image: url(spritesmith-main-9.png); - background-position: -902px -1300px; + background-position: -1490px -1200px; width: 81px; height: 99px; } -.Pet-Spider-Desert { +.Mount_Icon_Slime-Golden { background-image: url(spritesmith-main-9.png); - background-position: -984px -1300px; + background-position: -1490px -1300px; width: 81px; height: 99px; } -.Pet-Spider-Golden { +.Mount_Icon_Slime-Red { background-image: url(spritesmith-main-9.png); - background-position: -1066px -1300px; + background-position: 0px -1445px; width: 81px; height: 99px; } -.Pet-Spider-Red { +.Mount_Icon_Slime-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1300px; + background-position: -82px -1445px; width: 81px; height: 99px; } -.Pet-Spider-Shade { +.Mount_Icon_Slime-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1300px; + background-position: -164px -1445px; width: 81px; height: 99px; } -.Pet-Spider-Skeleton { +.Mount_Icon_Slime-White { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1300px; + background-position: -246px -1445px; width: 81px; height: 99px; } -.Pet-Spider-White { +.Mount_Icon_Slime-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1300px; + background-position: -328px -1445px; width: 81px; height: 99px; } -.Pet-Spider-Zombie { +.Mount_Icon_Snake-Base { background-image: url(spritesmith-main-9.png); - background-position: -1476px 0px; + background-position: -410px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Base { +.Mount_Icon_Snake-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1476px -100px; + background-position: -492px -1445px; width: 81px; height: 99px; } -.Pet-TRex-CottonCandyBlue { +.Mount_Icon_Snake-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1476px -200px; + background-position: -574px -1445px; width: 81px; height: 99px; } -.Pet-TRex-CottonCandyPink { +.Mount_Icon_Snake-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1476px -300px; + background-position: -656px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Desert { +.Mount_Icon_Snake-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1476px -400px; + background-position: -738px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Golden { +.Mount_Icon_Snake-Red { background-image: url(spritesmith-main-9.png); - background-position: -1476px -500px; + background-position: -820px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Red { +.Mount_Icon_Snake-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1476px -600px; + background-position: -902px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Shade { +.Mount_Icon_Snake-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1476px -700px; + background-position: -984px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Skeleton { +.Mount_Icon_Snake-White { background-image: url(spritesmith-main-9.png); - background-position: -1476px -800px; + background-position: -1066px -1445px; width: 81px; height: 99px; } -.Pet-TRex-White { +.Mount_Icon_Snake-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1476px -900px; + background-position: -1148px -1445px; width: 81px; height: 99px; } -.Pet-TRex-Zombie { +.Mount_Icon_Spider-Base { background-image: url(spritesmith-main-9.png); - background-position: -1476px -1000px; + background-position: -1230px -1445px; width: 81px; height: 99px; } -.Pet-Tiger-Veteran { +.Mount_Icon_Spider-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1476px -1100px; + background-position: -1312px -1445px; width: 81px; height: 99px; } -.Pet-TigerCub-Base { +.Mount_Icon_Spider-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1476px -1200px; + background-position: -1394px -1445px; width: 81px; height: 99px; } -.Pet-TigerCub-CottonCandyBlue { +.Mount_Icon_Spider-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1476px -1300px; + background-position: -1476px -1445px; width: 81px; height: 99px; } -.Pet-TigerCub-CottonCandyPink { +.Mount_Icon_Spider-Golden { background-image: url(spritesmith-main-9.png); - background-position: 0px -1400px; + background-position: -1572px 0px; width: 81px; height: 99px; } -.Pet-TigerCub-Desert { +.Mount_Icon_Spider-Red { background-image: url(spritesmith-main-9.png); - background-position: -82px -1400px; + background-position: -1572px -100px; width: 81px; height: 99px; } -.Pet-TigerCub-Golden { +.Mount_Icon_Spider-Shade { background-image: url(spritesmith-main-9.png); - background-position: -164px -1400px; + background-position: -1572px -200px; width: 81px; height: 99px; } -.Pet-TigerCub-Red { +.Mount_Icon_Spider-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -246px -1400px; + background-position: -1572px -300px; width: 81px; height: 99px; } -.Pet-TigerCub-Shade { +.Mount_Icon_Spider-White { background-image: url(spritesmith-main-9.png); - background-position: -328px -1400px; + background-position: -1572px -400px; width: 81px; height: 99px; } -.Pet-TigerCub-Skeleton { +.Mount_Icon_Spider-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -410px -1400px; + background-position: -1572px -500px; width: 81px; height: 99px; } -.Pet-TigerCub-Spooky { +.Mount_Icon_TRex-Base { background-image: url(spritesmith-main-9.png); - background-position: -492px -1400px; + background-position: -1572px -600px; width: 81px; height: 99px; } -.Pet-TigerCub-White { +.Mount_Icon_TRex-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -574px -1400px; + background-position: -1572px -700px; width: 81px; height: 99px; } -.Pet-TigerCub-Zombie { +.Mount_Icon_TRex-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -656px -1400px; + background-position: -1572px -800px; width: 81px; height: 99px; } -.Pet-Turkey-Base { +.Mount_Icon_TRex-Desert { background-image: url(spritesmith-main-9.png); - background-position: -738px -1400px; + background-position: -1572px -900px; width: 81px; height: 99px; } -.Pet-Turkey-Gilded { +.Mount_Icon_TRex-Golden { background-image: url(spritesmith-main-9.png); - background-position: -820px -1400px; + background-position: -1572px -1000px; width: 81px; height: 99px; } -.Pet-Whale-Base { +.Mount_Icon_TRex-Red { background-image: url(spritesmith-main-9.png); - background-position: -902px -1400px; + background-position: -1572px -1100px; width: 81px; height: 99px; } -.Pet-Whale-CottonCandyBlue { +.Mount_Icon_TRex-Shade { background-image: url(spritesmith-main-9.png); - background-position: -984px -1400px; + background-position: -1572px -1200px; width: 81px; height: 99px; } -.Pet-Whale-CottonCandyPink { +.Mount_Icon_TRex-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1066px -1400px; + background-position: -1572px -1300px; width: 81px; height: 99px; } -.Pet-Whale-Desert { +.Mount_Icon_TRex-White { background-image: url(spritesmith-main-9.png); - background-position: -1148px -1400px; + background-position: -1572px -1400px; width: 81px; height: 99px; } -.Pet-Whale-Golden { +.Mount_Icon_TRex-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1230px -1400px; + background-position: 0px -1545px; width: 81px; height: 99px; } -.Pet-Whale-Red { +.Mount_Icon_TigerCub-Base { background-image: url(spritesmith-main-9.png); - background-position: -1312px -1400px; + background-position: -82px -1545px; width: 81px; height: 99px; } -.Pet-Whale-Shade { +.Mount_Icon_TigerCub-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1394px -1400px; + background-position: -164px -1545px; width: 81px; height: 99px; } -.Pet-Whale-Skeleton { +.Mount_Icon_TigerCub-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1476px -1400px; + background-position: -246px -1545px; width: 81px; height: 99px; } -.Pet-Whale-White { +.Mount_Icon_TigerCub-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1558px 0px; + background-position: -328px -1545px; width: 81px; height: 99px; } -.Pet-Whale-Zombie { +.Mount_Icon_TigerCub-Golden { background-image: url(spritesmith-main-9.png); - background-position: -1558px -100px; + background-position: -410px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Base { +.Mount_Icon_TigerCub-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -1558px -200px; + background-position: -492px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-CottonCandyBlue { +.Mount_Icon_TigerCub-Red { background-image: url(spritesmith-main-9.png); - background-position: -1558px -300px; + background-position: -574px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-CottonCandyPink { +.Mount_Icon_TigerCub-Shade { background-image: url(spritesmith-main-9.png); - background-position: -1558px -400px; + background-position: -656px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Desert { +.Mount_Icon_TigerCub-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -1558px -500px; + background-position: -738px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Golden { +.Mount_Icon_TigerCub-Spooky { background-image: url(spritesmith-main-9.png); - background-position: -1558px -600px; + background-position: -820px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Red { +.Mount_Icon_TigerCub-White { background-image: url(spritesmith-main-9.png); - background-position: -1558px -700px; + background-position: -902px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Shade { +.Mount_Icon_TigerCub-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -1558px -800px; + background-position: -984px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Skeleton { +.Mount_Icon_Turkey-Base { background-image: url(spritesmith-main-9.png); - background-position: -1558px -900px; + background-position: -1066px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Spooky { +.Mount_Icon_Whale-Base { background-image: url(spritesmith-main-9.png); - background-position: -1558px -1000px; + background-position: -1148px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Veteran { +.Mount_Icon_Whale-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -1558px -1100px; + background-position: -1230px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-White { +.Mount_Icon_Whale-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -1558px -1200px; + background-position: -1312px -1545px; width: 81px; height: 99px; } -.Pet-Wolf-Zombie { +.Mount_Icon_Whale-Desert { background-image: url(spritesmith-main-9.png); - background-position: -1558px -1300px; + background-position: -1394px -1545px; width: 81px; height: 99px; } -.Pet_HatchingPotion_Base { +.Mount_Icon_Whale-Golden { background-image: url(spritesmith-main-9.png); - background-position: 0px -1500px; - width: 48px; - height: 51px; + background-position: -1476px -1545px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_CottonCandyBlue { +.Mount_Icon_Whale-Red { background-image: url(spritesmith-main-9.png); - background-position: -196px -1500px; - width: 48px; - height: 51px; + background-position: -1558px -1545px; + width: 81px; + height: 99px; +} +.Mount_Icon_Whale-Shade { + background-image: url(spritesmith-main-9.png); + background-position: -1654px 0px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_CottonCandyPink { +.Mount_Icon_Whale-Skeleton { background-image: url(spritesmith-main-9.png); - background-position: -49px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -100px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Desert { +.Mount_Icon_Whale-White { background-image: url(spritesmith-main-9.png); - background-position: -98px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -200px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Golden { +.Mount_Icon_Whale-Zombie { background-image: url(spritesmith-main-9.png); - background-position: -147px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -300px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Red { +.Mount_Icon_Wolf-Base { background-image: url(spritesmith-main-9.png); - background-position: -1558px -1400px; - width: 48px; - height: 51px; + background-position: -1654px -400px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Shade { +.Mount_Icon_Wolf-CottonCandyBlue { background-image: url(spritesmith-main-9.png); - background-position: -245px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -500px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Skeleton { +.Mount_Icon_Wolf-CottonCandyPink { background-image: url(spritesmith-main-9.png); - background-position: -294px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -600px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Spooky { +.Mount_Icon_Wolf-Desert { background-image: url(spritesmith-main-9.png); - background-position: -343px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -700px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_White { +.Mount_Icon_Wolf-Golden { background-image: url(spritesmith-main-9.png); - background-position: -392px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -800px; + width: 81px; + height: 99px; } -.Pet_HatchingPotion_Zombie { +.Mount_Icon_Wolf-Peppermint { background-image: url(spritesmith-main-9.png); - background-position: -441px -1500px; - width: 48px; - height: 51px; + background-position: -1654px -900px; + width: 81px; + height: 99px; } diff --git a/common/dist/sprites/spritesmith-main-9.png b/common/dist/sprites/spritesmith-main-9.png index b0ebefabee..bd13af3e17 100644 Binary files a/common/dist/sprites/spritesmith-main-9.png and b/common/dist/sprites/spritesmith-main-9.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Peppermint.png new file mode 100644 index 0000000000..5a11f6501f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_BearCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Peppermint.png new file mode 100644 index 0000000000..91c4c465ea Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Cactus-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Peppermint.png new file mode 100644 index 0000000000..339d92da67 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Dragon-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Peppermint.png new file mode 100644 index 0000000000..43c378179b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_FlyingPig-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Peppermint.png new file mode 100644 index 0000000000..7043113cfc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Fox-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Peppermint.png new file mode 100644 index 0000000000..3811cb57bf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_LionCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Peppermint.png new file mode 100644 index 0000000000..5c585d4e1a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_PandaCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Peppermint.png new file mode 100644 index 0000000000..16003b7b7e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_TigerCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Peppermint.png new file mode 100644 index 0000000000..3ae28ef71a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Body_Wolf-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Peppermint.png new file mode 100644 index 0000000000..7b2b044870 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_BearCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Peppermint.png new file mode 100644 index 0000000000..688c0e9b7c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Cactus-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Peppermint.png new file mode 100644 index 0000000000..10f92e6f46 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Dragon-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Peppermint.png new file mode 100644 index 0000000000..051a6ccb0a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_FlyingPig-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Peppermint.png new file mode 100644 index 0000000000..e5f475e649 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Fox-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Peppermint.png new file mode 100644 index 0000000000..7ae43239e4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_LionCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Peppermint.png new file mode 100644 index 0000000000..6f9103d4a9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_PandaCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Peppermint.png new file mode 100644 index 0000000000..ed1e3b217e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_TigerCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Peppermint.png new file mode 100644 index 0000000000..4c7fe3438e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Head_Wolf-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Base.png new file mode 100644 index 0000000000..b2ecc3a6a3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyBlue.png new file mode 100644 index 0000000000..595a2a75c4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyPink.png new file mode 100644 index 0000000000..eafdeb5e34 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Desert.png new file mode 100644 index 0000000000..f2a66eab86 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Golden.png new file mode 100644 index 0000000000..fb5d5307d6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Peppermint.png new file mode 100644 index 0000000000..dbf5e1fef3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Polar.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Polar.png new file mode 100644 index 0000000000..c72f80cb9e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Polar.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Red.png new file mode 100644 index 0000000000..b4b499fae3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Shade.png new file mode 100644 index 0000000000..583b36a1c8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Skeleton.png new file mode 100644 index 0000000000..03300fc525 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Spooky.png new file mode 100644 index 0000000000..c5bf146ff1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-White.png new file mode 100644 index 0000000000..a4d74c6ffc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Zombie.png new file mode 100644 index 0000000000..bdcd68de81 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_BearCub-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Base.png new file mode 100644 index 0000000000..e8efd34709 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyBlue.png new file mode 100644 index 0000000000..9c540c245c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyPink.png new file mode 100644 index 0000000000..5635b544c3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Desert.png new file mode 100644 index 0000000000..c5314d04ab Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Golden.png new file mode 100644 index 0000000000..ef5fd81137 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Red.png new file mode 100644 index 0000000000..0a48a826db Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Shade.png new file mode 100644 index 0000000000..e1e2b01b84 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Skeleton.png new file mode 100644 index 0000000000..37e78b977c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-White.png new file mode 100644 index 0000000000..53e70420f5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Zombie.png new file mode 100644 index 0000000000..fdcb6f75b9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Bunny-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Base.png new file mode 100644 index 0000000000..b0e4d8ebdb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyBlue.png new file mode 100644 index 0000000000..d92e2cc4c0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyPink.png new file mode 100644 index 0000000000..269d95aa7a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Desert.png new file mode 100644 index 0000000000..f490fb1df2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Golden.png new file mode 100644 index 0000000000..2c568347ea Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Peppermint.png new file mode 100644 index 0000000000..95cc9bc6e8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Red.png new file mode 100644 index 0000000000..9f136795c9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Shade.png new file mode 100644 index 0000000000..2cdbc26ec8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Skeleton.png new file mode 100644 index 0000000000..015c880eac Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Spooky.png new file mode 100644 index 0000000000..e70126d86a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-White.png new file mode 100644 index 0000000000..107ac48c1a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Zombie.png new file mode 100644 index 0000000000..af05e3ae9b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cactus-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Base.png new file mode 100644 index 0000000000..15714c8cad Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyBlue.png new file mode 100644 index 0000000000..8636e9ba25 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyPink.png new file mode 100644 index 0000000000..8d94df75d0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Desert.png new file mode 100644 index 0000000000..0dcc56b407 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Golden.png new file mode 100644 index 0000000000..ddcdef45cd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Red.png new file mode 100644 index 0000000000..8a874a0246 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Shade.png new file mode 100644 index 0000000000..598e70eaca Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Skeleton.png new file mode 100644 index 0000000000..196b944406 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-White.png new file mode 100644 index 0000000000..e40bebbe49 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Zombie.png new file mode 100644 index 0000000000..52d512b50c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cheetah-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Base.png new file mode 100644 index 0000000000..abad17246a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyBlue.png new file mode 100644 index 0000000000..d569f22780 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyPink.png new file mode 100644 index 0000000000..641587a1dd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Desert.png new file mode 100644 index 0000000000..35cae16e89 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Golden.png new file mode 100644 index 0000000000..d29e37c22e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Red.png new file mode 100644 index 0000000000..a9fbbd5da4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Shade.png new file mode 100644 index 0000000000..26f90404e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Skeleton.png new file mode 100644 index 0000000000..42c75923ba Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-White.png new file mode 100644 index 0000000000..4e0844ebe3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Zombie.png new file mode 100644 index 0000000000..ade7284239 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Cuttlefish-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Base.png new file mode 100644 index 0000000000..9e7d1acf42 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyBlue.png new file mode 100644 index 0000000000..c39f6e3eb1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyPink.png new file mode 100644 index 0000000000..321c1505df Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Desert.png new file mode 100644 index 0000000000..0138e76607 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Golden.png new file mode 100644 index 0000000000..3ae26755f3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Red.png new file mode 100644 index 0000000000..76ef070915 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Shade.png new file mode 100644 index 0000000000..354fcd9912 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Skeleton.png new file mode 100644 index 0000000000..3e3b4b789b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-White.png new file mode 100644 index 0000000000..e6d1baa2d4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Zombie.png new file mode 100644 index 0000000000..0b3275b91a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Deer-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Base.png new file mode 100644 index 0000000000..f52e89ff32 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyBlue.png new file mode 100644 index 0000000000..57f63af962 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyPink.png new file mode 100644 index 0000000000..7b1d490524 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Desert.png new file mode 100644 index 0000000000..7fcfbc8d59 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Golden.png new file mode 100644 index 0000000000..08a111fed7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Peppermint.png new file mode 100644 index 0000000000..2c0c1379fd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Red.png new file mode 100644 index 0000000000..17e2bab581 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Shade.png new file mode 100644 index 0000000000..cf5e5ebea4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Skeleton.png new file mode 100644 index 0000000000..6fcba30ec9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Spooky.png new file mode 100644 index 0000000000..0c924d0b3a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-White.png new file mode 100644 index 0000000000..f1322f5675 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Zombie.png new file mode 100644 index 0000000000..06a0907b39 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Dragon-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Base.png new file mode 100644 index 0000000000..847ead69f3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyBlue.png new file mode 100644 index 0000000000..62f2ae4571 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyPink.png new file mode 100644 index 0000000000..32c479bd40 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Desert.png new file mode 100644 index 0000000000..3494a204d3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Golden.png new file mode 100644 index 0000000000..4e3d805504 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Red.png new file mode 100644 index 0000000000..734b1f562d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Shade.png new file mode 100644 index 0000000000..c809f3e2c2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Skeleton.png new file mode 100644 index 0000000000..209d595b3b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-White.png new file mode 100644 index 0000000000..b1c636ac8e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Zombie.png new file mode 100644 index 0000000000..c3170a1c98 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Egg-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Base.png new file mode 100644 index 0000000000..92aead6658 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyBlue.png new file mode 100644 index 0000000000..a334b98889 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyPink.png new file mode 100644 index 0000000000..ec00e92cbd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Desert.png new file mode 100644 index 0000000000..9c136e295a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Golden.png new file mode 100644 index 0000000000..ad16c065e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Peppermint.png new file mode 100644 index 0000000000..e967632fa0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Red.png new file mode 100644 index 0000000000..3cea798945 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Shade.png new file mode 100644 index 0000000000..7785e3d840 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Skeleton.png new file mode 100644 index 0000000000..455e67977b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Spooky.png new file mode 100644 index 0000000000..aa8712f568 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-White.png new file mode 100644 index 0000000000..3288b41436 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Zombie.png new file mode 100644 index 0000000000..ca7cd2703e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_FlyingPig-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Base.png new file mode 100644 index 0000000000..a432085e5a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyBlue.png new file mode 100644 index 0000000000..6b85079131 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyPink.png new file mode 100644 index 0000000000..26e2694662 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Desert.png new file mode 100644 index 0000000000..9952b70f46 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Golden.png new file mode 100644 index 0000000000..360a09f5e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Peppermint.png new file mode 100644 index 0000000000..e957801edd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Red.png new file mode 100644 index 0000000000..2c21df98b5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Shade.png new file mode 100644 index 0000000000..e5776c4099 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Skeleton.png new file mode 100644 index 0000000000..01a614ffa7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Spooky.png new file mode 100644 index 0000000000..97a3e7a5de Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-White.png new file mode 100644 index 0000000000..258addb05e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Zombie.png new file mode 100644 index 0000000000..9c694446f6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Fox-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Base.png new file mode 100644 index 0000000000..f92e8de63c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyBlue.png new file mode 100644 index 0000000000..5abeee7f00 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyPink.png new file mode 100644 index 0000000000..012cb7379b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Desert.png new file mode 100644 index 0000000000..c1c6413657 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Golden.png new file mode 100644 index 0000000000..2fc5146e1b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Red.png new file mode 100644 index 0000000000..af9663eca0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Shade.png new file mode 100644 index 0000000000..3e8a0fc2c5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Skeleton.png new file mode 100644 index 0000000000..ddb4ab2829 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-White.png new file mode 100644 index 0000000000..c37579df3b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Zombie.png new file mode 100644 index 0000000000..411124e2e9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Frog-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Base.png new file mode 100644 index 0000000000..e540f87228 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyBlue.png new file mode 100644 index 0000000000..4a8a3498e1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyPink.png new file mode 100644 index 0000000000..d13b73319c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Desert.png new file mode 100644 index 0000000000..da2f171dee Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Golden.png new file mode 100644 index 0000000000..6b12b5b529 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Red.png new file mode 100644 index 0000000000..2a6c49b101 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-RoyalPurple.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-RoyalPurple.png new file mode 100644 index 0000000000..96b37c22e5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-RoyalPurple.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Shade.png new file mode 100644 index 0000000000..3d362f4f46 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Skeleton.png new file mode 100644 index 0000000000..4c8f179a08 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-White.png new file mode 100644 index 0000000000..bd70eb107c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Zombie.png new file mode 100644 index 0000000000..cb2384b23a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Gryphon-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Base.png new file mode 100644 index 0000000000..73e264fcc1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyBlue.png new file mode 100644 index 0000000000..9c6b26ef8e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyPink.png new file mode 100644 index 0000000000..54569ddf64 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Desert.png new file mode 100644 index 0000000000..70d596b627 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Golden.png new file mode 100644 index 0000000000..8da2e89b52 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Red.png new file mode 100644 index 0000000000..8a1016fc39 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Shade.png new file mode 100644 index 0000000000..129ccd4d59 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Skeleton.png new file mode 100644 index 0000000000..25a2ad3ca9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-White.png new file mode 100644 index 0000000000..594c46bf16 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Zombie.png new file mode 100644 index 0000000000..12385e6527 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Hedgehog-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Base.png new file mode 100644 index 0000000000..69fb717f93 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyBlue.png new file mode 100644 index 0000000000..148d6b37f6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyPink.png new file mode 100644 index 0000000000..141548078c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Desert.png new file mode 100644 index 0000000000..180625e5a5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Golden.png new file mode 100644 index 0000000000..7ef9eedfbe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Red.png new file mode 100644 index 0000000000..07275024e5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Shade.png new file mode 100644 index 0000000000..217b01fb1b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Skeleton.png new file mode 100644 index 0000000000..68837d8604 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-White.png new file mode 100644 index 0000000000..a45e649598 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Zombie.png new file mode 100644 index 0000000000..cae941f9fe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Horse-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_JackOLantern-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_JackOLantern-Base.png new file mode 100644 index 0000000000..fc41e4581f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_JackOLantern-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Base.png new file mode 100644 index 0000000000..b5fc0f7f72 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyBlue.png new file mode 100644 index 0000000000..ccb607c51b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyPink.png new file mode 100644 index 0000000000..dba1f267c5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Desert.png new file mode 100644 index 0000000000..d40ad358a1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Ethereal.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Ethereal.png new file mode 100644 index 0000000000..8e935c471d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Ethereal.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Golden.png new file mode 100644 index 0000000000..997a52e406 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Peppermint.png new file mode 100644 index 0000000000..ad6fd23fee Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Red.png new file mode 100644 index 0000000000..4315f80229 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Shade.png new file mode 100644 index 0000000000..bf056f7f66 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Skeleton.png new file mode 100644 index 0000000000..1404235c8c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Spooky.png new file mode 100644 index 0000000000..340c15d948 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-White.png new file mode 100644 index 0000000000..ad783963b2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Zombie.png new file mode 100644 index 0000000000..775c430eba Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_LionCub-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Mammoth-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Mammoth-Base.png new file mode 100644 index 0000000000..44fabaa090 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Mammoth-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_MantisShrimp-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_MantisShrimp-Base.png new file mode 100644 index 0000000000..8c8752d609 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_MantisShrimp-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Base.png new file mode 100644 index 0000000000..9ec30f03fd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyBlue.png new file mode 100644 index 0000000000..4c03a8e76c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyPink.png new file mode 100644 index 0000000000..b1490ff2d7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Desert.png new file mode 100644 index 0000000000..083750a86d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Golden.png new file mode 100644 index 0000000000..5af554eb44 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Red.png new file mode 100644 index 0000000000..3dcb1904fe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Shade.png new file mode 100644 index 0000000000..77879671ce Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Skeleton.png new file mode 100644 index 0000000000..72c47aa849 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-White.png new file mode 100644 index 0000000000..dd63df7d52 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Zombie.png new file mode 100644 index 0000000000..25a2f7314b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Octopus-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Orca-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Orca-Base.png new file mode 100644 index 0000000000..e38a5c5267 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Orca-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Base.png new file mode 100644 index 0000000000..2245a0f5b9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyBlue.png new file mode 100644 index 0000000000..484c6ca692 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyPink.png new file mode 100644 index 0000000000..548f1bbf14 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Desert.png new file mode 100644 index 0000000000..73946a7faf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Golden.png new file mode 100644 index 0000000000..6834f5640a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Red.png new file mode 100644 index 0000000000..599dfc0e1f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Shade.png new file mode 100644 index 0000000000..e80bc271b9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Skeleton.png new file mode 100644 index 0000000000..7336334dbf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-White.png new file mode 100644 index 0000000000..7a0f19f5f1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Zombie.png new file mode 100644 index 0000000000..14b871a707 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Owl-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Base.png new file mode 100644 index 0000000000..70a0204286 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyBlue.png new file mode 100644 index 0000000000..acfe67aa56 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyPink.png new file mode 100644 index 0000000000..6ca07e9c83 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Desert.png new file mode 100644 index 0000000000..8d494b19b7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Golden.png new file mode 100644 index 0000000000..2693dde1ad Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Peppermint.png new file mode 100644 index 0000000000..e826ee89b1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Red.png new file mode 100644 index 0000000000..b61901b891 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Shade.png new file mode 100644 index 0000000000..05ca6b66a9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Skeleton.png new file mode 100644 index 0000000000..51cbc38d11 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Spooky.png new file mode 100644 index 0000000000..6a6a18dbc2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-White.png new file mode 100644 index 0000000000..11c0a5c685 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Zombie.png new file mode 100644 index 0000000000..c240f26d22 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_PandaCub-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Base.png new file mode 100644 index 0000000000..4d3401e05a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyBlue.png new file mode 100644 index 0000000000..621e1eced9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyPink.png new file mode 100644 index 0000000000..389d157115 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Desert.png new file mode 100644 index 0000000000..f00870c987 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Golden.png new file mode 100644 index 0000000000..9fb825815c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Red.png new file mode 100644 index 0000000000..9a8f62088f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Shade.png new file mode 100644 index 0000000000..48b687c429 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Skeleton.png new file mode 100644 index 0000000000..20d366820b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-White.png new file mode 100644 index 0000000000..c08b7962fb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Zombie.png new file mode 100644 index 0000000000..e1f2e33bbd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Parrot-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Base.png new file mode 100644 index 0000000000..bf2796b9e4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyBlue.png new file mode 100644 index 0000000000..5131768934 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyPink.png new file mode 100644 index 0000000000..4db9265040 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Desert.png new file mode 100644 index 0000000000..c6cdd3f05f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Golden.png new file mode 100644 index 0000000000..918a7c1f3c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Red.png new file mode 100644 index 0000000000..ef318fcb31 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Shade.png new file mode 100644 index 0000000000..b01113bcfb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Skeleton.png new file mode 100644 index 0000000000..5c4e1ca5c0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-White.png new file mode 100644 index 0000000000..a8d014537a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Zombie.png new file mode 100644 index 0000000000..2c193386e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Penguin-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Phoenix-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Phoenix-Base.png new file mode 100644 index 0000000000..9373310922 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Phoenix-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Base.png new file mode 100644 index 0000000000..4c03dde374 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyBlue.png new file mode 100644 index 0000000000..6a9a51041a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyPink.png new file mode 100644 index 0000000000..38abd68d8c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Desert.png new file mode 100644 index 0000000000..59c03b1c1f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Golden.png new file mode 100644 index 0000000000..427a044571 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Red.png new file mode 100644 index 0000000000..b8fd0fd035 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Shade.png new file mode 100644 index 0000000000..ddd046e900 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Skeleton.png new file mode 100644 index 0000000000..349fd8639c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-White.png new file mode 100644 index 0000000000..50575e9f57 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Zombie.png new file mode 100644 index 0000000000..f8d163b176 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rat-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Base.png new file mode 100644 index 0000000000..aa33a02acd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyBlue.png new file mode 100644 index 0000000000..1b3d0edd70 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyPink.png new file mode 100644 index 0000000000..72e0b3a811 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Desert.png new file mode 100644 index 0000000000..6ab376a892 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Golden.png new file mode 100644 index 0000000000..d5a3b0bc33 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Red.png new file mode 100644 index 0000000000..741fcd144d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Shade.png new file mode 100644 index 0000000000..ac5a7e6d50 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Skeleton.png new file mode 100644 index 0000000000..552bdb264b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-White.png new file mode 100644 index 0000000000..dd8fa7d045 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Zombie.png new file mode 100644 index 0000000000..28012fdb88 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rock-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Base.png new file mode 100644 index 0000000000..0624cde2ea Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyBlue.png new file mode 100644 index 0000000000..f5122f05af Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyPink.png new file mode 100644 index 0000000000..d5785d5d8b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Desert.png new file mode 100644 index 0000000000..d295707f05 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Golden.png new file mode 100644 index 0000000000..79d089be48 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Red.png new file mode 100644 index 0000000000..0fc8fe0d2c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Shade.png new file mode 100644 index 0000000000..b5054ed528 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Skeleton.png new file mode 100644 index 0000000000..12eced2ef5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-White.png new file mode 100644 index 0000000000..b4b5cf4d8b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Zombie.png new file mode 100644 index 0000000000..a15ea846bc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Rooster-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Base.png new file mode 100644 index 0000000000..d85c2acee5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyBlue.png new file mode 100644 index 0000000000..6e8f8c53fe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyPink.png new file mode 100644 index 0000000000..37e96add0b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Desert.png new file mode 100644 index 0000000000..26cf30f28a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Golden.png new file mode 100644 index 0000000000..69eea48ddd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Red.png new file mode 100644 index 0000000000..5eaa33e0c9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Shade.png new file mode 100644 index 0000000000..be1944a05c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Skeleton.png new file mode 100644 index 0000000000..253d5fb891 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-White.png new file mode 100644 index 0000000000..b1f59a8049 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Zombie.png new file mode 100644 index 0000000000..fd43b38306 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Seahorse-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Base.png new file mode 100644 index 0000000000..addc577b95 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyBlue.png new file mode 100644 index 0000000000..c368654ea6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyPink.png new file mode 100644 index 0000000000..e1969c4d6b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Desert.png new file mode 100644 index 0000000000..dbf127d017 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Golden.png new file mode 100644 index 0000000000..cc085a27d3 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Red.png new file mode 100644 index 0000000000..0a93f1a160 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Shade.png new file mode 100644 index 0000000000..1c7a02f61a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Skeleton.png new file mode 100644 index 0000000000..3b29add4d9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-White.png new file mode 100644 index 0000000000..ad8539b726 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Zombie.png new file mode 100644 index 0000000000..91ffe6cfbe Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Sheep-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Base.png new file mode 100644 index 0000000000..9ef4f54772 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyBlue.png new file mode 100644 index 0000000000..1b21f0c310 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyPink.png new file mode 100644 index 0000000000..791c2e0237 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Desert.png new file mode 100644 index 0000000000..6d69cc709c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Golden.png new file mode 100644 index 0000000000..8f9ec4e1dc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Red.png new file mode 100644 index 0000000000..db6c254d3a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Shade.png new file mode 100644 index 0000000000..e47eb2c1b5 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Skeleton.png new file mode 100644 index 0000000000..81b032154e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-White.png new file mode 100644 index 0000000000..9822d64b9b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Zombie.png new file mode 100644 index 0000000000..5bf1229c99 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Slime-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Base.png new file mode 100644 index 0000000000..a29b8b5292 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyBlue.png new file mode 100644 index 0000000000..e9a956e4c2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyPink.png new file mode 100644 index 0000000000..d0fde8eabd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Desert.png new file mode 100644 index 0000000000..af96464f60 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Golden.png new file mode 100644 index 0000000000..8ba3f92b5b Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Red.png new file mode 100644 index 0000000000..265e49b4ad Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Shade.png new file mode 100644 index 0000000000..5ddd35d974 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Skeleton.png new file mode 100644 index 0000000000..2359ee2677 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-White.png new file mode 100644 index 0000000000..5ed78863ca Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Zombie.png new file mode 100644 index 0000000000..1d0be885ae Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Snake-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Base.png new file mode 100644 index 0000000000..733275fe6a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyBlue.png new file mode 100644 index 0000000000..0d29a97d7f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyPink.png new file mode 100644 index 0000000000..b24ecf7264 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Desert.png new file mode 100644 index 0000000000..8d362804cd Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Golden.png new file mode 100644 index 0000000000..56944097a9 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Red.png new file mode 100644 index 0000000000..54c3b51cb7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Shade.png new file mode 100644 index 0000000000..f58b1cb7e4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Skeleton.png new file mode 100644 index 0000000000..b36a858711 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-White.png new file mode 100644 index 0000000000..ec87c2efbf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Zombie.png new file mode 100644 index 0000000000..8e505557ae Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Spider-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Base.png new file mode 100644 index 0000000000..4c8ef5ac16 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyBlue.png new file mode 100644 index 0000000000..2c232e3ab6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyPink.png new file mode 100644 index 0000000000..ed365f8e67 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Desert.png new file mode 100644 index 0000000000..36eb4b3a58 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Golden.png new file mode 100644 index 0000000000..b485f26c45 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Red.png new file mode 100644 index 0000000000..8f028bb6cc Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Shade.png new file mode 100644 index 0000000000..e9af429b47 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Skeleton.png new file mode 100644 index 0000000000..7a8c84d2f4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-White.png new file mode 100644 index 0000000000..a6c8063b88 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Zombie.png new file mode 100644 index 0000000000..45b1075b5f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TRex-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Base.png new file mode 100644 index 0000000000..b0b56acab6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyBlue.png new file mode 100644 index 0000000000..0fd2b9936d Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyPink.png new file mode 100644 index 0000000000..5c342990c7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Desert.png new file mode 100644 index 0000000000..91c1e680ba Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Golden.png new file mode 100644 index 0000000000..3ae9496fbf Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Peppermint.png new file mode 100644 index 0000000000..06d98659f4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Red.png new file mode 100644 index 0000000000..9f00a6e284 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Shade.png new file mode 100644 index 0000000000..7633618fb7 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Skeleton.png new file mode 100644 index 0000000000..3b6455a050 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Spooky.png new file mode 100644 index 0000000000..7032867167 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-White.png new file mode 100644 index 0000000000..5e08027689 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Zombie.png new file mode 100644 index 0000000000..849222357c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_TigerCub-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Turkey-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Turkey-Base.png new file mode 100644 index 0000000000..aaedf47e03 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Turkey-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Base.png new file mode 100644 index 0000000000..25f29406ac Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyBlue.png new file mode 100644 index 0000000000..9e8766384a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyPink.png new file mode 100644 index 0000000000..c930009c22 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Desert.png new file mode 100644 index 0000000000..0765477f2a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Golden.png new file mode 100644 index 0000000000..428e0bdbde Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Red.png new file mode 100644 index 0000000000..14e3760112 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Shade.png new file mode 100644 index 0000000000..df1850b905 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Skeleton.png new file mode 100644 index 0000000000..d6ddc40bec Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-White.png new file mode 100644 index 0000000000..2848899b20 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Zombie.png new file mode 100644 index 0000000000..b63af6fcb1 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Whale-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Base.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Base.png new file mode 100644 index 0000000000..3195a1845f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Base.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyBlue.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyBlue.png new file mode 100644 index 0000000000..fdde9d88e0 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyBlue.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyPink.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyPink.png new file mode 100644 index 0000000000..0d3af60fb6 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-CottonCandyPink.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Desert.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Desert.png new file mode 100644 index 0000000000..392275fda8 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Desert.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Golden.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Golden.png new file mode 100644 index 0000000000..6b8da62eac Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Golden.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Peppermint.png new file mode 100644 index 0000000000..71940e0a9a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Red.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Red.png new file mode 100644 index 0000000000..1b8388fc6a Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Red.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Shade.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Shade.png new file mode 100644 index 0000000000..a99e48ba2e Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Shade.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Skeleton.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Skeleton.png new file mode 100644 index 0000000000..ae69d8db79 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Skeleton.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Spooky.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Spooky.png new file mode 100644 index 0000000000..cbd75453e4 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Spooky.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-White.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-White.png new file mode 100644 index 0000000000..815a208580 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-White.png differ diff --git a/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Zombie.png b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Zombie.png new file mode 100644 index 0000000000..ba58189d2f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/mounts/Mount_Icon_Wolf-Zombie.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png new file mode 100644 index 0000000000..5116e72500 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-BearCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png new file mode 100644 index 0000000000..8479a2572f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Cactus-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png new file mode 100644 index 0000000000..454e79d9f2 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Dragon-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png new file mode 100644 index 0000000000..c6d85bfa9c Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-FlyingPig-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png new file mode 100644 index 0000000000..8fd07b6b94 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Fox-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png new file mode 100644 index 0000000000..1d7e378a27 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-LionCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png new file mode 100644 index 0000000000..ba87082fbb Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-PandaCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png new file mode 100644 index 0000000000..866c303d36 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-TigerCub-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png b/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png new file mode 100644 index 0000000000..0b62e70e08 Binary files /dev/null and b/common/img/sprites/spritesmith/stable/pets/Pet-Wolf-Peppermint.png differ diff --git a/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png b/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png new file mode 100644 index 0000000000..32f926637f Binary files /dev/null and b/common/img/sprites/spritesmith/stable/potions/Pet_HatchingPotion_Peppermint.png differ diff --git a/common/img/sprites/spritesmith_large/promo/promo_android.png b/common/img/sprites/spritesmith_large/promo/promo_android.png new file mode 100644 index 0000000000..75bc0fbd6a Binary files /dev/null and b/common/img/sprites/spritesmith_large/promo/promo_android.png differ diff --git a/common/locales/en/content.json b/common/locales/en/content.json index 1e782bd6b0..11e53ade50 100644 --- a/common/locales/en/content.json +++ b/common/locales/en/content.json @@ -156,6 +156,7 @@ "hatchingPotionCottonCandyBlue": "Cotton Candy Blue", "hatchingPotionGolden": "Golden", "hatchingPotionSpooky": "Spooky", + "hatchingPotionPeppermint": "Peppermint", "hatchingPotionNotes": "Pour this on an egg, and it will hatch as a <%= potText(locale) %> pet.", "premiumPotionAddlNotes": "Not usable on quest pet eggs.", diff --git a/common/locales/en/front.json b/common/locales/en/front.json index 5738e14df2..b979acce77 100644 --- a/common/locales/en/front.json +++ b/common/locales/en/front.json @@ -181,8 +181,7 @@ "marketingInquiries": "Marketing/Social Media Inquiries", "tweet": "Tweet", "apps": "Apps", - "notifyAndroidApp": "Want us to notify you when the Android app is ready? Sign up for this mailing list!", - "checkOutIOSApp": "Check out our new iOS App!", + "checkOutMobileApps": "Check out our mobile apps!", "imagine1": "Imagine if improving your life were as fun as playing a game.", "landingCopy1": "Advance in the game by completing your real-life tasks.", "landingCopy2": "Battle monsters with friends to stay accountable to your goals.", diff --git a/common/locales/en/groups.json b/common/locales/en/groups.json index 18092f214d..ffcf860675 100644 --- a/common/locales/en/groups.json +++ b/common/locales/en/groups.json @@ -131,7 +131,7 @@ "sendGiftFromBalance": "From Balance", "sendGiftPurchase": "Purchase", "sendGiftMessagePlaceholder": "Personal message (optional)", - "sendGiftSubscription": "<%= months %> Month(s): $<%= price %>", + "sendGiftSubscription": "<%= months %> Month(s): $<%= price %> USD", "battleWithFriends": "Battle Monsters With Friends", "startPartyWithFriends": "Start a Party with your friends!", "startAParty": "Start a Party", diff --git a/common/locales/en/limited.json b/common/locales/en/limited.json index f7d97038f8..c5d51954b9 100644 --- a/common/locales/en/limited.json +++ b/common/locales/en/limited.json @@ -62,5 +62,6 @@ "witchyWizardSet": "Witchy Wizard (Mage)", "mummyMedicSet": "Mummy Medic (Healer)", "vampireSmiterSet": "Vampire Smiter (Rogue)", - "fallEventAvailability": "Available until October 31" + "fallEventAvailability": "Available until October 31", + "winterEventAvailability": "Available until December 31" } diff --git a/common/locales/en/settings.json b/common/locales/en/settings.json index c1d467aefd..1b931140d8 100644 --- a/common/locales/en/settings.json +++ b/common/locales/en/settings.json @@ -112,7 +112,7 @@ "unsubscribeAllEmails": "Check to Unsubscribe from Emails", "unsubscribeAllEmailsText": "By checking this box, I certify that I understand that by unsubscribing from all emails, Habitica will never be able to notify me via email about important changes to the site or my account.", "correctlyUnsubscribedEmailType": "Correctly unsubscribed from \"<%= emailType %>\" emails.", - "subscriptionRateText": "Recurring $<%= price %> every <%= months %> months", + "subscriptionRateText": "Recurring $<%= price %> USD every <%= months %> months", "benefits": "Benefits", "coupon": "Coupon", "couponPlaceholder": "Enter Coupon Code", @@ -137,7 +137,7 @@ "buyGemsGoldCap": "Cap raised to <%= amount %>", "mysticHourglass": "<%= amount %> Mystic Hourglass", "mysticHourglassText": "Mystic Hourglasses allow purchasing a previous month's Mystery Item set.", - "purchasedPlanId": "Recurring $<%= price %> each <%= months %> Month(s) (<%= plan %>)", + "purchasedPlanId": "Recurring $<%= price %> USD each <%= months %> Month(s) (<%= plan %>)", "purchasedPlanExtraMonths": "You have <%= months %> months of subscription credit.", "consecutiveSubscription": "Consecutive Subscription", "consecutiveMonths": "Consecutive Months:", diff --git a/common/script/content/index.js b/common/script/content/index.js index 0838e8bfb7..d14727016c 100644 --- a/common/script/content/index.js +++ b/common/script/content/index.js @@ -1030,6 +1030,14 @@ api.premiumHatchingPotions = { canBuy: (function() { return false; }) + }, + Peppermint: { + value: 2, + text: t('hatchingPotionPeppermint'), + limited: true, + canBuy: (function() { + return true; + }) } }; diff --git a/common/script/index.js b/common/script/index.js index b39ff00e89..292f579de2 100644 --- a/common/script/index.js +++ b/common/script/index.js @@ -2340,6 +2340,7 @@ api.wrap = function(user, main) { if (analytics != null) { analytics.track('acquire item', analyticsData); } + if (!user._tmp) user._tmp = {} return user._tmp.drop = { type: 'Quest', key: k diff --git a/test/api/v2/register/POST-register.test.js b/test/api/v2/register/POST-register.test.js index e40963830e..a4d1987002 100644 --- a/test/api/v2/register/POST-register.test.js +++ b/test/api/v2/register/POST-register.test.js @@ -240,4 +240,55 @@ describe('POST /register', () => { }); }); }); + + context('successful login with habitica-android header', () => { + let api, username, email, password; + + beforeEach(() => { + api = requester({}, {'x-client': 'habitica-android'}); + username = generateRandomUserName(); + email = `${username}@example.com`; + password = 'password'; + }); + + it('sets all common tutorial flags to true', () => { + return api.post('/register', { + username: username, + email: email, + password: password, + confirmPassword: password, + }).then((user) => { + expect(user.flags.tour).to.not.be.empty; + + each(user.flags.tutorial.common, (value, attribute) => { + expect(value).to.eql(true); + }); + }); + }); + + it('populates user with default todos, habits, and rewards', () => { + return api.post('/register', { + username: username, + email: email, + password: password, + confirmPassword: password, + }).then((user) => { + expect(user.todos).to.not.be.empty; + expect(user.dailys).to.be.empty; + expect(user.habits).to.not.be.empty; + expect(user.rewards).to.not.be.empty; + }); + }); + + it('populates user with default tags', () => { + return api.post('/register', { + username: username, + email: email, + password: password, + confirmPassword: password, + }).then((user) => { + expect(user.tags).to.not.be.empty; + }); + }); + }); }); diff --git a/test/common/algos.mocha.js b/test/common/algos.mocha.js index 07d97be9ea..750272cc73 100644 --- a/test/common/algos.mocha.js +++ b/test/common/algos.mocha.js @@ -1,4 +1,12 @@ /* eslint-disable camelcase, func-names, no-shadow */ + +import { + generateUser, + generateDaily, + generateHabit, + generateTodo, +} from '../helpers/common.helper'; + import { DAY_MAPPING, startOfWeek, @@ -19,81 +27,6 @@ shared.i18n.translations = require('../../website/src/libs/api-v2/i18n').transla test_helper.addCustomMatchers(); /* Helper Functions */ - -let newUser = (addTasks = true) => { - let buffs = { - per: 0, - int: 0, - con: 0, - str: 0, - stealth: 0, - streaks: false, - }; - let user = { - auth: { - timestamps: {}, - }, - stats: { - str: 1, - con: 1, - per: 1, - int: 1, - mp: 32, - class: 'warrior', - buffs, - }, - items: { - lastDrop: { - count: 0, - }, - hatchingPotions: {}, - eggs: {}, - food: {}, - gear: { - equipped: {}, - costume: {}, - owned: {}, - }, - quests: {}, - }, - party: { - quest: { - progress: { - down: 0, - }, - }, - }, - preferences: { - autoEquip: true, - }, - dailys: [], - todos: [], - rewards: [], - flags: {}, - achievements: { - ultimateGearSets: {}, - }, - contributor: { - level: 2, - }, - _tmp: {}, - }; - - shared.wrap(user); - user.ops.reset(null, () => {}); - if (addTasks) { - _.each(['habit', 'todo', 'daily'], (task) => { - user.ops.addTask({ - body: { - type: task, - id: shared.uuid(), - }, - }); - }); - } - return user; -}; - let rewrapUser = (user) => { user._wrapped = false; shared.wrap(user); @@ -102,7 +35,15 @@ let rewrapUser = (user) => { let beforeAfter = (options = {}) => { let lastCron; - let user = newUser(); + let user = generateUser(); + let daily = generateDaily(); + let habit = generateHabit(); + let todo = generateTodo(); + + user.dailys.push(daily); + user.habits.push(habit); + user.todos.push(todo); + let ref = [user, _.cloneDeep(user)]; let before = ref[0]; let after = ref[1]; @@ -223,52 +164,10 @@ let repeatWithoutLastWeekday = () => { }; describe('User', () => { - it('sets correct user defaults', () => { - let user = newUser(); - let base_gear = { - armor: 'armor_base_0', - weapon: 'weapon_base_0', - head: 'head_base_0', - shield: 'shield_base_0', - }; - let buffs = { - per: 0, - int: 0, - con: 0, - str: 0, - stealth: 0, - streaks: false, - }; - - expect(user.stats).to.eql({ - str: 1, - con: 1, - per: 1, - int: 1, - hp: 50, - mp: 32, - lvl: 1, - exp: 0, - gp: 0, - class: 'warrior', - buffs, - }); - expect(user.items.gear).to.eql({ - equipped: base_gear, - costume: base_gear, - owned: { - weapon_warrior_0: true, - }, - }); - expect(user.preferences).to.eql({ - autoEquip: true, - costume: false, - }); - }); it('calculates max MP', () => { - let user = newUser(); + let user = generateUser(); - expect(user).toHaveMaxMP(32); + expect(user).toHaveMaxMP(30); user.stats.int = 10; expect(user).toHaveMaxMP(50); user.stats.lvl = 5; @@ -277,8 +176,9 @@ describe('User', () => { user.items.gear.equipped.weapon = 'weapon_wizard_1'; expect(user).toHaveMaxMP(63); }); + it('handles perfect days', () => { - let user = newUser(); + let user = generateUser(); user.dailys = []; _.times(3, () => { @@ -316,12 +216,13 @@ describe('User', () => { expect(user.stats.buffs.str).to.be(1); expect(user.achievements.perfect).to.be(2); }); + describe('Resting in the Inn', () => { let user = null; let cron = null; beforeEach(() => { - user = newUser(); + user = generateUser(); user.preferences.sleep = true; cron = () => { user.lastCron = moment().subtract(1, 'days'); @@ -335,15 +236,18 @@ describe('User', () => { })); }); }); + it('remains in the inn on cron', () => { cron(); expect(user.preferences.sleep).to.be(true); }); + it('resets dailies', () => { user.dailys[0].completed = true; cron(); expect(user.dailys[0].completed).to.be(false); }); + it('resets checklist on incomplete dailies', () => { user.dailys[0].checklist = [ { @@ -365,6 +269,7 @@ describe('User', () => { expect(box.completed).to.be(false); }); }); + it('resets checklist on complete dailies', () => { user.dailys[0].checklist = [ { @@ -387,6 +292,7 @@ describe('User', () => { expect(box.completed).to.be(false); }); }); + it('does not reset checklist on grey incomplete dailies', () => { let yesterday = moment().subtract(1, 'days'); @@ -411,6 +317,7 @@ describe('User', () => { expect(box.completed).to.be(true); }); }); + it('resets checklist on complete grey complete dailies', () => { let yesterday = moment().subtract(1, 'days'); @@ -436,6 +343,7 @@ describe('User', () => { expect(box.completed).to.be(false); }); }); + it('does not damage user for incomplete dailies', () => { expect(user).toHaveHP(50); user.dailys[0].completed = true; @@ -443,12 +351,14 @@ describe('User', () => { cron(); expect(user).toHaveHP(50); }); + it('gives credit for complete dailies', () => { user.dailys[0].completed = true; expect(user.dailys[0].history).to.be.empty; cron(); expect(user.dailys[0].history).to.not.be.empty; }); + it('damages user for incomplete dailies after checkout', () => { expect(user).toHaveHP(50); user.dailys[0].completed = true; @@ -458,11 +368,12 @@ describe('User', () => { expect(user.stats.hp).to.be.lessThan(50); }); }); + describe('Death', () => { let user; beforeEach(() => { - user = newUser(); + user = generateUser(); }); it('revives correctly', () => { @@ -473,7 +384,9 @@ describe('User', () => { hp: 0, class: 'warrior', }; + user.items.gear.owned.weapon_warrior_0 = true; user.ops.revive(); + expect(user).toHaveGP(0); expect(user).toHaveExp(0); expect(user).toHaveLevel(1); @@ -484,21 +397,30 @@ describe('User', () => { }); it('doesn\'t break unbreakables', () => { - let ce; + let ce = shared.countExists; + + user.items.gear.owned = { + weapon_warrior_0: true, + shield_warrior_1: true, + shield_rogue_1: true, + head_special_nye: true, + }; - ce = shared.countExists; - user.items.gear.owned.shield_warrior_1 = true; - user.items.gear.owned.shield_rogue_1 = true; - user.items.gear.owned.head_special_nye = true; expect(ce(user.items.gear.owned)).to.be(4); + user.stats.hp = 0; user.ops.revive(); + expect(ce(user.items.gear.owned)).to.be(3); + user.stats.hp = 0; user.ops.revive(); + expect(ce(user.items.gear.owned)).to.be(2); + user.stats.hp = 0; user.ops.revive(); + expect(ce(user.items.gear.owned)).to.be(2); expect(user.items.gear.owned).to.eql({ weapon_warrior_0: false, @@ -521,9 +443,10 @@ describe('User', () => { expect(shared.content.gear.flat.head_special_nye.canOwn(user)).to.be(true); }); }); + describe('Rebirth', () => { it('removes correct gear', () => { - let user = newUser(); + let user = generateUser(); user.stats.lvl = 100; user.items.gear.owned = { @@ -547,9 +470,10 @@ describe('User', () => { }); }); }); + describe('store', () => { it('buys a Quest scroll', () => { - let user = newUser(); + let user = generateUser(); user.stats.gp = 205; user.ops.buyQuest({ @@ -562,8 +486,9 @@ describe('User', () => { }); expect(user).toHaveGP(5); }); + it('does not buy Quests without enough Gold', () => { - let user = newUser(); + let user = generateUser(); user.stats.gp = 1; user.ops.buyQuest({ @@ -574,8 +499,9 @@ describe('User', () => { expect(user.items.quests).to.eql({}); expect(user).toHaveGP(1); }); + it('does not buy nonexistent Quests', () => { - let user = newUser(); + let user = generateUser(); user.stats.gp = 9999; user.ops.buyQuest({ @@ -586,8 +512,9 @@ describe('User', () => { expect(user.items.quests).to.eql({}); expect(user).toHaveGP(9999); }); + it('does not buy Gem-premium Quests', () => { - let user = newUser(); + let user = generateUser(); user.stats.gp = 9999; user.ops.buyQuest({ @@ -599,9 +526,13 @@ describe('User', () => { expect(user).toHaveGP(9999); }); }); + describe('Gem purchases', () => { it('does not purchase items without enough Gems', () => { - let user = newUser(); + let user = generateUser(); + + user.items.eggs = {}; + user.items.gear.owned = {}; user.ops.purchase({ params: { @@ -621,12 +552,11 @@ describe('User', () => { }, }); expect(user.items.eggs).to.eql({}); - expect(user.items.gear.owned).to.eql({ - weapon_warrior_0: true, - }); + expect(user.items.gear.owned).to.eql({}); }); + it('purchases an egg', () => { - let user = newUser(); + let user = generateUser(); user.balance = 1; user.ops.purchase({ @@ -640,8 +570,9 @@ describe('User', () => { }); expect(user.balance).to.eql(0.25); }); + it('purchases fox ears', () => { - let user = newUser(); + let user = generateUser(); user.balance = 1; user.ops.purchase({ @@ -650,14 +581,13 @@ describe('User', () => { key: 'headAccessory_special_foxEars', }, }); - expect(user.items.gear.owned).to.eql({ - weapon_warrior_0: true, - headAccessory_special_foxEars: true, - }); + + expect(user.items.gear.owned.headAccessory_special_foxEars).to.eql(true); expect(user.balance).to.eql(0.5); }); + it('unlocks all the animal ears at once', () => { - let user = newUser(); + let user = generateUser(); user.balance = 2; user.ops.unlock({ @@ -665,20 +595,19 @@ describe('User', () => { path: 'items.gear.owned.headAccessory_special_bearEars,items.gear.owned.headAccessory_special_cactusEars,items.gear.owned.headAccessory_special_foxEars,items.gear.owned.headAccessory_special_lionEars,items.gear.owned.headAccessory_special_pandaEars,items.gear.owned.headAccessory_special_pigEars,items.gear.owned.headAccessory_special_tigerEars,items.gear.owned.headAccessory_special_wolfEars', }, }); - expect(user.items.gear.owned).to.eql({ - weapon_warrior_0: true, - headAccessory_special_bearEars: true, - headAccessory_special_cactusEars: true, - headAccessory_special_foxEars: true, - headAccessory_special_lionEars: true, - headAccessory_special_pandaEars: true, - headAccessory_special_pigEars: true, - headAccessory_special_tigerEars: true, - headAccessory_special_wolfEars: true, - }); + + expect(user.items.gear.owned.headAccessory_special_bearEars).to.eql(true); + expect(user.items.gear.owned.headAccessory_special_cactusEars).to.eql(true); + expect(user.items.gear.owned.headAccessory_special_foxEars).to.eql(true); + expect(user.items.gear.owned.headAccessory_special_lionEars).to.eql(true); + expect(user.items.gear.owned.headAccessory_special_pandaEars).to.eql(true); + expect(user.items.gear.owned.headAccessory_special_pigEars).to.eql(true); + expect(user.items.gear.owned.headAccessory_special_tigerEars).to.eql(true); + expect(user.items.gear.owned.headAccessory_special_wolfEars).to.eql(true); expect(user.balance).to.eql(0.75); }); }); + describe('spells', () => { _.each(shared.content.spells, (spellClass) => { _.each(spellClass, (spell) => { @@ -694,6 +623,7 @@ describe('User', () => { }); }); }); + describe('drop system', () => { let user = null; const MIN_RANGE_FOR_POTION = 0; @@ -704,7 +634,7 @@ describe('User', () => { const MAX_RANGE_FOR_FOOD = 1; beforeEach(function () { - user = newUser(); + user = generateUser(); user.flags.dropsEnabled = true; this.task_id = shared.uuid(); return user.ops.addTask({ @@ -733,6 +663,7 @@ describe('User', () => { } return results; }); + it('drops a pet egg', function () { let results = []; @@ -786,6 +717,7 @@ describe('User', () => { user.fns.predictableRandom.restore(); }); }); + describe('Quests', () => { _.each(shared.content.quests, (quest) => { it(`${ quest.text() } has valid values`, () => { @@ -818,9 +750,12 @@ describe('User', () => { }); }); }); + describe('Achievements', () => { _.each(shared.content.classes, (klass) => { - let user = newUser(); + let user = generateUser(); + + user.achievements.ultimateGearSets = {}; user.stats.gp = 10000; _.each(shared.content.gearTypes, (type) => { @@ -844,8 +779,9 @@ describe('User', () => { expect(user.achievements.ultimateGearSets[klass]).to.be.ok(); }); }); + it('does not remove existing Ultimate Gear achievements', () => { - let user = newUser(); + let user = generateUser(); user.achievements.ultimateGearSets = { healer: true, @@ -866,24 +802,27 @@ describe('User', () => { }); }); }); + describe('unlocking features', () => { it('unlocks drops at level 3', () => { - let user = newUser(); + let user = generateUser(); user.stats.lvl = 3; user.fns.updateStats(user.stats); expect(user.flags.dropsEnabled).to.be.ok(); }); + it('unlocks Rebirth at level 50', () => { - let user = newUser(); + let user = generateUser(); user.stats.lvl = 50; user.fns.updateStats(user.stats); expect(user.flags.rebirthEnabled).to.be.ok(); }); + describe('level-awarded Quests', () => { it('gets Attack of the Mundane at level 15', () => { - let user = newUser(); + let user = generateUser(); user.stats.lvl = 15; user.fns.updateStats(user.stats); @@ -892,7 +831,7 @@ describe('User', () => { }); it('gets Vice at level 30', () => { - let user = newUser(); + let user = generateUser(); user.stats.lvl = 30; user.fns.updateStats(user.stats); @@ -901,7 +840,7 @@ describe('User', () => { }); it('gets Golden Knight at level 40', () => { - let user = newUser(); + let user = generateUser(); user.stats.lvl = 40; user.fns.updateStats(user.stats); @@ -910,7 +849,7 @@ describe('User', () => { }); it('gets Moonstone Chain at level 60', () => { - let user = newUser(); + let user = generateUser(); user.stats.lvl = 60; user.fns.updateStats(user.stats); @@ -941,6 +880,7 @@ describe('Simple Scoring', () => { }); expectLostPoints(this.before, this.after, 'habit'); }); + it('Habits : Down', function () { this.after.ops.score({ params: { @@ -953,6 +893,7 @@ describe('Simple Scoring', () => { }); expectGainedPoints(this.before, this.after, 'habit'); }); + it('Dailys : Up', function () { this.after.ops.score({ params: { @@ -962,6 +903,7 @@ describe('Simple Scoring', () => { }); expectGainedPoints(this.before, this.after, 'daily'); }); + it('Dailys : Up, Down', function () { this.after.ops.score({ params: { @@ -977,6 +919,7 @@ describe('Simple Scoring', () => { }); expectClosePoints(this.before, this.after, 'daily'); }); + it('Todos : Up', function () { this.after.ops.score({ params: { @@ -1005,8 +948,13 @@ describe('Simple Scoring', () => { }); describe('Cron', () => { + let user; + + beforeEach(() => { + user = generateUser(); + }); + it('computes shouldCron', () => { - let user = newUser(); let paths = {}; user.fns.cron({ @@ -1020,6 +968,7 @@ describe('Cron', () => { }); expect(user.lastCron).to.be.greaterThan(0); }); + it('only dailies & todos are affected', () => { let ref = beforeAfter({ daysAgo: 1, @@ -1040,6 +989,7 @@ describe('Cron', () => { expect(beforeTasks).to.eql(afterTasks); }); + describe('preening', () => { beforeEach(function () { this.clock = sinon.useFakeTimers(Date.parse('2013-11-20'), 'Date'); @@ -1157,6 +1107,7 @@ describe('Cron', () => { }); }); }); + describe('Todos', () => { it('1 day missed', () => { let ref = beforeAfter({ @@ -1174,6 +1125,7 @@ describe('Cron', () => { expect(after.todos[0].value).to.be(-1); expect(after.history.todos).to.have.length(1); }); + it('2 days missed', () => { let ref = beforeAfter({ daysAgo: 2, @@ -1187,6 +1139,7 @@ describe('Cron', () => { expect(after.todos[0].value).to.be(-1); }); }); + describe('cron day calculations', () => { let dayStart = 4; let fstr = 'YYYY-MM-DD HH: mm: ss'; @@ -1199,6 +1152,7 @@ describe('Cron', () => { expect(start.format(fstr)).to.eql('2014-10-08 04: 00: 00'); }); + it('startOfDay after dayStart', () => { let start = startOfDay({ now: moment('2014-10-09 05: 30: 00'), @@ -1207,6 +1161,7 @@ describe('Cron', () => { expect(start.format(fstr)).to.eql('2014-10-09 04: 00: 00'); }); + it('daysSince cron before, now after', () => { let lastCron = moment('2014-10-09 02: 30: 00'); let days = daysSince(lastCron, { @@ -1216,6 +1171,7 @@ describe('Cron', () => { expect(days).to.eql(1); }); + it('daysSince cron before, now before', () => { let lastCron = moment('2014-10-09 02: 30: 00'); let days = daysSince(lastCron, { @@ -1225,6 +1181,7 @@ describe('Cron', () => { expect(days).to.eql(0); }); + it('daysSince cron after, now after', () => { let lastCron = moment('2014-10-09 05: 30: 00'); let days = daysSince(lastCron, { @@ -1234,6 +1191,7 @@ describe('Cron', () => { expect(days).to.eql(0); }); + it('daysSince cron after, now tomorrow before', () => { let lastCron = moment('2014-10-09 12: 30: 00'); let days = daysSince(lastCron, { @@ -1243,6 +1201,7 @@ describe('Cron', () => { expect(days).to.eql(0); }); + it('daysSince cron after, now tomorrow after', () => { let lastCron = moment('2014-10-09 12: 30: 00'); let days = daysSince(lastCron, { @@ -1486,18 +1445,21 @@ describe('Helper', () => { expect(shared.gold(1.957)).to.eql(1); expect(shared.gold()).to.eql(0); }); + it('calculates silver coins', () => { expect(shared.silver(10)).to.eql(0); expect(shared.silver(1.957)).to.eql(95); expect(shared.silver(0.01)).to.eql('01'); expect(shared.silver()).to.eql('00'); }); + it('calculates experience to next level', () => { expect(shared.tnl(1)).to.eql(150); expect(shared.tnl(2)).to.eql(160); expect(shared.tnl(10)).to.eql(260); expect(shared.tnl(99)).to.eql(3580); }); + it('calculates the start of the day', () => { let fstr = 'YYYY-MM-DD HH: mm: ss'; let today = '2013-01-01 00: 00: 00'; diff --git a/test/common/dailies.js b/test/common/dailies.js index e067611808..cdb4c4e34d 100644 --- a/test/common/dailies.js +++ b/test/common/dailies.js @@ -33,74 +33,12 @@ let repeatWithoutLastWeekday = () => { // eslint-disable-line no-unused-vars /* Helper Functions */ -let newUser = (addTasks = true) => { - let buffs; - let user; - - buffs = { - per: 0, - int: 0, - con: 0, - str: 0, - stealth: 0, - streaks: false, - }; - user = { - auth: { - timestamps: {}, - }, - stats: { - str: 1, - con: 1, - per: 1, - int: 1, - mp: 32, - class: 'warrior', - buffs, - }, - items: { - lastDrop: { - count: 0, - }, - hatchingPotions: {}, - eggs: {}, - food: {}, - gear: { - equipped: {}, - costume: {}, - }, - }, - party: { - quest: { - progress: { - down: 0, - }, - }, - }, - preferences: {}, - dailys: [], - todos: [], - rewards: [], - flags: {}, - achievements: {}, - contributor: { - level: 2, - }, - }; - shared.wrap(user); - user.ops.reset(null, () => {}); - if (addTasks) { - _.each(['habit', 'todo', 'daily'], (task) => { - user.ops.addTask({ - body: { - type: task, - id: shared.uuid(), - }, - }); - }); - } - return user; -}; +import { + generateUser, + generateDaily, + generateHabit, + generateTodo, +} from '../helpers/common.helper'; let cron = (usr, missedDays = 1) => { usr.lastCron = moment().subtract(missedDays, 'days'); @@ -114,7 +52,7 @@ describe('daily/weekly that repeats everyday (default)', () => { describe('when startDate is in the future', () => { beforeEach(() => { - user = newUser(); + user = generateUser(); user.dailys = [ shared.taskDefaults({ type: 'daily', @@ -138,15 +76,18 @@ describe('daily/weekly that repeats everyday (default)', () => { daily = user.dailys[0]; weekly = user.dailys[1]; }); + it('does not damage user for not completing it', () => { cron(user); expect(user.stats.hp).to.be(50); }); + it('does not change value on cron if daily is incomplete', () => { cron(user); expect(daily.value).to.be(0); expect(weekly.value).to.be(0); }); + it('does not reset checklists if daily is not marked as complete', () => { let checklist = [ { @@ -174,6 +115,7 @@ describe('daily/weekly that repeats everyday (default)', () => { expect(weekly.checklist[1].completed).to.be(true); expect(weekly.checklist[2].completed).to.be(false); }); + it('resets checklists if daily is marked as complete', () => { let checklist = [ { @@ -203,6 +145,7 @@ describe('daily/weekly that repeats everyday (default)', () => { expect(box.completed).to.be(false); }); }); + it('is due on startDate', () => { let daily_due_today = shared.shouldDo(moment(), daily); let daily_due_on_start_date = shared.shouldDo(moment().add(7, 'days'), daily); @@ -217,9 +160,10 @@ describe('daily/weekly that repeats everyday (default)', () => { expect(weekly_due_on_start_date).to.be(true); }); }); + describe('when startDate is in the past', () => { beforeEach(() => { - user = newUser(); + user = generateUser(); user.dailys = [ shared.taskDefaults({ type: 'daily', @@ -234,20 +178,24 @@ describe('daily/weekly that repeats everyday (default)', () => { daily = user.dailys[0]; weekly = user.dailys[1]; }); + it('does damage user for not completing it', () => { cron(user); expect(user.stats.hp).to.be.lessThan(50); }); + it('decreases value on cron if daily is incomplete', () => { cron(user, 1); expect(daily.value).to.be(-1); expect(weekly.value).to.be(-1); }); + it('decreases value on cron once only if daily is incomplete and multiple days are missed', () => { cron(user, 7); expect(daily.value).to.be(-1); expect(weekly.value).to.be(-1); }); + it('resets checklists if daily is not marked as complete', () => { let checklist; @@ -276,6 +224,7 @@ describe('daily/weekly that repeats everyday (default)', () => { expect(box.completed).to.be(false); }); }); + it('resets checklists if daily is marked as complete', () => { let checklist = [ { @@ -306,9 +255,10 @@ describe('daily/weekly that repeats everyday (default)', () => { }); }); }); + describe('when startDate is today', () => { beforeEach(() => { - user = newUser(); + user = generateUser(); user.dailys = [ shared.taskDefaults({ type: 'daily', @@ -323,15 +273,18 @@ describe('daily/weekly that repeats everyday (default)', () => { daily = user.dailys[0]; weekly = user.dailys[1]; }); + it('does damage user for not completing it', () => { cron(user); expect(user.stats.hp).to.be.lessThan(50); }); + it('decreases value on cron if daily is incomplete', () => { cron(user); expect(daily.value).to.be.lessThan(0); expect(weekly.value).to.be.lessThan(0); }); + it('resets checklists if daily is not marked as complete', () => { let checklist; @@ -360,6 +313,7 @@ describe('daily/weekly that repeats everyday (default)', () => { expect(box.completed).to.be(false); }); }); + it('resets checklists if daily is marked as complete', () => { let checklist; @@ -398,7 +352,7 @@ describe('daily that repeats every x days', () => { let daily = null; beforeEach(() => { - user = newUser(); + user = generateUser(); user.dailys = [ shared.taskDefaults({ type: 'daily', @@ -436,7 +390,7 @@ describe('daily that repeats every X days when multiple days are missed', () => let missedDays = everyX * 2 + 1; beforeEach(() => { - user = newUser(); + user = generateUser(); user.dailys = [ shared.taskDefaults({ type: 'daily', @@ -447,10 +401,12 @@ describe('daily that repeats every X days when multiple days are missed', () => ]; daily = user.dailys[0]; }); + it('decreases value on cron once only if daily is incomplete', () => { cron(user, missedDays); expect(daily.value).to.be(-1); }); + it('resets checklists if daily is incomplete', () => { let checklist = [ { @@ -466,6 +422,7 @@ describe('daily that repeats every X days when multiple days are missed', () => expect(box.completed).to.be(false); }); }); + it('resets checklists if daily is marked as complete', () => { let checklist; @@ -484,12 +441,13 @@ describe('daily that repeats every X days when multiple days are missed', () => }); }); }); + describe('but not missing a due date', () => { let missedDays; missedDays = everyX - 1; beforeEach(() => { - user = newUser(); + user = generateUser(); user.dailys = [ shared.taskDefaults({ type: 'daily', @@ -500,10 +458,12 @@ describe('daily that repeats every X days when multiple days are missed', () => ]; daily = user.dailys[0]; }); + it('does not decrease value on cron', () => { cron(user, missedDays); expect(daily.value).to.be(0); }); + it('does not reset checklists if daily is incomplete', () => { let checklist; @@ -520,6 +480,7 @@ describe('daily that repeats every X days when multiple days are missed', () => expect(box.completed).to.be(true); }); }); + it('resets checklists if daily is marked as complete', () => { let checklist; diff --git a/test/common/shared.spells.test.js b/test/common/shared.spells.test.js new file mode 100644 index 0000000000..931f9b9991 --- /dev/null +++ b/test/common/shared.spells.test.js @@ -0,0 +1,103 @@ +import shared from '../../common/script/index.js'; +import { + generateUser, + generateTodo, +} from '../helpers/common.helper'; + + +describe('Spells', () => { + let user; + + beforeEach(() => { + let todo = generateTodo(); + + user = generateUser({ + stats: { + int: 20, + str: 20, + con: 20, + per: 20, + lvl: 20, + }, + }); + user.todos.push(todo); + }); + + context('Rogue Spells', () => { + beforeEach(() => { + user.stats.class = 'rogue'; + }); + + describe('#backstab', () => { + it('adds exp to user', () => { + const PREVIOUS_EXP = user.stats.exp; + + shared.content.spells.rogue.backStab.cast(user, user.todos[0]); + + expect(user.stats.exp).to.be.greaterThan(PREVIOUS_EXP); + }); + + it('adds gp to user', () => { + const PREVIOUS_GP = user.stats.gp; + + shared.content.spells.rogue.backStab.cast(user, user.todos[0]); + + expect(user.stats.gp).to.be.greaterThan(PREVIOUS_GP); + }); + + it('levels up user if the gain in experience will level up the user', () => { + user.stats.exp = 399; + user.stats.lvl = 17; + + shared.content.spells.rogue.backStab.cast(user, user.todos[0]); + expect(user.stats.lvl).to.eql(18); + }); + + it('adds quest scroll to inventory when passing level milestone', () => { + user.stats.exp = 329; + user.stats.lvl = 14; + + expect(user.items.quests).to.not.have.property('atom1'); + + shared.content.spells.rogue.backStab.cast(user, user.todos[0]); + + expect(user.items.quests).to.have.property('atom1', 1); + }); + }); + }); + + context('Wizard Spells', () => { + beforeEach(() => { + user.stats.class = 'wizard'; + }); + + describe('#fireball (Burst of flames)', () => { + it('adds exp to user', () => { + const PREVIOUS_EXP = user.stats.exp; + + shared.content.spells.wizard.fireball.cast(user, user.todos[0]); + + expect(user.stats.exp).to.be.greaterThan(PREVIOUS_EXP); + }); + + it('levels up user if the gain in experience will level up the user', () => { + user.stats.exp = 399; + user.stats.lvl = 17; + + shared.content.spells.wizard.fireball.cast(user, user.todos[0]); + expect(user.stats.lvl).to.eql(18); + }); + + it('adds quest scroll to inventory when passing level milestone', () => { + user.stats.exp = 329; + user.stats.lvl = 14; + + expect(user.items.quests).to.not.have.property('atom1'); + + shared.content.spells.wizard.fireball.cast(user, user.todos[0]); + + expect(user.items.quests).to.have.property('atom1', 1); + }); + }); + }); +}); diff --git a/test/e2e/e2e.js b/test/e2e/e2e.js index bc5e013cda..6efeaaa82b 100644 --- a/test/e2e/e2e.js +++ b/test/e2e/e2e.js @@ -37,7 +37,7 @@ describe('front page', function() { var login = element(by.css("#loginForm input[value='Login']")); login.click(); var alertDialog = browser.switchTo().alert(); - expect(alertDialog.getText()).toMatch("Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\"."); + expect(alertDialog.getText()).toMatch("Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\" on the habitica.com website's login form."); alertDialog.accept(); }); diff --git a/test/helpers/common.helper.js b/test/helpers/common.helper.js new file mode 100644 index 0000000000..96064b8142 --- /dev/null +++ b/test/helpers/common.helper.js @@ -0,0 +1,42 @@ +import mongoose from 'mongoose'; + +import { wrap as wrapUser } from '../../common/script/index'; +import { model as User } from '../../website/src/models/user'; +import { + DailySchema, + HabitSchema, + RewardSchema, + TodoSchema, +} from '../../website/src/models/task'; + +export function generateUser (options = {}) { + let user = new User(options).toObject(); + + wrapUser(user); + + return user; +} + +export function generateDaily (options = {}) { + let Daily = mongoose.model('Daily', DailySchema); + + return new Daily(options).toObject(); +} + +export function generateHabit (options = {}) { + let Habit = mongoose.model('Habit', HabitSchema); + + return new Habit(options).toObject(); +} + +export function generateReward (options = {}) { + let Reward = mongoose.model('Reward', RewardSchema); + + return new Reward(options).toObject(); +} + +export function generateTodo (options = {}) { + let Todo = mongoose.model('Todo', TodoSchema); + + return new Todo(options).toObject(); +} diff --git a/test/spec/controllers/inventoryCtrlSpec.js b/test/spec/controllers/inventoryCtrlSpec.js index ff959eb8e2..2553acbcf3 100644 --- a/test/spec/controllers/inventoryCtrlSpec.js +++ b/test/spec/controllers/inventoryCtrlSpec.js @@ -89,17 +89,18 @@ describe('Inventory Controller', function() { }); it('does not show modal if user tries to hatch a pet they own', function(){ + user.items.pets['Cactus-Base'] = 5; scope.chooseEgg('Cactus'); scope.choosePotion('Base'); - expect(user.items.eggs).to.eql({Cactus: 0}); - expect(user.items.hatchingPotions).to.eql({Base: 0}); - expect(user.items.pets).to.eql({'Cactus-Base': 5}); - expect(scope.selectedEgg).to.eql(null); - expect(scope.selectedPotion).to.eql(null); - expect(rootScope.openModal).to.have.been.calledOnce; - scope.chooseEgg('Cactus'); - scope.choosePotion('Base'); - expect(rootScope.openModal).to.not.have.been.calledTwice; + expect(rootScope.openModal).to.not.have.been.called; + }); + + it('does not show modal if user tries to hatch a premium quest pet', function(){ + user.items.eggs = {Snake: 1}; + user.items.hatchingPotions = {Peppermint: 1}; + scope.chooseEgg('Snake'); + scope.choosePotion('Peppermint'); + expect(rootScope.openModal).to.not.have.been.called; }); it('does not show pet hatching modal if user has opted out', function(){ diff --git a/website/public/css/inventory.styl b/website/public/css/inventory.styl index 8e86e70f5b..1740daa407 100644 --- a/website/public/css/inventory.styl +++ b/website/public/css/inventory.styl @@ -104,7 +104,7 @@ menu.pets .customize-menu .pet-button border: none background: none white -.pet-not-owned +.pet-not-owned, .mount-not-owned width: 81px; height: 99px; /* Would use css3 filters and just display the original pet image with a black hue, @@ -115,12 +115,6 @@ menu.pets .customize-menu -o-filter: brightness(0%) -ms-filter: brightness(0%)*/ - .PixelPaw - margin-top: 36px // align paw with pets, at the bottom of the button -.mount-not-owned - width: 104px; - height: 99px; - .PixelPaw margin-top: 36px // align paw with pets, at the bottom of the button diff --git a/website/public/css/tasks.styl b/website/public/css/tasks.styl index 0318d9b5c8..854125dcb0 100644 --- a/website/public/css/tasks.styl +++ b/website/public/css/tasks.styl @@ -190,6 +190,9 @@ for $stage in $stages float: right font-size: 0.85em .empty-task-notification + // @TODO: This causes weird centering behavior (see #6332) + // however, this is required to show the tooltip on the task button + // Figure out how to fix the centering behavior while preserving the tooltip height: 100%; // message in Dailies column when Resting in Inn diff --git a/website/public/favicon_192x192.png b/website/public/favicon_192x192.png new file mode 100644 index 0000000000..96226b2cd6 Binary files /dev/null and b/website/public/favicon_192x192.png differ diff --git a/website/public/js/controllers/inventoryCtrl.js b/website/public/js/controllers/inventoryCtrl.js index 21d5385acb..42d0a0ca97 100644 --- a/website/public/js/controllers/inventoryCtrl.js +++ b/website/public/js/controllers/inventoryCtrl.js @@ -116,10 +116,11 @@ habitrpg.controller("InventoryCtrl", if (!$window.confirm(window.env.t('hatchAPot', {potion: potName, egg: eggName}))) return; var userHasPet = user.items.pets[egg.key + '-' + potion.key] > 0; + var isPremiumPet = Content.hatchingPotions[potion.key].premium && !Content.dropEggs[egg.key]; user.ops.hatch({params:{egg:egg.key, hatchingPotion:potion.key}}); - if (!user.preferences.suppressModals.hatchPet && !userHasPet) { + if (!user.preferences.suppressModals.hatchPet && !userHasPet && !isPremiumPet) { $scope.hatchedPet = { egg: eggName, potion: potName, diff --git a/website/src/controllers/api-v2/auth.js b/website/src/controllers/api-v2/auth.js index dd379cc095..629ea30f4b 100644 --- a/website/src/controllers/api-v2/auth.js +++ b/website/src/controllers/api-v2/auth.js @@ -157,7 +157,7 @@ api.loginLocal = function(req, res, next) { User.findOne(login, {auth:1}, function(err, user){ if (err) return next(err); - if (!user) return res.json(401, {err:"Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\"."}); + if (!user) return res.json(401, {err:"Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\" on the habitica.com website's login form."}); if (user.auth.blocked) return res.json(401, accountSuspended(user._id)); // We needed the whole user object first so we can get his salt to encrypt password comparison User.findOne( @@ -165,7 +165,7 @@ api.loginLocal = function(req, res, next) { , {_id:1, apiToken:1} , function(err, user){ if (err) return next(err); - if (!user) return res.json(401,{err:"Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\"."}); + if (!user) return res.json(401,{err:"Uh-oh - your username or password is incorrect.\n- Make sure your username or email is typed correctly.\n- You may have signed up with Facebook, not email. Double-check by trying Facebook login.\n- If you forgot your password, click \"Forgot Password\" on the habitica.com website's login form."}); res.json({id: user._id,token: user.apiToken}); password = null; }); diff --git a/website/src/models/user.js b/website/src/models/user.js index 03f6a132a6..6fef3af2ce 100644 --- a/website/src/models/user.js +++ b/website/src/models/user.js @@ -537,7 +537,7 @@ function _populateDefaultsForNewUser (user) { let taskTypes; let iterableFlags = user.flags.toObject(); - if (user.registeredThrough === 'habitica-web') { + if (user.registeredThrough === 'habitica-web' || user.registeredThrough === 'habitica-android') { taskTypes = ['habit', 'daily', 'todo', 'reward', 'tag']; _.each(iterableFlags.tutorial.common, (val, section) => { diff --git a/website/views/index.jade b/website/views/index.jade index 7173062222..359134bc5a 100644 --- a/website/views/index.jade +++ b/website/views/index.jade @@ -4,11 +4,13 @@ html(ng-app="habitrpg", ng-controller="RootCtrl", ng-class='{"applying-action":a head title=env.t('titleIndex') // ?v=1 needed to force refresh - link(rel='shortcut icon', href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="32x32", href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="144x144", href='#{env.getBuildUrl("favicon_192x192.png")}?v=4') meta(charset='utf-8') meta(name='viewport', content='width=device-width, initial-scale=1.0') meta(name='apple-mobile-web-app-capable', content='yes') + meta(name='mobile-web-app-capable', content='yes') //- Disable NewRelic until we add it again on the server diff --git a/website/views/options/inventory/drops.jade b/website/views/options/inventory/drops.jade index c9c7143b0d..9718cc2283 100644 --- a/website/views/options/inventory/drops.jade +++ b/website/views/options/inventory/drops.jade @@ -136,6 +136,19 @@ | {{::pot.value}}  span.Pet_Currency_Gem1x.inline-gems + li.customize-menu + menu.pets-menu!=env.t('magicHatchingPotions') + " - " + env.t('winterEventAvailability') + p.muted=env.t('premiumPotionNoDropExplanation') + div(ng-repeat='pot in Content.hatchingPotions', ng-if='pot.premium && pot.canBuy(user)') + button.customize-option(class='Pet_HatchingPotion_{{::pot.key}}', + popover='{{::pot.notes()}} {{::pot.addlNotes()}}', popover-append-to-body='true', + popover-title!=env.t("potion", {potionType: "{{::pot.text()}}"}), + popover-trigger='mouseenter', popover-placement='top', + ng-click='purchase("hatchingPotions", pot)') + p + | {{::pot.value}}  + span.Pet_Currency_Gem1x.inline-gems + li.customize-menu menu.pets-menu(label=env.t('food')) p.muted!=env.t('dropsExplanation') diff --git a/website/views/options/inventory/mounts.jade b/website/views/options/inventory/mounts.jade index bbb9e9889d..e08d25c642 100644 --- a/website/views/options/inventory/mounts.jade +++ b/website/views/options/inventory/mounts.jade @@ -7,7 +7,7 @@ mixin mountList(eggSource, potionSource) each potion in potionSource - mount = egg.key+"-"+potion.key div(popover-trigger='mouseenter', popover=env.t('mountName', {potion: potion.text(env.language.code), mount: egg.mountText(env.language.code)}), popover-placement='bottom') - button(class="pet-button Mount_Head_#{mount}", ng-show='user.items.mounts["#{mount}"]', ng-class='{active: user.items.currentMount == "#{mount}"}', ng-click='chooseMount("#{egg.key}", "#{potion.key}")') + button(class="pet-button Mount_Icon_#{mount}", ng-show='user.items.mounts["#{mount}"]', ng-class='{active: user.items.currentMount == "#{mount}"}', ng-click='chooseMount("#{egg.key}", "#{potion.key}")') button(class="pet-button mount-not-owned", ng-if='!user.items.mounts["#{mount}"] && (#{potion.canBuy()} || user.items.hatchingPotions["#{potion.key}"] || user.items.pets["#{mount}"])') .PixelPaw -} @@ -34,7 +34,7 @@ mixin mountList(eggSource, potionSource) each egg in env.Content.dropEggs - mount = egg.key+"-"+potion.key div(popover-trigger='mouseenter', popover=env.t('mountName', {potion: potion.text(env.language.code), mount: egg.mountText(env.language.code)}), popover-placement='bottom') - button(class="pet-button Mount_Head_#{mount}", ng-show='user.items.mounts["#{mount}"]', ng-class='{active: user.items.currentMount == "#{mount}"}', ng-click='chooseMount("#{egg.key}", "#{potion.key}")') + button(class="pet-button Mount_Icon_#{mount}", ng-show='user.items.mounts["#{mount}"]', ng-class='{active: user.items.currentMount == "#{mount}"}', ng-click='chooseMount("#{egg.key}", "#{potion.key}")') button(class="pet-button mount-not-owned", ng-if='!user.items.mounts["#{mount}"] && (#{potion.canBuy()} || user.items.hatchingPotions["#{potion.key}"] || user.items.pets["#{mount}"])') .PixelPaw .row: .col-md-12 @@ -46,4 +46,4 @@ mixin mountList(eggSource, potionSource) div each t,k in env.Content.specialMounts - var animal = k.split('-')[0], color = k.split('-')[1] - button(ng-if='user.items.mounts["#{animal}-#{color}"]', class="pet-button Mount_Head_#{animal}-#{color}", ng-class='{active: user.items.currentMount == "#{animal}-#{color}"}', ng-click='chooseMount("#{animal}", "#{color}")', popover=env.t(t), popover-trigger='mouseenter', popover-placement='bottom') + button(ng-if='user.items.mounts["#{animal}-#{color}"]', class="pet-button Mount_Icon_#{animal}-#{color}", ng-class='{active: user.items.currentMount == "#{animal}-#{color}"}', ng-click='chooseMount("#{animal}", "#{color}")', popover=env.t(t), popover-trigger='mouseenter', popover-placement='bottom') diff --git a/website/views/shared/footer.jade b/website/views/shared/footer.jade index 9f70f44cb5..ec67f778dc 100644 --- a/website/views/shared/footer.jade +++ b/website/views/shared/footer.jade @@ -8,7 +8,7 @@ footer.footer(ng-controller='FooterCtrl') li a(href='https://itunes.apple.com/us/app/habitica/id994882113?ls=1&mt=8', target='_blank')=env.t('mobileIOS') li - a(href='/static/apps')=env.t('mobileAndroid') + a(href='https://play.google.com/store/apps/details?id=com.habitrpg.android.habitica', target='_blank')=env.t('mobileAndroid') if env.isStaticPage h4=env.t('language') select(ng-change='changeLang()', ng-model='selectedLanguage', ng-options='language.name for language in languages') diff --git a/website/views/shared/new-stuff.jade b/website/views/shared/new-stuff.jade index 051f132c2a..6d13d9fa06 100644 --- a/website/views/shared/new-stuff.jade +++ b/website/views/shared/new-stuff.jade @@ -1,39 +1,66 @@ -h2 12/1/2015 - DECEMBER ARMOIRE ITEMS, BACKGROUNDS, MYSTERY BOX, AND GAYMERX ARMOR! +h2 12/10/2015 - ANDROID APP BETA IS LIVE! hr tr td - .weapon_armoire_blueLongbow.pull-right - h3 December Armoire Items - p There is new equipment in Enchanted Armoire, a 100 GP Reward in the Rewards Column which unlocks after you've attained Ultimate Gear! + .promo_android.pull-right + h3 Android App Beta + p Android users, rejoice! We're releasing the beta version of our brand-new, totally rewritten native Android app. Download it here! br - p Click on the Enchanted Armoire for a random chance at special Equipment, including the Crystal Crescent Set and the Blue Longbow! It may also give you random XP or food items. We'll be adding new equipment to it during the first week of each month, but even when you've exhausted the current supply, you can keep clicking for a chance at food and XP. + p It's a beta version, which means that some features are still missing, but we are working to create additional releases for the coming weeks. You can help us make the app even better by leaving us feedback and reporting bugs under About > Report a Bug! (We are already aware of some, like Dailies sometimes moving around, and are working to address them in the coming weeks.) br - p Now go spend all that accumulated Gold! May the Random Number Generator smile upon you... - p.small.muted by Lemoness and SabreCat - p.small.muted Art by starsystemic, Fandekasp, and nonight - tr - td - .background_winter_town.pull-right - h3 December Backgrounds - p There are three new avatar backgrounds in the Background Shop! Now your avatar can ski on the Alpine Slopes, gaze at the Snowy Sunrise, or bustle through a Winter Town! - p.small.muted by Karithina, Inventrix, and Midori88 - tr - td - .inventory_present_12.pull-right - h3 December Mystery Box - p Ooh... What could it be? All Habiticans who are subscribed during the month of December will receive the 2015 December Mystery Item Set! It will be revealed on the 23rd, so keep your eyes peeled. Thanks for supporting the site <3 - p.small.muted by Lemoness - tr - td - .head_special_gaymerx.pull-right - h3 GaymerX Armor - p In honor of Habitica's partnership with the GaymerX3 Conference (December 11-13, in downtown San Jose), the Rainbow Warrior set is available once again from the Rewards column! It will only be available until December 14th, so be sure to get it now. Plus, the Unconventional Armor set will be available at the conference, so don't forget to pick up a promo card if you attend! + p Finally, if you like the direction that we're taking the app, we'd love it if you could take the time to leave us a review :) It really makes a difference for us. + p.small.muted by Viirus, Sara Olson, MagicMicky, Negue, and FranzeJR if menuItem !== 'oldNews' hr a(href='/static/old-news', target='_blank') Read older news mixin oldNews + h2 12/7/2015 - PEPPERMINT PETS AND PUSH TASK TO BOTTOM! + tr + td + .Pet-Wolf-Peppermint.pull-right + h3 Peppermint Magic Hatching Potions + p A new Magic Hatching Potion is available! + br + p Between now and December 31st, you can buy Peppermint Hatching Potions from the Market and use them to hatch any standard pet egg. (Magic Hatching Potions do not work on Quest Pet eggs.) You'll find it very easy to care for your new Peppermint Pets: they love to eat every kind of food! + br + p Peppermint Hatching Potions are a Seasonal Edition item, so they will only be available during this time each year! Be sure to get them while you can. + p.small.muted by Lemoness + tr + td + h3 Push Task to Bottom + p Now you can easily push a task to the bottom of a list! Hold the Control or Command key, and the Push Task to Top icon will switch to a Push Task to Bottom icon. Click that and down goes the task! + p.small.muted by TheHollidayInn + h2 12/1/2015 - DECEMBER ARMOIRE ITEMS, BACKGROUNDS, MYSTERY BOX, AND GAYMERX ARMOR! + tr + td + .weapon_armoire_blueLongbow.pull-right + h3 December Armoire Items + p There is new equipment in Enchanted Armoire, a 100 GP Reward in the Rewards Column which unlocks after you've attained Ultimate Gear! + br + p Click on the Enchanted Armoire for a random chance at special Equipment, including the Crystal Crescent Set and the Blue Longbow! It may also give you random XP or food items. We'll be adding new equipment to it during the first week of each month, but even when you've exhausted the current supply, you can keep clicking for a chance at food and XP. + br + p Now go spend all that accumulated Gold! May the Random Number Generator smile upon you... + p.small.muted by Lemoness and SabreCat + p.small.muted Art by starsystemic, Fandekasp, and nonight + tr + td + .background_winter_town.pull-right + h3 December Backgrounds + p There are three new avatar backgrounds in the Background Shop! Now your avatar can ski on the Alpine Slopes, gaze at the Snowy Sunrise, or bustle through a Winter Town! + p.small.muted by Karithina, Inventrix, and Midori88 + tr + td + .inventory_present_12.pull-right + h3 December Mystery Box + p Ooh... What could it be? All Habiticans who are subscribed during the month of December will receive the 2015 December Mystery Item Set! It will be revealed on the 23rd, so keep your eyes peeled. Thanks for supporting the site <3 + p.small.muted by Lemoness + tr + td + .head_special_gaymerx.pull-right + h3 GaymerX Armor + p In honor of Habitica's partnership with the GaymerX3 Conference (December 11-13, in downtown San Jose), the Rainbow Warrior set is available once again from the Rewards column! It will only be available until December 14th, so be sure to get it now. Plus, the Unconventional Armor set will be available at the conference, so don't forget to pick up a promo card if you attend! h2 11/25/2015 - HABITICA THANKSGIVING! NOVEMBER SUBSCRIBER ITEM AND TURKEY PETS AND MOUNTS tr td diff --git a/website/views/static/apps.jade b/website/views/static/apps.jade index 266d60596f..e71fef87b2 100644 --- a/website/views/static/apps.jade +++ b/website/views/static/apps.jade @@ -9,17 +9,10 @@ block title block content .lead - =env.t('checkOutIOSApp') + =env.t('checkOutMobileApps') .row.text-center - a(href='https://geo.itunes.apple.com/us/app/habitica/id994882113?mt=8') - .promo_habitica(style='border-radius:25px;margin:auto') - .row.text-center - a(href='https://geo.itunes.apple.com/us/app/habitica/id994882113?mt=8', style='display:inline-block;overflow:hidden;background:url(http://linkmaker.itunes.apple.com/images/badges/en-us/badge_appstore-lrg.svg) no-repeat;width:165px;height:40px;margin-left:30px') + .promo_habitica(style='border-radius:25px;margin:auto') br - .lead - =env.t('notifyAndroidApp') .row.text-center - .sendgrid-subscription-widget(data-token='WEc2mXZw9YqemYAJp3a%2FO%2FxyvSWuFCFS2x88bbdMa%2FJjEH%2FlDdpc%2Flbz4PPZZRZMnTmr8kNOzI6ypw%2Br3r55wQ%3D%3D') - script. - !function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0],p=/^http:/.test(d.location)?"http":"https";if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src=p+"://s3.amazonaws.com/subscription-cdn/0.2/widget.min.js";fjs.parentNode.insertBefore(js,fjs);}}(document, "script", "sendgrid-subscription-widget-js"); - + a(href='https://play.google.com/store/apps/details?id=com.habitrpg.android.habitica&utm_source=global_co&utm_medium=prtnr&utm_content=Mar2515&utm_campaign=PartBadge&pcampaignid=MKT-AC-global-none-all-co-pr-py-PartBadges-Oct1515-1', style='display:inline-block;overflow:hidden;background:url(https://developer.android.com/images/brand/en_app_rgb_wo_45.png) no-repeat;background-size:100%;width:129px;height:45px;margin-left:20px') + a(href='https://geo.itunes.apple.com/us/app/habitica/id994882113?mt=8', style='display:inline-block;overflow:hidden;background:url(http://linkmaker.itunes.apple.com/images/badges/en-us/badge_appstore-lrg.svg#svgView) no-repeat;background-size:100%;width:152px;height:45px;margin-left:20px') diff --git a/website/views/static/front.jade b/website/views/static/front.jade index 9dcd7b3e3b..ddc9aaa28c 100644 --- a/website/views/static/front.jade +++ b/website/views/static/front.jade @@ -19,11 +19,12 @@ html(ng-app='habitrpg', ng-controller='RootCtrl') meta(name='twitter:card' content='summary') meta(name='twitter:site' content='@habitica') meta(name='twitter:title' content='Habitica: Your Life the Role Playing Game') - meta(name='twitter:description' content='Habitica is a free habit-building and productivity app that treats your real life like a game! Motivate yourself with in-game rewards and social encouragement.') + meta(name='twitter:description' content='Habitica is a free habit-building and productivity app that treats your real life like a game! Motivate yourself with in-game rewards and social encouragement.') meta(name='twitter:image' content='https://s3.amazonaws.com/habitica-assets/assets/gryphon_logo.png') meta(name='apple-itunes-app' content='app-id=994882113') link(rel='canonical', href='', type='text/html') - link(rel='shortcut icon', href='/favicon.ico') + link(rel='shortcut icon', sizes="32x32", href='/favicon.ico') + link(rel='shortcut icon', sizes="192x192", href='/favicon_192x192.png') link(rel='stylesheet', type='text/css', href='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.4/css/bootstrap.min.css') @@ -651,4 +652,3 @@ html(ng-app='habitrpg', ng-controller='RootCtrl') }]).directive('carousel', [function () { return {} }]); - diff --git a/website/views/static/layout.jade b/website/views/static/layout.jade index 0c5057900a..f230f88213 100644 --- a/website/views/static/layout.jade +++ b/website/views/static/layout.jade @@ -19,7 +19,8 @@ html(ng-app='habitrpg') script(type='text/javascript'). window.env = !{JSON.stringify(env._.pick(env, env.clientVars))}; - link(rel='shortcut icon', href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="32x32", href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="192x192", href='#{env.getBuildUrl("favicon_192x192.png")}?v=4') meta(charset='utf-8') meta(name='viewport', content='width=device-width, initial-scale=1.0') diff --git a/website/views/static/new-stuff.jade b/website/views/static/new-stuff.jade index b2a6befbb1..0107b02d56 100644 --- a/website/views/static/new-stuff.jade +++ b/website/views/static/new-stuff.jade @@ -9,7 +9,8 @@ html(ng-app='habitrpg') script(type='text/javascript'). window.env = !{JSON.stringify(env._.pick(env, env.clientVars))}; - link(rel='shortcut icon', href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="32x32", href='#{env.getBuildUrl("favicon.ico")}?v=4') + link(rel='shortcut icon', sizes="192x192", href='#{env.getBuildUrl("favicon_192x192.png")}?v=4') meta(charset='utf-8') meta(name='viewport', content='width=device-width, initial-scale=1.0')